blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
410
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
51
| license_type
stringclasses 2
values | repo_name
stringlengths 5
132
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
80
| visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 5.85k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 131
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
9.45M
| extension
stringclasses 32
values | content
stringlengths 3
9.45M
| authors
sequencelengths 1
1
| author_id
stringlengths 0
313
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1ef0b37030299d732a1ae74acba76e8a02c5a69e | e498e9af6eeefd02b7e3f5d1e4647dc14cfa95c8 | /src/com/facebook/buck/cxx/CxxPrecompiledHeaderTemplate.java | ca8810f0fefbb392fdf9f1415341546d42009810 | [
"Apache-2.0"
] | permissive | asareh/buck | 03a2734c46177d57cad708cf7e23feb32a2f41bb | dd1d3ab55077d859c94789e4a1262de60929fd7b | refs/heads/master | 2021-07-05T23:41:59.187999 | 2017-09-30T06:38:59 | 2017-10-01T04:33:38 | 105,420,391 | 1 | 0 | null | 2017-10-01T05:01:35 | 2017-10-01T05:01:35 | null | UTF-8 | Java | false | false | 9,123 | java | /*
* Copyright 2013-present Facebook, Inc.
*
* 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.facebook.buck.cxx;
import com.facebook.buck.cxx.toolchain.CxxPlatform;
import com.facebook.buck.cxx.toolchain.Preprocessor;
import com.facebook.buck.cxx.toolchain.linker.Linker;
import com.facebook.buck.cxx.toolchain.nativelink.NativeLinkable;
import com.facebook.buck.cxx.toolchain.nativelink.NativeLinkableInput;
import com.facebook.buck.cxx.toolchain.nativelink.NativeLinkables;
import com.facebook.buck.io.filesystem.ProjectFilesystem;
import com.facebook.buck.model.BuildTarget;
import com.facebook.buck.model.Flavor;
import com.facebook.buck.model.InternalFlavor;
import com.facebook.buck.rules.BuildRule;
import com.facebook.buck.rules.BuildRuleParams;
import com.facebook.buck.rules.BuildRuleResolver;
import com.facebook.buck.rules.BuildRules;
import com.facebook.buck.rules.DependencyAggregation;
import com.facebook.buck.rules.NoopBuildRuleWithDeclaredAndExtraDeps;
import com.facebook.buck.rules.SourcePath;
import com.facebook.buck.rules.SourcePathResolver;
import com.facebook.buck.rules.SourcePathRuleFinder;
import com.facebook.buck.rules.coercer.FrameworkPath;
import com.facebook.buck.util.MoreCollectors;
import com.facebook.buck.util.RichStream;
import com.google.common.cache.LoadingCache;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.ImmutableSortedSet;
import java.util.Map;
import java.util.Optional;
/**
* Represents a precompilable header file, along with dependencies.
*
* <p>Rules which depend on this will inherit this rule's of dependencies. For example if a given
* rule R uses a precompiled header rule P, then all of P's {@code deps} will get merged into R's
* {@code deps} list.
*/
public class CxxPrecompiledHeaderTemplate extends NoopBuildRuleWithDeclaredAndExtraDeps
implements NativeLinkable, CxxPreprocessorDep {
private static final Flavor AGGREGATED_PREPROCESS_DEPS_FLAVOR =
InternalFlavor.of("preprocessor-deps");
public final SourcePath sourcePath;
/** @param buildRuleParams the params for this PCH rule, <b>including</b> {@code deps} */
CxxPrecompiledHeaderTemplate(
BuildTarget buildTarget,
ProjectFilesystem projectFilesystem,
BuildRuleParams buildRuleParams,
SourcePath sourcePath) {
super(buildTarget, projectFilesystem, buildRuleParams);
this.sourcePath = sourcePath;
}
private ImmutableSortedSet<BuildRule> getExportedDeps() {
return BuildRules.getExportedRules(getBuildDeps());
}
/**
* Returns our {@link #getBuildDeps()}, limited to the subset of those which are {@link
* NativeLinkable}.
*/
@Override
public Iterable<? extends NativeLinkable> getNativeLinkableDeps() {
return RichStream.from(getBuildDeps()).filter(NativeLinkable.class).toImmutableList();
}
/**
* Returns our {@link #getExportedDeps()}, limited to the subset of those which are {@link
* NativeLinkable}.
*/
@Override
public Iterable<? extends NativeLinkable> getNativeLinkableExportedDeps() {
return RichStream.from(getExportedDeps()).filter(NativeLinkable.class).toImmutableList();
}
/**
* Linkage doesn't matter for PCHs, but use care not to change it from the rest of the builds'
* rules' preferred linkage.
*/
@Override
public Linkage getPreferredLinkage(CxxPlatform cxxPlatform) {
return Linkage.ANY;
}
/** Doesn't really apply to us. No shared libraries to add here. */
@Override
public ImmutableMap<String, SourcePath> getSharedLibraries(CxxPlatform cxxPlatform) {
return ImmutableMap.of();
}
/**
* This class doesn't add any native linkable code of its own, it just has deps which need to be
* passed along and up to the top-level (e.g. a `cxx_binary`) rule. Take all our linkable deps,
* then, and pass it along as our linker input.
*/
@Override
public NativeLinkableInput getNativeLinkableInput(
CxxPlatform cxxPlatform,
Linker.LinkableDepType type,
boolean forceLinkWhole,
ImmutableSet<LanguageExtensions> languageExtensions) {
return NativeLinkables.getTransitiveNativeLinkableInput(
cxxPlatform,
getBuildDeps(),
Linker.LinkableDepType.SHARED,
NativeLinkable.class::isInstance);
}
@Override
public Iterable<CxxPreprocessorDep> getCxxPreprocessorDeps(CxxPlatform cxxPlatform) {
return RichStream.from(getBuildDeps()).filter(CxxPreprocessorDep.class).toImmutableList();
}
@Override
public CxxPreprocessorInput getCxxPreprocessorInput(CxxPlatform cxxPlatform) {
return CxxPreprocessorInput.EMPTY;
}
private final LoadingCache<CxxPlatform, ImmutableMap<BuildTarget, CxxPreprocessorInput>>
transitiveCxxPreprocessorInputCache =
CxxPreprocessables.getTransitiveCxxPreprocessorInputCache(this);
@Override
public ImmutableMap<BuildTarget, CxxPreprocessorInput> getTransitiveCxxPreprocessorInput(
CxxPlatform cxxPlatform) {
return transitiveCxxPreprocessorInputCache.getUnchecked(cxxPlatform);
}
private ImmutableList<CxxPreprocessorInput> getCxxPreprocessorInputs(CxxPlatform cxxPlatform) {
ImmutableList.Builder<CxxPreprocessorInput> builder = ImmutableList.builder();
for (Map.Entry<BuildTarget, CxxPreprocessorInput> entry :
getTransitiveCxxPreprocessorInput(cxxPlatform).entrySet()) {
builder.add(entry.getValue());
}
return builder.build();
}
private ImmutableList<CxxHeaders> getIncludes(CxxPlatform cxxPlatform) {
return getCxxPreprocessorInputs(cxxPlatform)
.stream()
.flatMap(input -> input.getIncludes().stream())
.collect(MoreCollectors.toImmutableList());
}
private ImmutableSet<FrameworkPath> getFrameworks(CxxPlatform cxxPlatform) {
return getCxxPreprocessorInputs(cxxPlatform)
.stream()
.flatMap(input -> input.getFrameworks().stream())
.collect(MoreCollectors.toImmutableSet());
}
private ImmutableSortedSet<BuildRule> getPreprocessDeps(
BuildRuleResolver ruleResolver, SourcePathRuleFinder ruleFinder, CxxPlatform cxxPlatform) {
ImmutableSortedSet.Builder<BuildRule> builder = ImmutableSortedSet.naturalOrder();
for (CxxPreprocessorInput input : getCxxPreprocessorInputs(cxxPlatform)) {
builder.addAll(input.getDeps(ruleResolver, ruleFinder));
}
for (CxxHeaders cxxHeaders : getIncludes(cxxPlatform)) {
cxxHeaders.getDeps(ruleFinder).forEachOrdered(builder::add);
}
for (FrameworkPath frameworkPath : getFrameworks(cxxPlatform)) {
builder.addAll(frameworkPath.getDeps(ruleFinder));
}
builder.addAll(getBuildDeps());
builder.addAll(getExportedDeps());
return builder.build();
}
private BuildTarget createAggregatedDepsTarget(CxxPlatform cxxPlatform) {
return getBuildTarget()
.withAppendedFlavors(cxxPlatform.getFlavor(), AGGREGATED_PREPROCESS_DEPS_FLAVOR);
}
public DependencyAggregation requireAggregatedDepsRule(
BuildRuleResolver ruleResolver, SourcePathRuleFinder ruleFinder, CxxPlatform cxxPlatform) {
return (DependencyAggregation)
ruleResolver.computeIfAbsent(
createAggregatedDepsTarget(cxxPlatform),
depAggTarget ->
new DependencyAggregation(
depAggTarget,
getProjectFilesystem(),
getPreprocessDeps(ruleResolver, ruleFinder, cxxPlatform)));
}
public PreprocessorDelegate buildPreprocessorDelegate(
SourcePathResolver pathResolver,
CxxPlatform cxxPlatform,
Preprocessor preprocessor,
CxxToolFlags preprocessorFlags) {
ImmutableList<CxxHeaders> includes = getIncludes(cxxPlatform);
try {
CxxHeaders.checkConflictingHeaders(includes);
} catch (CxxHeaders.ConflictingHeadersException e) {
throw e.getHumanReadableExceptionForBuildTarget(getBuildTarget());
}
return new PreprocessorDelegate(
pathResolver,
cxxPlatform.getCompilerDebugPathSanitizer(),
cxxPlatform.getHeaderVerification(),
getProjectFilesystem().getRootPath(),
preprocessor,
PreprocessorFlags.of(
/* getPrefixHeader() */ Optional.empty(),
preprocessorFlags,
getIncludes(cxxPlatform),
getFrameworks(cxxPlatform)),
CxxDescriptionEnhancer.frameworkPathToSearchPath(cxxPlatform, pathResolver),
/* getSandboxTree() */ Optional.empty(),
/* leadingIncludePaths */ Optional.empty());
}
}
| [
"[email protected]"
] | |
345a507ac2d0ecc58741d0e55b16b2d46ae4ed30 | 63ab1d547581ccda0f9d2616ea441172e7f7e4c0 | /src/JavaCore_12/Task_01.java | bfba2385c702cd345116a1a934417086c4125b38 | [] | no_license | LuchikSveta/JavaCore | d4dd646035cae86af2683bffe65e551b083f556b | 1cbc67440b4da5da78c0033ef53c8e828a3d247e | refs/heads/master | 2023-02-11T17:52:09.637794 | 2021-01-12T16:32:31 | 2021-01-12T16:32:31 | 313,713,286 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 559 | java | package JavaCore_12;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class Task_01 {
public static void main(String[] args) {
List<String> list = new ArrayList<>(Arrays.asList("BMW", "Lexus", "Mercedes", "Audi", "Nissan"));
for (String auto: list) {
System.out.println(" " + auto);
}
System.out.println();
list.add(list.size() / 2, "Porsche");
list.remove(0);
for (String auto: list) {
System.out.println(" " + auto);
}
}
}
| [
"[email protected]"
] | |
f929943d37432bfbd325b863691e77a4c68ad0b1 | 3903544f5ccf6e0c5a490d081dd8bfc6e59edc4c | /src/edu/auburn/utils/CalculateScore.java | bdccf6210455ebb408a1ad677dbce17cde7351a5 | [] | no_license | Rubbixu/aptgt | f2242e8ad160a044f16f0443b4f972f3148ef77d | 19798a8fec25ba78c9f508ca6f797f2432d3a675 | refs/heads/master | 2022-12-25T08:32:31.084755 | 2019-03-30T00:10:46 | 2019-03-30T00:10:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,289 | java | package edu.auburn.utils;
import java.util.List;
import edu.auburn.domain.ScoreModel;
import edu.auburn.utils.scal.EDistanceWithOutputWithWeightbkup_01_09_2019withnewcostfunction;
import edu.auburn.utils.scal.EDistanceWithSepartedCostFunWithHashSet;
import edu.auburn.utils.scal.PreProcess;
public class CalculateScore {
private static IScoreUtil util ;
private static float maxLen;
public static float getScore(String studentAnswer, String teacherAnswer) {
// EDistanceWithOutputWithWeight ewww = new EDistanceWithOutputWithWeight();
// double score = ewww.dynamicEditDistance(teacherAnswer, studentAnswer);
// double result = 1-(score/Math.max(studentAnswer.length(), teacherAnswer.length()));
// MatchLetter ml = new MatchLetter();
// float distance = ml.finalCalculate(teacherAnswer, studentAnswer);
// float score = 1-(distance/Math.max(studentAnswer.length(), teacherAnswer.length()));
EDistanceWithSepartedCostFunWithHashSet editDistance = new EDistanceWithSepartedCostFunWithHashSet();
PreProcess prePro = new PreProcess();
List<String> student = prePro.generateListOfStrings(studentAnswer);
List<String> teacher = prePro.generateListOfStrings(teacherAnswer);
float result = (float)editDistance.dynamicEditDistance(teacher, student);
maxLen = (float)editDistance.getMaxLen();
result = (float) Math.round(result * 10000) / 10000;
System.out.println("String from student");
for (String str: student) {
System.out.println(str);
}
System.out.println("String from teacher");
for (String str: teacher) {
System.out.println(str);
}
System.out.println("Calculate Score: " + result + " " + maxLen);
return result;
}
public static ScoreModel getScoreModel(String studentAnswer, String teacherAnswer) {
ScoreModel model = util.calculateScore(teacherAnswer, studentAnswer);
return model;
}
public static String getPercentage(String studentAnswer, String teacherAnswer, float distance){
//float result = 1-(distance/Math.max(studentAnswer.length(), teacherAnswer.length()));
float result = Math.max(0, 1-(distance/maxLen)); // how to calculate the score is important to know here
result = (float)Math.round(result * 10000) / 100;
String percentage = String.valueOf(result);
return percentage+"%";
}
}
| [
"[email protected]"
] | |
c9b9c79d2c3f212571bb2c1563cfd7c2d0bac269 | 0dcf5eef8bb070d7a9bc7edb2e191966463443fe | /Introduction to JAVA EE/Exercises-Fluffy Duffy Munchkin Cats (FDMC)/src/main/java/fdmc/web/servlets/AllCatsServlet.java | 7d141e4c7e8a134fbf78676cc4511127cf03340d | [] | no_license | inkarnasion/Java-Web-Development-Basic | dfb1fd0dd90c7d23938a1a93c8325bfee53986db | 5f6aa946644fa5c300917a8c00ebfca0f3b3409c | refs/heads/master | 2020-04-16T07:52:45.194016 | 2019-03-04T11:24:58 | 2019-03-04T11:24:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,779 | java | package fdmc.web.servlets;
import fdmc.domain.entities.Cat;
import fdmc.util.HtmlReader;
import javax.inject.Inject;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.Map;
@WebServlet("/cats/all")
public class AllCatsServlet extends HttpServlet {
private final static String ALL_CATS_HTML_PATH = "D:\\Java\\Java WEB 2019\\JAVA EE-exercises\\src\\main\\resources\\wies\\all-cats.html";
private final static String ERROR_NO_PERSISTEND_CATS_HTML_PATH = "D:\\Java\\Java WEB 2019\\JAVA EE-exercises\\src\\main\\resources\\wies\\error-no-persistend-cats.html";
private final HtmlReader htmlReader;
@Inject
public AllCatsServlet(HtmlReader htmlReader) {
this.htmlReader = htmlReader;
}
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
Map<String, Cat> allCats = (Map<String, Cat>) req.getSession().getAttribute("cats");
StringBuilder httpCatNameContent = new StringBuilder();
String htmlContent;
if (allCats != null) {
for (String key : allCats.keySet()) {
httpCatNameContent.append("<h3><a href = \"/cats/profile?catName={{name}}\" > {{name}} </a ></h3 >".replace("{{name}}",key)).append("\r\n");
}
htmlContent = htmlReader.readHtmlFile(ALL_CATS_HTML_PATH).replace("{{catList}}", httpCatNameContent);
} else {
htmlContent = htmlReader.readHtmlFile(ERROR_NO_PERSISTEND_CATS_HTML_PATH);
}
resp.getWriter().println(htmlContent);
}
}
| [
"[email protected]"
] | |
ae5a3056803565a159efd92a1647b55fd247ee14 | a2bdaf13f1ccc39e0fa04cebc33b4b3f4597453e | /WidgetWindow/src/kr/namoosori/swt/widgetwindow/dialog/wizard/SummaryPage.java | 0a0019a37bb499fe03bcc2385d27bf563adf0f80 | [] | no_license | asiadream/Edu.rcp | 6f270209b3d977b1be01f279efe170aa4dc8b0ef | 0fe190f8e03e250d559c20e5a33fa228592f8e6f | refs/heads/master | 2020-12-25T07:42:23.725277 | 2016-10-20T02:42:38 | 2016-10-20T02:42:38 | 60,315,516 | 0 | 0 | null | null | null | null | UHC | Java | false | false | 945 | java | package kr.namoosori.swt.widgetwindow.dialog.wizard;
import org.eclipse.jface.wizard.WizardPage;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
public class SummaryPage extends WizardPage {
public static final String PAGE_NAME = "Summary";
private Label textLabel;
public SummaryPage() {
super(PAGE_NAME, "선택 결과 페이지", null);
setDescription("선택한 결과는 다음과 같습니다.");
}
public void createControl(Composite parent) {
Composite topLevel = new Composite(parent, SWT.NONE);
topLevel.setLayout(new FillLayout());
textLabel = new Label(topLevel, SWT.CENTER);
textLabel.setText("");
setControl(topLevel);
setPageComplete(true);
}
public void updateText(String newText) {
textLabel.setText(newText);
}
}
| [
"[email protected]"
] | |
3e4ec86aa404dc0daab1144fb1edcc86e429fe95 | 1415594f76bc814dafbd1f64265146ef462b2cd1 | /health/health_parent/health_interface/src/main/java/com/owen/service/UserService.java | f41c1553f8eaff1267659978bb475702a636657d | [] | no_license | owenShaol/repo1 | 9a787cdacd1c45a16311c72a8f8fe5d806876a39 | e8ee69c0609b538dff745062a3a6c5c05d159c65 | refs/heads/master | 2022-11-20T09:03:32.678763 | 2020-07-22T11:29:35 | 2020-07-22T11:29:35 | 281,556,399 | 0 | 0 | null | 2020-07-22T11:53:24 | 2020-07-22T02:41:18 | JavaScript | UTF-8 | Java | false | false | 133 | java | package com.owen.service;
import com.owen.pojo.User;
public interface UserService {
public User findByUsername(String name);
}
| [
"[email protected]"
] | |
c08c0ea6e315d4386fec8f682772ba799b5d7b26 | 2176c3ae37b308d924e9ccd5efdb35a8bd3db5ad | /app/src/main/java/com/android/ilya/extratask1/FullscreenView.java | 98c9decf0c9feb56e1e4fc673d64198ca73b1a9e | [] | no_license | ilyamkin/extratask1 | 3d6984ff234ae89c06657951a47954174b89dc4b | 0d43b108d3b5cadcdd9a569b8bb87d3251a0fbe8 | refs/heads/master | 2021-05-28T04:35:11.988872 | 2015-01-18T15:13:00 | 2015-01-18T15:13:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,554 | java | package com.android.ilya.extratask1;
import android.app.LoaderManager;
import android.app.WallpaperManager;
import android.content.Intent;
import android.content.Loader;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.provider.MediaStore;
import android.support.v4.view.ViewPager;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.ImageView;
import android.widget.Toast;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
public class FullscreenView extends ActionBarActivity {
List<Bitmap> lst = new ArrayList<>();
ViewPager viewPager;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_fullscreen_view);
// Loop through the ids to create a list of full screen image views
List<ImageView> images = new ArrayList<>();
for (Integer i = 0; i < 6; i++) {
ImageView imageView = new ImageView(this);
byte[] byteArray = getIntent().getByteArrayExtra(i.toString());
Bitmap bmp = BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length);
lst.add(bmp);
imageView.setImageBitmap(bmp);
imageView.setScaleType(ImageView.ScaleType.FIT_XY);
images.add(imageView);
}
// Finally create the adapter
ImagePagerAdapter imagePagerAdapter = new ImagePagerAdapter(images);
viewPager = (ViewPager) findViewById(R.id.view_pager);
viewPager.setAdapter(imagePagerAdapter);
// Set the ViewPager to point to the selected image from the previous activity
// Selected image id
int position = getIntent().getExtras().getInt("position");
viewPager.setCurrentItem(position);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu_fullscreen, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.action_saving) {
MediaStore.Images.Media.insertImage(getContentResolver(), lst.get(viewPager.getCurrentItem()), "photofromflickr.png" , "");
Toast toast = Toast.makeText(this, "Save photo successfully!", Toast.LENGTH_LONG);
toast.show();
}
return super.onOptionsItemSelected(item);
}
}
| [
"[email protected]"
] | |
f3f42d3199aec48f31c268b23f166c3b21b63360 | 0755cb24dcb9049bfe3157f56699b7958f2bef39 | /src/ConstructorConcept/src/com/prasertcbs/Person.java | a769784a14d1318477a69a66129ae6ef35b19fb4 | [
"MIT"
] | permissive | prasertcbs/java_tutorial | 5bde5220cf5e7b780bd9fc873e86fbe0de68a920 | c805053757471859dc32d1e7f03848208f4592b8 | refs/heads/main | 2023-02-11T02:37:24.305239 | 2021-01-03T09:35:30 | 2021-01-03T09:35:30 | 326,363,112 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,068 | java | package com.prasertcbs;
/**
* Created by prasert on 11/8/2014.
*/
public class Person {
private String firstName, lastName, nickName, gender;
public Person(String firstName, String lastName, String nickName, String gender) {
this.firstName = firstName;
this.lastName = lastName;
this.nickName = nickName;
this.gender = gender;
}
public Person() {
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public String getNickName() {
return nickName;
}
public void setNickName(String nickName) {
this.nickName = nickName;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
}
| [
"[email protected]"
] | |
d738cc26d1a24327963aeaa5f2afe5faff941dc8 | 456689979987458788ede43c508b1e3f06fb56bc | /src/main/java/com/socodd/entities/Analyse.java | 95568686fee365a1aea3aec91222e06cc54c5673 | [] | no_license | said321/socodd | cff313e93e35342791d25bbc98e6721071c6dd82 | caeb1829fedea3c2447e4d3bcdc1406f6b4fa160 | refs/heads/master | 2020-03-23T21:36:13.081992 | 2018-09-12T05:08:48 | 2018-09-12T05:08:48 | 141,448,187 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,720 | java | package com.socodd.entities;
// Generated 7 sept. 2018 13:04:21 by Hibernate Tools 3.6.0.Final
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import static javax.persistence.GenerationType.IDENTITY;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
/**
* Analyse generated by hbm2java
*/
@Entity
@Table(name = "analyse", catalog = "db_socodd")
public class Analyse implements java.io.Serializable {
private Integer id;
private Produit produit;
private String code;
private String nom;
private String abrege;
private boolean ecranLot;
private boolean ecranReception;
private boolean etatLot;
private boolean etatReception;
private String formuleCalcul;
private float norme;
private int ordre;
public Analyse() {
}
public Analyse(Produit produit, String code, String nom, String abrege, boolean ecranLot, boolean ecranReception,
boolean etatLot, boolean etatReception, String formuleCalcul, float norme, int ordre) {
this.produit = produit;
this.code = code;
this.nom = nom;
this.abrege = abrege;
this.ecranLot = ecranLot;
this.ecranReception = ecranReception;
this.etatLot = etatLot;
this.etatReception = etatReception;
this.formuleCalcul = formuleCalcul;
this.norme = norme;
this.ordre = ordre;
}
@Id
@GeneratedValue(strategy = IDENTITY)
@Column(name = "id", unique = true, nullable = false)
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "produit", nullable = false)
public Produit getProduit() {
return this.produit;
}
public void setProduit(Produit produit) {
this.produit = produit;
}
@Column(name = "code", nullable = false, length = 5)
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
@Column(name = "nom", nullable = false, length = 50)
public String getNom() {
return this.nom;
}
public void setNom(String nom) {
this.nom = nom;
}
@Column(name = "abrege", nullable = false, length = 50)
public String getAbrege() {
return this.abrege;
}
public void setAbrege(String abrege) {
this.abrege = abrege;
}
@Column(name = "ecran_lot", nullable = false)
public boolean isEcranLot() {
return this.ecranLot;
}
public void setEcranLot(boolean ecranLot) {
this.ecranLot = ecranLot;
}
@Column(name = "ecran_reception", nullable = false)
public boolean isEcranReception() {
return this.ecranReception;
}
public void setEcranReception(boolean ecranReception) {
this.ecranReception = ecranReception;
}
@Column(name = "etat_lot", nullable = false)
public boolean isEtatLot() {
return this.etatLot;
}
public void setEtatLot(boolean etatLot) {
this.etatLot = etatLot;
}
@Column(name = "etat_reception", nullable = false)
public boolean isEtatReception() {
return this.etatReception;
}
public void setEtatReception(boolean etatReception) {
this.etatReception = etatReception;
}
@Column(name = "formule_calcul", nullable = false, length = 100)
public String getFormuleCalcul() {
return this.formuleCalcul;
}
public void setFormuleCalcul(String formuleCalcul) {
this.formuleCalcul = formuleCalcul;
}
@Column(name = "norme", nullable = false, precision = 12, scale = 0)
public float getNorme() {
return this.norme;
}
public void setNorme(float norme) {
this.norme = norme;
}
@Column(name = "ordre", nullable = false)
public int getOrdre() {
return this.ordre;
}
public void setOrdre(int ordre) {
this.ordre = ordre;
}
}
| [
"[email protected]"
] | |
3fce507bd3db02f429dd692341b417f8baa43be6 | d2cb1f4f186238ed3075c2748552e9325763a1cb | /methods_all/nonstatic_methods/jdk_jfr_AnnotationElement_getTypeId.java | 85d4a28ba72f3a8c14d3601ac13d79e04c584642 | [] | no_license | Adabot1/data | 9e5c64021261bf181b51b4141aab2e2877b9054a | 352b77eaebd8efdb4d343b642c71cdbfec35054e | refs/heads/master | 2020-05-16T14:22:19.491115 | 2019-05-25T04:35:00 | 2019-05-25T04:35:00 | 183,001,929 | 4 | 0 | null | null | null | null | UTF-8 | Java | false | false | 156 | java | class jdk_jfr_AnnotationElement_getTypeId{ public static void function() {jdk.jfr.AnnotationElement obj = new jdk.jfr.AnnotationElement();obj.getTypeId();}} | [
"[email protected]"
] | |
4a2f2004d6d1adf773d2b27b71628af8cfdc298f | eb97ee5d4f19d7bf028ae9a400642a8c644f8fe3 | /tags/2009-05-19/seasar2-2.4.37/seasar2/s2-framework/src/main/java/org/seasar/framework/container/IllegalAutoBindingDefRuntimeException.java | 86653605d8d2bb34b0d6b216a35f471257f333c2 | [
"Apache-2.0"
] | permissive | svn2github/s2container | 54ca27cf0c1200a93e1cb88884eb8226a9be677d | 625adc6c4e1396654a7297d00ec206c077a78696 | refs/heads/master | 2020-06-04T17:15:02.140847 | 2013-08-09T09:38:15 | 2013-08-09T09:38:15 | 10,850,644 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,890 | java | /*
* Copyright 2004-2009 the Seasar Foundation and the Others.
*
* 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.seasar.framework.container;
import org.seasar.framework.exception.SRuntimeException;
/**
* 不正な自動バインディング定義が指定された場合にスローされます。
*
* @author higa
* @author jundu
*
* @see AutoBindingDef
* @see org.seasar.framework.container.assembler.AutoBindingDefFactory#getAutoBindingDef(String)
*/
public class IllegalAutoBindingDefRuntimeException extends SRuntimeException {
private static final long serialVersionUID = 3640106715772309404L;
private String autoBindingName;
/**
* <code>IllegalAutoBindingDefRuntimeException</code>を構築します。
*
* @param autoBindingName
* 指定された不正な自動バインディング定義名
*/
public IllegalAutoBindingDefRuntimeException(String autoBindingName) {
super("ESSR0077", new Object[] { autoBindingName });
this.autoBindingName = autoBindingName;
}
/**
* 例外の原因となった不正な自動バインディング定義名を返します。
*
* @return 自動バインディング定義名
*/
public String getAutoBindingName() {
return autoBindingName;
}
} | [
"koichik@319488c0-e101-0410-93bc-b5e51f62721a"
] | koichik@319488c0-e101-0410-93bc-b5e51f62721a |
b03994ba7cc3e7d07ef6f11d7a4aa21b36813903 | a043cdfb23c828c07f38896f3da2ea541d7a8168 | /src/main/java/com/github/therapi/jsonrpc/ParseException.java | 0b4d0acd9cf555aee6c207a3b46084460a053479 | [
"BSD-3-Clause",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] | permissive | FLASHHAMMER/therapi-json-rpc | 04a53241ec067851c77bd977b017473fa498e163 | 61c89738510cd23fe65e22870b3d79c5a1dc7e47 | refs/heads/main | 2023-03-03T16:51:07.781237 | 2021-02-21T21:57:54 | 2021-02-21T21:57:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 167 | java | package com.github.therapi.jsonrpc;
public class ParseException extends RuntimeException {
public ParseException(Throwable cause) {
super(cause);
}
}
| [
"[email protected]"
] | |
f6c68d1fe9cd468fd72801421bef5eb602a2673f | e1bd32c1705039c3c15fe8f410c97b623e1e26a7 | /app/src/main/java/com/example/GameLobby/FirstScreen.java | b34053cc1bee039452d371407414127795502506 | [] | no_license | ngetan1/Android-Game-Lobby | 72f1a95d244087678883d4ae0a4a28861da2bc6e | 4c0b80b02654af73beada06dc048003a3b079650 | refs/heads/master | 2020-05-03T10:29:30.195100 | 2019-04-19T19:05:04 | 2019-04-19T19:05:04 | 178,580,333 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,523 | java | package com.example.GameLobby;
import android.app.Dialog;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
import com.google.android.gms.appinvite.AppInviteInvitation;
import com.google.android.gms.auth.api.signin.GoogleSignIn;
import com.google.android.gms.auth.api.signin.GoogleSignInOptions;
import com.google.android.gms.tasks.OnCompleteListener;
import com.google.android.gms.tasks.OnFailureListener;
import com.google.android.gms.tasks.OnSuccessListener;
import com.google.android.gms.tasks.Task;
import com.google.firebase.auth.FirebaseAuth;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import com.google.firebase.dynamiclinks.FirebaseDynamicLinks;
import com.google.firebase.dynamiclinks.PendingDynamicLinkData;
import java.util.Random;
public class FirstScreen extends GoogleActivity{
private static final int REQUEST_INVITE = 40 ;
Button hostBtn;
Button joinBtn;
Button signOutButton;
Boolean host = false;
Dialog ThisDialog;
String lobbyNum;
FirebaseDatabase database;
DatabaseReference ref;
TextView error, welcomeTxt;
public void setLobbyNum(String lobbyNum) {
this.lobbyNum = lobbyNum;
}
public String getLobbyNum() {
return lobbyNum;
}
public void setHost(Boolean host) {
this.host = host;
}
public Boolean getHost() {
return host;
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setTitle("Game");
setContentView(R.layout.activity_google);
welcomeTxt = (TextView) findViewById(R.id.welcomeTxt);
hostBtn = (Button) findViewById(R.id.hostBtn);
joinBtn = (Button) findViewById(R.id.joinBtn);
signOutButton = (Button) findViewById(R.id.signOutButton);
signInButton = findViewById(R.id.sign_in_button);
signInButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
signIn();
}
});
GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestIdToken(getString(R.string.default_web_client_id))
.requestEmail()
.build();
mGoogleSignInClient = GoogleSignIn.getClient(this, gso);
mAuthListener = new FirebaseAuth.AuthStateListener() {
@Override
public void onAuthStateChanged(@NonNull FirebaseAuth firebaseAuth) {
if (firebaseAuth.getCurrentUser() != null) {
welcomeTxt.setText("Welcome, " + mAuth.getCurrentUser().getDisplayName());
signInButton.setVisibility(View.GONE);
signOutButton.setVisibility(View.VISIBLE);
}
}
};
signOutButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
FirebaseAuth.getInstance().signOut();
signOut();
}
});
hostBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (!isSignedIn()) {
Toast.makeText(FirstScreen.this, "Not signed in", Toast.LENGTH_SHORT).show();
} else {
setHost(true);
Random rand = new Random();
setLobbyNum(Integer.toString(rand.nextInt(9000) + 1000));
onInviteClicked(getLobbyNum());
}
}
});
joinBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (!isSignedIn()) {
Toast.makeText(FirstScreen.this, "Not signed in", Toast.LENGTH_SHORT).show();
} else {
// signInButton.setVisibility(View.GONE);
// signOutButton.setVisibility(View.VISIBLE);
ThisDialog = new Dialog(FirstScreen.this);
ThisDialog.setTitle("Enter Code");
ThisDialog.setContentView(R.layout.dialog_template);
final EditText codeEntered = (EditText) ThisDialog.findViewById(R.id.code);
Button enterBtn = (Button) ThisDialog.findViewById(R.id.enterBtn);
Button cancelBtn = (Button) ThisDialog.findViewById(R.id.cancelBtn);
error = (TextView) ThisDialog.findViewById(R.id.error);
enterBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
setHost(false);
setLobbyNum(codeEntered.getText().toString());
database = FirebaseDatabase.getInstance();
ref = database.getReference();
ref.child("host").addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
if (dataSnapshot.exists() && dataSnapshot.hasChild(getLobbyNum())) {
if(dataSnapshot.child(getLobbyNum()).child("gameStarted").getValue(Boolean.class) == false) {
if (dataSnapshot.child(getLobbyNum()).child("numPlyrJnd").getValue(Integer.class) < 8) {
Intent intent = new Intent(FirstScreen.this, Lobby.class);
intent.putExtra("lobbyNum", getLobbyNum());
intent.putExtra("host", getHost());
startActivity(intent);
ThisDialog.cancel();
// finish();
} else {
error.setText("Room is currently full. Please host a game");
}
} else {
error.setText("Game already in Session. Please enter another code or host a game");
}
} else {
error.setText("Room not Found. Please try again or host a game");
}
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
}
});
}
});
ThisDialog.show();
cancelBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
ThisDialog.cancel();
}
});
}
}
});
FirebaseDynamicLinks.getInstance()
.getDynamicLink(getIntent())
.addOnSuccessListener(this, new OnSuccessListener<PendingDynamicLinkData>() {
@Override
public void onSuccess(PendingDynamicLinkData pendingDynamicLinkData) {
// Get deep link from result (may be null if no link is found)
Uri deepLink = null;
if (pendingDynamicLinkData != null) {
deepLink = pendingDynamicLinkData.getLink();
}
// Handle the deep link. For example, open the linked
// content, or apply promotional credit to the user's
// account.
// ...
// ...
}
})
.addOnFailureListener(this, new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Log.w("TAG", "getDynamicLink:onFailure", e);
}
});
// ATTENTION: This was auto-generated to handle app links.
Intent appLinkIntent = getIntent();
String appLinkAction = appLinkIntent.getAction();
Uri appLinkData = appLinkIntent.getData();
}
@Override
public void onStart() {
super.onStart();
mAuth.addAuthStateListener(mAuthListener);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
Log.i("On Activity Result", "onActivityResult: requestCode=" + requestCode + ", resultCode=" + resultCode);
if (requestCode == REQUEST_INVITE) {
if (resultCode == RESULT_OK) {
// Get the invitation IDs of all sent messages
String[] ids = AppInviteInvitation.getInvitationIds(resultCode, data);
for (String id : ids) {
Log.d("TAG", "onActivityResult: sent invitation " + id);
}
Intent intent = new Intent(FirstScreen.this, Lobby.class);
intent.putExtra("lobbyNum", getLobbyNum());
intent.putExtra("host", getHost());
startActivity(intent);
// finish();
} else {
// Sending failed or it was canceled, show failure message to the user
// ...
}
}
}
private void onInviteClicked(String lobbyNum) {
Intent intent = new AppInviteInvitation.IntentBuilder("Game Invitation")
.setMessage(mAuth.getCurrentUser().getDisplayName() + " has invited you to the game\n"
+ "Enter code to join game:\n" + lobbyNum)
.build();
startActivityForResult(intent, REQUEST_INVITE);
}
private boolean isSignedIn() {
return GoogleSignIn.getLastSignedInAccount(this) != null;
}
private void signOut() {
mGoogleSignInClient.signOut()
.addOnCompleteListener(this, new OnCompleteListener<Void>() {
@Override
public void onComplete(@NonNull Task<Void> task) {
Toast.makeText(FirstScreen.this, "Signed Out", Toast.LENGTH_SHORT).show();
welcomeTxt.setText("Not Signed In!");
signInButton.setVisibility(View.VISIBLE);
signOutButton.setVisibility(View.GONE);
}
});
}
}
| [
"[email protected]"
] | |
88629df92cb206fad6a34877efe7591a6a9fd294 | eb8a82730c3b004c638bed2c98682722e2863f86 | /mall_learning/mall_003/src/main/java/com/sosimplebox/mall_003/mbg/model/UmsAdminExample.java | 42ec8c7d03076fe689fd837ff1c3cdc6204bb12a | [] | no_license | wendelhuang/learning | 664791b3b6b317b2ebb42b7b8ecec042118b3e87 | c19c5d07426193333ab87e5d324e803b92b83b94 | refs/heads/master | 2022-06-27T18:27:46.017847 | 2021-01-14T12:55:05 | 2021-01-14T12:55:05 | 171,136,008 | 0 | 0 | null | 2022-06-21T04:10:10 | 2019-02-17T15:08:52 | Java | UTF-8 | Java | false | false | 27,050 | java | package com.sosimplebox.mall_003.mbg.model;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class UmsAdminExample {
protected String orderByClause;
protected boolean distinct;
protected List<Criteria> oredCriteria;
public UmsAdminExample() {
oredCriteria = new ArrayList<Criteria>();
}
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
public String getOrderByClause() {
return orderByClause;
}
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
public boolean isDistinct() {
return distinct;
}
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andIdIsNull() {
addCriterion("id is null");
return (Criteria) this;
}
public Criteria andIdIsNotNull() {
addCriterion("id is not null");
return (Criteria) this;
}
public Criteria andIdEqualTo(Long value) {
addCriterion("id =", value, "id");
return (Criteria) this;
}
public Criteria andIdNotEqualTo(Long value) {
addCriterion("id <>", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThan(Long value) {
addCriterion("id >", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThanOrEqualTo(Long value) {
addCriterion("id >=", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThan(Long value) {
addCriterion("id <", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThanOrEqualTo(Long value) {
addCriterion("id <=", value, "id");
return (Criteria) this;
}
public Criteria andIdIn(List<Long> values) {
addCriterion("id in", values, "id");
return (Criteria) this;
}
public Criteria andIdNotIn(List<Long> values) {
addCriterion("id not in", values, "id");
return (Criteria) this;
}
public Criteria andIdBetween(Long value1, Long value2) {
addCriterion("id between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andIdNotBetween(Long value1, Long value2) {
addCriterion("id not between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andUsernameIsNull() {
addCriterion("username is null");
return (Criteria) this;
}
public Criteria andUsernameIsNotNull() {
addCriterion("username is not null");
return (Criteria) this;
}
public Criteria andUsernameEqualTo(String value) {
addCriterion("username =", value, "username");
return (Criteria) this;
}
public Criteria andUsernameNotEqualTo(String value) {
addCriterion("username <>", value, "username");
return (Criteria) this;
}
public Criteria andUsernameGreaterThan(String value) {
addCriterion("username >", value, "username");
return (Criteria) this;
}
public Criteria andUsernameGreaterThanOrEqualTo(String value) {
addCriterion("username >=", value, "username");
return (Criteria) this;
}
public Criteria andUsernameLessThan(String value) {
addCriterion("username <", value, "username");
return (Criteria) this;
}
public Criteria andUsernameLessThanOrEqualTo(String value) {
addCriterion("username <=", value, "username");
return (Criteria) this;
}
public Criteria andUsernameLike(String value) {
addCriterion("username like", value, "username");
return (Criteria) this;
}
public Criteria andUsernameNotLike(String value) {
addCriterion("username not like", value, "username");
return (Criteria) this;
}
public Criteria andUsernameIn(List<String> values) {
addCriterion("username in", values, "username");
return (Criteria) this;
}
public Criteria andUsernameNotIn(List<String> values) {
addCriterion("username not in", values, "username");
return (Criteria) this;
}
public Criteria andUsernameBetween(String value1, String value2) {
addCriterion("username between", value1, value2, "username");
return (Criteria) this;
}
public Criteria andUsernameNotBetween(String value1, String value2) {
addCriterion("username not between", value1, value2, "username");
return (Criteria) this;
}
public Criteria andPasswordIsNull() {
addCriterion("password is null");
return (Criteria) this;
}
public Criteria andPasswordIsNotNull() {
addCriterion("password is not null");
return (Criteria) this;
}
public Criteria andPasswordEqualTo(String value) {
addCriterion("password =", value, "password");
return (Criteria) this;
}
public Criteria andPasswordNotEqualTo(String value) {
addCriterion("password <>", value, "password");
return (Criteria) this;
}
public Criteria andPasswordGreaterThan(String value) {
addCriterion("password >", value, "password");
return (Criteria) this;
}
public Criteria andPasswordGreaterThanOrEqualTo(String value) {
addCriterion("password >=", value, "password");
return (Criteria) this;
}
public Criteria andPasswordLessThan(String value) {
addCriterion("password <", value, "password");
return (Criteria) this;
}
public Criteria andPasswordLessThanOrEqualTo(String value) {
addCriterion("password <=", value, "password");
return (Criteria) this;
}
public Criteria andPasswordLike(String value) {
addCriterion("password like", value, "password");
return (Criteria) this;
}
public Criteria andPasswordNotLike(String value) {
addCriterion("password not like", value, "password");
return (Criteria) this;
}
public Criteria andPasswordIn(List<String> values) {
addCriterion("password in", values, "password");
return (Criteria) this;
}
public Criteria andPasswordNotIn(List<String> values) {
addCriterion("password not in", values, "password");
return (Criteria) this;
}
public Criteria andPasswordBetween(String value1, String value2) {
addCriterion("password between", value1, value2, "password");
return (Criteria) this;
}
public Criteria andPasswordNotBetween(String value1, String value2) {
addCriterion("password not between", value1, value2, "password");
return (Criteria) this;
}
public Criteria andIconIsNull() {
addCriterion("icon is null");
return (Criteria) this;
}
public Criteria andIconIsNotNull() {
addCriterion("icon is not null");
return (Criteria) this;
}
public Criteria andIconEqualTo(String value) {
addCriterion("icon =", value, "icon");
return (Criteria) this;
}
public Criteria andIconNotEqualTo(String value) {
addCriterion("icon <>", value, "icon");
return (Criteria) this;
}
public Criteria andIconGreaterThan(String value) {
addCriterion("icon >", value, "icon");
return (Criteria) this;
}
public Criteria andIconGreaterThanOrEqualTo(String value) {
addCriterion("icon >=", value, "icon");
return (Criteria) this;
}
public Criteria andIconLessThan(String value) {
addCriterion("icon <", value, "icon");
return (Criteria) this;
}
public Criteria andIconLessThanOrEqualTo(String value) {
addCriterion("icon <=", value, "icon");
return (Criteria) this;
}
public Criteria andIconLike(String value) {
addCriterion("icon like", value, "icon");
return (Criteria) this;
}
public Criteria andIconNotLike(String value) {
addCriterion("icon not like", value, "icon");
return (Criteria) this;
}
public Criteria andIconIn(List<String> values) {
addCriterion("icon in", values, "icon");
return (Criteria) this;
}
public Criteria andIconNotIn(List<String> values) {
addCriterion("icon not in", values, "icon");
return (Criteria) this;
}
public Criteria andIconBetween(String value1, String value2) {
addCriterion("icon between", value1, value2, "icon");
return (Criteria) this;
}
public Criteria andIconNotBetween(String value1, String value2) {
addCriterion("icon not between", value1, value2, "icon");
return (Criteria) this;
}
public Criteria andEmailIsNull() {
addCriterion("email is null");
return (Criteria) this;
}
public Criteria andEmailIsNotNull() {
addCriterion("email is not null");
return (Criteria) this;
}
public Criteria andEmailEqualTo(String value) {
addCriterion("email =", value, "email");
return (Criteria) this;
}
public Criteria andEmailNotEqualTo(String value) {
addCriterion("email <>", value, "email");
return (Criteria) this;
}
public Criteria andEmailGreaterThan(String value) {
addCriterion("email >", value, "email");
return (Criteria) this;
}
public Criteria andEmailGreaterThanOrEqualTo(String value) {
addCriterion("email >=", value, "email");
return (Criteria) this;
}
public Criteria andEmailLessThan(String value) {
addCriterion("email <", value, "email");
return (Criteria) this;
}
public Criteria andEmailLessThanOrEqualTo(String value) {
addCriterion("email <=", value, "email");
return (Criteria) this;
}
public Criteria andEmailLike(String value) {
addCriterion("email like", value, "email");
return (Criteria) this;
}
public Criteria andEmailNotLike(String value) {
addCriterion("email not like", value, "email");
return (Criteria) this;
}
public Criteria andEmailIn(List<String> values) {
addCriterion("email in", values, "email");
return (Criteria) this;
}
public Criteria andEmailNotIn(List<String> values) {
addCriterion("email not in", values, "email");
return (Criteria) this;
}
public Criteria andEmailBetween(String value1, String value2) {
addCriterion("email between", value1, value2, "email");
return (Criteria) this;
}
public Criteria andEmailNotBetween(String value1, String value2) {
addCriterion("email not between", value1, value2, "email");
return (Criteria) this;
}
public Criteria andNickNameIsNull() {
addCriterion("nick_name is null");
return (Criteria) this;
}
public Criteria andNickNameIsNotNull() {
addCriterion("nick_name is not null");
return (Criteria) this;
}
public Criteria andNickNameEqualTo(String value) {
addCriterion("nick_name =", value, "nickName");
return (Criteria) this;
}
public Criteria andNickNameNotEqualTo(String value) {
addCriterion("nick_name <>", value, "nickName");
return (Criteria) this;
}
public Criteria andNickNameGreaterThan(String value) {
addCriterion("nick_name >", value, "nickName");
return (Criteria) this;
}
public Criteria andNickNameGreaterThanOrEqualTo(String value) {
addCriterion("nick_name >=", value, "nickName");
return (Criteria) this;
}
public Criteria andNickNameLessThan(String value) {
addCriterion("nick_name <", value, "nickName");
return (Criteria) this;
}
public Criteria andNickNameLessThanOrEqualTo(String value) {
addCriterion("nick_name <=", value, "nickName");
return (Criteria) this;
}
public Criteria andNickNameLike(String value) {
addCriterion("nick_name like", value, "nickName");
return (Criteria) this;
}
public Criteria andNickNameNotLike(String value) {
addCriterion("nick_name not like", value, "nickName");
return (Criteria) this;
}
public Criteria andNickNameIn(List<String> values) {
addCriterion("nick_name in", values, "nickName");
return (Criteria) this;
}
public Criteria andNickNameNotIn(List<String> values) {
addCriterion("nick_name not in", values, "nickName");
return (Criteria) this;
}
public Criteria andNickNameBetween(String value1, String value2) {
addCriterion("nick_name between", value1, value2, "nickName");
return (Criteria) this;
}
public Criteria andNickNameNotBetween(String value1, String value2) {
addCriterion("nick_name not between", value1, value2, "nickName");
return (Criteria) this;
}
public Criteria andNoteIsNull() {
addCriterion("note is null");
return (Criteria) this;
}
public Criteria andNoteIsNotNull() {
addCriterion("note is not null");
return (Criteria) this;
}
public Criteria andNoteEqualTo(String value) {
addCriterion("note =", value, "note");
return (Criteria) this;
}
public Criteria andNoteNotEqualTo(String value) {
addCriterion("note <>", value, "note");
return (Criteria) this;
}
public Criteria andNoteGreaterThan(String value) {
addCriterion("note >", value, "note");
return (Criteria) this;
}
public Criteria andNoteGreaterThanOrEqualTo(String value) {
addCriterion("note >=", value, "note");
return (Criteria) this;
}
public Criteria andNoteLessThan(String value) {
addCriterion("note <", value, "note");
return (Criteria) this;
}
public Criteria andNoteLessThanOrEqualTo(String value) {
addCriterion("note <=", value, "note");
return (Criteria) this;
}
public Criteria andNoteLike(String value) {
addCriterion("note like", value, "note");
return (Criteria) this;
}
public Criteria andNoteNotLike(String value) {
addCriterion("note not like", value, "note");
return (Criteria) this;
}
public Criteria andNoteIn(List<String> values) {
addCriterion("note in", values, "note");
return (Criteria) this;
}
public Criteria andNoteNotIn(List<String> values) {
addCriterion("note not in", values, "note");
return (Criteria) this;
}
public Criteria andNoteBetween(String value1, String value2) {
addCriterion("note between", value1, value2, "note");
return (Criteria) this;
}
public Criteria andNoteNotBetween(String value1, String value2) {
addCriterion("note not between", value1, value2, "note");
return (Criteria) this;
}
public Criteria andCreateTimeIsNull() {
addCriterion("create_time is null");
return (Criteria) this;
}
public Criteria andCreateTimeIsNotNull() {
addCriterion("create_time is not null");
return (Criteria) this;
}
public Criteria andCreateTimeEqualTo(Date value) {
addCriterion("create_time =", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotEqualTo(Date value) {
addCriterion("create_time <>", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThan(Date value) {
addCriterion("create_time >", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
addCriterion("create_time >=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThan(Date value) {
addCriterion("create_time <", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
addCriterion("create_time <=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeIn(List<Date> values) {
addCriterion("create_time in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotIn(List<Date> values) {
addCriterion("create_time not in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeBetween(Date value1, Date value2) {
addCriterion("create_time between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
addCriterion("create_time not between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andLoginTimeIsNull() {
addCriterion("login_time is null");
return (Criteria) this;
}
public Criteria andLoginTimeIsNotNull() {
addCriterion("login_time is not null");
return (Criteria) this;
}
public Criteria andLoginTimeEqualTo(Date value) {
addCriterion("login_time =", value, "loginTime");
return (Criteria) this;
}
public Criteria andLoginTimeNotEqualTo(Date value) {
addCriterion("login_time <>", value, "loginTime");
return (Criteria) this;
}
public Criteria andLoginTimeGreaterThan(Date value) {
addCriterion("login_time >", value, "loginTime");
return (Criteria) this;
}
public Criteria andLoginTimeGreaterThanOrEqualTo(Date value) {
addCriterion("login_time >=", value, "loginTime");
return (Criteria) this;
}
public Criteria andLoginTimeLessThan(Date value) {
addCriterion("login_time <", value, "loginTime");
return (Criteria) this;
}
public Criteria andLoginTimeLessThanOrEqualTo(Date value) {
addCriterion("login_time <=", value, "loginTime");
return (Criteria) this;
}
public Criteria andLoginTimeIn(List<Date> values) {
addCriterion("login_time in", values, "loginTime");
return (Criteria) this;
}
public Criteria andLoginTimeNotIn(List<Date> values) {
addCriterion("login_time not in", values, "loginTime");
return (Criteria) this;
}
public Criteria andLoginTimeBetween(Date value1, Date value2) {
addCriterion("login_time between", value1, value2, "loginTime");
return (Criteria) this;
}
public Criteria andLoginTimeNotBetween(Date value1, Date value2) {
addCriterion("login_time not between", value1, value2, "loginTime");
return (Criteria) this;
}
public Criteria andStatusIsNull() {
addCriterion("status is null");
return (Criteria) this;
}
public Criteria andStatusIsNotNull() {
addCriterion("status is not null");
return (Criteria) this;
}
public Criteria andStatusEqualTo(Integer value) {
addCriterion("status =", value, "status");
return (Criteria) this;
}
public Criteria andStatusNotEqualTo(Integer value) {
addCriterion("status <>", value, "status");
return (Criteria) this;
}
public Criteria andStatusGreaterThan(Integer value) {
addCriterion("status >", value, "status");
return (Criteria) this;
}
public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
addCriterion("status >=", value, "status");
return (Criteria) this;
}
public Criteria andStatusLessThan(Integer value) {
addCriterion("status <", value, "status");
return (Criteria) this;
}
public Criteria andStatusLessThanOrEqualTo(Integer value) {
addCriterion("status <=", value, "status");
return (Criteria) this;
}
public Criteria andStatusIn(List<Integer> values) {
addCriterion("status in", values, "status");
return (Criteria) this;
}
public Criteria andStatusNotIn(List<Integer> values) {
addCriterion("status not in", values, "status");
return (Criteria) this;
}
public Criteria andStatusBetween(Integer value1, Integer value2) {
addCriterion("status between", value1, value2, "status");
return (Criteria) this;
}
public Criteria andStatusNotBetween(Integer value1, Integer value2) {
addCriterion("status not between", value1, value2, "status");
return (Criteria) this;
}
}
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
} | [
"[email protected]"
] | |
2ec145e7040efdf76ffb637f5b477bdfed85bba2 | da96fdc11a55ba5bec0cff3564f68acded854c51 | /src/main/java/org/drip/sequence/functional/IdempotentUnivariateRandom.java | d033f94134f0c7e21c70ecb666c0d3658ee7bbd0 | [
"Apache-2.0"
] | permissive | fairhopeweb/DROP | f1f67118f7f4fce7eedc09ff22e97be96df1e9ca | 6f300961478394e3d00b1621ad59575c2bcec7dd | refs/heads/master | 2023-06-24T12:55:02.919973 | 2021-07-24T23:50:15 | 2021-07-24T23:50:15 | 389,572,649 | 0 | 0 | Apache-2.0 | 2021-07-26T10:00:05 | 2021-07-26T09:05:37 | null | UTF-8 | Java | false | false | 6,535 | java |
package org.drip.sequence.functional;
/*
* -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*/
/*!
* Copyright (C) 2019 Lakshmi Krishnamurthy
* Copyright (C) 2018 Lakshmi Krishnamurthy
* Copyright (C) 2017 Lakshmi Krishnamurthy
* Copyright (C) 2016 Lakshmi Krishnamurthy
* Copyright (C) 2015 Lakshmi Krishnamurthy
*
* This file is part of DROP, an open-source library targeting risk, transaction costs, exposure, margin
* calculations, and portfolio construction within and across fixed income, credit, commodity, equity,
* FX, and structured products.
*
* https://lakshmidrip.github.io/DROP/
*
* DROP is composed of three main modules:
*
* - DROP Analytics Core - https://lakshmidrip.github.io/DROP-Analytics-Core/
* - DROP Portfolio Core - https://lakshmidrip.github.io/DROP-Portfolio-Core/
* - DROP Numerical Core - https://lakshmidrip.github.io/DROP-Numerical-Core/
*
* DROP Analytics Core implements libraries for the following:
* - Fixed Income Analytics
* - Asset Backed Analytics
* - XVA Analytics
* - Exposure and Margin Analytics
*
* DROP Portfolio Core implements libraries for the following:
* - Asset Allocation Analytics
* - Transaction Cost Analytics
*
* DROP Numerical Core implements libraries for the following:
* - Statistical Learning Library
* - Numerical Optimizer Library
* - Machine Learning Library
* - Spline Builder Library
*
* Documentation for DROP is Spread Over:
*
* - Main => https://lakshmidrip.github.io/DROP/
* - Wiki => https://github.com/lakshmiDRIP/DROP/wiki
* - GitHub => https://github.com/lakshmiDRIP/DROP
* - Javadoc => https://lakshmidrip.github.io/DROP/Javadoc/index.html
* - Technical Specifications => https://github.com/lakshmiDRIP/DROP/tree/master/Docs/Internal
* - Release Versions => https://lakshmidrip.github.io/DROP/version.html
* - Community Credits => https://lakshmidrip.github.io/DROP/credits.html
* - Issues Catalog => https://github.com/lakshmiDRIP/DROP/issues
* - JUnit => https://lakshmidrip.github.io/DROP/junit/index.html
* - Jacoco => https://lakshmidrip.github.io/DROP/jacoco/index.html
*
* 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.
*/
/**
* <i>IdempotentUnivariateRandom</i> contains the Implementation of the OffsetIdempotent Objective Function
* dependent on Univariate Random Variable.
*
* <br><br>
* <ul>
* <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/NumericalCore.md">Numerical Core Module</a></li>
* <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/StatisticalLearningLibrary.md">Statistical Learning Library</a></li>
* <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sequence">Sequence</a></li>
* <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sequence/functional">Functional</a></li>
* </ul>
* <br><br>
*
* @author Lakshmi Krishnamurthy
*/
public class IdempotentUnivariateRandom extends org.drip.function.r1tor1.OffsetIdempotent {
private org.drip.measure.continuous.R1Univariate _dist = null;
/**
* IdempotentUnivariateRandom Constructor
*
* @param dblOffset The Idempotent Offset
* @param dist The Underlying Distribution
*
* @throws java.lang.Exception Thrown if the Inputs are invalid
*/
public IdempotentUnivariateRandom (
final double dblOffset,
final org.drip.measure.continuous.R1Univariate dist)
throws java.lang.Exception
{
super (dblOffset);
_dist = dist;
}
/**
* Generate the Function Metrics for the specified Variate Sequence and its corresponding Weight
*
* @param adblVariateSequence The specified Variate Sequence
* @param adblVariateWeight The specified Variate Weight
*
* @return The Function Sequence Metrics
*/
public org.drip.sequence.metrics.SingleSequenceAgnosticMetrics sequenceMetrics (
final double[] adblVariateSequence,
final double[] adblVariateWeight)
{
if (null == adblVariateSequence || null == adblVariateWeight) return null;
int iNumVariate = adblVariateSequence.length;
double[] adblFunctionSequence = new double[iNumVariate];
if (0 == iNumVariate || iNumVariate != adblVariateWeight.length) return null;
try {
for (int i = 0; i < iNumVariate; ++i)
adblFunctionSequence[i] = adblVariateWeight[i] * evaluate (adblVariateSequence[i]);
return new org.drip.sequence.metrics.SingleSequenceAgnosticMetrics (adblFunctionSequence, null);
} catch (java.lang.Exception e) {
e.printStackTrace();
}
return null;
}
/**
* Generate the Function Metrics for the specified Variate Sequence
*
* @param adblVariateSequence The specified Variate Sequence
*
* @return The Function Sequence Metrics
*/
public org.drip.sequence.metrics.SingleSequenceAgnosticMetrics sequenceMetrics (
final double[] adblVariateSequence)
{
if (null == adblVariateSequence) return null;
int iNumVariate = adblVariateSequence.length;
double[] adblVariateWeight = new double[iNumVariate];
for (int i = 0; i < iNumVariate; ++i)
adblVariateWeight[i] = 1.;
return sequenceMetrics (adblVariateSequence, adblVariateWeight);
}
/**
* Generate the Function Metrics using the Underlying Variate Distribution
*
* @return The Function Sequence Metrics
*/
public org.drip.sequence.metrics.SingleSequenceAgnosticMetrics sequenceMetrics()
{
if (null == _dist) return null;
org.drip.numerical.common.Array2D a2DHistogram = _dist.histogram();
return null == a2DHistogram ? null : sequenceMetrics (a2DHistogram.x(), a2DHistogram.y());
}
/**
* Retrieve the Underlying Distribution
*
* @return The Underlying Distribution
*/
public org.drip.measure.continuous.R1Univariate underlyingDistribution()
{
return _dist;
}
}
| [
"[email protected]"
] | |
5d74c729383b468e43d1cf11813768975dc860e3 | b8d8f2461643f49f7acebb112c1339c62c7dde25 | /popgog/java/com/qinnuan/engine/api/UpdateUserPopgog.java | b31d5ec35d249a085e36ee8fed253d94ca2f6020 | [] | no_license | johndpope/firstproject | cf1d387da32016ff4594339a3938e45c867a7c72 | d28bf29c0b7798b8e2e39209adcec708cb0e739b | refs/heads/master | 2021-12-02T16:49:28.902405 | 2013-11-07T01:33:29 | 2013-11-07T01:33:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,260 | java | package com.qinnuan.engine.api;
import com.qinnuan.common.http.HttpMethod;
import com.qinnuan.common.http.RequestType;
@RequestType(type = HttpMethod.POST)
public class UpdateUserPopgog extends AbstractParam {
private final String api="/api/user/update_user_popgog.api";
@Override
public String getApi() {
return api;
}
private String userid; //用户ID
private String deviceidentifyid; //设备ID
private String devicetype; //设备类型 0=ios 1=android
private String popgogid; //爆谷号
public String getUserid() {
return userid;
}
public void setUserid(String userid) {
this.userid = userid;
}
public String getDeviceidentifyid() {
return deviceidentifyid;
}
public void setDeviceidentifyid(String deviceidentifyid) {
this.deviceidentifyid = deviceidentifyid;
}
public String getDevicetype() {
return devicetype;
}
public void setDevicetype(String devicetype) {
this.devicetype = devicetype;
}
public String getPopgogid() {
return popgogid;
}
public void setPopgogid(String popgogid) {
this.popgogid = popgogid;
}
}
| [
"[email protected]"
] | |
24d78f0751d37e538778d6347a25f1d4aca6eed3 | f41aaf353979938a6a3687d7f64b09270533491d | /spring-cloud-framework/app/base/src/main/java/com/markyang/framework/app/base/exception/UploadException.java | 960d6f73d107291b89e5056d43cddceffdcabc0c | [
"Apache-2.0"
] | permissive | 1107186916/framework | 662efdb7cbcb5c5fe13500c7b55d301eeb2ba2da | 273232608f2589ec7e1650063366647e715bfa35 | refs/heads/main | 2023-03-21T13:04:48.138224 | 2021-02-04T12:16:37 | 2021-02-04T12:16:37 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,413 | java | package com.markyang.framework.app.base.exception;
/**
* 上传异常
*
* @author yangchangliang
* @version 1
*/
public class UploadException extends BaseAppException {
/**
* Constructs a new runtime exception with the specified detail message.
* The cause is not initialized, and may subsequently be initialized by a
* call to {@link #initCause}.
*
* @param message the detail message. The detail message is saved for
* later retrieval by the {@link #getMessage()} method.
*/
public UploadException(String message) {
super(message);
}
/**
* Constructs a new runtime exception with the specified detail message and
* cause. <p>Note that the detail message associated with
* {@code cause} is <i>not</i> automatically incorporated in
* this runtime exception's detail message.
*
* @param message the detail message (which is saved for later retrieval
* by the {@link #getMessage()} method).
* @param cause the cause (which is saved for later retrieval by the
* {@link #getCause()} method). (A <tt>null</tt> value is
* permitted, and indicates that the cause is nonexistent or
* unknown.)
* @since 1.4
*/
public UploadException(String message, Throwable cause) {
super(message, cause);
}
}
| [
"[email protected]"
] | |
616976b8a226bc62c81a7e1f8501096dd499d39d | ed7aca6414b9d6896ed468259ab4201a03a50208 | /node_modules/react-native-firebase/android/src/main/java/io/paxet/firebase/admob/RNFirebaseAdMob.java | 87de1d207b4eb3f2704f3da9fcfbbab8bd40a306 | [
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"CC-BY-3.0"
] | permissive | MarcelWepper/PAXET_ReactNative_App | 7e2a2d6828f427c33dfabf0d2d63b76d9ec1a789 | a66a82e4fa38fb7f9f02d34344a9a01fccda4119 | refs/heads/master | 2023-01-14T06:55:48.314172 | 2019-10-17T14:14:57 | 2019-10-17T14:14:57 | 215,230,580 | 1 | 0 | NOASSERTION | 2023-01-04T12:26:29 | 2019-10-15T07:06:53 | JavaScript | UTF-8 | Java | false | false | 3,266 | java | package io.invertase.firebase.admob;
import android.app.Activity;
import android.util.Log;
import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.react.bridge.ReactContextBaseJavaModule;
import com.facebook.react.bridge.ReactMethod;
import com.facebook.react.bridge.ReadableMap;
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.MobileAds;
import java.util.HashMap;
import java.util.Map;
public class RNFirebaseAdMob extends ReactContextBaseJavaModule {
private static final String TAG = "RNFirebaseAdMob";
private HashMap<String, RNFirebaseAdmobInterstitial> interstitials = new HashMap<>();
private HashMap<String, RNFirebaseAdMobRewardedVideo> rewardedVideos = new HashMap<>();
RNFirebaseAdMob(ReactApplicationContext reactContext) {
super(reactContext);
Log.d(TAG, "New instance");
}
ReactApplicationContext getContext() {
return getReactApplicationContext();
}
Activity getActivity() {
return getCurrentActivity();
}
@Override
public String getName() {
return TAG;
}
@ReactMethod
public void initialize(String appId) {
MobileAds.initialize(this.getContext(), appId);
}
@ReactMethod
public void openDebugMenu(String appId) {
MobileAds.openDebugMenu(getActivity(), appId);
}
@ReactMethod
public void interstitialLoadAd(String adUnit, ReadableMap request) {
RNFirebaseAdmobInterstitial interstitial = getOrCreateInterstitial(adUnit);
interstitial.loadAd(RNFirebaseAdMobUtils
.buildRequest(request)
.build());
}
@ReactMethod
public void interstitialShowAd(String adUnit) {
RNFirebaseAdmobInterstitial interstitial = getOrCreateInterstitial(adUnit);
interstitial.show();
}
@ReactMethod
public void rewardedVideoLoadAd(String adUnit, ReadableMap request) {
RNFirebaseAdMobRewardedVideo rewardedVideo = getOrCreateRewardedVideo(adUnit);
rewardedVideo.loadAd(RNFirebaseAdMobUtils
.buildRequest(request)
.build());
}
@ReactMethod
public void rewardedVideoShowAd(String adUnit) {
RNFirebaseAdMobRewardedVideo rewardedVideo = getOrCreateRewardedVideo(adUnit);
rewardedVideo.show();
}
/**
* @param adUnit
* @return
*/
private RNFirebaseAdmobInterstitial getOrCreateInterstitial(String adUnit) {
if (interstitials.containsKey(adUnit)) {
return interstitials.get(adUnit);
}
RNFirebaseAdmobInterstitial interstitial = new RNFirebaseAdmobInterstitial(adUnit, this);
interstitials.put(adUnit, interstitial);
return interstitial;
}
/**
* @param adUnit
* @return
*/
private RNFirebaseAdMobRewardedVideo getOrCreateRewardedVideo(String adUnit) {
if (rewardedVideos.containsKey(adUnit)) {
return rewardedVideos.get(adUnit);
}
RNFirebaseAdMobRewardedVideo rewardedVideo = new RNFirebaseAdMobRewardedVideo(adUnit, this);
rewardedVideos.put(adUnit, rewardedVideo);
return rewardedVideo;
}
@Override
public Map<String, Object> getConstants() {
final Map<String, Object> constants = new HashMap<>();
constants.put("DEVICE_ID_EMULATOR", AdRequest.DEVICE_ID_EMULATOR);
return constants;
}
}
| [
"[email protected]"
] | |
960309879bd690af27b64ccbc644310f493141cd | 9b209ffc099c68549cfb990dfbf2f446d8c8c8bd | /src/week3/Father.java | d513af998ec3b1c408c15ecea81cf193951f3ba4 | [] | no_license | suhasa010/SeleniumCourse | 6313ddc20c4f368814eb2cfd897c282db5ca76ad | ce7680097e8e8f209236fe3c8741eed3a51d8f5d | refs/heads/master | 2022-01-21T09:01:23.521930 | 2019-07-20T13:23:24 | 2019-07-20T13:23:24 | 189,745,887 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 303 | java | package week3;
public class Father extends Grandpa {
int age = 40;
String name = "Teja";
int myFatherage = super.age;
String hobbies = "Driving";
public void Walking() {
System.out.println("Father walking");
}
public void GrandpaWalking() {
super.Walking();
}
}
| [
"[email protected]"
] | |
4d6972293ab5c3e6642c91a0b4506d9aec4267ea | c0eb6af9a3588ca076700213c3f1680f426c3d76 | /trab8pc3_RafaelPadilha/src/main/java/br/com/prog3/aula15/persistence/VeiculoDaoImp.java | 68489f476fbf3243aaaf357bba224236755ed00c | [] | no_license | rafaelpadilha/trabalho8pc3_RafaelPadilha | 790697af8bbf44eceb0a75c4a25eb72d5852ad51 | 43aa180ba281d7cc1a4c16872834b8df4940967e | refs/heads/master | 2021-08-28T02:20:46.628924 | 2017-12-11T02:44:13 | 2017-12-11T02:44:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,808 | java | package br.com.prog3.aula15.persistence;
import java.util.List;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import br.com.prog3.aula15.model.Veiculo;
import br.com.prog3.aula15.util.HibernateUtil;
public class VeiculoDaoImp implements VeiculoDao {
private Session session;
public void incluir(Veiculo veiculo) {
session = null;
try {
SessionFactory sessionFactory = HibernateUtil.getSessionFactory();
session = sessionFactory.openSession();
session.beginTransaction();
session.save(veiculo);
session.getTransaction().commit();
} catch (Exception e) {
if (session != null) {
session.getTransaction().rollback();
}
e.printStackTrace();
} finally {
if (session != null) {
session.close();
}
}
}
public void alterar(Veiculo veiculo) {
session = null;
try {
SessionFactory sessionFactory = HibernateUtil.getSessionFactory();
session = sessionFactory.openSession();
session.beginTransaction();
session.update(veiculo);
session.getTransaction().commit();
} catch (Exception e) {
if (session != null) {
session.getTransaction().rollback();
}
e.printStackTrace();
} finally {
if (session != null) {
session.close();
}
}
}
public void excluir(Veiculo veiculo) {
session = null;
try {
SessionFactory sessionFactory = HibernateUtil.getSessionFactory();
session = sessionFactory.openSession();
session.beginTransaction();
session.delete(veiculo);
session.getTransaction().commit();
} catch (Exception e) {
if (session != null) {
session.getTransaction().rollback();
}
e.printStackTrace();
} finally {
if (session != null) {
session.close();
}
}
}
public List<Veiculo> listarTodos() {
session = null;
List<Veiculo> lista = null;
try {
SessionFactory sessionFactory = HibernateUtil.getSessionFactory();
session = sessionFactory.openSession();
session.beginTransaction();
lista = session.createQuery("from Veiculo").list();
session.getTransaction().commit();
} catch (Exception e) {
if (session != null) {
session.getTransaction().rollback();
}
return lista;
} finally {
if (session != null) {
session.close();
}
}
return lista;
}
public Veiculo buscarPelaPlaca(String placa) {
session = null;
Veiculo veiculo = new Veiculo();
try {
SessionFactory sessionFactory = HibernateUtil.getSessionFactory();
session = sessionFactory.openSession();
session.beginTransaction();
veiculo = (Veiculo) session.load(Veiculo.class, placa);
session.getTransaction().commit();
} catch (Exception e) {
if (session != null) {
session.getTransaction().rollback();
}
return null;
} finally {
if (session != null) {
session.close();
}
}
return veiculo;
}
} | [
"[email protected]"
] | |
e7447e9e78896ac58db8623147c78feaa5ce3db7 | 1d12d34b5bc48fd7b9bbaf90ef581a01f94cb64f | /src/bin/GUIGame.java | 89b668130f9f217fe0185c35ae995e8a660c17f4 | [] | no_license | Sprada-rus/NewWarShips | b183af128b4408dcdfa68352e361622b050f3054 | 86e4ba66ad2757f13c9101c8b41dc64e235501fc | refs/heads/master | 2022-11-27T07:48:36.252480 | 2020-08-04T17:42:34 | 2020-08-04T17:42:34 | 285,054,544 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,994 | java | package bin;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
//import java.io.*;
import java.util.ArrayList;
import java.util.HashMap;
//import java.util.Map;
public class GUIGame {
private JFrame frame;
private String [] alphaLine = new String[] {"а","б","в","г","д"};
private Integer [] numLine = new Integer[] {1,2,3,4,5};
private HashMap<String, Integer> hashMap = new HashMap<String, Integer>();
public static int numRow = 5;
public static int numColumn = 5;
public static int howManyShips = 3;
public JTextField userIn;
public JPanel sendPanel;
public JTextField[][] test = new JTextField[numRow][numColumn];
private int numUsersPunch;
public ArrayList<Ships> shipsArrayList = new ArrayList<Ships>();
private CreateShips helper = new CreateShips();
private JLabel userResult;
public ArrayList<String> historyUserPunched = new ArrayList<String>();
public GUIGame(){
int sizeShip = 1;
for (int i = 0; i < howManyShips; i++){
Ships ships = new Ships();
ships.setName("Корабль" + i);
shipsArrayList.add(ships);
}
for (Ships shipsSet : shipsArrayList){
ArrayList<String> newLocation = helper.placeShips(sizeShip);
sizeShip++;
System.out.println("Проверка локации GUIGame " + newLocation);
shipsSet.setLocationCells(newLocation);
}
for (int i = 0; i < numColumn; i++){
hashMap.put(alphaLine[i], numLine[i]);
}
}
public void start(){
frame = new JFrame("Морской бой");
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
BorderLayout layout = new BorderLayout();
JPanel background = new JPanel(layout);
background.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
GridLayout gridAlpha = new GridLayout(1,numColumn);
gridAlpha.setHgap(100);
JPanel alphaPanel = new JPanel(gridAlpha);
for (int i = 0; i < numColumn; i++){
JLabel labelAlpha = new JLabel(alphaLine[i]);
alphaPanel.add(labelAlpha);
}
alphaPanel.setBorder(BorderFactory.createEmptyBorder(10,80,0,0));
GridLayout gridNum = new GridLayout(numRow,1);
gridAlpha.setVgap(5);
JPanel numPanel = new JPanel(gridNum);
for (int i = 0; i < numColumn; i++){
JLabel labelNum = new JLabel(numLine[i].toString());
labelNum.setSize(2,2);
numPanel.add(labelNum);
}
numPanel.setBorder(BorderFactory.createEmptyBorder(0,10,0,20));
GridLayout gridTextField = new GridLayout(5,5);
gridTextField.setVgap(1);
gridTextField.setHgap(1);
JPanel battleField = new JPanel(gridTextField);
for (int i = 0; i < numRow; i++){
for (int j = 0; j < numColumn; j++) {
JTextField textBattle = new JTextField(10);
textBattle.setEnabled(false);
test[i][j] = textBattle;
battleField.add(textBattle);
}
}
battleField.setBorder(BorderFactory.createEmptyBorder(10,0,10,0));
JLabel inText = new JLabel("Введите свой вариант\t");
userIn = new JTextField(10);
JButton sendButton = new JButton("Отправить");
sendPanel = new JPanel();
sendPanel.add(inText);
sendPanel.add(userIn);
sendPanel.add(sendButton);
sendButton.addActionListener(new SendButtonItmListener());
background.add(BorderLayout.SOUTH, sendPanel);
background.add(BorderLayout.NORTH, alphaPanel);
background.add(BorderLayout.CENTER, battleField);
background.add(BorderLayout.WEST, numPanel);
frame.getContentPane().add(BorderLayout.CENTER, background);
JPanel resultPanel = new JPanel();
userResult = new JLabel();
userResult.setEnabled(false);
userResult.setSize(400, 400);
resultPanel.add(userResult);
frame.getContentPane().add(BorderLayout.SOUTH, resultPanel);
//Меню окна
JMenuBar menuBar = new JMenuBar();
JMenu gameMenu = new JMenu("Игра");
JMenuItem newGameItm = new JMenuItem("Новая Игра");
// JMenuItem saveGameItm = new JMenuItem("Сохранить игру");
// JMenuItem loadGameItm = new JMenuItem("Загрузить игру");
// saveGameItm.addActionListener(new SaveGameItmListener());
// loadGameItm.addActionListener(new LoadGameItmListener());
gameMenu.add(newGameItm);
// gameMenu.add(saveGameItm);
// gameMenu.add(loadGameItm);
menuBar.add(gameMenu);
newGameItm.addActionListener(new NewGameItmListener());
frame.setJMenuBar(menuBar);
//Задаем параметры окна
frame.setVisible(true);
frame.setSize(800,1000);
frame.setResizable(false);
frame.setLocationRelativeTo(null);
}
//
// public void saveNewFile(File nameFileField, File nameFileShips){
// JTextField[][] saveField = new JTextField[numRow][numColumn];
// HashMap<String, String> shipHashMap = new HashMap<String, String>();
//
// for (int i = 0; i < numRow; i++){
// for (int j = 0; j < numColumn; j++) {
// if (test[i][j].getForeground() == Color.RED) {
// saveField[i][j].setForeground(Color.RED);
// } else if (test[i][j].getForeground() == Color.BLACK) {
// saveField[i][j].setForeground(Color.BLACK);
// }
// }
// }
//
// for (int i = 0; i < howManyShips; i++){
// Ships testShips = shipsArrayList.get(i);
//
// for (int j = 0; j < testShips.getCountCells(); j++){
// shipHashMap.putIfAbsent(testShips.getName(), testShips.getLocationCells(j));
// }
//
// }
//
// for (Map.Entry entry : shipHashMap.entrySet()){
// System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue());
// }
//
// try{
// FileOutputStream fosField = new FileOutputStream(new File(String.valueOf(nameFileField)));
// ObjectOutputStream oos = new ObjectOutputStream(fosField);
// oos.writeObject(saveField);
// oos.close();
// FileOutputStream fosShips = new FileOutputStream(new File(String.valueOf(nameFileShips)));
// ObjectOutputStream oosShips = new ObjectOutputStream(fosShips);
// oosShips.writeObject(arrayShips);
// oosShips.close();
// } catch (Exception ex){
// ex.printStackTrace();
// System.out.println("Error save file");
// }
//
// }
//
// public void loadFile(File nameFileField, File nameFileShips){
// JTextField[][] loadField = new JTextField[numRow][numColumn];
// Ships[] arrayShips = new Ships[howManyShips];
//
// frame.setVisible(false);
// GUIGame newGame = new GUIGame();
// newGame.start();
//
// try{
// FileInputStream fisField = new FileInputStream(new File(String.valueOf(nameFileField)));
// ObjectInputStream ois = new ObjectInputStream(fisField);
// loadField = (JTextField[][]) ois.readObject();
// ois.close();
// } catch (Exception ex){
// ex.printStackTrace();
// System.out.println("Error load file");
// }
//
// try {
// FileInputStream fisShips = new FileInputStream(new File(String.valueOf(nameFileShips)));
// ObjectInputStream oisShips = new ObjectInputStream(fisShips);
// arrayShips = (Ships[]) oisShips.readObject();
// oisShips.close();
// } catch (Exception ex){
// ex.printStackTrace();
// }
//
// for (int i = 0; i < numRow; i++){
// for (int j = 0; j < numColumn; j++){
// test[i][j] = loadField[i][j];
// }
// }
//
// for (int i = 0; i < howManyShips; i++){
// shipsArrayList.add(arrayShips[i]);
// }
// }
//Классы слушателей
public class NewGameItmListener implements ActionListener{
public void actionPerformed(ActionEvent actionEvent) {
for (int i = 0; i < numRow; i++){
for (int j = 0; j < numColumn; j++){
test[i][j].setBackground(Color.WHITE);
userResult.setText("");
}
}
frame.setVisible(false);
GUIGame newGame = new GUIGame();
newGame.start();
}
}
//
// public class SaveGameItmListener implements ActionListener{
// public void actionPerformed(ActionEvent actionEvent) {
// File fileName = new File("saveResultWarShip.ser");
// File fileShips = new File("saveShipsWarShip.ser");
// saveNewFile(fileName, fileShips);
// }
// }
//
// public class LoadGameItmListener implements ActionListener{
// public void actionPerformed(ActionEvent actionEvent) {
// File fileName = new File("saveResultWarShip.ser");
// File fileShips = new File("saveShipsWarShip.ser");
// loadFile(fileName, fileShips);
// }
// }
public class SendButtonItmListener implements ActionListener{
public void actionPerformed(ActionEvent actionEvent) {
numUsersPunch++;
String guess = null;
String result = "Мимо";
String firsSym = null;
userResult.setText("");
Color red = new Color(255,36,0);
Color black = new Color(0);
guess = userIn.getText().toLowerCase();
firsSym = String.valueOf(guess.charAt(0));
int numTabColumn = hashMap.get(firsSym) - 1;
int numTabRow = Integer.parseInt(String.valueOf(guess.charAt(1))) - 1;
// System.out.println("numTabColumn " + numTabColumn + " numTabRow " + numTabRow);
for (Ships shipsListTest: shipsArrayList){
result = shipsListTest.checkPunch(guess);
if (result.equals("Попал")){
test[numTabRow][numTabColumn].setBackground(red);
userResult.setForeground(red);
userResult.setText("Ты попал, продолжай!\n");
historyUserPunched.add(userIn.getText());
break;
} else if (result.equals("Потопил")){
shipsArrayList.remove(shipsListTest);
test[numTabRow][numTabColumn].setBackground(red);
howManyShips--;
userResult.setText("Ты потопил корабль, осталось " + howManyShips + "\n");
historyUserPunched.add(userIn.getText());
break;
} else if (result.equals("Мимо") && !historyUserPunched.contains(userIn.getText())){
test[numTabRow][numTabColumn].setBackground(black);
userResult.setText("Мимо, но всё ещё впереди!\n");
} else if (result.equals("Мимо") && historyUserPunched.contains(userIn.getText())){
userResult.setText("Ты видимо промахнулся в кординатах, потому-что, ты уже сюда стрелял");
}
}
if (howManyShips != 0) {
userIn.setText("");
numUsersPunch++;
} else {
System.exit(0);// Дальше будет выпадать окно с результатом игрока
}
}
}
}
| [
"[email protected]"
] | |
423f66fd5fea40f9ce406cf60c15fe4815d31e3e | 5f91ff1cde7f089b8341c7f3ffde63a450553303 | /src/main/java/com/rhcloud/cellcomparator/entity/Characteristic.java | 4396dc7c21949e701f98179fea4aab1952aa8fa8 | [] | no_license | tanidev/CellComparatorAppSwarm | 1315c06dd0f87a65c23c61557f21fd2206c1d9d7 | 3e291dce84d03abb9c4a299ed45e67f0335b43ae | refs/heads/master | 2021-08-22T22:09:59.361016 | 2017-12-01T12:11:57 | 2017-12-01T12:11:57 | 112,616,486 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,325 | java | package com.rhcloud.cellcomparator.entity;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Transient;
@Entity
public class Characteristic {
@Id
@GeneratedValue
private Integer characteristicsId;
@Column(nullable=false)
private String value;
@Column
private String description;
@Enumerated(EnumType.STRING)
@Column(nullable=false)
private CharacteristicsType type;
@ManyToOne
@JoinColumn(nullable=false)
private Smartphone smartphone;
@Transient
private Result result;
/**
* FIX JPA
*/
Characteristic() {
}
/**
* Construtor com campos obrigatórios
*
* @param type
* @param value
*/
public Characteristic(String value, String description, CharacteristicsType type, Smartphone smartphone) {
this.value = value;
this.description = description;
this.type = type;
this.smartphone = smartphone;
}
/**
* @return the characteristicsId
*/
public Integer getCharacteristicsId() {
return characteristicsId;
}
/**
* @param characteristicsId the characteristicsId to set
*/
public void setCharacteristicsId(Integer characteristicsId) {
this.characteristicsId = characteristicsId;
}
/**
* @return the value
*/
public String getValue() {
return value;
}
/**
* @param value the value to set
*/
public void setValue(String value) {
this.value = value;
}
/**
* @return the description
*/
public String getDescription() {
return description;
}
/**
* @param description the description to set
*/
public void setDescription(String description) {
this.description = description;
}
/**
* @return the type
*/
public CharacteristicsType getType() {
return type;
}
/**
* @param type the type to set
*/
public void setType(CharacteristicsType type) {
this.type = type;
}
/**
* @return the smartphone
*/
public Smartphone getSmartphone() {
return smartphone;
}
/**
* @param smartphone the smartphone to set
*/
public void setSmartphone(Smartphone smartphone) {
this.smartphone = smartphone;
}
/**
* @return the result
*/
public Result getResult() {
return result;
}
/**
* @param result the result to set
*/
public void setResult(Result result) {
this.result = result;
}
@Override
public int hashCode() {
int result = 31;
result *= value.hashCode() >>> 2;
result *= type.hashCode() >>> 2;
result *= smartphone.hashCode() >>> 2;
return result;
}
@Override
public boolean equals(Object obj) {
if(obj == this) {
return true;
}
if(!(obj instanceof Characteristic)) {
return false;
}
Characteristic characteristic = (Characteristic) obj;
return characteristic.getValue().equals(value) && characteristic.getType().equals(type) &&
characteristic.getSmartphone().equals(smartphone);
}
@Override
public String toString() {
return "Type=" + type + ", value=" + value;
}
}
| [
"[email protected]"
] | |
755d856029128f5b750c021fa5b088b2a399a706 | 42e72f98c2eeb668fb411569e15a50324d6bbc25 | /src/main/java/leetcode/rank/may30/Ex2.java | 7677d80cddd09827d90972983f625d3ce094f11e | [] | no_license | GONGMING13/algorithm4 | b6173ef6b62baae3b1d3d18fd69c6927c22d6f25 | 9001cac3e77187564634de53955943b3723ba5ab | refs/heads/master | 2023-06-04T04:41:34.833780 | 2021-06-27T05:51:12 | 2021-06-27T05:51:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 753 | java | package leetcode.rank.may30;
/**
* @author yuzhang
* @date 2021/5/30 上午10:35
* TODO
*/
public class Ex2 {
public static void main(String[] args) {
Ex2 ex2 = new Ex2();
System.out.println(ex2.maxValue("99",9));
}
public String maxValue(String n, int x) {
StringBuilder sb = new StringBuilder(n);
int idx = 0;
if (sb.charAt(0) == '-') {
idx++;
while (idx < sb.length() && sb.charAt(idx) - '0' <= x) {
idx++;
}
sb.insert(idx, x);
} else {
while (idx < sb.length() && sb.charAt(idx) - '0' >= x){
idx++;
}
sb.insert(idx, x);
}
return sb.toString();
}
}
| [
"[email protected]"
] | |
f888329b623a82296817f2fc3285c476a30a99f5 | 16a685c4c164834e0d09cf99b878190bc7a28b7e | /src/test/java/common/Common.java | 465cbac70e1193d1071c094a8c3491b53ae4e481 | [
"MIT"
] | permissive | overfullstack/imperative-vs-declarative | e41df8d3fbceb24d1ab4b05b967c23f71e22029f | 1100fafdcb9a30d63371310fc29f3482163da7ec | refs/heads/master | 2023-01-08T16:31:31.308226 | 2021-02-01T10:21:51 | 2021-02-02T09:35:10 | 195,540,163 | 5 | 1 | null | 2022-04-01T12:44:30 | 2019-07-06T13:03:18 | Kotlin | UTF-8 | Java | false | false | 1,326 | java | package common;
import java.util.Arrays;
import java.util.List;
public final class Common {
public static final List<String> TEAM = Arrays.asList(
"Venky Viswanathan",
"Satya", // One word name
"Anshul Rawat",
"Manasa Ranjan Tripathi", // More than 2 word name
"Sivaram Yadala",
"Gopal S Akshintala", // All 3 words separated by more than one space
"Ravi Shankar",
"Manoj Kumar Pendhyala", // Only One word in a 3 word name separated by more than one space
"", // Empty - We are hiring! ;)
"Manikanta Yakkala",
"Muneer Ahmed", // Two words separated by more than one space
"Prateek Sharma",
"Sowmya Tammana ", // last word with one space after last word
"Srinivas Vemula ", // last word with two spaces after last word
"Himanshu Kapoor",
" ", // Just one Space
" ", // Only space characters
null // NULL
);
public static final String DELIMITER = " 🤝 ";
public static final String EXPECTED_RESULT = "Viswanathan 🤝 Satya 🤝 Rawat 🤝 Tripathi 🤝 Yadala 🤝 Akshintala 🤝 Shankar 🤝 Pendhyala 🤝 Yakkala 🤝 Ahmed 🤝 Sharma 🤝 Tammana 🤝 Vemula 🤝 Kapoor";
}
| [
"[email protected]"
] | |
09eb3066617b65e55ee664c067928d26ec0986e0 | e29730971792da0e8a393c0e55018016fa2f880f | /src/main/java/com/example/demo/aop/IHuman.java | 2b97e04810020762a32ae172f3711997b8716dbd | [] | no_license | lthaccount/springboot-demo | d10100ed03a3af0693998053f3bb234d8cf9a934 | 7b597acdedcf01659afe4b5fa5ef7f9b790d7621 | refs/heads/master | 2020-04-04T23:20:52.447749 | 2018-11-19T16:39:50 | 2018-11-19T16:39:50 | 156,355,435 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 93 | java | package com.example.demo.aop;
public interface IHuman {
void eat();
void sleep();
}
| [
"[email protected]"
] | |
a93cf50a5007870ab7d8c071dd925ee16c22f43a | def975309c552d83d63b77db7ade2ad3cb767e9c | /app/src/main/java/com/pranav/gpsupdateservice/MainActivity.java | ea46b2e454e64a01ebc406bdcaa2303e9d4ad1de | [] | no_license | theblackhatmagician/GPSUpdateService | 9850d7b5e83cd98429a6e54f946516aad2196fa5 | 1a461198119086b099692e1d22a400f33bcf40f6 | refs/heads/master | 2022-12-15T01:34:56.781630 | 2020-08-24T21:23:55 | 2020-08-24T21:23:55 | 216,171,852 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,793 | java | package com.pranav.gpsupdateservice;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.ActivityCompat;
import androidx.core.content.ContextCompat;
import android.app.ActivityManager;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
private Button start,stop;
private static final String TAG = "LocationService";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
start = (Button) findViewById(R.id.buttonStart);
stop = (Button) findViewById(R.id.buttonStop);
start.setOnClickListener(this);
stop.setOnClickListener(this);
}
@Override
public void onClick(View view) {
if(view == start){
getLocationPermission();
} else if(view == stop){
stopService(new Intent(this, GPStoFirebaseService.class));
}
}
public void startService(){
if(!isLocationServiceRunning()){
Intent serviceIntent = new Intent(this, GPStoFirebaseService.class);
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O){
MainActivity.this.startForegroundService(serviceIntent);
}else{
startService(serviceIntent);
}
}
}
private boolean isLocationServiceRunning() {
ActivityManager manager = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
for (ActivityManager.RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)){
if("com.pranav.gpsupdateservice.GPStoFirebaseService".equals(service.service.getClassName())) {
Log.d(TAG, "isLocationServiceRunning: location service is already running.");
return true;
}
}
Log.d(TAG, "isLocationServiceRunning: location service is not running.");
return false;
}
private static final int PERMISSIONS_FINE_LOCATIONS = 99;
private void getLocationPermission() {
/*
* Request location permission, so that we can get the location of the
* device. The result of the permission request is handled by a callback,
* onRequestPermissionsResult.
*/
if (ContextCompat.checkSelfPermission(this.getApplicationContext(),
android.Manifest.permission.ACCESS_FINE_LOCATION)
== PackageManager.PERMISSION_GRANTED) {
startService();
} else {
ActivityCompat.requestPermissions(this,
new String[]{android.Manifest.permission.ACCESS_FINE_LOCATION},
PERMISSIONS_FINE_LOCATIONS);
}
}
@Override
public void onRequestPermissionsResult(int requestCode,
@NonNull String permissions[],
@NonNull int[] grantResults) {
switch (requestCode) {
case PERMISSIONS_FINE_LOCATIONS: {
// If request is cancelled, the result arrays are empty.
if (grantResults.length > 0
&& grantResults[0] == PackageManager.PERMISSION_GRANTED) {
startService();
}
else {
Toast.makeText(this, "This App Need Permissions to run", Toast.LENGTH_SHORT).show();
finish();
}
}
}
}
} | [
"[email protected]"
] | |
76737e038c4e7262dbc0cf75136b9e8362bf770d | d74c2ca437a58670dc8bfbf20a3babaecb7d0bea | /SAP_858310_lines/Source - 963k/js.sl.utility.lib/dev/src/_tc~bl~sl~utility/java/com/sap/sl/util/sduread/api/sdufileexception.java | 8e49f0f37119291503c67d806acaf2102ade05f6 | [] | no_license | javafullstackstudens/JAVA_SAP | e848e9e1a101baa4596ff27ce1aedb90e8dfaae8 | f1b826bd8a13d1432e3ddd4845ac752208df4f05 | refs/heads/master | 2023-06-05T20:00:48.946268 | 2021-06-30T10:07:39 | 2021-06-30T10:07:39 | 381,657,064 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 332 | java | package com.sap.sl.util.sduread.api;
/**
* Thrown to indicate that an error concerning an SDU file has occurred.
*/
public abstract class SduFileException extends SduManifestException {
SduFileException(String message) {
super(message);
}
SduFileException(String message, Throwable e) {
super(message,e);
}
}
| [
"[email protected]"
] | |
f800fb42a7d754d5ace8b9a3368f02f65be769a5 | f531f0bf9ffa2ed2a64465a7541819cf7ebf5962 | /src/main/java/com/sample/form/PageForm.java | 5a960bf298081c44a1584c40452ddc9508879160 | [] | no_license | harmeet84/fx-rates | 6a0bb7486aa782ae09e73b66779dff2529e4ae6d | 904c79b7eab411068ad25ef684ca9a8301276b0d | refs/heads/master | 2021-09-19T07:21:58.350361 | 2018-07-24T22:18:49 | 2018-07-24T22:18:49 | 119,369,737 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 431 | java | package com.sample.form;
import org.springframework.stereotype.Component;
@Component("pagarForm")
public class PageForm {
String country;
boolean submitted;
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public boolean isSubmitted() {
return submitted;
}
public void setSubmitted(boolean isSubmitted) {
this.submitted = isSubmitted;
}
} | [
"[email protected]"
] | |
89f5be66ed688303b86d9ce8f20519d73ba9097d | af957480ca447a920dee52e0c90b07bc61f30914 | /java3-6/h3/src/h3/driver.java | 3a5e6dc0d641f5bf97e41c6df0ed0cac3bac979c | [] | no_license | iwtec/java | df56bf066b91339144fc0792d5af7e2c8970b454 | 5eae2f85140c51425eff1ead6847fca050e8df5a | refs/heads/main | 2023-05-11T03:08:32.008881 | 2021-06-03T10:04:27 | 2021-06-03T10:04:27 | 345,124,540 | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 330 | java | package h3;
import java.util.ArrayList;
public class driver {
public static void main(String[] args) {
// TODO 自动生成的方法存根
ProductDao pd=new ProductDao();
ArrayList<Product> pList=pd.inputFromKeyBoard();
Result rs=pd.process(pList);
System.out.println(pd.output(pList, rs));
}
}
| [
"[email protected]"
] | |
91773062815d97837e27be4465439bc8680a3863 | 3f860861a067a9a42cdd9a6f1cd46f4ffb3ff8ef | /app/src/main/java/com/fatchao/gangedrecyclerview/RvAdapter.java | c6ae7f540a5e9dac9ffdd23afe71edbddfae6958 | [] | no_license | AlienChao/GangedRecyclerview-master2 | 322847377691cac3079bc718eedda7adf4df36ca | 2eb5dc4c8a2c784f28f18b3bfb447be5a321e45e | refs/heads/master | 2022-12-24T19:32:56.130537 | 2020-10-13T08:36:00 | 2020-10-13T08:36:00 | 303,639,438 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,391 | java | package com.fatchao.gangedrecyclerview;
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import java.util.List;
@SuppressWarnings("unchecked")
public abstract class RvAdapter<T> extends RecyclerView.Adapter<RvHolder> {
protected List<T> list;
protected Context mContext;
protected RvListener listener;
protected LayoutInflater mInflater;
private RecyclerView mRecyclerView;
public RvAdapter(Context context, List<T> list, RvListener listener) {
mContext = context;
mInflater = LayoutInflater.from(context);
this.list = list;
this.listener = listener;
}
@Override
public RvHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = mInflater.inflate(getLayoutId(viewType), parent, false);
return getHolder(view, viewType);
}
protected abstract int getLayoutId(int viewType);
@Override
public void onBindViewHolder(RvHolder holder, int position) {
holder.bindHolder(list.get(position), position);
}
@Override
public int getItemCount() {
return list.size();
}
@Override
public int getItemViewType(int position) {
return 0;
}
protected abstract RvHolder getHolder(View view, int viewType);
}
| [
"[email protected]"
] | |
8113031faa3c5d7e278057a799178adc27521eda | bf44677a3d1806134653acb6a3548e585028c535 | /src/main/java/com/glacialrush/api/game/obtainable/item/Weapon.java | ccd309bab450879cc89a94fae00c8ce28278da19 | [] | no_license | cyberpwnn/GlacialAPI | 2dd90d1d20aac7ccae157b8578b256992f1c7188 | 8202bb166be0b705cb117ddcde0dec96818381f9 | refs/heads/master | 2021-01-19T09:49:45.162070 | 2016-11-27T22:15:11 | 2016-11-27T22:15:11 | 74,915,598 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,011 | java | package com.glacialrush.api.game.obtainable.item;
import com.glacialrush.api.game.obtainable.Item;
import com.glacialrush.api.game.obtainable.ObtainableBank;
public class Weapon extends Item
{
private WeaponType weaponType;
private WeaponEnclosureType weaponEnclosureType;
private WeaponEffect weaponEffect;
public Weapon(ObtainableBank obtainableBank)
{
super(obtainableBank);
setItemType(ItemType.WEAPON);
setWeaponEffect(WeaponEffect.NONE);
}
public WeaponType getWeaponType()
{
return weaponType;
}
public void setWeaponType(WeaponType weaponType)
{
this.weaponType = weaponType;
}
public WeaponEnclosureType getWeaponEnclosureType()
{
return weaponEnclosureType;
}
public void setWeaponEnclosureType(WeaponEnclosureType weaponEnclosureType)
{
this.weaponEnclosureType = weaponEnclosureType;
}
public WeaponEffect getWeaponEffect()
{
return weaponEffect;
}
public void setWeaponEffect(WeaponEffect weaponEffect)
{
this.weaponEffect = weaponEffect;
}
}
| [
"[email protected]"
] | |
575ef42a460bc8aa69e979fa037b4f9f1b80a8f3 | ddb1a109600a55824b1e3b20f3284fe0acfdf24b | /src/main/java/com/computers/data/Computers.java | b3f70d74c6b8da7a46e1874a817bf42f51867194 | [] | no_license | rupinr/bbtest | 447899c19ee47e2790ee3f61631af6bf3e62c451 | 95ca15615522780ee929715c2560e5d8ba8a98dd | refs/heads/master | 2020-03-25T18:58:25.669826 | 2018-08-09T02:44:52 | 2018-08-09T02:44:52 | 144,053,237 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,136 | java | package com.computers.data;
import com.computers.model.Computer;
import java.util.UUID;
public class Computers {
public static Computer validComputer_1() {
return new Computer.ComputerBuilder()
.withComputerName("TEST_COMPUTER" + UUID.randomUUID().toString().substring(0, 5))
.withIntroduced("1998-10-10")
.withDiscontinued("2010-10-10")
.withCompany("IBM")
.build();
}
public static Computer validComputer_2() {
return new Computer.ComputerBuilder()
.withComputerName("TEST_COMPUTER" + UUID.randomUUID().toString().substring(0, 5))
.withIntroduced("1999-12-11")
.withDiscontinued("2011-05-05")
.withCompany("RCA")
.build();
}
public static Computer invalidIntroducedDate() {
return new Computer.ComputerBuilder()
.withComputerName("TEST_COMPUTER" + UUID.randomUUID().toString().substring(0, 5))
.withIntroduced("1998-99-10")
.withDiscontinued("2010-10-10")
.withCompany("IBM")
.build();
}
public static Computer invalidDiscontinuedDate() {
return new Computer.ComputerBuilder()
.withComputerName("TEST_COMPUTER" + UUID.randomUUID().toString().substring(0, 5))
.withIntroduced("1998-10-10")
.withDiscontinued("2010-99-99")
.withCompany("IBM")
.build();
}
public static Computer invalidComputerName() {
return new Computer.ComputerBuilder()
.withComputerName("")
.withIntroduced("1998-10-10")
.withDiscontinued("2010-10-05")
.withCompany("IBM")
.build();
}
public static Computer allInvalid() {
return new Computer.ComputerBuilder()
.withComputerName("")
.withIntroduced("1999-99-99")
.withDiscontinued("2010-99-99")
.withCompany("IBM")
.build();
}
}
| [
"[email protected]"
] | |
2dd725db4fc7f36f6ba502544b7e58a56a9051ee | 213fae8efd2ecaf46474a617757554f7bfaf1ee3 | /tss-web/src/main/java/com/netcracker/tss/web/router/ActionRouter.java | 977edd5dc7ad1cb8ac5348e72a78517b0810286f | [] | no_license | tss-ta/tss | f151c614b354336bd085fc713ac1a7432a93cbfa | 60add6d6cf0d6f89196a48454528cbdd2c762f6e | refs/heads/master | 2021-01-23T22:10:50.385224 | 2015-05-25T06:27:00 | 2015-05-25T06:27:00 | 33,702,918 | 3 | 4 | null | 2015-05-25T06:27:00 | 2015-04-10T02:02:26 | Java | UTF-8 | Java | false | false | 248 | java | package com.netcracker.tss.web.router;
/**
* Created by Kyrylo Berehovyi on 28/04/2015.
*/
public interface ActionRouter {
Route getRoute(String name);
void addRoute(String name, Route route);
void addRoute(Route route);
}
| [
"[email protected]"
] | |
ddd3e01f8efe548de8b991d487e84f431cea2f8d | c33aec869dac900a293716e9b13ec8acceb7d5a0 | /supermarket/src/java/org/aly/hlx/entity/UserInfo.java | bec26fe42114b6deb06d01fec3dca0594e95c7c1 | [] | no_license | yuanhangs/mvnLesson | b85ff848e59e9494ed9d72a4d6e1a9feafa1575b | 494cd6a39d38aa911220e50b59c43e19c38d3991 | refs/heads/master | 2023-01-22T15:10:39.529418 | 2020-12-03T07:44:16 | 2020-12-03T07:44:16 | 318,114,554 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,037 | java | package org.aly.hlx.entity;
import java.util.Date;
/**
* @ClassName: UserInfo
* @Description: TODO
* @Author: 沈佳程
* @date: 2020/12/2 14:37
* @Version: V1.0
*/
public class UserInfo {
private String userId;
private String userName;
private String passWord;
private Integer sex;
private Date bornDate;
private String userTel;
private String userAddress;
private String typeID;
//实体类对象
private UserType userType;
public UserInfo() {
}
public void setUserType(UserType userType) {
this.userType = userType;
}
//用来登录的构造方法
public UserInfo(String userName, String passWord) {
this.userName = userName;
this.passWord = passWord;
}
//用来新增用户的构造方法
public UserInfo(String userId, String userName, String passWord, Integer sex, Date bornDate, String userTel, String userAddress, String typeID) {
this.userId = userId;
this.userName = userName;
this.passWord = passWord;
this.sex = sex;
this.bornDate = bornDate;
this.userTel = userTel;
this.userAddress = userAddress;
this.typeID = typeID;
}
//构造方法:新增前判断这个用户是否存在
public UserInfo(String userName) {
this.userName = userName;
}
/*
*封装
* */
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassWord() {
return passWord;
}
public void setPassWord(String passWord) {
this.passWord = passWord;
}
public Integer getSex() {
return sex;
}
public void setSex(Integer sex) {
this.sex = sex;
}
public Date getBornDate() {
return bornDate;
}
public void setBornDate(Date bornDate) {
this.bornDate = bornDate;
}
public String getUserTel() {
return userTel;
}
public void setUserTel(String userTel) {
this.userTel = userTel;
}
public String getUserAddress() {
return userAddress;
}
public void setUserAddress(String userAddress) {
this.userAddress = userAddress;
}
public String getTypeID() {
return typeID;
}
public void setTypeID(String typeID) {
this.typeID = typeID;
}
@Override
public String toString() {
return "UserInfo{" +
"userId='" + userId + '\'' +
", userName='" + userName + '\'' +
", passWord='" + passWord + '\'' +
", sex=" + sex +
", bornDate='" + bornDate + '\'' +
", userTel='" + userTel + '\'' +
", userAddress='" + userAddress + '\'' +
", typeID=" + typeID +
'}';
}
}
| [
"[email protected]"
] | |
a7a4358697e36242ade178aca439bbc7812742c6 | 536656cd89e4fa3a92b5dcab28657d60d1d244bd | /base/android/java/src/org/chromium/base/task/SingleThreadTaskRunnerImpl.java | 099b0bf32b20f458f19b299a8bbcbe7fe860f99a | [
"BSD-3-Clause"
] | permissive | ECS-251-W2020/chromium | 79caebf50443f297557d9510620bf8d44a68399a | ac814e85cb870a6b569e184c7a60a70ff3cb19f9 | refs/heads/master | 2022-08-19T17:42:46.887573 | 2020-03-18T06:08:44 | 2020-03-18T06:08:44 | 248,141,336 | 7 | 8 | BSD-3-Clause | 2022-07-06T20:32:48 | 2020-03-18T04:52:18 | null | UTF-8 | Java | false | false | 3,338 | java | // Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.base.task;
import android.annotation.SuppressLint;
import android.os.Build;
import android.os.Handler;
import android.os.Message;
import androidx.annotation.Nullable;
import org.chromium.base.annotations.JNINamespace;
/**
* Implementation of the abstract class {@link SingleThreadTaskRunner}. Before native initialization
* tasks are posted to the {@link java android.os.Handler}, after native initialization they're
* posted to a base::SingleThreadTaskRunner which runs on the same thread.
*/
@JNINamespace("base")
public class SingleThreadTaskRunnerImpl extends TaskRunnerImpl implements SingleThreadTaskRunner {
@Nullable
private final Handler mHandler;
private final boolean mPostTaskAtFrontOfQueue;
/**
* @param handler The backing Handler if any. Note this must run tasks on the
* same thread that the native code runs a task with |traits|.
* If handler is null then tasks won't run until native has
* initialized.
* @param traits The TaskTraits associated with this SingleThreadTaskRunnerImpl.
* @param postTaskAtFrontOfQueue If true, tasks posted to the backing Handler will be posted at
* the front of the queue.
*/
public SingleThreadTaskRunnerImpl(
Handler handler, TaskTraits traits, boolean postTaskAtFrontOfQueue) {
super(traits, "SingleThreadTaskRunnerImpl", TaskRunnerType.SINGLE_THREAD);
mHandler = handler;
mPostTaskAtFrontOfQueue = postTaskAtFrontOfQueue;
}
public SingleThreadTaskRunnerImpl(Handler handler, TaskTraits traits) {
this(handler, traits, false);
}
@Override
public boolean belongsToCurrentThread() {
synchronized (mLock) {
if (mNativeTaskRunnerAndroid != 0)
return TaskRunnerImplJni.get().belongsToCurrentThread(mNativeTaskRunnerAndroid);
}
if (mHandler != null) return mHandler.getLooper().getThread() == Thread.currentThread();
assert (false);
return false;
}
@Override
protected void schedulePreNativeTask() {
// if |mHandler| is null then pre-native task execution is not supported.
if (mHandler == null) {
return;
} else if (mPostTaskAtFrontOfQueue) {
postAtFrontOfQueue();
} else {
mHandler.post(mRunPreNativeTaskClosure);
}
}
@SuppressLint("NewApi")
private void postAtFrontOfQueue() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
// The mHandler.postAtFrontOfQueue() API uses fences which batches messages up per
// frame. We want to bypass that for performance, hence we use async messages where
// possible.
Message message = Message.obtain(mHandler, mRunPreNativeTaskClosure);
message.setAsynchronous(true);
mHandler.sendMessageAtFrontOfQueue(message);
} else {
mHandler.postAtFrontOfQueue(mRunPreNativeTaskClosure);
}
}
}
| [
"[email protected]"
] | |
fd599ca217e376a0e75f4381445af0183c9ec517 | 4027d580e5e26b33b81d6426798f0d2b3cf76891 | /src/dao/ConfigHelpers.java | 094ccbe697fabcd6125a8111d78c66bdc924627f | [] | no_license | sombremachine/JsoupTst | 31780d0108458fd950a528f52ec63ca33e3e3200 | 36590bc7ee62b9756dc55f6f1a35ff52d09051c1 | refs/heads/master | 2020-03-21T16:33:51.834404 | 2018-07-01T17:26:33 | 2018-07-01T17:26:33 | 138,777,715 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,201 | java | package dao;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedHashMap;
public class ConfigHelpers {
public static FullWeatherParserConfig getConfigForeca(){
LinkedHashMap<String, WeatherParserConfig> parameters = new LinkedHashMap<>();
return new FullWeatherParserConfig(parameters);
}
public static FullWeatherParserConfig getConfigGismeteo(){
LinkedHashMap<String, WeatherParserConfig> parameters = new LinkedHashMap<>();
ArrayList<WeatherParserConfig.WPCitem> classList = new ArrayList<>();
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"content"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"wrap"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"flexbox clearfix"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"main"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"column-wrap"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"__frame_sm"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"__frame",2));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget js_widget"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget__body"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget__container"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget__row",2));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget__chart w_temperature-avg"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"chart chart__temperature"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"values"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.num,1)); // номер дня
WeatherParserConfig config = new WeatherParserConfig();
config.setUrl("https://www.gismeteo.ru/weather-moscow-4368/10-days/");
config.setPathItems(classList);
parameters.put("temperature",config);
classList = new ArrayList<>();
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"content"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"wrap"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"flexbox clearfix"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"main"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"column-wrap"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"__frame_sm"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"__frame",6));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget js_widget"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget__body"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget__container"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget__row widget__row_table"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget__item",1)); // номер дня
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.num,1));
config = new WeatherParserConfig();
// config.setUrl("https://www.gismeteo.ru/weather-moscow-4368/10-days/");
config.setPathItems(classList);
parameters.put("humidity",config);
classList = new ArrayList<>();
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"content"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"wrap"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"flexbox clearfix"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"main"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"column-wrap"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"__frame_sm"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"__frame",3));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget js_widget"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget__body"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget__container"));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget__row widget__row_table",1));
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"widget__item",1)); // номер дня
classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"w_wind"));
// classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"w_wind__warning w_wind__warning_"));
// classList.add(new WeatherParserConfig.WPCitem(WeatherParserConfig.ParseType.className,"w_wind__bg"));
config = new WeatherParserConfig();
// config.setUrl(null);
config.setPathItems(classList);
parameters.put("windStrength",config);
return new FullWeatherParserConfig(parameters);
}
}
| [
"[email protected]"
] | |
51b12b8b87ed5b6d8892be6d4b9f61a1c9fba76a | 3ae5cbbd4dd2b510023058ba515df71da96a36e5 | /src/edu/nyu/cs/cs2580/Query.java | 88e29d41f3ceba414fca7f140562b06c0fb71bc0 | [] | no_license | navindian/RealtimeSearch | 4ff6bb53f280d9bf41829ae07bf05ee28580038a | e9647c8b760666d79e97babd322577465506826f | refs/heads/master | 2021-01-18T03:30:58.369791 | 2013-05-05T21:28:20 | 2013-05-05T21:28:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 773 | java | package edu.nyu.cs.cs2580;
import java.util.Scanner;
import java.util.Vector;
/**
* Representation of a user query.
*
* In HW1: instructors provide this simple implementation.
*
* In HW2: students must implement {@link QueryPhrase} to handle phrases.
*
* @author congyu
* @auhtor fdiaz
*/
public class Query {
public String _query = null;
public Vector<String> _tokens = new Vector<String>();
private boolean isProcessed = false;
public Query(String query) {
_query = query.trim();
}
public void processQuery() {
if (_query == null) {
return;
}
if (isProcessed) {
return;
}
Scanner s = new Scanner(_query);
while (s.hasNext()) {
_tokens.add(Utilities.getStemmed(s.next()).get(0));
}
s.close();
isProcessed = true;
}
}
| [
"[email protected]"
] | |
55001fcb314f90755a9e3d7bfd4a26fba53f4f31 | e23d7b03f195b97b757175495a2ed8dbfe49d10d | /latte-core/src/main/java/com/donghuang/latte/wechat/templates/AppRegisterTemplate.java | a45e4b257aa5f1f1bf18aef547750aa4a220c5bc | [] | no_license | zhaoxuning233/FastFrame | b7e565ee4e4923ecc217a68da8ae0308d2dfd2ed | 7cd29cf866f0c5d0d736ec02fc837853fa5031b7 | refs/heads/master | 2020-03-23T05:02:23.275386 | 2018-08-08T14:26:02 | 2018-08-08T14:26:02 | 141,120,909 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 451 | java | package com.donghuang.latte.wechat.templates;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import com.donghuang.latte.activities.ProxyActivity;
import com.donghuang.latte.delegates.LatteDelegate;
/**
* Created by 赵旭宁 on 2018/7/23.
*/
public class AppRegisterTemplate extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
}
}
| [
"[email protected]"
] | |
53dfb6c28b9f45fd5d13fd131987f39765a30990 | 7c27c172d66f3ae4c8924e32b4158b8454fcfaa6 | /RpcModule/src/main/java/Client/SocketClientProxy.java | b72f977d72f9d2fa6e6136eb9e9ec7007b154419 | [] | no_license | erzhen1379/RpcDemo | 4984d96d841e6e5ebe9fa0b4486ee8c05fe86f66 | 52ac371102a205985f5f3e3fc95388349390b153 | refs/heads/master | 2022-12-25T08:02:39.622689 | 2020-05-28T15:57:47 | 2020-05-28T15:57:47 | 267,613,797 | 0 | 0 | null | 2020-10-13T22:23:25 | 2020-05-28T14:35:44 | Java | UTF-8 | Java | false | false | 1,023 | java | package Client;
import Entity.Request;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
/**
* 动态代理
*/
public class SocketClientProxy {
private socketClient sock = new socketClient();
public <T> T getProxy(Class<T> clazz) {
return (T) Proxy.newProxyInstance(clazz.getClassLoader(),
new Class<?>[]{clazz}, new InvocationHandler() {
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
Request request = new Request();
request.setClassName(method.getDeclaringClass().getName());
request.setMethodName(method.getName());
request.setParamTypes(method.getParameterTypes());
request.setParams(args);
return sock.invoke(request, "127.0.0.1", 12000);
}
});
}
}
| [
"[email protected]"
] | |
326e5ee2b2657aed4bfb899cfc000b395d611e0f | 647ec12ce50f06e7380fdbfb5b71e9e2d1ac03b4 | /com.tencent.mm/classes.jar/com/tencent/mapsdk/internal/nu.java | a77538fc74cbfb6098314c1354ccb4453f0e9f7d | [] | no_license | tsuzcx/qq_apk | 0d5e792c3c7351ab781957bac465c55c505caf61 | afe46ef5640d0ba6850cdefd3c11badbd725a3f6 | refs/heads/main | 2022-07-02T10:32:11.651957 | 2022-02-01T12:41:38 | 2022-02-01T12:41:38 | 453,860,108 | 36 | 9 | null | 2022-01-31T09:46:26 | 2022-01-31T02:43:22 | Java | UTF-8 | Java | false | false | 290 | java | package com.tencent.mapsdk.internal;
public abstract interface nu
{
public abstract boolean g_();
}
/* Location: L:\local\mybackup\temp\qq_apk\com.tencent.mm\classes11.jar
* Qualified Name: com.tencent.mapsdk.internal.nu
* JD-Core Version: 0.7.0.1
*/ | [
"[email protected]"
] | |
c629730bef07efbd5e0f1f00a36cb0df6cb596ae | 6760102ecbe50430c3dbd1c76dad545ea22ab228 | /Collector-master/Collector-master/app/src/main/java/com/tang/dst/collector/tools/RecyclerViewAdapter.java | 3aeb770851025f30ea326696d9a70cbe0bc75fbd | [] | no_license | JSK520/recommendation-engine | 1a7d827fd072d44c966478506e326c24179da1a0 | 2857268820427ef79ca20957769e139f6fbdd921 | refs/heads/master | 2021-06-05T20:33:02.675143 | 2019-09-22T03:15:29 | 2019-09-22T03:15:29 | 96,382,623 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,986 | java | package com.tang.dst.collector.tools;
/**
* Created by D.S.T on 16/12/1.
*/
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.RecyclerView.ViewHolder;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CheckBox;
import android.widget.ImageButton;
import android.widget.LinearLayout;
import android.widget.TextView;
import com.tang.dst.collector.R;
import com.tang.dst.collector.database.SqlOperator;
import com.tang.dst.collector.entry.Collection;
import com.tang.dst.collector.views.activity.DetailContent;
import java.util.List;
public class RecyclerViewAdapter extends RecyclerView.Adapter<RecyclerViewAdapter.MyViewHolder> {
private List<Collection> mCol;
private Activity mContext;
private LayoutInflater inflater;
private RecyclerView mData;
public interface OnItemClickListener {
void onItemClick(View view, int position);
}
public RecyclerViewAdapter(Activity context, List<Collection> collection) {
this.mContext = context;
this.mCol = collection;
inflater = LayoutInflater.from(mContext);
}
@Override
public int getItemCount() {
return mCol.size();
}
//填充onCreateViewHolder方法返回的holder中的控件
@Override
public void onBindViewHolder(final MyViewHolder holder, final int position) {
holder.title.setText(mCol.get(position).getTitle());
holder.content.setText(mCol.get(position).getContent());
holder.time.setText(mCol.get(position).getTime());
if (mListener != null) {
holder.itemView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
mListener.onItemClick(holder.itemView, position);
}
});
}
}
@Override
public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = inflater.inflate(R.layout.item_list, parent, false);
MyViewHolder holder = new MyViewHolder(view, mContext);
return holder;
}
private OnItemClickListener mListener;
public void setOnItemClickListener(OnItemClickListener listener) {
this.mListener = listener;
}
//ViewHolder
class MyViewHolder extends ViewHolder implements View.OnClickListener,View.OnLongClickListener {
public LinearLayout page;
public TextView title, content, time;
public ImageButton shareBtn;
public CheckBox mymenu;
public MyViewHolder(View view, Activity activity) {
super(view);
ViewInit(view);
}
private void ViewInit(View view) {
page = (LinearLayout) view.findViewById(R.id.mypage);
title = (TextView) view.findViewById(R.id.mytitle);
content = (TextView) view.findViewById(R.id.mycontent);
time = (TextView) view.findViewById(R.id.the_time);
shareBtn = (ImageButton) view.findViewById(R.id.shareBtn);
mymenu = (CheckBox) view.findViewById(R.id.mymenu);
page.setOnClickListener(this);
shareBtn.setOnClickListener(this);
mymenu.setOnClickListener(this);
page.setOnLongClickListener(this);
}
@Override
public void onClick(View view) {
final SqlOperator sqlop = null;
final int position = getPosition();
switch (view.getId()) {
case R.id.mypage:
Intent intent = new Intent(mContext, DetailContent.class);
Bundle bundle = new Bundle();
bundle.putInt("id", mCol.get(position).getId());
bundle.putString("title", mCol.get(position).getTitle());
bundle.putString("content", mCol.get(position).getContent());
bundle.putString("time", mCol.get(position).getTime());
bundle.putInt("isfavor", mCol.get(position).getIsfavor());
intent.putExtras(bundle);
mContext.startActivity(intent);
break;
case R.id.shareBtn:
intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "标题:" + mCol.get(position).getTitle() + "\n" + "内容:" + mCol.get(position).getContent());
mContext.startActivity(intent);
break;
case R.id.mymenu:
if (mymenu.isChecked()) {
mymenu.setBackgroundResource(R.mipmap.arrow_down);
content.setMaxLines(content.getText().length());
} else {
mymenu.setBackgroundResource(R.mipmap.right);
content.setMaxLines(4);
}
page.invalidate();
break;
default:
break;
}
}
@Override
public boolean onLongClick(View view) {
switch(view.getId()){
case R.id.mypage:
Utils.test(mContext,content);
break;
default:
break;
}
return true;
}
}
}
/*PopupWindow 弹窗*/
/*View v = mContext.getLayoutInflater().inflate(R.layout.my_menu,null);
final PopupWindow pw = new PopupWindow(v, ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.WRAP_CONTENT,true);
pw.getContentView().measure(View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED);
pw.setTouchable(true);
pw.setOutsideTouchable(true);
pw.setBackgroundDrawable(new BitmapDrawable(mContext.getResources(),(Bitmap)null));
backgroundAlpha(0.5f);
pw.setOnDismissListener(new PopupWindow.OnDismissListener() {
@Override
public void onDismiss() {
backgroundAlpha(1.0f);
}
});
Button delete = (Button) v.findViewById(R.id.mydel);
delete.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
new SqlOperator(mContext).delete(mCol.get(position).getId());
Data();
notifyDataSetChanged();
pw.dismiss();
}
});
pw.showAtLocation(mymenu,Gravity.CENTER,0,0);*/ | [
"[email protected]"
] | |
7002a1fadcaa99de17f30ab066fa5c510c4083a1 | 20ff54a83d8335d067d6ab82f351cf40d627af74 | /app/src/main/java/com/sfit/gwk/helloworldandroid/ArticleFragment.java | 7f7381b8aebd9644fe4888f75ba47829a2949d81 | [
"Unlicense"
] | permissive | cn-ansonkai/androidhellworldrepo | c8079ad6ae115e87b466ffab962388ee0c081224 | c41c7fa660d7b9bff2a747e3e8d67e2ed0bcc695 | refs/heads/master | 2020-09-22T14:24:49.257918 | 2016-09-08T09:29:07 | 2016-09-08T09:29:07 | 67,101,430 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,382 | java | package com.sfit.gwk.helloworldandroid;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
/**
* A simple {@link Fragment} subclass.
* Use the {@link ArticleFragment#newInstance} factory method to
* create an instance of this fragment.
*/
public class ArticleFragment extends Fragment {
public final static String ARG_POSITION_KEY = "com.sfit.gwk.POSITION";
protected int mCurrentSelectedPosition = -1;
/**
* Use this factory method to create a new instance of
* this fragment using the provided parameters.
*
* @return A new instance of fragment ArticleFragment.
*/
public static ArticleFragment newInstance() {
ArticleFragment fragment = new ArticleFragment();
return fragment;
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
if(savedInstanceState != null) {
mCurrentSelectedPosition = savedInstanceState.getInt(ARG_POSITION_KEY);
}
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_article, container, false);
}
@Override
public void onStart() {
super.onStart();
// During startup, check if there are arguments passed to the fragment.
// onStart is a good place to do this because the layout has already been
// applied to the fragment at this point so we can safely call the method
// below that sets the article text.
Bundle args = getArguments();
if (args != null) {
updateArticleView(args.getInt(ARG_POSITION_KEY));
} else if (mCurrentSelectedPosition != -1) {
//pos has been set during instantiation
updateArticleView(mCurrentSelectedPosition);
}
}
public void updateArticleView(int pos) {
TextView artcleView = (TextView)getActivity().findViewById(R.id.article_text_view);
artcleView.setText(Ipsum.Articles[pos]);
mCurrentSelectedPosition = pos;
}
@Override
public void onSaveInstanceState(Bundle pstate) {
super.onSaveInstanceState(pstate);
pstate.putInt(ARG_POSITION_KEY, mCurrentSelectedPosition);
}
}
| [
"[email protected]"
] | |
8d552cc94020a6d9d0c970e834bc17449bdcb9ef | 4e1c8e51aa20cfe93e0f933a2935209550e8b7ed | /src/main/java/com/smartNodeProtocol/core/dao/model/AbstractBaseElement.java | 1c1a65b9c517fe85bee1d990539cc3a314a9cf35 | [
"MIT"
] | permissive | samarthgupta3/snop-coredev | 1c01db1d151be5fd4e7c3a545a032489f054b333 | e976472cda7875021d1b2c426fba8aa3e208bff1 | refs/heads/master | 2021-07-14T06:27:50.775867 | 2017-10-18T14:26:00 | 2017-10-18T14:26:00 | 107,418,550 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 932 | java | package com.smartNodeProtocol.core.dao.model;
import com.smartNodeProtocol.core.structure.Element;
import com.smartNodeProtocol.core.structure.enums.ElementType;
/**
* Created by Samarth on 02-08-2017.
*/
public abstract class AbstractBaseElement implements Element {
private static final long serialVersionUID = 1L;
protected Long id;
protected Integer versionNo;
public AbstractBaseElement() {
super();
}
public AbstractBaseElement(Long id, Integer versionNo) {
super();
this.id = id;
this.versionNo = versionNo;
}
public ElementType getElementType() {
return null;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Integer getVersionNo() {
return versionNo;
}
public void setVersionNo(Integer versionNo) {
this.versionNo = versionNo;
}
}
| [
"[email protected]"
] | |
47fbd2acd989994f25688c65c68afdea4c8c601b | d09ad565dfc13284449c260863c1d4d5830cdd4e | /src/main/java/com/example/employeemanagement/controller/UserController.java | 45c4e34ff0daff4618b148b91706a926fc1df462 | [] | no_license | saiventuri/EmployeeManagement | fed3427c3fceef96fd02c6d41e590723ee8918bc | 87900bfb87187367b331cfa95ba59724433df669 | refs/heads/master | 2023-07-18T01:54:47.090167 | 2021-08-29T07:37:37 | 2021-08-29T07:37:37 | 399,063,039 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 707 | java | package com.example.employeemanagement.controller;
import com.example.employeemanagement.model.User;
import com.example.employeemanagement.model.UserRequest;
import com.example.employeemanagement.model.UserResponse;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@RequestMapping("/user")
public interface UserController {
@PostMapping("/save")
ResponseEntity<Long> saveUser(@RequestBody User user);
@PostMapping("/login")
ResponseEntity<UserResponse> loginUser(@RequestBody UserRequest userRequest);
}
| [
"[email protected]"
] | |
9f3fb12c93f744b0c04410da31a4c9d912de0c49 | 438a25ee46966edfd464281ecde204d34f68423e | /bhlkmt/src/main/java/com/teambh/bhlkmt/dao/WarehouseDetailsDAO.java | d09ff603b9189c211a6e2f255ba377fa24dc7659 | [] | no_license | xacthom/bhlkmt | 4788f024c37240463bde8f8d78fa048000604327 | 9af24c03c981fac91502c69d9492ecd50323715d | refs/heads/master | 2021-01-23T12:58:38.659528 | 2017-06-08T16:32:11 | 2017-06-08T16:32:11 | 93,216,534 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 427 | java | package com.teambh.bhlkmt.dao;
import java.util.List;
import com.teambh.bhlkmt.entity.WarehouseDetails;
public interface WarehouseDetailsDAO {
public void persist(WarehouseDetails transientInstance);
public void remove(WarehouseDetails persistentInstance);
public WarehouseDetails merge(WarehouseDetails detachedInstance);
public WarehouseDetails findById(int id);
public List<WarehouseDetails> fetchAll();
}
| [
"[email protected]"
] | |
18395a9352e48494e5563039535cb011eafc5fe3 | df3e71ea7252eb4417646b68d78e4edb22e029fa | /CarFinder_Xamarin/CarFinder_Xamarin.Android/obj/Debug/android/android/support/transition/R.java | 2258e2489bdedcbbb91b7c2ce129c79418b66412 | [] | no_license | ryanchapman24/CarFinder_Xamarin | cf9c58d0671d6049f9b5459120843c3ef77365c1 | b0e12034efac04ddb17fdf0587278268ae6e548e | refs/heads/master | 2021-08-31T01:52:11.933087 | 2017-12-20T04:47:22 | 2017-12-20T04:47:22 | 114,843,941 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 663,818 | 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.transition;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f040000;
public static final int abc_fade_out=0x7f040001;
public static final int abc_grow_fade_in_from_bottom=0x7f040002;
public static final int abc_popup_enter=0x7f040003;
public static final int abc_popup_exit=0x7f040004;
public static final int abc_shrink_fade_out_from_bottom=0x7f040005;
public static final int abc_slide_in_bottom=0x7f040006;
public static final int abc_slide_in_top=0x7f040007;
public static final int abc_slide_out_bottom=0x7f040008;
public static final int abc_slide_out_top=0x7f040009;
public static final int design_bottom_sheet_slide_in=0x7f04000a;
public static final int design_bottom_sheet_slide_out=0x7f04000b;
public static final int design_fab_in=0x7f04000c;
public static final int design_fab_out=0x7f04000d;
public static final int design_snackbar_in=0x7f04000e;
public static final int design_snackbar_out=0x7f04000f;
}
public static final class animator {
public static final int design_appbar_state_list_animator=0x7f050000;
}
public static final class attr {
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarDivider=0x7f01005f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarItemBackground=0x7f010060;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarPopupTheme=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>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int actionBarSize=0x7f01005e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarSplitStyle=0x7f01005b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarStyle=0x7f01005a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f010055;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabStyle=0x7f010054;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=0x7f010056;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTheme=0x7f01005c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarWidgetTheme=0x7f01005d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionButtonStyle=0x7f01007a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionDropDownStyle=0x7f010076;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionLayout=0x7f0100cc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionMenuTextAppearance=0x7f010061;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int actionMenuTextColor=0x7f010062;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeBackground=0x7f010065;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=0x7f010064;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseDrawable=0x7f010067;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCopyDrawable=0x7f010069;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCutDrawable=0x7f010068;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeFindDrawable=0x7f01006d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePasteDrawable=0x7f01006a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePopupWindowStyle=0x7f01006f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=0x7f01006b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeShareDrawable=0x7f01006c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSplitBackground=0x7f010066;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeStyle=0x7f010063;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeWebSearchDrawable=0x7f01006e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=0x7f010057;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowMenuStyle=0x7f010058;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionProviderClass=0x7f0100ce;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionViewClass=0x7f0100cd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int activityChooserViewStyle=0x7f010082;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ahBarColor=0x7f010158;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ahBarLength=0x7f010160;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ahBarWidth=0x7f01015f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ahCircleColor=0x7f01015d;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ahDelayMillis=0x7f01015c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ahRadius=0x7f01015e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ahRimColor=0x7f010159;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ahRimWidth=0x7f01015a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ahSpinSpeed=0x7f01015b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ahText=0x7f010155;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ahTextColor=0x7f010156;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ahTextSize=0x7f010157;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogButtonGroupStyle=0x7f0100a7;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alertDialogCenterButtons=0x7f0100a8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogStyle=0x7f0100a6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogTheme=0x7f0100a9;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int allowStacking=0x7f0100bc;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alpha=0x7f0100bd;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowHeadLength=0x7f0100c4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowShaftLength=0x7f0100c5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=0x7f0100ae;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int background=0x7f010028;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundSplit=0x7f01002a;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundStacked=0x7f010029;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int backgroundTint=0x7f010101;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int backgroundTintMode=0x7f010102;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int barLength=0x7f0100c6;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_autoHide=0x7f01012c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_hideable=0x7f010109;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_overlapTop=0x7f010135;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
*/
public static final int behavior_peekHeight=0x7f010108;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_skipCollapsed=0x7f01010a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int borderWidth=0x7f01012a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int borderlessButtonStyle=0x7f01007f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetDialogTheme=0x7f010124;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetStyle=0x7f010125;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarButtonStyle=0x7f01007c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNegativeButtonStyle=0x7f0100ac;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNeutralButtonStyle=0x7f0100ad;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarPositiveButtonStyle=0x7f0100ab;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarStyle=0x7f01007b;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
*/
public static final int buttonGravity=0x7f0100f6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonPanelSideLayout=0x7f01003d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyle=0x7f0100af;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyleSmall=0x7f0100b0;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int buttonTint=0x7f0100be;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int buttonTintMode=0x7f0100bf;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardBackgroundColor=0x7f010011;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardCornerRadius=0x7f010012;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardElevation=0x7f010013;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardMaxElevation=0x7f010014;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardPreventCornerOverlap=0x7f010016;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardUseCompatPadding=0x7f010015;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkboxStyle=0x7f0100b1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkedTextViewStyle=0x7f0100b2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeIcon=0x7f0100d9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeItemLayout=0x7f01003a;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int collapseContentDescription=0x7f0100f8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapseIcon=0x7f0100f7;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int collapsedTitleGravity=0x7f010117;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapsedTitleTextAppearance=0x7f010111;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int color=0x7f0100c0;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorAccent=0x7f01009e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorBackgroundFloating=0x7f0100a5;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorButtonNormal=0x7f0100a2;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlActivated=0x7f0100a0;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlHighlight=0x7f0100a1;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlNormal=0x7f01009f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimary=0x7f01009c;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimaryDark=0x7f01009d;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorSwitchThumbNormal=0x7f0100a3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int commitIcon=0x7f0100de;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEnd=0x7f010033;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEndWithActions=0x7f010037;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetLeft=0x7f010034;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetRight=0x7f010035;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStart=0x7f010032;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStartWithNavigation=0x7f010036;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPadding=0x7f010017;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingBottom=0x7f01001b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingLeft=0x7f010018;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingRight=0x7f010019;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingTop=0x7f01001a;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentScrim=0x7f010112;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int controlBackground=0x7f0100a4;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterEnabled=0x7f01014b;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterMaxLength=0x7f01014c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterOverflowTextAppearance=0x7f01014e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterTextAppearance=0x7f01014d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int customNavigationLayout=0x7f01002b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int defaultQueryHint=0x7f0100d8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dialogPreferredPadding=0x7f010074;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dialogTheme=0x7f010073;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
*/
public static final int displayOptions=0x7f010021;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int divider=0x7f010027;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerHorizontal=0x7f010081;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dividerPadding=0x7f0100ca;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerVertical=0x7f010080;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int drawableSize=0x7f0100c2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int drawerArrowStyle=0x7f01001c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dropDownListViewStyle=0x7f010093;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dropdownListPreferredItemHeight=0x7f010077;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextBackground=0x7f010088;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int editTextColor=0x7f010087;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextStyle=0x7f0100b3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int elevation=0x7f010038;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int errorEnabled=0x7f010149;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int errorTextAppearance=0x7f01014a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f01003c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expanded=0x7f010103;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int expandedTitleGravity=0x7f010118;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMargin=0x7f01010b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginBottom=0x7f01010f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginEnd=0x7f01010e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginStart=0x7f01010c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginTop=0x7f01010d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandedTitleTextAppearance=0x7f010110;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int externalRouteEnabledDrawable=0x7f010010;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fabSize=0x7f010128;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int foregroundInsidePadding=0x7f01012d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int gapBetweenBars=0x7f0100c3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int goIcon=0x7f0100da;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int headerLayout=0x7f010133;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int height=0x7f01001d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hideOnContentScroll=0x7f010031;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintAnimationEnabled=0x7f01014f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintEnabled=0x7f010148;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int hintTextAppearance=0x7f010147;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeAsUpIndicator=0x7f010079;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeLayout=0x7f01002c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int icon=0x7f010025;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int iconifiedByDefault=0x7f0100d6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int imageButtonStyle=0x7f010089;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int indeterminateProgressStyle=0x7f01002e;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int initialActivityCount=0x7f01003b;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int insetForeground=0x7f010134;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int isLightTheme=0x7f01001e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemBackground=0x7f010131;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemIconTint=0x7f01012f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemPadding=0x7f010030;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemTextAppearance=0x7f010132;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemTextColor=0x7f010130;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int keylines=0x7f01011c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout=0x7f0100d5;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layoutManager=0x7f010000;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout_anchor=0x7f01011f;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int layout_anchorGravity=0x7f010121;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_behavior=0x7f01011e;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int layout_collapseMode=0x7f01011a;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_collapseParallaxMultiplier=0x7f01011b;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
*/
public static final int layout_dodgeInsetEdges=0x7f010123;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int layout_insetEdge=0x7f010122;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_keyline=0x7f010120;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
*/
public static final int layout_scrollFlags=0x7f010106;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout_scrollInterpolator=0x7f010107;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listChoiceBackgroundIndicator=0x7f01009b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listDividerAlertDialog=0x7f010075;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listItemLayout=0x7f010041;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listLayout=0x7f01003e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listMenuViewStyle=0x7f0100bb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listPopupWindowStyle=0x7f010094;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeight=0x7f01008e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x7f010090;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightSmall=0x7f01008f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingLeft=0x7f010091;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingRight=0x7f010092;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int logo=0x7f010026;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int logoDescription=0x7f0100fb;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxActionInlineWidth=0x7f010136;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxButtonHeight=0x7f0100f5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int measureWithLargestChild=0x7f0100c8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteAudioTrackDrawable=0x7f010004;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteButtonStyle=0x7f010005;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteCloseDrawable=0x7f010006;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteControlPanelThemeOverlay=0x7f010007;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteDefaultIconDrawable=0x7f010008;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRoutePauseDrawable=0x7f010009;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRoutePlayDrawable=0x7f01000a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteSpeakerGroupIconDrawable=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteSpeakerIconDrawable=0x7f01000c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteStopDrawable=0x7f01000d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteTheme=0x7f01000e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteTvIconDrawable=0x7f01000f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int menu=0x7f01012e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int multiChoiceItemLayout=0x7f01003f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int navigationContentDescription=0x7f0100fa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int navigationIcon=0x7f0100f9;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int navigationMode=0x7f010020;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int overlapAnchor=0x7f0100d1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingBottomNoButtons=0x7f0100d3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingEnd=0x7f0100ff;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingStart=0x7f0100fe;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingTopNoTitle=0x7f0100d4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelBackground=0x7f010098;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelMenuListTheme=0x7f01009a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int panelMenuListWidth=0x7f010099;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleContentDescription=0x7f010152;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int passwordToggleDrawable=0x7f010151;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleEnabled=0x7f010150;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleTint=0x7f010153;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int passwordToggleTintMode=0x7f010154;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupMenuStyle=0x7f010085;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupTheme=0x7f010039;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupWindowStyle=0x7f010086;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int preserveIconSpacing=0x7f0100cf;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int pressedTranslationZ=0x7f010129;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int progressBarPadding=0x7f01002f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int progressBarStyle=0x7f01002d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int queryBackground=0x7f0100e0;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int queryHint=0x7f0100d7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int radioButtonStyle=0x7f0100b4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyle=0x7f0100b5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleIndicator=0x7f0100b6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleSmall=0x7f0100b7;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int reverseLayout=0x7f010002;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int rippleColor=0x7f010127;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int scrimAnimationDuration=0x7f010116;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int scrimVisibleHeightTrigger=0x7f010115;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchHintIcon=0x7f0100dc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchIcon=0x7f0100db;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewStyle=0x7f01008d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int seekBarStyle=0x7f0100b8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackground=0x7f01007d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackgroundBorderless=0x7f01007e;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
*/
public static final int showAsAction=0x7f0100cb;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
*/
public static final int showDividers=0x7f0100c9;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showText=0x7f0100ec;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showTitle=0x7f010042;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f010040;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spanCount=0x7f010001;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spinBars=0x7f0100c1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerDropDownItemStyle=0x7f010078;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerStyle=0x7f0100b9;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int splitTrack=0x7f0100eb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int srcCompat=0x7f010043;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int stackFromEnd=0x7f010003;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_above_anchor=0x7f0100d2;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_collapsed=0x7f010104;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_collapsible=0x7f010105;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int statusBarBackground=0x7f01011d;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int statusBarScrim=0x7f010113;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subMenuArrow=0x7f0100d0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int submitBackground=0x7f0100e1;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitle=0x7f010022;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextAppearance=0x7f0100ee;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitleTextColor=0x7f0100fd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextStyle=0x7f010024;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int suggestionRowLayout=0x7f0100df;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchMinWidth=0x7f0100e9;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchPadding=0x7f0100ea;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchStyle=0x7f0100ba;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f0100e8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabBackground=0x7f01013a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabContentStart=0x7f010139;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int tabGravity=0x7f01013c;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorColor=0x7f010137;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorHeight=0x7f010138;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMaxWidth=0x7f01013e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMinWidth=0x7f01013d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int tabMode=0x7f01013b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPadding=0x7f010146;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingBottom=0x7f010145;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingEnd=0x7f010144;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingStart=0x7f010142;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingTop=0x7f010143;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabSelectedTextColor=0x7f010141;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabTextAppearance=0x7f01013f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabTextColor=0x7f010140;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
*/
public static final int textAllCaps=0x7f010049;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceLargePopupMenu=0x7f010070;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItem=0x7f010095;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSecondary=0x7f010096;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSmall=0x7f010097;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearancePopupMenuHeader=0x7f010072;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultSubtitle=0x7f01008b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultTitle=0x7f01008a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSmallPopupMenu=0x7f010071;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorAlertDialogListItem=0x7f0100aa;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int textColorError=0x7f010126;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorSearchUrl=0x7f01008c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int theme=0x7f010100;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thickness=0x7f0100c7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTextPadding=0x7f0100e7;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTint=0x7f0100e2;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int thumbTintMode=0x7f0100e3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tickMark=0x7f010046;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tickMarkTint=0x7f010047;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int tickMarkTintMode=0x7f010048;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tint=0x7f010044;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int tintMode=0x7f010045;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int title=0x7f01001f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleEnabled=0x7f010119;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargin=0x7f0100ef;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginBottom=0x7f0100f3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginEnd=0x7f0100f1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginStart=0x7f0100f0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginTop=0x7f0100f2;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargins=0x7f0100f4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f0100ed;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleTextColor=0x7f0100fc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextStyle=0x7f010023;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarId=0x7f010114;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarNavigationButtonStyle=0x7f010084;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarStyle=0x7f010083;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int track=0x7f0100e4;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int trackTint=0x7f0100e5;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int trackTintMode=0x7f0100e6;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int useCompatPadding=0x7f01012b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int voiceIcon=0x7f0100dd;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBar=0x7f01004a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBarOverlay=0x7f01004c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionModeOverlay=0x7f01004d;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMajor=0x7f010051;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMinor=0x7f01004f;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMajor=0x7f01004e;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMinor=0x7f010050;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMajor=0x7f010052;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMinor=0x7f010053;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowNoTitle=0x7f01004b;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f0d0000;
public static final int abc_allow_stacked_button_bar=0x7f0d0001;
public static final int abc_config_actionMenuItemAllCaps=0x7f0d0002;
public static final int abc_config_closeDialogWhenTouchOutside=0x7f0d0003;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0d0004;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f0c004a;
public static final int abc_background_cache_hint_selector_material_light=0x7f0c004b;
public static final int abc_btn_colored_borderless_text_material=0x7f0c004c;
public static final int abc_btn_colored_text_material=0x7f0c004d;
public static final int abc_color_highlight_material=0x7f0c004e;
public static final int abc_hint_foreground_material_dark=0x7f0c004f;
public static final int abc_hint_foreground_material_light=0x7f0c0050;
public static final int abc_input_method_navigation_guard=0x7f0c0005;
public static final int abc_primary_text_disable_only_material_dark=0x7f0c0051;
public static final int abc_primary_text_disable_only_material_light=0x7f0c0052;
public static final int abc_primary_text_material_dark=0x7f0c0053;
public static final int abc_primary_text_material_light=0x7f0c0054;
public static final int abc_search_url_text=0x7f0c0055;
public static final int abc_search_url_text_normal=0x7f0c0006;
public static final int abc_search_url_text_pressed=0x7f0c0007;
public static final int abc_search_url_text_selected=0x7f0c0008;
public static final int abc_secondary_text_material_dark=0x7f0c0056;
public static final int abc_secondary_text_material_light=0x7f0c0057;
public static final int abc_tint_btn_checkable=0x7f0c0058;
public static final int abc_tint_default=0x7f0c0059;
public static final int abc_tint_edittext=0x7f0c005a;
public static final int abc_tint_seek_thumb=0x7f0c005b;
public static final int abc_tint_spinner=0x7f0c005c;
public static final int abc_tint_switch_thumb=0x7f0c005d;
public static final int abc_tint_switch_track=0x7f0c005e;
public static final int accent_material_dark=0x7f0c0009;
public static final int accent_material_light=0x7f0c000a;
public static final int background_floating_material_dark=0x7f0c000b;
public static final int background_floating_material_light=0x7f0c000c;
public static final int background_material_dark=0x7f0c000d;
public static final int background_material_light=0x7f0c000e;
public static final int bright_foreground_disabled_material_dark=0x7f0c000f;
public static final int bright_foreground_disabled_material_light=0x7f0c0010;
public static final int bright_foreground_inverse_material_dark=0x7f0c0011;
public static final int bright_foreground_inverse_material_light=0x7f0c0012;
public static final int bright_foreground_material_dark=0x7f0c0013;
public static final int bright_foreground_material_light=0x7f0c0014;
public static final int button_material_dark=0x7f0c0015;
public static final int button_material_light=0x7f0c0016;
public static final int cardview_dark_background=0x7f0c0000;
public static final int cardview_light_background=0x7f0c0001;
public static final int cardview_shadow_end_color=0x7f0c0002;
public static final int cardview_shadow_start_color=0x7f0c0003;
public static final int design_bottom_navigation_shadow_color=0x7f0c003f;
public static final int design_error=0x7f0c005f;
public static final int design_fab_shadow_end_color=0x7f0c0040;
public static final int design_fab_shadow_mid_color=0x7f0c0041;
public static final int design_fab_shadow_start_color=0x7f0c0042;
public static final int design_fab_stroke_end_inner_color=0x7f0c0043;
public static final int design_fab_stroke_end_outer_color=0x7f0c0044;
public static final int design_fab_stroke_top_inner_color=0x7f0c0045;
public static final int design_fab_stroke_top_outer_color=0x7f0c0046;
public static final int design_snackbar_background_color=0x7f0c0047;
public static final int design_textinput_error_color_dark=0x7f0c0048;
public static final int design_textinput_error_color_light=0x7f0c0049;
public static final int design_tint_password_toggle=0x7f0c0060;
public static final int dim_foreground_disabled_material_dark=0x7f0c0017;
public static final int dim_foreground_disabled_material_light=0x7f0c0018;
public static final int dim_foreground_material_dark=0x7f0c0019;
public static final int dim_foreground_material_light=0x7f0c001a;
public static final int foreground_material_dark=0x7f0c001b;
public static final int foreground_material_light=0x7f0c001c;
public static final int highlighted_text_material_dark=0x7f0c001d;
public static final int highlighted_text_material_light=0x7f0c001e;
public static final int material_blue_grey_800=0x7f0c001f;
public static final int material_blue_grey_900=0x7f0c0020;
public static final int material_blue_grey_950=0x7f0c0021;
public static final int material_deep_teal_200=0x7f0c0022;
public static final int material_deep_teal_500=0x7f0c0023;
public static final int material_grey_100=0x7f0c0024;
public static final int material_grey_300=0x7f0c0025;
public static final int material_grey_50=0x7f0c0026;
public static final int material_grey_600=0x7f0c0027;
public static final int material_grey_800=0x7f0c0028;
public static final int material_grey_850=0x7f0c0029;
public static final int material_grey_900=0x7f0c002a;
public static final int notification_action_color_filter=0x7f0c0004;
public static final int notification_icon_bg_color=0x7f0c002b;
public static final int notification_material_background_media_default_color=0x7f0c002c;
public static final int primary_dark_material_dark=0x7f0c002d;
public static final int primary_dark_material_light=0x7f0c002e;
public static final int primary_material_dark=0x7f0c002f;
public static final int primary_material_light=0x7f0c0030;
public static final int primary_text_default_material_dark=0x7f0c0031;
public static final int primary_text_default_material_light=0x7f0c0032;
public static final int primary_text_disabled_material_dark=0x7f0c0033;
public static final int primary_text_disabled_material_light=0x7f0c0034;
public static final int ripple_material_dark=0x7f0c0035;
public static final int ripple_material_light=0x7f0c0036;
public static final int secondary_text_default_material_dark=0x7f0c0037;
public static final int secondary_text_default_material_light=0x7f0c0038;
public static final int secondary_text_disabled_material_dark=0x7f0c0039;
public static final int secondary_text_disabled_material_light=0x7f0c003a;
public static final int switch_thumb_disabled_material_dark=0x7f0c003b;
public static final int switch_thumb_disabled_material_light=0x7f0c003c;
public static final int switch_thumb_material_dark=0x7f0c0061;
public static final int switch_thumb_material_light=0x7f0c0062;
public static final int switch_thumb_normal_material_dark=0x7f0c003d;
public static final int switch_thumb_normal_material_light=0x7f0c003e;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f070018;
public static final int abc_action_bar_content_inset_with_nav=0x7f070019;
public static final int abc_action_bar_default_height_material=0x7f07000d;
public static final int abc_action_bar_default_padding_end_material=0x7f07001a;
public static final int abc_action_bar_default_padding_start_material=0x7f07001b;
public static final int abc_action_bar_elevation_material=0x7f070021;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f070022;
public static final int abc_action_bar_overflow_padding_end_material=0x7f070023;
public static final int abc_action_bar_overflow_padding_start_material=0x7f070024;
public static final int abc_action_bar_progress_bar_size=0x7f07000e;
public static final int abc_action_bar_stacked_max_height=0x7f070025;
public static final int abc_action_bar_stacked_tab_max_width=0x7f070026;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070027;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f070028;
public static final int abc_action_button_min_height_material=0x7f070029;
public static final int abc_action_button_min_width_material=0x7f07002a;
public static final int abc_action_button_min_width_overflow_material=0x7f07002b;
public static final int abc_alert_dialog_button_bar_height=0x7f07000c;
public static final int abc_button_inset_horizontal_material=0x7f07002c;
public static final int abc_button_inset_vertical_material=0x7f07002d;
public static final int abc_button_padding_horizontal_material=0x7f07002e;
public static final int abc_button_padding_vertical_material=0x7f07002f;
public static final int abc_cascading_menus_min_smallest_width=0x7f070030;
public static final int abc_config_prefDialogWidth=0x7f070011;
public static final int abc_control_corner_material=0x7f070031;
public static final int abc_control_inset_material=0x7f070032;
public static final int abc_control_padding_material=0x7f070033;
public static final int abc_dialog_fixed_height_major=0x7f070012;
public static final int abc_dialog_fixed_height_minor=0x7f070013;
public static final int abc_dialog_fixed_width_major=0x7f070014;
public static final int abc_dialog_fixed_width_minor=0x7f070015;
public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070034;
public static final int abc_dialog_list_padding_top_no_title=0x7f070035;
public static final int abc_dialog_min_width_major=0x7f070016;
public static final int abc_dialog_min_width_minor=0x7f070017;
public static final int abc_dialog_padding_material=0x7f070036;
public static final int abc_dialog_padding_top_material=0x7f070037;
public static final int abc_dialog_title_divider_material=0x7f070038;
public static final int abc_disabled_alpha_material_dark=0x7f070039;
public static final int abc_disabled_alpha_material_light=0x7f07003a;
public static final int abc_dropdownitem_icon_width=0x7f07003b;
public static final int abc_dropdownitem_text_padding_left=0x7f07003c;
public static final int abc_dropdownitem_text_padding_right=0x7f07003d;
public static final int abc_edit_text_inset_bottom_material=0x7f07003e;
public static final int abc_edit_text_inset_horizontal_material=0x7f07003f;
public static final int abc_edit_text_inset_top_material=0x7f070040;
public static final int abc_floating_window_z=0x7f070041;
public static final int abc_list_item_padding_horizontal_material=0x7f070042;
public static final int abc_panel_menu_list_width=0x7f070043;
public static final int abc_progress_bar_height_material=0x7f070044;
public static final int abc_search_view_preferred_height=0x7f070045;
public static final int abc_search_view_preferred_width=0x7f070046;
public static final int abc_seekbar_track_background_height_material=0x7f070047;
public static final int abc_seekbar_track_progress_height_material=0x7f070048;
public static final int abc_select_dialog_padding_start_material=0x7f070049;
public static final int abc_switch_padding=0x7f07001d;
public static final int abc_text_size_body_1_material=0x7f07004a;
public static final int abc_text_size_body_2_material=0x7f07004b;
public static final int abc_text_size_button_material=0x7f07004c;
public static final int abc_text_size_caption_material=0x7f07004d;
public static final int abc_text_size_display_1_material=0x7f07004e;
public static final int abc_text_size_display_2_material=0x7f07004f;
public static final int abc_text_size_display_3_material=0x7f070050;
public static final int abc_text_size_display_4_material=0x7f070051;
public static final int abc_text_size_headline_material=0x7f070052;
public static final int abc_text_size_large_material=0x7f070053;
public static final int abc_text_size_medium_material=0x7f070054;
public static final int abc_text_size_menu_header_material=0x7f070055;
public static final int abc_text_size_menu_material=0x7f070056;
public static final int abc_text_size_small_material=0x7f070057;
public static final int abc_text_size_subhead_material=0x7f070058;
public static final int abc_text_size_subtitle_material_toolbar=0x7f07000f;
public static final int abc_text_size_title_material=0x7f070059;
public static final int abc_text_size_title_material_toolbar=0x7f070010;
public static final int cardview_compat_inset_shadow=0x7f070009;
public static final int cardview_default_elevation=0x7f07000a;
public static final int cardview_default_radius=0x7f07000b;
public static final int design_appbar_elevation=0x7f070076;
public static final int design_bottom_navigation_active_item_max_width=0x7f070077;
public static final int design_bottom_navigation_active_text_size=0x7f070078;
public static final int design_bottom_navigation_elevation=0x7f070079;
public static final int design_bottom_navigation_height=0x7f07007a;
public static final int design_bottom_navigation_item_max_width=0x7f07007b;
public static final int design_bottom_navigation_item_min_width=0x7f07007c;
public static final int design_bottom_navigation_margin=0x7f07007d;
public static final int design_bottom_navigation_shadow_height=0x7f07007e;
public static final int design_bottom_navigation_text_size=0x7f07007f;
public static final int design_bottom_sheet_modal_elevation=0x7f070080;
public static final int design_bottom_sheet_peek_height_min=0x7f070081;
public static final int design_fab_border_width=0x7f070082;
public static final int design_fab_elevation=0x7f070083;
public static final int design_fab_image_size=0x7f070084;
public static final int design_fab_size_mini=0x7f070085;
public static final int design_fab_size_normal=0x7f070086;
public static final int design_fab_translation_z_pressed=0x7f070087;
public static final int design_navigation_elevation=0x7f070088;
public static final int design_navigation_icon_padding=0x7f070089;
public static final int design_navigation_icon_size=0x7f07008a;
public static final int design_navigation_max_width=0x7f07006e;
public static final int design_navigation_padding_bottom=0x7f07008b;
public static final int design_navigation_separator_vertical_padding=0x7f07008c;
public static final int design_snackbar_action_inline_max_width=0x7f07006f;
public static final int design_snackbar_background_corner_radius=0x7f070070;
public static final int design_snackbar_elevation=0x7f07008d;
public static final int design_snackbar_extra_spacing_horizontal=0x7f070071;
public static final int design_snackbar_max_width=0x7f070072;
public static final int design_snackbar_min_width=0x7f070073;
public static final int design_snackbar_padding_horizontal=0x7f07008e;
public static final int design_snackbar_padding_vertical=0x7f07008f;
public static final int design_snackbar_padding_vertical_2lines=0x7f070074;
public static final int design_snackbar_text_size=0x7f070090;
public static final int design_tab_max_width=0x7f070091;
public static final int design_tab_scrollable_min_width=0x7f070075;
public static final int design_tab_text_size=0x7f070092;
public static final int design_tab_text_size_2line=0x7f070093;
public static final int disabled_alpha_material_dark=0x7f07005a;
public static final int disabled_alpha_material_light=0x7f07005b;
public static final int highlight_alpha_material_colored=0x7f07005c;
public static final int highlight_alpha_material_dark=0x7f07005d;
public static final int highlight_alpha_material_light=0x7f07005e;
public static final int hint_alpha_material_dark=0x7f07005f;
public static final int hint_alpha_material_light=0x7f070060;
public static final int hint_pressed_alpha_material_dark=0x7f070061;
public static final int hint_pressed_alpha_material_light=0x7f070062;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070000;
public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070001;
public static final int item_touch_helper_swipe_escape_velocity=0x7f070002;
public static final int mr_controller_volume_group_list_item_height=0x7f070003;
public static final int mr_controller_volume_group_list_item_icon_size=0x7f070004;
public static final int mr_controller_volume_group_list_max_height=0x7f070005;
public static final int mr_controller_volume_group_list_padding_top=0x7f070008;
public static final int mr_dialog_fixed_width_major=0x7f070006;
public static final int mr_dialog_fixed_width_minor=0x7f070007;
public static final int notification_action_icon_size=0x7f070063;
public static final int notification_action_text_size=0x7f070064;
public static final int notification_big_circle_margin=0x7f070065;
public static final int notification_content_margin_start=0x7f07001e;
public static final int notification_large_icon_height=0x7f070066;
public static final int notification_large_icon_width=0x7f070067;
public static final int notification_main_column_padding_top=0x7f07001f;
public static final int notification_media_narrow_margin=0x7f070020;
public static final int notification_right_icon_size=0x7f070068;
public static final int notification_right_side_padding_top=0x7f07001c;
public static final int notification_small_icon_background_padding=0x7f070069;
public static final int notification_small_icon_size_as_large=0x7f07006a;
public static final int notification_subtext_size=0x7f07006b;
public static final int notification_top_pad=0x7f07006c;
public static final int notification_top_pad_large_text=0x7f07006d;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static final int abc_action_bar_item_background_material=0x7f020001;
public static final int abc_btn_borderless_material=0x7f020002;
public static final int abc_btn_check_material=0x7f020003;
public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static final int abc_btn_colored_material=0x7f020006;
public static final int abc_btn_default_mtrl_shape=0x7f020007;
public static final int abc_btn_radio_material=0x7f020008;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
public static final int abc_cab_background_internal_bg=0x7f02000d;
public static final int abc_cab_background_top_material=0x7f02000e;
public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f;
public static final int abc_control_background_material=0x7f020010;
public static final int abc_dialog_material_background=0x7f020011;
public static final int abc_edit_text_material=0x7f020012;
public static final int abc_ic_ab_back_material=0x7f020013;
public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014;
public static final int abc_ic_clear_material=0x7f020015;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016;
public static final int abc_ic_go_search_api_material=0x7f020017;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019;
public static final int abc_ic_menu_overflow_material=0x7f02001a;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d;
public static final int abc_ic_search_api_material=0x7f02001e;
public static final int abc_ic_star_black_16dp=0x7f02001f;
public static final int abc_ic_star_black_36dp=0x7f020020;
public static final int abc_ic_star_black_48dp=0x7f020021;
public static final int abc_ic_star_half_black_16dp=0x7f020022;
public static final int abc_ic_star_half_black_36dp=0x7f020023;
public static final int abc_ic_star_half_black_48dp=0x7f020024;
public static final int abc_ic_voice_search_api_material=0x7f020025;
public static final int abc_item_background_holo_dark=0x7f020026;
public static final int abc_item_background_holo_light=0x7f020027;
public static final int abc_list_divider_mtrl_alpha=0x7f020028;
public static final int abc_list_focused_holo=0x7f020029;
public static final int abc_list_longpressed_holo=0x7f02002a;
public static final int abc_list_pressed_holo_dark=0x7f02002b;
public static final int abc_list_pressed_holo_light=0x7f02002c;
public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d;
public static final int abc_list_selector_background_transition_holo_light=0x7f02002e;
public static final int abc_list_selector_disabled_holo_dark=0x7f02002f;
public static final int abc_list_selector_disabled_holo_light=0x7f020030;
public static final int abc_list_selector_holo_dark=0x7f020031;
public static final int abc_list_selector_holo_light=0x7f020032;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
public static final int abc_popup_background_mtrl_mult=0x7f020034;
public static final int abc_ratingbar_indicator_material=0x7f020035;
public static final int abc_ratingbar_material=0x7f020036;
public static final int abc_ratingbar_small_material=0x7f020037;
public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c;
public static final int abc_seekbar_thumb_material=0x7f02003d;
public static final int abc_seekbar_tick_mark_material=0x7f02003e;
public static final int abc_seekbar_track_material=0x7f02003f;
public static final int abc_spinner_mtrl_am_alpha=0x7f020040;
public static final int abc_spinner_textfield_background_material=0x7f020041;
public static final int abc_switch_thumb_material=0x7f020042;
public static final int abc_switch_track_mtrl_alpha=0x7f020043;
public static final int abc_tab_indicator_material=0x7f020044;
public static final int abc_tab_indicator_mtrl_alpha=0x7f020045;
public static final int abc_text_cursor_material=0x7f020046;
public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047;
public static final int abc_text_select_handle_left_mtrl_light=0x7f020048;
public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049;
public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a;
public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b;
public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c;
public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d;
public static final int abc_textfield_default_mtrl_alpha=0x7f02004e;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050;
public static final int abc_textfield_search_material=0x7f020051;
public static final int abc_vector_test=0x7f020052;
public static final int avd_hide_password=0x7f020053;
public static final int avd_hide_password_1=0x7f020113;
public static final int avd_hide_password_2=0x7f020114;
public static final int avd_hide_password_3=0x7f020115;
public static final int avd_show_password=0x7f020054;
public static final int avd_show_password_1=0x7f020116;
public static final int avd_show_password_2=0x7f020117;
public static final int avd_show_password_3=0x7f020118;
public static final int design_bottom_navigation_item_background=0x7f020055;
public static final int design_fab_background=0x7f020056;
public static final int design_ic_visibility=0x7f020057;
public static final int design_ic_visibility_off=0x7f020058;
public static final int design_password_eye=0x7f020059;
public static final int design_snackbar_background=0x7f02005a;
public static final int ic_audiotrack_dark=0x7f02005b;
public static final int ic_audiotrack_light=0x7f02005c;
public static final int ic_dialog_close_dark=0x7f02005d;
public static final int ic_dialog_close_light=0x7f02005e;
public static final int ic_errorstatus=0x7f02005f;
public static final int ic_group_collapse_00=0x7f020060;
public static final int ic_group_collapse_01=0x7f020061;
public static final int ic_group_collapse_02=0x7f020062;
public static final int ic_group_collapse_03=0x7f020063;
public static final int ic_group_collapse_04=0x7f020064;
public static final int ic_group_collapse_05=0x7f020065;
public static final int ic_group_collapse_06=0x7f020066;
public static final int ic_group_collapse_07=0x7f020067;
public static final int ic_group_collapse_08=0x7f020068;
public static final int ic_group_collapse_09=0x7f020069;
public static final int ic_group_collapse_10=0x7f02006a;
public static final int ic_group_collapse_11=0x7f02006b;
public static final int ic_group_collapse_12=0x7f02006c;
public static final int ic_group_collapse_13=0x7f02006d;
public static final int ic_group_collapse_14=0x7f02006e;
public static final int ic_group_collapse_15=0x7f02006f;
public static final int ic_group_expand_00=0x7f020070;
public static final int ic_group_expand_01=0x7f020071;
public static final int ic_group_expand_02=0x7f020072;
public static final int ic_group_expand_03=0x7f020073;
public static final int ic_group_expand_04=0x7f020074;
public static final int ic_group_expand_05=0x7f020075;
public static final int ic_group_expand_06=0x7f020076;
public static final int ic_group_expand_07=0x7f020077;
public static final int ic_group_expand_08=0x7f020078;
public static final int ic_group_expand_09=0x7f020079;
public static final int ic_group_expand_10=0x7f02007a;
public static final int ic_group_expand_11=0x7f02007b;
public static final int ic_group_expand_12=0x7f02007c;
public static final int ic_group_expand_13=0x7f02007d;
public static final int ic_group_expand_14=0x7f02007e;
public static final int ic_group_expand_15=0x7f02007f;
public static final int ic_media_pause_dark=0x7f020080;
public static final int ic_media_pause_light=0x7f020081;
public static final int ic_media_play_dark=0x7f020082;
public static final int ic_media_play_light=0x7f020083;
public static final int ic_media_stop_dark=0x7f020084;
public static final int ic_media_stop_light=0x7f020085;
public static final int ic_mr_button_connected_00_dark=0x7f020086;
public static final int ic_mr_button_connected_00_light=0x7f020087;
public static final int ic_mr_button_connected_01_dark=0x7f020088;
public static final int ic_mr_button_connected_01_light=0x7f020089;
public static final int ic_mr_button_connected_02_dark=0x7f02008a;
public static final int ic_mr_button_connected_02_light=0x7f02008b;
public static final int ic_mr_button_connected_03_dark=0x7f02008c;
public static final int ic_mr_button_connected_03_light=0x7f02008d;
public static final int ic_mr_button_connected_04_dark=0x7f02008e;
public static final int ic_mr_button_connected_04_light=0x7f02008f;
public static final int ic_mr_button_connected_05_dark=0x7f020090;
public static final int ic_mr_button_connected_05_light=0x7f020091;
public static final int ic_mr_button_connected_06_dark=0x7f020092;
public static final int ic_mr_button_connected_06_light=0x7f020093;
public static final int ic_mr_button_connected_07_dark=0x7f020094;
public static final int ic_mr_button_connected_07_light=0x7f020095;
public static final int ic_mr_button_connected_08_dark=0x7f020096;
public static final int ic_mr_button_connected_08_light=0x7f020097;
public static final int ic_mr_button_connected_09_dark=0x7f020098;
public static final int ic_mr_button_connected_09_light=0x7f020099;
public static final int ic_mr_button_connected_10_dark=0x7f02009a;
public static final int ic_mr_button_connected_10_light=0x7f02009b;
public static final int ic_mr_button_connected_11_dark=0x7f02009c;
public static final int ic_mr_button_connected_11_light=0x7f02009d;
public static final int ic_mr_button_connected_12_dark=0x7f02009e;
public static final int ic_mr_button_connected_12_light=0x7f02009f;
public static final int ic_mr_button_connected_13_dark=0x7f0200a0;
public static final int ic_mr_button_connected_13_light=0x7f0200a1;
public static final int ic_mr_button_connected_14_dark=0x7f0200a2;
public static final int ic_mr_button_connected_14_light=0x7f0200a3;
public static final int ic_mr_button_connected_15_dark=0x7f0200a4;
public static final int ic_mr_button_connected_15_light=0x7f0200a5;
public static final int ic_mr_button_connected_16_dark=0x7f0200a6;
public static final int ic_mr_button_connected_16_light=0x7f0200a7;
public static final int ic_mr_button_connected_17_dark=0x7f0200a8;
public static final int ic_mr_button_connected_17_light=0x7f0200a9;
public static final int ic_mr_button_connected_18_dark=0x7f0200aa;
public static final int ic_mr_button_connected_18_light=0x7f0200ab;
public static final int ic_mr_button_connected_19_dark=0x7f0200ac;
public static final int ic_mr_button_connected_19_light=0x7f0200ad;
public static final int ic_mr_button_connected_20_dark=0x7f0200ae;
public static final int ic_mr_button_connected_20_light=0x7f0200af;
public static final int ic_mr_button_connected_21_dark=0x7f0200b0;
public static final int ic_mr_button_connected_21_light=0x7f0200b1;
public static final int ic_mr_button_connected_22_dark=0x7f0200b2;
public static final int ic_mr_button_connected_22_light=0x7f0200b3;
public static final int ic_mr_button_connecting_00_dark=0x7f0200b4;
public static final int ic_mr_button_connecting_00_light=0x7f0200b5;
public static final int ic_mr_button_connecting_01_dark=0x7f0200b6;
public static final int ic_mr_button_connecting_01_light=0x7f0200b7;
public static final int ic_mr_button_connecting_02_dark=0x7f0200b8;
public static final int ic_mr_button_connecting_02_light=0x7f0200b9;
public static final int ic_mr_button_connecting_03_dark=0x7f0200ba;
public static final int ic_mr_button_connecting_03_light=0x7f0200bb;
public static final int ic_mr_button_connecting_04_dark=0x7f0200bc;
public static final int ic_mr_button_connecting_04_light=0x7f0200bd;
public static final int ic_mr_button_connecting_05_dark=0x7f0200be;
public static final int ic_mr_button_connecting_05_light=0x7f0200bf;
public static final int ic_mr_button_connecting_06_dark=0x7f0200c0;
public static final int ic_mr_button_connecting_06_light=0x7f0200c1;
public static final int ic_mr_button_connecting_07_dark=0x7f0200c2;
public static final int ic_mr_button_connecting_07_light=0x7f0200c3;
public static final int ic_mr_button_connecting_08_dark=0x7f0200c4;
public static final int ic_mr_button_connecting_08_light=0x7f0200c5;
public static final int ic_mr_button_connecting_09_dark=0x7f0200c6;
public static final int ic_mr_button_connecting_09_light=0x7f0200c7;
public static final int ic_mr_button_connecting_10_dark=0x7f0200c8;
public static final int ic_mr_button_connecting_10_light=0x7f0200c9;
public static final int ic_mr_button_connecting_11_dark=0x7f0200ca;
public static final int ic_mr_button_connecting_11_light=0x7f0200cb;
public static final int ic_mr_button_connecting_12_dark=0x7f0200cc;
public static final int ic_mr_button_connecting_12_light=0x7f0200cd;
public static final int ic_mr_button_connecting_13_dark=0x7f0200ce;
public static final int ic_mr_button_connecting_13_light=0x7f0200cf;
public static final int ic_mr_button_connecting_14_dark=0x7f0200d0;
public static final int ic_mr_button_connecting_14_light=0x7f0200d1;
public static final int ic_mr_button_connecting_15_dark=0x7f0200d2;
public static final int ic_mr_button_connecting_15_light=0x7f0200d3;
public static final int ic_mr_button_connecting_16_dark=0x7f0200d4;
public static final int ic_mr_button_connecting_16_light=0x7f0200d5;
public static final int ic_mr_button_connecting_17_dark=0x7f0200d6;
public static final int ic_mr_button_connecting_17_light=0x7f0200d7;
public static final int ic_mr_button_connecting_18_dark=0x7f0200d8;
public static final int ic_mr_button_connecting_18_light=0x7f0200d9;
public static final int ic_mr_button_connecting_19_dark=0x7f0200da;
public static final int ic_mr_button_connecting_19_light=0x7f0200db;
public static final int ic_mr_button_connecting_20_dark=0x7f0200dc;
public static final int ic_mr_button_connecting_20_light=0x7f0200dd;
public static final int ic_mr_button_connecting_21_dark=0x7f0200de;
public static final int ic_mr_button_connecting_21_light=0x7f0200df;
public static final int ic_mr_button_connecting_22_dark=0x7f0200e0;
public static final int ic_mr_button_connecting_22_light=0x7f0200e1;
public static final int ic_mr_button_disabled_dark=0x7f0200e2;
public static final int ic_mr_button_disabled_light=0x7f0200e3;
public static final int ic_mr_button_disconnected_dark=0x7f0200e4;
public static final int ic_mr_button_disconnected_light=0x7f0200e5;
public static final int ic_mr_button_grey=0x7f0200e6;
public static final int ic_successstatus=0x7f0200e7;
public static final int ic_vol_type_speaker_dark=0x7f0200e8;
public static final int ic_vol_type_speaker_group_dark=0x7f0200e9;
public static final int ic_vol_type_speaker_group_light=0x7f0200ea;
public static final int ic_vol_type_speaker_light=0x7f0200eb;
public static final int ic_vol_type_tv_dark=0x7f0200ec;
public static final int ic_vol_type_tv_light=0x7f0200ed;
public static final int icon=0x7f0200ee;
public static final int mr_button_connected_dark=0x7f0200ef;
public static final int mr_button_connected_light=0x7f0200f0;
public static final int mr_button_connecting_dark=0x7f0200f1;
public static final int mr_button_connecting_light=0x7f0200f2;
public static final int mr_button_dark=0x7f0200f3;
public static final int mr_button_light=0x7f0200f4;
public static final int mr_dialog_close_dark=0x7f0200f5;
public static final int mr_dialog_close_light=0x7f0200f6;
public static final int mr_dialog_material_background_dark=0x7f0200f7;
public static final int mr_dialog_material_background_light=0x7f0200f8;
public static final int mr_group_collapse=0x7f0200f9;
public static final int mr_group_expand=0x7f0200fa;
public static final int mr_media_pause_dark=0x7f0200fb;
public static final int mr_media_pause_light=0x7f0200fc;
public static final int mr_media_play_dark=0x7f0200fd;
public static final int mr_media_play_light=0x7f0200fe;
public static final int mr_media_stop_dark=0x7f0200ff;
public static final int mr_media_stop_light=0x7f020100;
public static final int mr_vol_type_audiotrack_dark=0x7f020101;
public static final int mr_vol_type_audiotrack_light=0x7f020102;
public static final int navigation_empty_icon=0x7f020103;
public static final int notification_action_background=0x7f020104;
public static final int notification_bg=0x7f020105;
public static final int notification_bg_low=0x7f020106;
public static final int notification_bg_low_normal=0x7f020107;
public static final int notification_bg_low_pressed=0x7f020108;
public static final int notification_bg_normal=0x7f020109;
public static final int notification_bg_normal_pressed=0x7f02010a;
public static final int notification_icon_background=0x7f02010b;
public static final int notification_template_icon_bg=0x7f020111;
public static final int notification_template_icon_low_bg=0x7f020112;
public static final int notification_tile_bg=0x7f02010c;
public static final int notify_panel_notification_icon_bg=0x7f02010d;
public static final int roundedbg=0x7f02010e;
public static final int roundedbgdark=0x7f02010f;
public static final int xamarin_logo=0x7f020110;
}
public static final class id {
public static final int action0=0x7f0800a2;
public static final int action_bar=0x7f080064;
public static final int action_bar_activity_content=0x7f080001;
public static final int action_bar_container=0x7f080063;
public static final int action_bar_root=0x7f08005f;
public static final int action_bar_spinner=0x7f080002;
public static final int action_bar_subtitle=0x7f080042;
public static final int action_bar_title=0x7f080041;
public static final int action_container=0x7f08009f;
public static final int action_context_bar=0x7f080065;
public static final int action_divider=0x7f0800a6;
public static final int action_image=0x7f0800a0;
public static final int action_menu_divider=0x7f080003;
public static final int action_menu_presenter=0x7f080004;
public static final int action_mode_bar=0x7f080061;
public static final int action_mode_bar_stub=0x7f080060;
public static final int action_mode_close_button=0x7f080043;
public static final int action_text=0x7f0800a1;
public static final int actions=0x7f0800af;
public static final int activity_chooser_view_content=0x7f080044;
public static final int add=0x7f08001e;
public static final int alertTitle=0x7f080058;
public static final int all=0x7f08003d;
public static final int always=0x7f080023;
public static final int auto=0x7f08002f;
public static final int beginning=0x7f080020;
public static final int bottom=0x7f080028;
public static final int buttonPanel=0x7f08004b;
public static final int cancel_action=0x7f0800a3;
public static final int center=0x7f080030;
public static final int center_horizontal=0x7f080031;
public static final int center_vertical=0x7f080032;
public static final int checkbox=0x7f08005b;
public static final int chronometer=0x7f0800ab;
public static final int clip_horizontal=0x7f080039;
public static final int clip_vertical=0x7f08003a;
public static final int collapseActionView=0x7f080024;
public static final int container=0x7f080075;
public static final int contentPanel=0x7f08004e;
public static final int coordinator=0x7f080076;
public static final int custom=0x7f080055;
public static final int customPanel=0x7f080054;
public static final int decor_content_parent=0x7f080062;
public static final int default_activity_button=0x7f080047;
public static final int design_bottom_sheet=0x7f080078;
public static final int design_menu_item_action_area=0x7f08007f;
public static final int design_menu_item_action_area_stub=0x7f08007e;
public static final int design_menu_item_text=0x7f08007d;
public static final int design_navigation_view=0x7f08007c;
public static final int disableHome=0x7f080012;
public static final int edit_query=0x7f080066;
public static final int end=0x7f080021;
public static final int end_padder=0x7f0800b5;
public static final int enterAlways=0x7f08002a;
public static final int enterAlwaysCollapsed=0x7f08002b;
public static final int exitUntilCollapsed=0x7f08002c;
public static final int expand_activities_button=0x7f080045;
public static final int expanded_menu=0x7f08005a;
public static final int fill=0x7f08003b;
public static final int fill_horizontal=0x7f08003c;
public static final int fill_vertical=0x7f080033;
public static final int fixed=0x7f08003f;
public static final int home=0x7f080005;
public static final int homeAsUp=0x7f080013;
public static final int icon=0x7f080049;
public static final int icon_group=0x7f0800b0;
public static final int ifRoom=0x7f080025;
public static final int image=0x7f080046;
public static final int info=0x7f0800ac;
public static final int item_touch_helper_previous_elevation=0x7f080000;
public static final int largeLabel=0x7f080074;
public static final int left=0x7f080034;
public static final int line1=0x7f0800b1;
public static final int line3=0x7f0800b3;
public static final int listMode=0x7f08000f;
public static final int list_item=0x7f080048;
public static final int loadingImage=0x7f080083;
public static final int loadingProgressBar=0x7f080081;
public static final int loadingProgressWheel=0x7f080084;
public static final int masked=0x7f0800b9;
public static final int media_actions=0x7f0800a5;
public static final int middle=0x7f080022;
public static final int mini=0x7f08003e;
public static final int mr_art=0x7f080091;
public static final int mr_chooser_list=0x7f080086;
public static final int mr_chooser_route_desc=0x7f080089;
public static final int mr_chooser_route_icon=0x7f080087;
public static final int mr_chooser_route_name=0x7f080088;
public static final int mr_chooser_title=0x7f080085;
public static final int mr_close=0x7f08008e;
public static final int mr_control_divider=0x7f080094;
public static final int mr_control_playback_ctrl=0x7f08009a;
public static final int mr_control_subtitle=0x7f08009d;
public static final int mr_control_title=0x7f08009c;
public static final int mr_control_title_container=0x7f08009b;
public static final int mr_custom_control=0x7f08008f;
public static final int mr_default_control=0x7f080090;
public static final int mr_dialog_area=0x7f08008b;
public static final int mr_expandable_area=0x7f08008a;
public static final int mr_group_expand_collapse=0x7f08009e;
public static final int mr_media_main_control=0x7f080092;
public static final int mr_name=0x7f08008d;
public static final int mr_playback_control=0x7f080093;
public static final int mr_title_bar=0x7f08008c;
public static final int mr_volume_control=0x7f080095;
public static final int mr_volume_group_list=0x7f080096;
public static final int mr_volume_item_icon=0x7f080098;
public static final int mr_volume_slider=0x7f080099;
public static final int multiply=0x7f080019;
public static final int navigation_header_container=0x7f08007b;
public static final int never=0x7f080026;
public static final int none=0x7f080014;
public static final int normal=0x7f080010;
public static final int notification_background=0x7f0800ae;
public static final int notification_main_column=0x7f0800a8;
public static final int notification_main_column_container=0x7f0800a7;
public static final int parallax=0x7f080037;
public static final int parentPanel=0x7f08004d;
public static final int pin=0x7f080038;
public static final int progress_circular=0x7f080006;
public static final int progress_horizontal=0x7f080007;
public static final int radio=0x7f08005d;
public static final int right=0x7f080035;
public static final int right_icon=0x7f0800ad;
public static final int right_side=0x7f0800a9;
public static final int screen=0x7f08001a;
public static final int scroll=0x7f08002d;
public static final int scrollIndicatorDown=0x7f080053;
public static final int scrollIndicatorUp=0x7f08004f;
public static final int scrollView=0x7f080050;
public static final int scrollable=0x7f080040;
public static final int search_badge=0x7f080068;
public static final int search_bar=0x7f080067;
public static final int search_button=0x7f080069;
public static final int search_close_btn=0x7f08006e;
public static final int search_edit_frame=0x7f08006a;
public static final int search_go_btn=0x7f080070;
public static final int search_mag_icon=0x7f08006b;
public static final int search_plate=0x7f08006c;
public static final int search_src_text=0x7f08006d;
public static final int search_voice_btn=0x7f080071;
public static final int select_dialog_listview=0x7f080072;
public static final int shortcut=0x7f08005c;
public static final int showCustom=0x7f080015;
public static final int showHome=0x7f080016;
public static final int showTitle=0x7f080017;
public static final int sliding_tabs=0x7f0800b6;
public static final int smallLabel=0x7f080073;
public static final int snackbar_action=0x7f08007a;
public static final int snackbar_text=0x7f080079;
public static final int snap=0x7f08002e;
public static final int spacer=0x7f08004c;
public static final int split_action_bar=0x7f080008;
public static final int src_atop=0x7f08001b;
public static final int src_in=0x7f08001c;
public static final int src_over=0x7f08001d;
public static final int start=0x7f080036;
public static final int status_bar_latest_event_content=0x7f0800a4;
public static final int submenuarrow=0x7f08005e;
public static final int submit_area=0x7f08006f;
public static final int tabMode=0x7f080011;
public static final int text=0x7f0800b4;
public static final int text2=0x7f0800b2;
public static final int textSpacerNoButtons=0x7f080052;
public static final int textSpacerNoTitle=0x7f080051;
public static final int textViewStatus=0x7f080082;
public static final int text_input_password_toggle=0x7f080080;
public static final int textinput_counter=0x7f08000c;
public static final int textinput_error=0x7f08000d;
public static final int time=0x7f0800aa;
public static final int title=0x7f08004a;
public static final int titleDividerNoCustom=0x7f080059;
public static final int title_template=0x7f080057;
public static final int toolbar=0x7f0800b7;
public static final int top=0x7f080029;
public static final int topPanel=0x7f080056;
public static final int touch_outside=0x7f080077;
public static final int transition_current_scene=0x7f08000a;
public static final int transition_scene_layoutid_cache=0x7f08000b;
public static final int up=0x7f080009;
public static final int useLogo=0x7f080018;
public static final int view_offset_helper=0x7f08000e;
public static final int visible=0x7f0800b8;
public static final int volume_item_container=0x7f080097;
public static final int withText=0x7f080027;
public static final int wrap_content=0x7f08001f;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f0a0003;
public static final int abc_config_activityShortDur=0x7f0a0004;
public static final int app_bar_elevation_anim_duration=0x7f0a0008;
public static final int bottom_sheet_slide_duration=0x7f0a0009;
public static final int cancel_button_image_alpha=0x7f0a0005;
public static final int design_snackbar_text_max_lines=0x7f0a0007;
public static final int hide_password_duration=0x7f0a000a;
public static final int mr_controller_volume_group_list_animation_duration_ms=0x7f0a0000;
public static final int mr_controller_volume_group_list_fade_in_duration_ms=0x7f0a0001;
public static final int mr_controller_volume_group_list_fade_out_duration_ms=0x7f0a0002;
public static final int show_password_duration=0x7f0a000b;
public static final int status_bar_notification_info_maxnum=0x7f0a0006;
}
public static final class interpolator {
public static final int mr_fast_out_slow_in=0x7f060000;
public static final int mr_linear_out_slow_in=0x7f060001;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f030000;
public static final int abc_action_bar_up_container=0x7f030001;
public static final int abc_action_bar_view_list_nav_layout=0x7f030002;
public static final int abc_action_menu_item_layout=0x7f030003;
public static final int abc_action_menu_layout=0x7f030004;
public static final int abc_action_mode_bar=0x7f030005;
public static final int abc_action_mode_close_item_material=0x7f030006;
public static final int abc_activity_chooser_view=0x7f030007;
public static final int abc_activity_chooser_view_list_item=0x7f030008;
public static final int abc_alert_dialog_button_bar_material=0x7f030009;
public static final int abc_alert_dialog_material=0x7f03000a;
public static final int abc_alert_dialog_title_material=0x7f03000b;
public static final int abc_dialog_title_material=0x7f03000c;
public static final int abc_expanded_menu_layout=0x7f03000d;
public static final int abc_list_menu_item_checkbox=0x7f03000e;
public static final int abc_list_menu_item_icon=0x7f03000f;
public static final int abc_list_menu_item_layout=0x7f030010;
public static final int abc_list_menu_item_radio=0x7f030011;
public static final int abc_popup_menu_header_item_layout=0x7f030012;
public static final int abc_popup_menu_item_layout=0x7f030013;
public static final int abc_screen_content_include=0x7f030014;
public static final int abc_screen_simple=0x7f030015;
public static final int abc_screen_simple_overlay_action_mode=0x7f030016;
public static final int abc_screen_toolbar=0x7f030017;
public static final int abc_search_dropdown_item_icons_2line=0x7f030018;
public static final int abc_search_view=0x7f030019;
public static final int abc_select_dialog_material=0x7f03001a;
public static final int design_bottom_navigation_item=0x7f03001b;
public static final int design_bottom_sheet_dialog=0x7f03001c;
public static final int design_layout_snackbar=0x7f03001d;
public static final int design_layout_snackbar_include=0x7f03001e;
public static final int design_layout_tab_icon=0x7f03001f;
public static final int design_layout_tab_text=0x7f030020;
public static final int design_menu_item_action_area=0x7f030021;
public static final int design_navigation_item=0x7f030022;
public static final int design_navigation_item_header=0x7f030023;
public static final int design_navigation_item_separator=0x7f030024;
public static final int design_navigation_item_subheader=0x7f030025;
public static final int design_navigation_menu=0x7f030026;
public static final int design_navigation_menu_item=0x7f030027;
public static final int design_text_input_password_icon=0x7f030028;
public static final int loading=0x7f030029;
public static final int loadingimage=0x7f03002a;
public static final int loadingprogress=0x7f03002b;
public static final int mr_chooser_dialog=0x7f03002c;
public static final int mr_chooser_list_item=0x7f03002d;
public static final int mr_controller_material_dialog_b=0x7f03002e;
public static final int mr_controller_volume_item=0x7f03002f;
public static final int mr_playback_control=0x7f030030;
public static final int mr_volume_control=0x7f030031;
public static final int notification_action=0x7f030032;
public static final int notification_action_tombstone=0x7f030033;
public static final int notification_media_action=0x7f030034;
public static final int notification_media_cancel_action=0x7f030035;
public static final int notification_template_big_media=0x7f030036;
public static final int notification_template_big_media_custom=0x7f030037;
public static final int notification_template_big_media_narrow=0x7f030038;
public static final int notification_template_big_media_narrow_custom=0x7f030039;
public static final int notification_template_custom_big=0x7f03003a;
public static final int notification_template_icon_group=0x7f03003b;
public static final int notification_template_lines_media=0x7f03003c;
public static final int notification_template_media=0x7f03003d;
public static final int notification_template_media_custom=0x7f03003e;
public static final int notification_template_part_chronometer=0x7f03003f;
public static final int notification_template_part_time=0x7f030040;
public static final int select_dialog_item_material=0x7f030041;
public static final int select_dialog_multichoice_material=0x7f030042;
public static final int select_dialog_singlechoice_material=0x7f030043;
public static final int support_simple_spinner_dropdown_item=0x7f030044;
public static final int tabbar=0x7f030045;
public static final int toolbar=0x7f030046;
}
public static final class string {
public static final int abc_action_bar_home_description=0x7f090015;
public static final int abc_action_bar_home_description_format=0x7f090016;
public static final int abc_action_bar_home_subtitle_description_format=0x7f090017;
public static final int abc_action_bar_up_description=0x7f090018;
public static final int abc_action_menu_overflow_description=0x7f090019;
public static final int abc_action_mode_done=0x7f09001a;
public static final int abc_activity_chooser_view_see_all=0x7f09001b;
public static final int abc_activitychooserview_choose_application=0x7f09001c;
public static final int abc_capital_off=0x7f09001d;
public static final int abc_capital_on=0x7f09001e;
public static final int abc_font_family_body_1_material=0x7f09002a;
public static final int abc_font_family_body_2_material=0x7f09002b;
public static final int abc_font_family_button_material=0x7f09002c;
public static final int abc_font_family_caption_material=0x7f09002d;
public static final int abc_font_family_display_1_material=0x7f09002e;
public static final int abc_font_family_display_2_material=0x7f09002f;
public static final int abc_font_family_display_3_material=0x7f090030;
public static final int abc_font_family_display_4_material=0x7f090031;
public static final int abc_font_family_headline_material=0x7f090032;
public static final int abc_font_family_menu_material=0x7f090033;
public static final int abc_font_family_subhead_material=0x7f090034;
public static final int abc_font_family_title_material=0x7f090035;
public static final int abc_search_hint=0x7f09001f;
public static final int abc_searchview_description_clear=0x7f090020;
public static final int abc_searchview_description_query=0x7f090021;
public static final int abc_searchview_description_search=0x7f090022;
public static final int abc_searchview_description_submit=0x7f090023;
public static final int abc_searchview_description_voice=0x7f090024;
public static final int abc_shareactionprovider_share_with=0x7f090025;
public static final int abc_shareactionprovider_share_with_application=0x7f090026;
public static final int abc_toolbar_collapse_description=0x7f090027;
public static final int appbar_scrolling_view_behavior=0x7f090036;
public static final int bottom_sheet_behavior=0x7f090037;
public static final int character_counter_pattern=0x7f090038;
public static final int library_name=0x7f09003e;
public static final int mr_button_content_description=0x7f090000;
public static final int mr_cast_button_connected=0x7f090001;
public static final int mr_cast_button_connecting=0x7f090002;
public static final int mr_cast_button_disconnected=0x7f090003;
public static final int mr_chooser_searching=0x7f090004;
public static final int mr_chooser_title=0x7f090005;
public static final int mr_controller_album_art=0x7f090006;
public static final int mr_controller_casting_screen=0x7f090007;
public static final int mr_controller_close_description=0x7f090008;
public static final int mr_controller_collapse_group=0x7f090009;
public static final int mr_controller_disconnect=0x7f09000a;
public static final int mr_controller_expand_group=0x7f09000b;
public static final int mr_controller_no_info_available=0x7f09000c;
public static final int mr_controller_no_media_selected=0x7f09000d;
public static final int mr_controller_pause=0x7f09000e;
public static final int mr_controller_play=0x7f09000f;
public static final int mr_controller_stop=0x7f090014;
public static final int mr_controller_stop_casting=0x7f090010;
public static final int mr_controller_volume_slider=0x7f090011;
public static final int mr_system_route_name=0x7f090012;
public static final int mr_user_route_category_name=0x7f090013;
public static final int password_toggle_content_description=0x7f090039;
public static final int path_password_eye=0x7f09003a;
public static final int path_password_eye_mask_strike_through=0x7f09003b;
public static final int path_password_eye_mask_visible=0x7f09003c;
public static final int path_password_strike_through=0x7f09003d;
public static final int search_menu_title=0x7f090028;
public static final int status_bar_notification_info_overflow=0x7f090029;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f0b00ae;
public static final int AlertDialog_AppCompat_Light=0x7f0b00af;
public static final int Animation_AppCompat_Dialog=0x7f0b00b0;
public static final int Animation_AppCompat_DropDownUp=0x7f0b00b1;
public static final int Animation_Design_BottomSheetDialog=0x7f0b0170;
public static final int AppCompatDialogStyle=0x7f0b018b;
public static final int Base_AlertDialog_AppCompat=0x7f0b00b2;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0b00b3;
public static final int Base_Animation_AppCompat_Dialog=0x7f0b00b4;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0b00b5;
public static final int Base_CardView=0x7f0b000c;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0b00b6;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0b00b7;
public static final int Base_TextAppearance_AppCompat=0x7f0b004e;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f0b004f;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f0b0050;
public static final int Base_TextAppearance_AppCompat_Button=0x7f0b0036;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f0b0051;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f0b0052;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f0b0053;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f0b0054;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f0b0055;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f0b0056;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0b001a;
public static final int Base_TextAppearance_AppCompat_Large=0x7f0b0057;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0b001b;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b0058;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0059;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f0b005a;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0b001c;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f0b005b;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0b00b8;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b005c;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0b005d;
public static final int Base_TextAppearance_AppCompat_Small=0x7f0b005e;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0b001d;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0b005f;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0b001e;
public static final int Base_TextAppearance_AppCompat_Title=0x7f0b0060;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0b001f;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b00a3;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0061;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0062;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0063;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0064;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0065;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0066;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0b0067;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b00aa;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b00ab;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b00a4;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b00b9;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0068;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0069;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b006a;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0b006b;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b006c;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b00ba;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b006d;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b006e;
public static final int Base_Theme_AppCompat=0x7f0b006f;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0b00bb;
public static final int Base_Theme_AppCompat_Dialog=0x7f0b0020;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0b0021;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0b00bc;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0b0022;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0b0010;
public static final int Base_Theme_AppCompat_Light=0x7f0b0070;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0b00bd;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0b0023;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0b0024;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0b00be;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0025;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0011;
public static final int Base_ThemeOverlay_AppCompat=0x7f0b00bf;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0b00c0;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0b00c1;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b00c2;
public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0b0026;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b0027;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0b00c3;
public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0b0028;
public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0b0029;
public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0b002a;
public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0b0032;
public static final int Base_V12_Widget_AppCompat_EditText=0x7f0b0033;
public static final int Base_V21_Theme_AppCompat=0x7f0b0071;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0b0072;
public static final int Base_V21_Theme_AppCompat_Light=0x7f0b0073;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0b0074;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0b0075;
public static final int Base_V22_Theme_AppCompat=0x7f0b00a1;
public static final int Base_V22_Theme_AppCompat_Light=0x7f0b00a2;
public static final int Base_V23_Theme_AppCompat=0x7f0b00a5;
public static final int Base_V23_Theme_AppCompat_Light=0x7f0b00a6;
public static final int Base_V7_Theme_AppCompat=0x7f0b00c4;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0b00c5;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0b00c6;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0b00c7;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0b00c8;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0b00c9;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0b00ca;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0b00cb;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0b00cc;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0b00cd;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0b0076;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0b0077;
public static final int Base_Widget_AppCompat_ActionButton=0x7f0b0078;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0079;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0b007a;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0b00ce;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0b00cf;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0b0034;
public static final int Base_Widget_AppCompat_Button=0x7f0b007b;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0b007c;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0b007d;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b00d0;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f0b00a7;
public static final int Base_Widget_AppCompat_Button_Small=0x7f0b007e;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f0b007f;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b00d1;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0080;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0b0081;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0b00d2;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0b000f;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0b00d3;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0b0082;
public static final int Base_Widget_AppCompat_EditText=0x7f0b0035;
public static final int Base_Widget_AppCompat_ImageButton=0x7f0b0083;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0b00d4;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0b00d5;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b00d6;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0084;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0085;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0086;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0b0087;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0088;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0b00d7;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0b0089;
public static final int Base_Widget_AppCompat_ListView=0x7f0b008a;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0b008b;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0b008c;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f0b008d;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0b008e;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0b00d8;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f0b002b;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0b002c;
public static final int Base_Widget_AppCompat_RatingBar=0x7f0b008f;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0b00a8;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0b00a9;
public static final int Base_Widget_AppCompat_SearchView=0x7f0b00d9;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0b00da;
public static final int Base_Widget_AppCompat_SeekBar=0x7f0b0090;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0b00db;
public static final int Base_Widget_AppCompat_Spinner=0x7f0b0091;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0b0012;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0b0092;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0b00dc;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b0093;
public static final int Base_Widget_Design_AppBarLayout=0x7f0b0171;
public static final int Base_Widget_Design_TabLayout=0x7f0b0172;
public static final int CardView=0x7f0b000b;
public static final int CardView_Dark=0x7f0b000d;
public static final int CardView_Light=0x7f0b000e;
public static final int MyTheme=0x7f0b0189;
/** Base theme applied no matter what API
*/
public static final int MyTheme_Base=0x7f0b018a;
public static final int Platform_AppCompat=0x7f0b002d;
public static final int Platform_AppCompat_Light=0x7f0b002e;
public static final int Platform_ThemeOverlay_AppCompat=0x7f0b0094;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0b0095;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0b0096;
public static final int Platform_V11_AppCompat=0x7f0b002f;
public static final int Platform_V11_AppCompat_Light=0x7f0b0030;
public static final int Platform_V14_AppCompat=0x7f0b0037;
public static final int Platform_V14_AppCompat_Light=0x7f0b0038;
public static final int Platform_V21_AppCompat=0x7f0b0097;
public static final int Platform_V21_AppCompat_Light=0x7f0b0098;
public static final int Platform_V25_AppCompat=0x7f0b00ac;
public static final int Platform_V25_AppCompat_Light=0x7f0b00ad;
public static final int Platform_Widget_AppCompat_Spinner=0x7f0b0031;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0b0040;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0b0041;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0b0042;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0b0043;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0b0044;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0b0045;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0b0046;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0b0047;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0b0048;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0b0049;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0b004a;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0b004b;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0b004c;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0b004d;
public static final int TextAppearance_AppCompat=0x7f0b00dd;
public static final int TextAppearance_AppCompat_Body1=0x7f0b00de;
public static final int TextAppearance_AppCompat_Body2=0x7f0b00df;
public static final int TextAppearance_AppCompat_Button=0x7f0b00e0;
public static final int TextAppearance_AppCompat_Caption=0x7f0b00e1;
public static final int TextAppearance_AppCompat_Display1=0x7f0b00e2;
public static final int TextAppearance_AppCompat_Display2=0x7f0b00e3;
public static final int TextAppearance_AppCompat_Display3=0x7f0b00e4;
public static final int TextAppearance_AppCompat_Display4=0x7f0b00e5;
public static final int TextAppearance_AppCompat_Headline=0x7f0b00e6;
public static final int TextAppearance_AppCompat_Inverse=0x7f0b00e7;
public static final int TextAppearance_AppCompat_Large=0x7f0b00e8;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0b00e9;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b00ea;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b00eb;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b00ec;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b00ed;
public static final int TextAppearance_AppCompat_Medium=0x7f0b00ee;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0b00ef;
public static final int TextAppearance_AppCompat_Menu=0x7f0b00f0;
public static final int TextAppearance_AppCompat_Notification=0x7f0b0039;
public static final int TextAppearance_AppCompat_Notification_Info=0x7f0b0099;
public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0b009a;
public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0b00f1;
public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0b00f2;
public static final int TextAppearance_AppCompat_Notification_Media=0x7f0b009b;
public static final int TextAppearance_AppCompat_Notification_Time=0x7f0b009c;
public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0b009d;
public static final int TextAppearance_AppCompat_Notification_Title=0x7f0b003a;
public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0b009e;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b00f3;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b00f4;
public static final int TextAppearance_AppCompat_Small=0x7f0b00f5;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0b00f6;
public static final int TextAppearance_AppCompat_Subhead=0x7f0b00f7;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0b00f8;
public static final int TextAppearance_AppCompat_Title=0x7f0b00f9;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0b00fa;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b00fb;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b00fc;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b00fd;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b00fe;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b00ff;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0100;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b0101;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0102;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b0103;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0b0104;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b0105;
public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b0106;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b0107;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0108;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0109;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b010a;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b010b;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0b010c;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b010d;
public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0b0173;
public static final int TextAppearance_Design_Counter=0x7f0b0174;
public static final int TextAppearance_Design_Counter_Overflow=0x7f0b0175;
public static final int TextAppearance_Design_Error=0x7f0b0176;
public static final int TextAppearance_Design_Hint=0x7f0b0177;
public static final int TextAppearance_Design_Snackbar_Message=0x7f0b0178;
public static final int TextAppearance_Design_Tab=0x7f0b0179;
public static final int TextAppearance_MediaRouter_PrimaryText=0x7f0b0000;
public static final int TextAppearance_MediaRouter_SecondaryText=0x7f0b0001;
public static final int TextAppearance_MediaRouter_Title=0x7f0b0002;
public static final int TextAppearance_StatusBar_EventContent=0x7f0b003b;
public static final int TextAppearance_StatusBar_EventContent_Info=0x7f0b003c;
public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f0b003d;
public static final int TextAppearance_StatusBar_EventContent_Time=0x7f0b003e;
public static final int TextAppearance_StatusBar_EventContent_Title=0x7f0b003f;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b010e;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b010f;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0110;
public static final int Theme_AppCompat=0x7f0b0111;
public static final int Theme_AppCompat_CompactMenu=0x7f0b0112;
public static final int Theme_AppCompat_DayNight=0x7f0b0013;
public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0b0014;
public static final int Theme_AppCompat_DayNight_Dialog=0x7f0b0015;
public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0b0016;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0b0017;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0b0018;
public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0b0019;
public static final int Theme_AppCompat_Dialog=0x7f0b0113;
public static final int Theme_AppCompat_Dialog_Alert=0x7f0b0114;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0b0115;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b0116;
public static final int Theme_AppCompat_Light=0x7f0b0117;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0118;
public static final int Theme_AppCompat_Light_Dialog=0x7f0b0119;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0b011a;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b011b;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b011c;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0b011d;
public static final int Theme_AppCompat_NoActionBar=0x7f0b011e;
public static final int Theme_Design=0x7f0b017a;
public static final int Theme_Design_BottomSheetDialog=0x7f0b017b;
public static final int Theme_Design_Light=0x7f0b017c;
public static final int Theme_Design_Light_BottomSheetDialog=0x7f0b017d;
public static final int Theme_Design_Light_NoActionBar=0x7f0b017e;
public static final int Theme_Design_NoActionBar=0x7f0b017f;
public static final int Theme_MediaRouter=0x7f0b0003;
public static final int Theme_MediaRouter_Light=0x7f0b0004;
public static final int Theme_MediaRouter_Light_DarkControlPanel=0x7f0b0005;
public static final int Theme_MediaRouter_LightControlPanel=0x7f0b0006;
public static final int ThemeOverlay_AppCompat=0x7f0b011f;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0b0120;
public static final int ThemeOverlay_AppCompat_Dark=0x7f0b0121;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b0122;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f0b0123;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b0124;
public static final int ThemeOverlay_AppCompat_Light=0x7f0b0125;
public static final int ThemeOverlay_MediaRouter_Dark=0x7f0b0007;
public static final int ThemeOverlay_MediaRouter_Light=0x7f0b0008;
public static final int Widget_AppCompat_ActionBar=0x7f0b0126;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b0127;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b0128;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0129;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b012a;
public static final int Widget_AppCompat_ActionButton=0x7f0b012b;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b012c;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b012d;
public static final int Widget_AppCompat_ActionMode=0x7f0b012e;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0b012f;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b0130;
public static final int Widget_AppCompat_Button=0x7f0b0131;
public static final int Widget_AppCompat_Button_Borderless=0x7f0b0132;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0b0133;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b0134;
public static final int Widget_AppCompat_Button_Colored=0x7f0b0135;
public static final int Widget_AppCompat_Button_Small=0x7f0b0136;
public static final int Widget_AppCompat_ButtonBar=0x7f0b0137;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b0138;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0139;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0b013a;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0b013b;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0b013c;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b013d;
public static final int Widget_AppCompat_EditText=0x7f0b013e;
public static final int Widget_AppCompat_ImageButton=0x7f0b013f;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0b0140;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0141;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b0142;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b0143;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0144;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0145;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0146;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0147;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0148;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0b0149;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b014a;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b014b;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b014c;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b014d;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b014e;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b014f;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b0150;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b0151;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b0152;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0153;
public static final int Widget_AppCompat_Light_SearchView=0x7f0b0154;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b0155;
public static final int Widget_AppCompat_ListMenuView=0x7f0b0156;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0157;
public static final int Widget_AppCompat_ListView=0x7f0b0158;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0159;
public static final int Widget_AppCompat_ListView_Menu=0x7f0b015a;
public static final int Widget_AppCompat_NotificationActionContainer=0x7f0b009f;
public static final int Widget_AppCompat_NotificationActionText=0x7f0b00a0;
public static final int Widget_AppCompat_PopupMenu=0x7f0b015b;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0b015c;
public static final int Widget_AppCompat_PopupWindow=0x7f0b015d;
public static final int Widget_AppCompat_ProgressBar=0x7f0b015e;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b015f;
public static final int Widget_AppCompat_RatingBar=0x7f0b0160;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0b0161;
public static final int Widget_AppCompat_RatingBar_Small=0x7f0b0162;
public static final int Widget_AppCompat_SearchView=0x7f0b0163;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0b0164;
public static final int Widget_AppCompat_SeekBar=0x7f0b0165;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0b0166;
public static final int Widget_AppCompat_Spinner=0x7f0b0167;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f0b0168;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0169;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f0b016a;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0b016b;
public static final int Widget_AppCompat_Toolbar=0x7f0b016c;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b016d;
public static final int Widget_Design_AppBarLayout=0x7f0b016f;
public static final int Widget_Design_BottomNavigationView=0x7f0b0180;
public static final int Widget_Design_BottomSheet_Modal=0x7f0b0181;
public static final int Widget_Design_CollapsingToolbar=0x7f0b0182;
public static final int Widget_Design_CoordinatorLayout=0x7f0b0183;
public static final int Widget_Design_FloatingActionButton=0x7f0b0184;
public static final int Widget_Design_NavigationView=0x7f0b0185;
public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0b0186;
public static final int Widget_Design_Snackbar=0x7f0b0187;
public static final int Widget_Design_TabLayout=0x7f0b016e;
public static final int Widget_Design_TextInputLayout=0x7f0b0188;
public static final int Widget_MediaRouter_Light_MediaRouteButton=0x7f0b0009;
public static final int Widget_MediaRouter_MediaRouteButton=0x7f0b000a;
}
public static final class styleable {
/** Attributes that can be used with a ActionBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBar_background com.companyname.CarFinder_Xamarin:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit com.companyname.CarFinder_Xamarin:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked com.companyname.CarFinder_Xamarin:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd com.companyname.CarFinder_Xamarin:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.companyname.CarFinder_Xamarin:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft com.companyname.CarFinder_Xamarin:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight com.companyname.CarFinder_Xamarin:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart com.companyname.CarFinder_Xamarin:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.companyname.CarFinder_Xamarin:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout com.companyname.CarFinder_Xamarin:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions com.companyname.CarFinder_Xamarin:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider com.companyname.CarFinder_Xamarin:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation com.companyname.CarFinder_Xamarin:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height com.companyname.CarFinder_Xamarin:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll com.companyname.CarFinder_Xamarin:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator com.companyname.CarFinder_Xamarin:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout com.companyname.CarFinder_Xamarin:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon com.companyname.CarFinder_Xamarin:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.companyname.CarFinder_Xamarin:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding com.companyname.CarFinder_Xamarin:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo com.companyname.CarFinder_Xamarin:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode com.companyname.CarFinder_Xamarin:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme com.companyname.CarFinder_Xamarin:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding com.companyname.CarFinder_Xamarin:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle com.companyname.CarFinder_Xamarin:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle com.companyname.CarFinder_Xamarin:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle com.companyname.CarFinder_Xamarin:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title com.companyname.CarFinder_Xamarin:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle com.companyname.CarFinder_Xamarin: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 = {
0x7f01001d, 0x7f01001f, 0x7f010020, 0x7f010021,
0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025,
0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029,
0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d,
0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031,
0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035,
0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039,
0x7f010079
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#background}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.CarFinder_Xamarin:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#backgroundStacked}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.CarFinder_Xamarin:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentInsetRight}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentInsetStart}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#customNavigationLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#displayOptions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#divider}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#elevation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:elevation
*/
public static final int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#height}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#hideOnContentScroll}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#homeLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#icon}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#indeterminateProgressStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#itemPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#logo}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#navigationMode}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#popupTheme}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:popupTheme
*/
public static final int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#progressBarPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#progressBarStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#subtitle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#title}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:titleTextStyle
*/
public static final int ActionBar_titleTextStyle = 5;
/** Attributes that can be used with a ActionBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
</table>
@see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout = {
0x010100b3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #ActionBarLayout} array.
@attr name android:layout_gravity
*/
public static final int ActionBarLayout_android_layout_gravity = 0;
/** Attributes that can be used with a ActionMenuItemView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
</table>
@see #ActionMenuItemView_android_minWidth
*/
public static final int[] ActionMenuItemView = {
0x0101013f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #ActionMenuItemView} array.
@attr name android:minWidth
*/
public static final int ActionMenuItemView_android_minWidth = 0;
/** Attributes that can be used with a ActionMenuView.
*/
public static final int[] ActionMenuView = {
};
/** Attributes that can be used with a ActionMode.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMode_background com.companyname.CarFinder_Xamarin:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit com.companyname.CarFinder_Xamarin:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout com.companyname.CarFinder_Xamarin:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height com.companyname.CarFinder_Xamarin:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle com.companyname.CarFinder_Xamarin:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle com.companyname.CarFinder_Xamarin: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 = {
0x7f01001d, 0x7f010023, 0x7f010024, 0x7f010028,
0x7f01002a, 0x7f01003a
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#background}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionMode} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.CarFinder_Xamarin:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#closeItemLayout}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#height}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:titleTextStyle
*/
public static final int ActionMode_titleTextStyle = 1;
/** Attributes that can be used with a ActivityChooserView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.companyname.CarFinder_Xamarin:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount com.companyname.CarFinder_Xamarin:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f01003b, 0x7f01003c
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#expandActivityOverflowButtonDrawable}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#initialActivityCount}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount = 0;
/** Attributes that can be used with a AlertDialog.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.companyname.CarFinder_Xamarin:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout com.companyname.CarFinder_Xamarin:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout com.companyname.CarFinder_Xamarin:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.companyname.CarFinder_Xamarin:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle com.companyname.CarFinder_Xamarin:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.companyname.CarFinder_Xamarin: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, 0x7f01003d, 0x7f01003e, 0x7f01003f,
0x7f010040, 0x7f010041, 0x7f010042
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static final int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#buttonPanelSideLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#listItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#listLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#multiChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#showTitle}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:showTitle
*/
public static final int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#singleChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_elevation com.companyname.CarFinder_Xamarin:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded com.companyname.CarFinder_Xamarin:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x7f010038, 0x7f010103
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:background
*/
public static final int AppBarLayout_android_background = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#elevation}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:elevation
*/
public static final int AppBarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#expanded}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:expanded
*/
public static final int AppBarLayout_expanded = 2;
/** Attributes that can be used with a AppBarLayoutStates.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsed com.companyname.CarFinder_Xamarin:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.companyname.CarFinder_Xamarin:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f010104, 0x7f010105
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#state_collapsed}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:state_collapsed
*/
public static final int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#state_collapsible}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:state_collapsible
*/
public static final int AppBarLayoutStates_state_collapsible = 1;
/** Attributes that can be used with a AppBarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags com.companyname.CarFinder_Xamarin:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.companyname.CarFinder_Xamarin:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f010106, 0x7f010107
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#layout_scrollFlags}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:layout_scrollFlags
*/
public static final int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#layout_scrollInterpolator}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:layout_scrollInterpolator
*/
public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1;
/** Attributes that can be used with a AppCompatImageView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_srcCompat com.companyname.CarFinder_Xamarin:srcCompat}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tint com.companyname.CarFinder_Xamarin:tint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tintMode com.companyname.CarFinder_Xamarin: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, 0x7f010043, 0x7f010044, 0x7f010045
};
/**
<p>This symbol is the offset where the {@link android.R.attr#src}
attribute's value can be found in the {@link #AppCompatImageView} array.
@attr name android:src
*/
public static final int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#srcCompat}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:srcCompat
*/
public static final int AppCompatImageView_srcCompat = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tint}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:tint
*/
public static final int AppCompatImageView_tint = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.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>
</table>
@attr name com.companyname.CarFinder_Xamarin:tintMode
*/
public static final int AppCompatImageView_tintMode = 3;
/** Attributes that can be used with a AppCompatSeekBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMark com.companyname.CarFinder_Xamarin:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.companyname.CarFinder_Xamarin:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.companyname.CarFinder_Xamarin: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, 0x7f010046, 0x7f010047, 0x7f010048
};
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
@attr name android:thumb
*/
public static final int AppCompatSeekBar_android_thumb = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tickMark}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:tickMark
*/
public static final int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tickMarkTint}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tickMarkTintMode}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:tickMarkTintMode
*/
public static final int AppCompatSeekBar_tickMarkTintMode = 3;
/** Attributes that can be used with a AppCompatTextHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
</table>
@see #AppCompatTextHelper_android_drawableBottom
@see #AppCompatTextHelper_android_drawableEnd
@see #AppCompatTextHelper_android_drawableLeft
@see #AppCompatTextHelper_android_drawableRight
@see #AppCompatTextHelper_android_drawableStart
@see #AppCompatTextHelper_android_drawableTop
@see #AppCompatTextHelper_android_textAppearance
*/
public static final int[] AppCompatTextHelper = {
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableBottom
*/
public static final int AppCompatTextHelper_android_drawableBottom = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableEnd
*/
public static final int AppCompatTextHelper_android_drawableEnd = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableLeft
*/
public static final int AppCompatTextHelper_android_drawableLeft = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableRight}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableRight
*/
public static final int AppCompatTextHelper_android_drawableRight = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableStart}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableStart
*/
public static final int AppCompatTextHelper_android_drawableStart = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableTop}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableTop
*/
public static final int AppCompatTextHelper_android_drawableTop = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextHelper_android_textAppearance = 0;
/** Attributes that can be used with a AppCompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps com.companyname.CarFinder_Xamarin:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f010049
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextView} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#textAllCaps}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name com.companyname.CarFinder_Xamarin:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps = 1;
/** Attributes that can be used with a AppCompatTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarDivider com.companyname.CarFinder_Xamarin:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.companyname.CarFinder_Xamarin:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.companyname.CarFinder_Xamarin:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize com.companyname.CarFinder_Xamarin:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.companyname.CarFinder_Xamarin:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle com.companyname.CarFinder_Xamarin:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.companyname.CarFinder_Xamarin:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.companyname.CarFinder_Xamarin:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.companyname.CarFinder_Xamarin:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme com.companyname.CarFinder_Xamarin:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.companyname.CarFinder_Xamarin:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.companyname.CarFinder_Xamarin:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.companyname.CarFinder_Xamarin:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.companyname.CarFinder_Xamarin:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.companyname.CarFinder_Xamarin:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground com.companyname.CarFinder_Xamarin:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.companyname.CarFinder_Xamarin:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.companyname.CarFinder_Xamarin:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.companyname.CarFinder_Xamarin:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.companyname.CarFinder_Xamarin:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.companyname.CarFinder_Xamarin:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.companyname.CarFinder_Xamarin:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.companyname.CarFinder_Xamarin:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.companyname.CarFinder_Xamarin:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.companyname.CarFinder_Xamarin:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.companyname.CarFinder_Xamarin:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle com.companyname.CarFinder_Xamarin:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.companyname.CarFinder_Xamarin:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.companyname.CarFinder_Xamarin:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.companyname.CarFinder_Xamarin:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.companyname.CarFinder_Xamarin:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.companyname.CarFinder_Xamarin:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.companyname.CarFinder_Xamarin:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.companyname.CarFinder_Xamarin:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.companyname.CarFinder_Xamarin:alertDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.companyname.CarFinder_Xamarin:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.companyname.CarFinder_Xamarin:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.companyname.CarFinder_Xamarin:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.companyname.CarFinder_Xamarin:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.companyname.CarFinder_Xamarin:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.companyname.CarFinder_Xamarin:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.companyname.CarFinder_Xamarin:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle com.companyname.CarFinder_Xamarin:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.companyname.CarFinder_Xamarin:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle com.companyname.CarFinder_Xamarin:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.companyname.CarFinder_Xamarin:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent com.companyname.CarFinder_Xamarin:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.companyname.CarFinder_Xamarin:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.companyname.CarFinder_Xamarin:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated com.companyname.CarFinder_Xamarin:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.companyname.CarFinder_Xamarin:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal com.companyname.CarFinder_Xamarin:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary com.companyname.CarFinder_Xamarin:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.companyname.CarFinder_Xamarin:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.companyname.CarFinder_Xamarin:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground com.companyname.CarFinder_Xamarin:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.companyname.CarFinder_Xamarin:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme com.companyname.CarFinder_Xamarin:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.companyname.CarFinder_Xamarin:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical com.companyname.CarFinder_Xamarin:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.companyname.CarFinder_Xamarin:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.companyname.CarFinder_Xamarin:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground com.companyname.CarFinder_Xamarin:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor com.companyname.CarFinder_Xamarin:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle com.companyname.CarFinder_Xamarin:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.companyname.CarFinder_Xamarin:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.companyname.CarFinder_Xamarin:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.companyname.CarFinder_Xamarin:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.companyname.CarFinder_Xamarin:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.companyname.CarFinder_Xamarin:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.companyname.CarFinder_Xamarin:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.companyname.CarFinder_Xamarin:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.companyname.CarFinder_Xamarin:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.companyname.CarFinder_Xamarin:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.companyname.CarFinder_Xamarin:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.companyname.CarFinder_Xamarin:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground com.companyname.CarFinder_Xamarin:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.companyname.CarFinder_Xamarin:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.companyname.CarFinder_Xamarin:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.companyname.CarFinder_Xamarin:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.companyname.CarFinder_Xamarin:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.companyname.CarFinder_Xamarin:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.companyname.CarFinder_Xamarin:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.companyname.CarFinder_Xamarin:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.companyname.CarFinder_Xamarin:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle com.companyname.CarFinder_Xamarin:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle com.companyname.CarFinder_Xamarin:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.companyname.CarFinder_Xamarin:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.companyname.CarFinder_Xamarin:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.companyname.CarFinder_Xamarin:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle com.companyname.CarFinder_Xamarin:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle com.companyname.CarFinder_Xamarin:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.companyname.CarFinder_Xamarin:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.companyname.CarFinder_Xamarin:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.companyname.CarFinder_Xamarin:textAppearanceListItemSecondary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.companyname.CarFinder_Xamarin:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.companyname.CarFinder_Xamarin:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.companyname.CarFinder_Xamarin:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.companyname.CarFinder_Xamarin:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.companyname.CarFinder_Xamarin:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.companyname.CarFinder_Xamarin:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.companyname.CarFinder_Xamarin:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.companyname.CarFinder_Xamarin:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle com.companyname.CarFinder_Xamarin:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar com.companyname.CarFinder_Xamarin:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.companyname.CarFinder_Xamarin:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.companyname.CarFinder_Xamarin:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.companyname.CarFinder_Xamarin:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.companyname.CarFinder_Xamarin:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.companyname.CarFinder_Xamarin:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.companyname.CarFinder_Xamarin:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.companyname.CarFinder_Xamarin:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.companyname.CarFinder_Xamarin:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle com.companyname.CarFinder_Xamarin:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorBackgroundFloating
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_colorPrimary
@see #AppCompatTheme_colorPrimaryDark
@see #AppCompatTheme_colorSwitchThumbNormal
@see #AppCompatTheme_controlBackground
@see #AppCompatTheme_dialogPreferredPadding
@see #AppCompatTheme_dialogTheme
@see #AppCompatTheme_dividerHorizontal
@see #AppCompatTheme_dividerVertical
@see #AppCompatTheme_dropDownListViewStyle
@see #AppCompatTheme_dropdownListPreferredItemHeight
@see #AppCompatTheme_editTextBackground
@see #AppCompatTheme_editTextColor
@see #AppCompatTheme_editTextStyle
@see #AppCompatTheme_homeAsUpIndicator
@see #AppCompatTheme_imageButtonStyle
@see #AppCompatTheme_listChoiceBackgroundIndicator
@see #AppCompatTheme_listDividerAlertDialog
@see #AppCompatTheme_listMenuViewStyle
@see #AppCompatTheme_listPopupWindowStyle
@see #AppCompatTheme_listPreferredItemHeight
@see #AppCompatTheme_listPreferredItemHeightLarge
@see #AppCompatTheme_listPreferredItemHeightSmall
@see #AppCompatTheme_listPreferredItemPaddingLeft
@see #AppCompatTheme_listPreferredItemPaddingRight
@see #AppCompatTheme_panelBackground
@see #AppCompatTheme_panelMenuListTheme
@see #AppCompatTheme_panelMenuListWidth
@see #AppCompatTheme_popupMenuStyle
@see #AppCompatTheme_popupWindowStyle
@see #AppCompatTheme_radioButtonStyle
@see #AppCompatTheme_ratingBarStyle
@see #AppCompatTheme_ratingBarStyleIndicator
@see #AppCompatTheme_ratingBarStyleSmall
@see #AppCompatTheme_searchViewStyle
@see #AppCompatTheme_seekBarStyle
@see #AppCompatTheme_selectableItemBackground
@see #AppCompatTheme_selectableItemBackgroundBorderless
@see #AppCompatTheme_spinnerDropDownItemStyle
@see #AppCompatTheme_spinnerStyle
@see #AppCompatTheme_switchStyle
@see #AppCompatTheme_textAppearanceLargePopupMenu
@see #AppCompatTheme_textAppearanceListItem
@see #AppCompatTheme_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_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, 0x7f01004a, 0x7f01004b,
0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f,
0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053,
0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057,
0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b,
0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f,
0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063,
0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067,
0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b,
0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f,
0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073,
0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077,
0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b,
0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f,
0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087,
0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b,
0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f,
0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093,
0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097,
0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b,
0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f,
0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3,
0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7,
0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab,
0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af,
0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3,
0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7,
0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionBarDivider}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionBarItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionBarPopupTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionBarSize}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionBarSplitStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionBarTabBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionBarTabStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionBarTabTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionBarTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionBarWidgetTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionDropDownStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionMenuTextAppearance}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionMenuTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionModeBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionModeCloseButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionModeCloseDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionModeCopyDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionModeCutDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionModeFindDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionModePasteDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionModePopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionModeSelectAllDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionModeShareDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionModeSplitBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionModeStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionModeWebSearchDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionOverflowButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionOverflowMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#activityChooserViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#alertDialogButtonGroupStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#alertDialogCenterButtons}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons = 96;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#alertDialogStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle = 94;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#alertDialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:alertDialogTheme
*/
public static final int AppCompatTheme_alertDialogTheme = 97;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowAnimationStyle
*/
public static final int AppCompatTheme_android_windowAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowIsFloating
*/
public static final int AppCompatTheme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#autoCompleteTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#borderlessButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#buttonBarButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#buttonBarNegativeButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#buttonBarNeutralButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#buttonBarPositiveButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#buttonBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#buttonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle = 103;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#buttonStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall = 104;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#checkboxStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle = 105;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#checkedTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle = 106;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#colorAccent}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:colorAccent
*/
public static final int AppCompatTheme_colorAccent = 86;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#colorBackgroundFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating = 93;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#colorButtonNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal = 90;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#colorControlActivated}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated = 88;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#colorControlHighlight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight = 89;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#colorControlNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal = 87;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#colorPrimary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary = 84;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#colorPrimaryDark}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark = 85;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#colorSwitchThumbNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal = 91;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#controlBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:controlBackground
*/
public static final int AppCompatTheme_controlBackground = 92;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#dialogPreferredPadding}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#dialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#dividerHorizontal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#dividerVertical}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#dropDownListViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#dropdownListPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#editTextBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#editTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.CarFinder_Xamarin:editTextColor
*/
public static final int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#editTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle = 107;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#imageButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#listChoiceBackgroundIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#listDividerAlertDialog}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#listMenuViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle = 115;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#listPopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#listPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#listPreferredItemHeightLarge}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#listPreferredItemHeightSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#listPreferredItemPaddingLeft}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#listPreferredItemPaddingRight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#panelBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:panelBackground
*/
public static final int AppCompatTheme_panelBackground = 80;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#panelMenuListTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme = 82;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#panelMenuListWidth}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth = 81;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#popupMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#popupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#radioButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle = 108;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ratingBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle = 109;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ratingBarStyleIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator = 110;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ratingBarStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall = 111;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#searchViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#seekBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle = 112;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#selectableItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#selectableItemBackgroundBorderless}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#spinnerDropDownItemStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#spinnerStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle = 113;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#switchStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:switchStyle
*/
public static final int AppCompatTheme_switchStyle = 114;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#textAppearanceLargePopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#textAppearanceListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#textAppearanceListItemSecondary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:textAppearanceListItemSecondary
*/
public static final int AppCompatTheme_textAppearanceListItemSecondary = 78;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#textAppearanceListItemSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall = 79;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#textAppearancePopupMenuHeader}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#textAppearanceSearchResultSubtitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#textAppearanceSearchResultTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#textAppearanceSmallPopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#textColorAlertDialogListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.CarFinder_Xamarin:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem = 98;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#textColorSearchUrl}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.CarFinder_Xamarin:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#toolbarNavigationButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#toolbarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#windowActionBar}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#windowActionModeOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#windowFixedHeightMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#windowFixedHeightMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#windowFixedWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#windowFixedWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#windowMinWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#windowMinWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#windowNoTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:windowNoTitle
*/
public static final int AppCompatTheme_windowNoTitle = 3;
/** Attributes that can be used with a BottomNavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomNavigationView_elevation com.companyname.CarFinder_Xamarin:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemBackground com.companyname.CarFinder_Xamarin:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemIconTint com.companyname.CarFinder_Xamarin:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemTextColor com.companyname.CarFinder_Xamarin:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_menu com.companyname.CarFinder_Xamarin: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 = {
0x7f010038, 0x7f01012e, 0x7f01012f, 0x7f010130,
0x7f010131
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#elevation}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:elevation
*/
public static final int BottomNavigationView_elevation = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#itemBackground}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:itemBackground
*/
public static final int BottomNavigationView_itemBackground = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#itemIconTint}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:itemIconTint
*/
public static final int BottomNavigationView_itemIconTint = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#itemTextColor}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:itemTextColor
*/
public static final int BottomNavigationView_itemTextColor = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#menu}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:menu
*/
public static final int BottomNavigationView_menu = 1;
/** Attributes that can be used with a BottomSheetBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable com.companyname.CarFinder_Xamarin:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.companyname.CarFinder_Xamarin:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.companyname.CarFinder_Xamarin: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 = {
0x7f010108, 0x7f010109, 0x7f01010a
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#behavior_hideable}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:behavior_hideable
*/
public static final int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#behavior_peekHeight}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:behavior_peekHeight
*/
public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#behavior_skipCollapsed}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:behavior_skipCollapsed
*/
public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2;
/** Attributes that can be used with a ButtonBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ButtonBarLayout_allowStacking com.companyname.CarFinder_Xamarin:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100bc
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#allowStacking}
attribute's value can be found in the {@link #ButtonBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:allowStacking
*/
public static final int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a CardView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardBackgroundColor com.companyname.CarFinder_Xamarin:cardBackgroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardCornerRadius com.companyname.CarFinder_Xamarin:cardCornerRadius}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardElevation com.companyname.CarFinder_Xamarin:cardElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardMaxElevation com.companyname.CarFinder_Xamarin:cardMaxElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardPreventCornerOverlap com.companyname.CarFinder_Xamarin:cardPreventCornerOverlap}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardUseCompatPadding com.companyname.CarFinder_Xamarin:cardUseCompatPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPadding com.companyname.CarFinder_Xamarin:contentPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingBottom com.companyname.CarFinder_Xamarin:contentPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingLeft com.companyname.CarFinder_Xamarin:contentPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingRight com.companyname.CarFinder_Xamarin:contentPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingTop com.companyname.CarFinder_Xamarin: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, 0x7f010011, 0x7f010012,
0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016,
0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a,
0x7f01001b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minHeight
*/
public static final int CardView_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minWidth
*/
public static final int CardView_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#cardBackgroundColor}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:cardBackgroundColor
*/
public static final int CardView_cardBackgroundColor = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#cardCornerRadius}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:cardCornerRadius
*/
public static final int CardView_cardCornerRadius = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#cardElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:cardElevation
*/
public static final int CardView_cardElevation = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#cardMaxElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:cardMaxElevation
*/
public static final int CardView_cardMaxElevation = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#cardPreventCornerOverlap}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:cardPreventCornerOverlap
*/
public static final int CardView_cardPreventCornerOverlap = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#cardUseCompatPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:cardUseCompatPadding
*/
public static final int CardView_cardUseCompatPadding = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentPadding
*/
public static final int CardView_contentPadding = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentPaddingBottom}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentPaddingBottom
*/
public static final int CardView_contentPaddingBottom = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentPaddingLeft}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentPaddingLeft
*/
public static final int CardView_contentPaddingLeft = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentPaddingRight}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentPaddingRight
*/
public static final int CardView_contentPaddingRight = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentPaddingTop}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentPaddingTop
*/
public static final int CardView_contentPaddingTop = 11;
/** Attributes that can be used with a CollapsingToolbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity com.companyname.CarFinder_Xamarin:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.companyname.CarFinder_Xamarin:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.companyname.CarFinder_Xamarin:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.companyname.CarFinder_Xamarin:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.companyname.CarFinder_Xamarin:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.companyname.CarFinder_Xamarin:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.companyname.CarFinder_Xamarin:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.companyname.CarFinder_Xamarin:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.companyname.CarFinder_Xamarin:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.companyname.CarFinder_Xamarin:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.companyname.CarFinder_Xamarin:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.companyname.CarFinder_Xamarin:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.companyname.CarFinder_Xamarin:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title com.companyname.CarFinder_Xamarin:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.companyname.CarFinder_Xamarin:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.companyname.CarFinder_Xamarin: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 = {
0x7f01001f, 0x7f01010b, 0x7f01010c, 0x7f01010d,
0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111,
0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115,
0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#collapsedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:collapsedTitleGravity
*/
public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#collapsedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:collapsedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentScrim
*/
public static final int CollapsingToolbarLayout_contentScrim = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#expandedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:expandedTitleGravity
*/
public static final int CollapsingToolbarLayout_expandedTitleGravity = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#expandedTitleMargin}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:expandedTitleMargin
*/
public static final int CollapsingToolbarLayout_expandedTitleMargin = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#expandedTitleMarginBottom}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:expandedTitleMarginBottom
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#expandedTitleMarginEnd}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:expandedTitleMarginEnd
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#expandedTitleMarginStart}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:expandedTitleMarginStart
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#expandedTitleMarginTop}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:expandedTitleMarginTop
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#expandedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:expandedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#scrimAnimationDuration}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:scrimAnimationDuration
*/
public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#scrimVisibleHeightTrigger}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:scrimVisibleHeightTrigger
*/
public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#statusBarScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:statusBarScrim
*/
public static final int CollapsingToolbarLayout_statusBarScrim = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#title}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:title
*/
public static final int CollapsingToolbarLayout_title = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#titleEnabled}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:titleEnabled
*/
public static final int CollapsingToolbarLayout_titleEnabled = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#toolbarId}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:toolbarId
*/
public static final int CollapsingToolbarLayout_toolbarId = 10;
/** Attributes that can be used with a CollapsingToolbarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode com.companyname.CarFinder_Xamarin:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.companyname.CarFinder_Xamarin:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f01011a, 0x7f01011b
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#layout_collapseMode}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:layout_collapseMode
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#layout_collapseParallaxMultiplier}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:layout_collapseParallaxMultiplier
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1;
/** Attributes that can be used with a ColorStateListItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ColorStateListItem_alpha com.companyname.CarFinder_Xamarin: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, 0x7f0100bd
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:alpha
*/
public static final int ColorStateListItem_alpha = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:alpha
*/
public static final int ColorStateListItem_android_alpha = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#color}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:color
*/
public static final int ColorStateListItem_android_color = 0;
/** Attributes that can be used with a CompoundButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTint com.companyname.CarFinder_Xamarin:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode com.companyname.CarFinder_Xamarin:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100be, 0x7f0100bf
};
/**
<p>This symbol is the offset where the {@link android.R.attr#button}
attribute's value can be found in the {@link #CompoundButton} array.
@attr name android:button
*/
public static final int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#buttonTint}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#buttonTintMode}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:buttonTintMode
*/
public static final int CompoundButton_buttonTintMode = 2;
/** Attributes that can be used with a CoordinatorLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_keylines com.companyname.CarFinder_Xamarin:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.companyname.CarFinder_Xamarin:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f01011c, 0x7f01011d
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#keylines}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:keylines
*/
public static final int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#statusBarBackground}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:statusBarBackground
*/
public static final int CoordinatorLayout_statusBarBackground = 1;
/** Attributes that can be used with a CoordinatorLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor com.companyname.CarFinder_Xamarin:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.companyname.CarFinder_Xamarin:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.companyname.CarFinder_Xamarin:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.companyname.CarFinder_Xamarin:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.companyname.CarFinder_Xamarin:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.companyname.CarFinder_Xamarin: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, 0x7f01011e, 0x7f01011f, 0x7f010120,
0x7f010121, 0x7f010122, 0x7f010123
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
@attr name android:layout_gravity
*/
public static final int CoordinatorLayout_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#layout_anchor}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:layout_anchor
*/
public static final int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#layout_anchorGravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:layout_anchorGravity
*/
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#layout_behavior}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:layout_behavior
*/
public static final int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#layout_dodgeInsetEdges}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:layout_dodgeInsetEdges
*/
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#layout_insetEdge}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:layout_insetEdge
*/
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#layout_keyline}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:layout_keyline
*/
public static final int CoordinatorLayout_Layout_layout_keyline = 3;
/** Attributes that can be used with a DesignTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme com.companyname.CarFinder_Xamarin:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle com.companyname.CarFinder_Xamarin:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError com.companyname.CarFinder_Xamarin:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f010124, 0x7f010125, 0x7f010126
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#bottomSheetDialogTheme}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:bottomSheetDialogTheme
*/
public static final int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#bottomSheetStyle}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:bottomSheetStyle
*/
public static final int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#textColorError}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:textColorError
*/
public static final int DesignTheme_textColorError = 2;
/** Attributes that can be used with a DrawerArrowToggle.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.companyname.CarFinder_Xamarin:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.companyname.CarFinder_Xamarin:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength com.companyname.CarFinder_Xamarin:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color com.companyname.CarFinder_Xamarin:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize com.companyname.CarFinder_Xamarin:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.companyname.CarFinder_Xamarin:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars com.companyname.CarFinder_Xamarin:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness com.companyname.CarFinder_Xamarin: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 = {
0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3,
0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#arrowHeadLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#arrowShaftLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#barLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#color}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#drawableSize}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#gapBetweenBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#spinBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#thickness}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:thickness
*/
public static final int DrawerArrowToggle_thickness = 7;
/** Attributes that can be used with a FloatingActionButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTint com.companyname.CarFinder_Xamarin:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.companyname.CarFinder_Xamarin:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth com.companyname.CarFinder_Xamarin:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation com.companyname.CarFinder_Xamarin:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize com.companyname.CarFinder_Xamarin:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.companyname.CarFinder_Xamarin:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor com.companyname.CarFinder_Xamarin:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding com.companyname.CarFinder_Xamarin: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 = {
0x7f010038, 0x7f010101, 0x7f010102, 0x7f010127,
0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#backgroundTint}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:backgroundTint
*/
public static final int FloatingActionButton_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:backgroundTintMode
*/
public static final int FloatingActionButton_backgroundTintMode = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#borderWidth}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:borderWidth
*/
public static final int FloatingActionButton_borderWidth = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#elevation}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:elevation
*/
public static final int FloatingActionButton_elevation = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#fabSize}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:fabSize
*/
public static final int FloatingActionButton_fabSize = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#pressedTranslationZ}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:pressedTranslationZ
*/
public static final int FloatingActionButton_pressedTranslationZ = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#rippleColor}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:rippleColor
*/
public static final int FloatingActionButton_rippleColor = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#useCompatPadding}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:useCompatPadding
*/
public static final int FloatingActionButton_useCompatPadding = 7;
/** Attributes that can be used with a FloatingActionButton_Behavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide com.companyname.CarFinder_Xamarin:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f01012c
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#behavior_autoHide}
attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:behavior_autoHide
*/
public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0;
/** Attributes that can be used with a ForegroundLinearLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding com.companyname.CarFinder_Xamarin: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, 0x7f01012d
};
/**
<p>This symbol is the offset where the {@link android.R.attr#foreground}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foreground
*/
public static final int ForegroundLinearLayout_android_foreground = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#foregroundGravity}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foregroundGravity
*/
public static final int ForegroundLinearLayout_android_foregroundGravity = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#foregroundInsidePadding}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:foregroundInsidePadding
*/
public static final int ForegroundLinearLayout_foregroundInsidePadding = 2;
/** Attributes that can be used with a LinearLayoutCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_divider com.companyname.CarFinder_Xamarin:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.companyname.CarFinder_Xamarin:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.companyname.CarFinder_Xamarin:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers com.companyname.CarFinder_Xamarin: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, 0x7f010027, 0x7f0100c8, 0x7f0100c9,
0x7f0100ca
};
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAligned
*/
public static final int LinearLayoutCompat_android_baselineAligned = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAlignedChildIndex
*/
public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:gravity
*/
public static final int LinearLayoutCompat_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:orientation
*/
public static final int LinearLayoutCompat_android_orientation = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#weightSum}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:weightSum
*/
public static final int LinearLayoutCompat_android_weightSum = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#divider}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#dividerPadding}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#measureWithLargestChild}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#showDividers}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:showDividers
*/
public static final int LinearLayoutCompat_showDividers = 7;
/** Attributes that can be used with a LinearLayoutCompat_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_Layout_android_layout_gravity
@see #LinearLayoutCompat_Layout_android_layout_height
@see #LinearLayoutCompat_Layout_android_layout_weight
@see #LinearLayoutCompat_Layout_android_layout_width
*/
public static final int[] LinearLayoutCompat_Layout = {
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_gravity
*/
public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_height}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_height
*/
public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_weight}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_weight
*/
public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_width}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_width
*/
public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
/** Attributes that can be used with a ListPopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
</table>
@see #ListPopupWindow_android_dropDownHorizontalOffset
@see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow = {
0x010102ac, 0x010102ad
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownHorizontalOffset
*/
public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownVerticalOffset
*/
public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Attributes that can be used with a MediaRouteButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MediaRouteButton_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_buttonTint com.companyname.CarFinder_Xamarin:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_externalRouteEnabledDrawable com.companyname.CarFinder_Xamarin:externalRouteEnabledDrawable}</code></td><td></td></tr>
</table>
@see #MediaRouteButton_android_minHeight
@see #MediaRouteButton_android_minWidth
@see #MediaRouteButton_buttonTint
@see #MediaRouteButton_externalRouteEnabledDrawable
*/
public static final int[] MediaRouteButton = {
0x0101013f, 0x01010140, 0x7f010010, 0x7f0100be
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minHeight
*/
public static final int MediaRouteButton_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minWidth
*/
public static final int MediaRouteButton_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#buttonTint}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:buttonTint
*/
public static final int MediaRouteButton_buttonTint = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#externalRouteEnabledDrawable}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:externalRouteEnabledDrawable
*/
public static final int MediaRouteButton_externalRouteEnabledDrawable = 2;
/** Attributes that can be used with a MenuGroup.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
</table>
@see #MenuGroup_android_checkableBehavior
@see #MenuGroup_android_enabled
@see #MenuGroup_android_id
@see #MenuGroup_android_menuCategory
@see #MenuGroup_android_orderInCategory
@see #MenuGroup_android_visible
*/
public static final int[] MenuGroup = {
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:enabled
*/
public static final int MenuGroup_android_enabled = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:id
*/
public static final int MenuGroup_android_id = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:visible
*/
public static final int MenuGroup_android_visible = 2;
/** Attributes that can be used with a MenuItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuItem_actionLayout com.companyname.CarFinder_Xamarin:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass com.companyname.CarFinder_Xamarin:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass com.companyname.CarFinder_Xamarin:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction com.companyname.CarFinder_Xamarin:showAsAction}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_showAsAction
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd,
0x7f0100ce
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionLayout}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionProviderClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#actionViewClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:actionViewClass
*/
public static final int MenuItem_actionViewClass = 15;
/**
<p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#checkable}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checkable
*/
public static final int MenuItem_android_checkable = 11;
/**
<p>This symbol is the offset where the {@link android.R.attr#checked}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checked
*/
public static final int MenuItem_android_checked = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:enabled
*/
public static final int MenuItem_android_enabled = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:icon
*/
public static final int MenuItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:id
*/
public static final int MenuItem_android_id = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#onClick}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:onClick
*/
public static final int MenuItem_android_onClick = 12;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#title}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:title
*/
public static final int MenuItem_android_title = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:visible
*/
public static final int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#showAsAction}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:showAsAction
*/
public static final int MenuItem_showAsAction = 13;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing com.companyname.CarFinder_Xamarin:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow com.companyname.CarFinder_Xamarin: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, 0x7f0100cf,
0x7f0100d0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#headerBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:headerBackground
*/
public static final int MenuView_android_headerBackground = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:horizontalDivider
*/
public static final int MenuView_android_horizontalDivider = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemBackground
*/
public static final int MenuView_android_itemBackground = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemIconDisabledAlpha
*/
public static final int MenuView_android_itemIconDisabledAlpha = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemTextAppearance
*/
public static final int MenuView_android_itemTextAppearance = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:verticalDivider
*/
public static final int MenuView_android_verticalDivider = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:windowAnimationStyle
*/
public static final int MenuView_android_windowAnimationStyle = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#preserveIconSpacing}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#subMenuArrow}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:subMenuArrow
*/
public static final int MenuView_subMenuArrow = 8;
/** Attributes that can be used with a NavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_elevation com.companyname.CarFinder_Xamarin:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout com.companyname.CarFinder_Xamarin:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground com.companyname.CarFinder_Xamarin:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint com.companyname.CarFinder_Xamarin:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance com.companyname.CarFinder_Xamarin:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor com.companyname.CarFinder_Xamarin:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu com.companyname.CarFinder_Xamarin: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, 0x7f010038,
0x7f01012e, 0x7f01012f, 0x7f010130, 0x7f010131,
0x7f010132, 0x7f010133
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:background
*/
public static final int NavigationView_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:fitsSystemWindows
*/
public static final int NavigationView_android_fitsSystemWindows = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:maxWidth
*/
public static final int NavigationView_android_maxWidth = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#elevation}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:elevation
*/
public static final int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#headerLayout}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:headerLayout
*/
public static final int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#itemBackground}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:itemBackground
*/
public static final int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#itemIconTint}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:itemIconTint
*/
public static final int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:itemTextAppearance
*/
public static final int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#itemTextColor}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:itemTextColor
*/
public static final int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#menu}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:menu
*/
public static final int NavigationView_menu = 4;
/** Attributes that can be used with a PopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor com.companyname.CarFinder_Xamarin: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, 0x7f0100d1
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupAnimationStyle
*/
public static final int PopupWindow_android_popupAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupBackground
*/
public static final int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#overlapAnchor}
attribute's value can be found in the {@link #PopupWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:overlapAnchor
*/
public static final int PopupWindow_overlapAnchor = 2;
/** Attributes that can be used with a PopupWindowBackgroundState.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.companyname.CarFinder_Xamarin:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100d2
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#state_above_anchor}
attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor = 0;
/** Attributes that can be used with a ProgressWheel.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ProgressWheel_ahBarColor com.companyname.CarFinder_Xamarin:ahBarColor}</code></td><td></td></tr>
<tr><td><code>{@link #ProgressWheel_ahBarLength com.companyname.CarFinder_Xamarin:ahBarLength}</code></td><td></td></tr>
<tr><td><code>{@link #ProgressWheel_ahBarWidth com.companyname.CarFinder_Xamarin:ahBarWidth}</code></td><td></td></tr>
<tr><td><code>{@link #ProgressWheel_ahCircleColor com.companyname.CarFinder_Xamarin:ahCircleColor}</code></td><td></td></tr>
<tr><td><code>{@link #ProgressWheel_ahDelayMillis com.companyname.CarFinder_Xamarin:ahDelayMillis}</code></td><td></td></tr>
<tr><td><code>{@link #ProgressWheel_ahRadius com.companyname.CarFinder_Xamarin:ahRadius}</code></td><td></td></tr>
<tr><td><code>{@link #ProgressWheel_ahRimColor com.companyname.CarFinder_Xamarin:ahRimColor}</code></td><td></td></tr>
<tr><td><code>{@link #ProgressWheel_ahRimWidth com.companyname.CarFinder_Xamarin:ahRimWidth}</code></td><td></td></tr>
<tr><td><code>{@link #ProgressWheel_ahSpinSpeed com.companyname.CarFinder_Xamarin:ahSpinSpeed}</code></td><td></td></tr>
<tr><td><code>{@link #ProgressWheel_ahText com.companyname.CarFinder_Xamarin:ahText}</code></td><td></td></tr>
<tr><td><code>{@link #ProgressWheel_ahTextColor com.companyname.CarFinder_Xamarin:ahTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #ProgressWheel_ahTextSize com.companyname.CarFinder_Xamarin:ahTextSize}</code></td><td></td></tr>
</table>
@see #ProgressWheel_ahBarColor
@see #ProgressWheel_ahBarLength
@see #ProgressWheel_ahBarWidth
@see #ProgressWheel_ahCircleColor
@see #ProgressWheel_ahDelayMillis
@see #ProgressWheel_ahRadius
@see #ProgressWheel_ahRimColor
@see #ProgressWheel_ahRimWidth
@see #ProgressWheel_ahSpinSpeed
@see #ProgressWheel_ahText
@see #ProgressWheel_ahTextColor
@see #ProgressWheel_ahTextSize
*/
public static final int[] ProgressWheel = {
0x7f010155, 0x7f010156, 0x7f010157, 0x7f010158,
0x7f010159, 0x7f01015a, 0x7f01015b, 0x7f01015c,
0x7f01015d, 0x7f01015e, 0x7f01015f, 0x7f010160
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ahBarColor}
attribute's value can be found in the {@link #ProgressWheel} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:ahBarColor
*/
public static final int ProgressWheel_ahBarColor = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ahBarLength}
attribute's value can be found in the {@link #ProgressWheel} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:ahBarLength
*/
public static final int ProgressWheel_ahBarLength = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ahBarWidth}
attribute's value can be found in the {@link #ProgressWheel} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:ahBarWidth
*/
public static final int ProgressWheel_ahBarWidth = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ahCircleColor}
attribute's value can be found in the {@link #ProgressWheel} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:ahCircleColor
*/
public static final int ProgressWheel_ahCircleColor = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ahDelayMillis}
attribute's value can be found in the {@link #ProgressWheel} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:ahDelayMillis
*/
public static final int ProgressWheel_ahDelayMillis = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ahRadius}
attribute's value can be found in the {@link #ProgressWheel} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:ahRadius
*/
public static final int ProgressWheel_ahRadius = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ahRimColor}
attribute's value can be found in the {@link #ProgressWheel} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:ahRimColor
*/
public static final int ProgressWheel_ahRimColor = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ahRimWidth}
attribute's value can be found in the {@link #ProgressWheel} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:ahRimWidth
*/
public static final int ProgressWheel_ahRimWidth = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ahSpinSpeed}
attribute's value can be found in the {@link #ProgressWheel} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:ahSpinSpeed
*/
public static final int ProgressWheel_ahSpinSpeed = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ahText}
attribute's value can be found in the {@link #ProgressWheel} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:ahText
*/
public static final int ProgressWheel_ahText = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ahTextColor}
attribute's value can be found in the {@link #ProgressWheel} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:ahTextColor
*/
public static final int ProgressWheel_ahTextColor = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#ahTextSize}
attribute's value can be found in the {@link #ProgressWheel} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:ahTextSize
*/
public static final int ProgressWheel_ahTextSize = 2;
/** Attributes that can be used with a RecycleListView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecycleListView_paddingBottomNoButtons com.companyname.CarFinder_Xamarin:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.companyname.CarFinder_Xamarin:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100d3, 0x7f0100d4
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#paddingBottomNoButtons}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#paddingTopNoTitle}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:paddingTopNoTitle
*/
public static final int RecycleListView_paddingTopNoTitle = 1;
/** Attributes that can be used with a RecyclerView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager com.companyname.CarFinder_Xamarin:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout com.companyname.CarFinder_Xamarin:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount com.companyname.CarFinder_Xamarin:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd com.companyname.CarFinder_Xamarin:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_descendantFocusability
@see #RecyclerView_android_orientation
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001,
0x7f010002, 0x7f010003
};
/**
<p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:descendantFocusability
*/
public static final int RecyclerView_android_descendantFocusability = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:orientation
*/
public static final int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#layoutManager}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:layoutManager
*/
public static final int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#reverseLayout}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:reverseLayout
*/
public static final int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#spanCount}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:spanCount
*/
public static final int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#stackFromEnd}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:stackFromEnd
*/
public static final int RecyclerView_stackFromEnd = 5;
/** Attributes that can be used with a ScrimInsetsFrameLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground com.companyname.CarFinder_Xamarin:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f010134
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#insetForeground}
attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.CarFinder_Xamarin:insetForeground
*/
public static final int ScrimInsetsFrameLayout_insetForeground = 0;
/** Attributes that can be used with a ScrollingViewBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop com.companyname.CarFinder_Xamarin:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f010135
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#behavior_overlapTop}
attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:behavior_overlapTop
*/
public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_closeIcon com.companyname.CarFinder_Xamarin:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon com.companyname.CarFinder_Xamarin:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint com.companyname.CarFinder_Xamarin:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon com.companyname.CarFinder_Xamarin:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault com.companyname.CarFinder_Xamarin:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout com.companyname.CarFinder_Xamarin:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground com.companyname.CarFinder_Xamarin:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint com.companyname.CarFinder_Xamarin:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon com.companyname.CarFinder_Xamarin:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon com.companyname.CarFinder_Xamarin:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground com.companyname.CarFinder_Xamarin:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout com.companyname.CarFinder_Xamarin:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon com.companyname.CarFinder_Xamarin: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,
0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8,
0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc,
0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0,
0x7f0100e1
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:focusable
*/
public static final int SearchView_android_focusable = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#imeOptions}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#inputType}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:inputType
*/
public static final int SearchView_android_inputType = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:maxWidth
*/
public static final int SearchView_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#closeIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#commitIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#defaultQueryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#goIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#iconifiedByDefault}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#layout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#queryBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#queryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#searchHintIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#searchIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#submitBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#suggestionRowLayout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#voiceIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:voiceIcon
*/
public static final int SearchView_voiceIcon = 12;
/** Attributes that can be used with a SnackbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_elevation com.companyname.CarFinder_Xamarin:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.companyname.CarFinder_Xamarin:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f010038, 0x7f010136
};
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
@attr name android:maxWidth
*/
public static final int SnackbarLayout_android_maxWidth = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#elevation}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:elevation
*/
public static final int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#maxActionInlineWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:maxActionInlineWidth
*/
public static final int SnackbarLayout_maxActionInlineWidth = 2;
/** Attributes that can be used with a Spinner.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_popupTheme com.companyname.CarFinder_Xamarin: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,
0x7f010039
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#entries}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:entries
*/
public static final int Spinner_android_entries = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#prompt}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:prompt
*/
public static final int Spinner_android_prompt = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#popupTheme}
attribute's value can be found in the {@link #Spinner} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:popupTheme
*/
public static final int Spinner_popupTheme = 4;
/** Attributes that can be used with a SwitchCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_showText com.companyname.CarFinder_Xamarin:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack com.companyname.CarFinder_Xamarin:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth com.companyname.CarFinder_Xamarin:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding com.companyname.CarFinder_Xamarin:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance com.companyname.CarFinder_Xamarin:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding com.companyname.CarFinder_Xamarin:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint com.companyname.CarFinder_Xamarin:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode com.companyname.CarFinder_Xamarin:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track com.companyname.CarFinder_Xamarin:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint com.companyname.CarFinder_Xamarin:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode com.companyname.CarFinder_Xamarin: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, 0x7f0100e2,
0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6,
0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea,
0x7f0100eb, 0x7f0100ec
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textOff}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOff
*/
public static final int SwitchCompat_android_textOff = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textOn}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOn
*/
public static final int SwitchCompat_android_textOn = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:thumb
*/
public static final int SwitchCompat_android_thumb = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#showText}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:showText
*/
public static final int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#splitTrack}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:splitTrack
*/
public static final int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#switchMinWidth}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#switchPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:switchPadding
*/
public static final int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#switchTextAppearance}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#thumbTextPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#thumbTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:thumbTint
*/
public static final int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#thumbTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#track}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:track
*/
public static final int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#trackTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:trackTint
*/
public static final int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#trackTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:trackTintMode
*/
public static final int SwitchCompat_trackTintMode = 7;
/** Attributes that can be used with a TabItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr>
</table>
@see #TabItem_android_icon
@see #TabItem_android_layout
@see #TabItem_android_text
*/
public static final int[] TabItem = {
0x01010002, 0x010100f2, 0x0101014f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:icon
*/
public static final int TabItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:layout
*/
public static final int TabItem_android_layout = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#text}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:text
*/
public static final int TabItem_android_text = 2;
/** Attributes that can be used with a TabLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabLayout_tabBackground com.companyname.CarFinder_Xamarin:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart com.companyname.CarFinder_Xamarin:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity com.companyname.CarFinder_Xamarin:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor com.companyname.CarFinder_Xamarin:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight com.companyname.CarFinder_Xamarin:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth com.companyname.CarFinder_Xamarin:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth com.companyname.CarFinder_Xamarin:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode com.companyname.CarFinder_Xamarin:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding com.companyname.CarFinder_Xamarin:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom com.companyname.CarFinder_Xamarin:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd com.companyname.CarFinder_Xamarin:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart com.companyname.CarFinder_Xamarin:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop com.companyname.CarFinder_Xamarin:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor com.companyname.CarFinder_Xamarin:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance com.companyname.CarFinder_Xamarin:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor com.companyname.CarFinder_Xamarin: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 = {
0x7f010137, 0x7f010138, 0x7f010139, 0x7f01013a,
0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e,
0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142,
0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146
};
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabBackground}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:tabBackground
*/
public static final int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabContentStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:tabContentStart
*/
public static final int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabGravity}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:tabGravity
*/
public static final int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabIndicatorColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:tabIndicatorColor
*/
public static final int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabIndicatorHeight}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:tabIndicatorHeight
*/
public static final int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabMaxWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:tabMaxWidth
*/
public static final int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabMinWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:tabMinWidth
*/
public static final int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabMode}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:tabMode
*/
public static final int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabPadding}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:tabPadding
*/
public static final int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabPaddingBottom}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:tabPaddingBottom
*/
public static final int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabPaddingEnd}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:tabPaddingEnd
*/
public static final int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabPaddingStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:tabPaddingStart
*/
public static final int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabPaddingTop}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:tabPaddingTop
*/
public static final int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabSelectedTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:tabSelectedTextColor
*/
public static final int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabTextAppearance}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:tabTextAppearance
*/
public static final int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#tabTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:tabTextColor
*/
public static final int TabLayout_tabTextColor = 9;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps com.companyname.CarFinder_Xamarin:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textColorHint
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x01010161, 0x01010162, 0x01010163,
0x01010164, 0x7f010049
};
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowColor
*/
public static final int TextAppearance_android_shadowColor = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDx}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDx
*/
public static final int TextAppearance_android_shadowDx = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDy}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDy
*/
public static final int TextAppearance_android_shadowDy = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowRadius
*/
public static final int TextAppearance_android_shadowRadius = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColor
*/
public static final int TextAppearance_android_textColor = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorHint
*/
public static final int TextAppearance_android_textColorHint = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static final int TextAppearance_android_textSize = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#textStyle}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#typeface}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:typeface
*/
public static final int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#textAllCaps}
attribute's value can be found in the {@link #TextAppearance} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name com.companyname.CarFinder_Xamarin:textAllCaps
*/
public static final int TextAppearance_textAllCaps = 9;
/** Attributes that can be used with a TextInputLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterEnabled com.companyname.CarFinder_Xamarin:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength com.companyname.CarFinder_Xamarin:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.companyname.CarFinder_Xamarin:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance com.companyname.CarFinder_Xamarin:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled com.companyname.CarFinder_Xamarin:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance com.companyname.CarFinder_Xamarin:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.companyname.CarFinder_Xamarin:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled com.companyname.CarFinder_Xamarin:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance com.companyname.CarFinder_Xamarin:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.companyname.CarFinder_Xamarin:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.companyname.CarFinder_Xamarin:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.companyname.CarFinder_Xamarin:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint com.companyname.CarFinder_Xamarin:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.companyname.CarFinder_Xamarin: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, 0x7f010147, 0x7f010148,
0x7f010149, 0x7f01014a, 0x7f01014b, 0x7f01014c,
0x7f01014d, 0x7f01014e, 0x7f01014f, 0x7f010150,
0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154
};
/**
<p>This symbol is the offset where the {@link android.R.attr#hint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:hint
*/
public static final int TextInputLayout_android_hint = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:textColorHint
*/
public static final int TextInputLayout_android_textColorHint = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#counterEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:counterEnabled
*/
public static final int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#counterMaxLength}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:counterMaxLength
*/
public static final int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#counterOverflowTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:counterOverflowTextAppearance
*/
public static final int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#counterTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:counterTextAppearance
*/
public static final int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#errorEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:errorEnabled
*/
public static final int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#errorTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:errorTextAppearance
*/
public static final int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#hintAnimationEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:hintAnimationEnabled
*/
public static final int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#hintEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:hintEnabled
*/
public static final int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#hintTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:hintTextAppearance
*/
public static final int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#passwordToggleContentDescription}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:passwordToggleContentDescription
*/
public static final int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#passwordToggleDrawable}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:passwordToggleDrawable
*/
public static final int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#passwordToggleEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:passwordToggleEnabled
*/
public static final int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#passwordToggleTint}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:passwordToggleTint
*/
public static final int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#passwordToggleTintMode}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:passwordToggleTintMode
*/
public static final int TextInputLayout_passwordToggleTintMode = 15;
/** Attributes that can be used with a Toolbar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_buttonGravity com.companyname.CarFinder_Xamarin:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription com.companyname.CarFinder_Xamarin:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon com.companyname.CarFinder_Xamarin:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd com.companyname.CarFinder_Xamarin:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.companyname.CarFinder_Xamarin:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft com.companyname.CarFinder_Xamarin:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight com.companyname.CarFinder_Xamarin:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart com.companyname.CarFinder_Xamarin:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.companyname.CarFinder_Xamarin:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo com.companyname.CarFinder_Xamarin:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription com.companyname.CarFinder_Xamarin:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight com.companyname.CarFinder_Xamarin:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription com.companyname.CarFinder_Xamarin:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon com.companyname.CarFinder_Xamarin:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme com.companyname.CarFinder_Xamarin:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle com.companyname.CarFinder_Xamarin:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance com.companyname.CarFinder_Xamarin:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor com.companyname.CarFinder_Xamarin:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title com.companyname.CarFinder_Xamarin:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin com.companyname.CarFinder_Xamarin:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom com.companyname.CarFinder_Xamarin:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd com.companyname.CarFinder_Xamarin:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart com.companyname.CarFinder_Xamarin:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop com.companyname.CarFinder_Xamarin:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins com.companyname.CarFinder_Xamarin:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance com.companyname.CarFinder_Xamarin:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor com.companyname.CarFinder_Xamarin: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, 0x7f01001f, 0x7f010022,
0x7f010026, 0x7f010032, 0x7f010033, 0x7f010034,
0x7f010035, 0x7f010036, 0x7f010037, 0x7f010039,
0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0,
0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4,
0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8,
0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc,
0x7f0100fd
};
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:gravity
*/
public static final int Toolbar_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:minHeight
*/
public static final int Toolbar_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#buttonGravity}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:buttonGravity
*/
public static final int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#collapseContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#collapseIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:collapseIcon
*/
public static final int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentInsetRight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentInsetStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#logo}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#logoDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:logoDescription
*/
public static final int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#maxButtonHeight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#navigationContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#navigationIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:navigationIcon
*/
public static final int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#popupTheme}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:popupTheme
*/
public static final int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#subtitle}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#subtitleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#subtitleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#title}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#titleMargin}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:titleMargin
*/
public static final int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#titleMarginBottom}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#titleMarginEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#titleMarginStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#titleMarginTop}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#titleMargins}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:titleMargins
*/
public static final int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#titleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#titleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:titleTextColor
*/
public static final int Toolbar_titleTextColor = 27;
/** Attributes that can be used with a View.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingEnd com.companyname.CarFinder_Xamarin:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart com.companyname.CarFinder_Xamarin:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme com.companyname.CarFinder_Xamarin: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, 0x7f0100fe, 0x7f0100ff,
0x7f010100
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #View} array.
@attr name android:focusable
*/
public static final int View_android_focusable = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#theme}
attribute's value can be found in the {@link #View} array.
@attr name android:theme
*/
public static final int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#paddingEnd}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#paddingStart}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#theme}
attribute's value can be found in the {@link #View} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.CarFinder_Xamarin:theme
*/
public static final int View_theme = 4;
/** Attributes that can be used with a ViewBackgroundHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.companyname.CarFinder_Xamarin:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.companyname.CarFinder_Xamarin:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f010101, 0x7f010102
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
@attr name android:background
*/
public static final int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#backgroundTint}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.CarFinder_Xamarin:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.CarFinder_Xamarin.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.companyname.CarFinder_Xamarin:backgroundTintMode
*/
public static final int ViewBackgroundHelper_backgroundTintMode = 2;
/** Attributes that can be used with a ViewStubCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
</table>
@see #ViewStubCompat_android_id
@see #ViewStubCompat_android_inflatedId
@see #ViewStubCompat_android_layout
*/
public static final int[] ViewStubCompat = {
0x010100d0, 0x010100f2, 0x010100f3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:id
*/
public static final int ViewStubCompat_android_id = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#inflatedId}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:inflatedId
*/
public static final int ViewStubCompat_android_inflatedId = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:layout
*/
public static final int ViewStubCompat_android_layout = 1;
};
}
| [
"[email protected]"
] | |
7ceeec39f5b8c99c9538293c2ec8bcc476439864 | bb6297ef9d06345c85885b26b85a83a2eecaee83 | /uoo-business-web/mdm-web/src/main/java/cn/ffcs/uoo/web/maindata/common/system/client/fallback/SysPermissionClientHystrix.java | 2ed1b2210ac0d26ae0289a87560668b5e6c21329 | [] | no_license | porscheYong/uoo | da5f8c0abf3fc8868db4445a4a0376da8d5890de | 7007f7004bc795e5502d6d5fd127c11e4fe0d76b | refs/heads/master | 2020-05-24T22:26:58.750191 | 2019-03-12T09:11:32 | 2019-03-12T09:11:32 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,549 | java | package cn.ffcs.uoo.web.maindata.common.system.client.fallback;
import org.springframework.stereotype.Component;
import com.baomidou.mybatisplus.plugins.Page;
import cn.ffcs.uoo.web.maindata.common.system.client.SysPermissionClient;
import cn.ffcs.uoo.web.maindata.common.system.dto.SysPermission;
import cn.ffcs.uoo.web.maindata.common.system.dto.SysPermissionDTO;
import cn.ffcs.uoo.web.maindata.common.system.dto.SysPermissionEditDTO;
import cn.ffcs.uoo.web.maindata.common.system.dto.SysPermissionPrivDTO;
import cn.ffcs.uoo.web.maindata.common.system.vo.ResponseResult;
@Component
public class SysPermissionClientHystrix implements SysPermissionClient {
@Override
public ResponseResult<SysPermissionPrivDTO> get(Long id) {
return ResponseResult.createErrorResult("服务不可用");
}
@Override
public ResponseResult<Page<SysPermissionDTO>> listPage(Integer pageNo, Integer pageSize, String keyWord) {
return ResponseResult.createErrorResult("服务不可用");
}
@Override
public ResponseResult<Void> add(SysPermissionEditDTO sysPermissionEditDTO) {
return ResponseResult.createErrorResult("服务不可用");
}
@Override
public ResponseResult<Void> update(SysPermissionEditDTO sysPermissionEditDTO) {
return ResponseResult.createErrorResult("服务不可用");
}
@Override
public ResponseResult<Void> delete(SysPermission id) {
return ResponseResult.createErrorResult("服务不可用");
}
}
| [
"[email protected]"
] | |
5b79aba58c9ead8d27c92d3c777bcda54ae95c91 | 51adaa5623416075babe55e5b1085bfcd59ec7f8 | /src/Module4/Task4_1/EUBank.java | 1ce147ab4ada7c482e049f72d114a0142f0fd7fc | [] | no_license | SvetlanaPeredrii/GoJava | bf262060c0e55dd44f756ae336c0cede11d3ccb1 | 17e059878d8727ae81d8a559213c4d8bb1d8f594 | refs/heads/master | 2020-05-23T09:08:48.335119 | 2017-06-27T07:15:16 | 2017-06-27T07:15:16 | 80,438,632 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,502 | java | package Module4.Task4_1;
/**
* Created by kaganets.s on 28.02.2017.
*/
public class EUBank extends Bank {
EUBank(long id, String bankCountry, Currency currency, int numberOfEmployees, double avrSalaryOfEmployee, long rating, long totalCapital) {
super(id, bankCountry, currency, numberOfEmployees, avrSalaryOfEmployee, rating, totalCapital);
}
@Override
public int getLimitOfWithdrawal() {
int limitOfWithdrawal;
if (getCurrency() == Currency.USD) {
limitOfWithdrawal = 2000;
}
else limitOfWithdrawal = 2200;
return limitOfWithdrawal;
}
@Override
public int getLimitOfFunding() {
int limitOfFunding;
if (getCurrency() == Currency.EUR){
limitOfFunding = 20000;
}else limitOfFunding = 10000;
return limitOfFunding;
}
@Override
public int getMonthlyRate() {
int monthlyRate;
if (getCurrency() == Currency.USD){
monthlyRate=0;
}else monthlyRate = 1;
return monthlyRate;
}
@Override
public int getCommission(int summ) {
int commission;
if (getCurrency() == Currency.USD && summ<=1000){
commission=5;
}else if (getCurrency() == Currency.USD && summ>1000) {
commission = 7;
}else if (getCurrency() == Currency.EUR && summ<=1000){
commission=2;
}else
commission = 4;
return commission;
}
}
| [
"[email protected]"
] | |
e8df4a1945f36645790a66023fc4c92827dd9216 | 833ef1d51ee50f0385035c3d2c49a2ea6bfc719a | /src/main/java/com/google/devtools/build/lib/skyframe/BuildTargetPatternsResultBuilder.java | 11301b5254a6bef4976ec331907e98c47ba42ea0 | [
"Apache-2.0"
] | permissive | joshua0pang/bazel | 66be32bc0111c9c14d10885534ddbfa979ab3de9 | 6c10eac70123104a2b48eaf58075374e155ed12d | refs/heads/master | 2021-01-17T22:01:27.640911 | 2015-09-17T19:17:20 | 2015-09-17T19:36:15 | 42,743,287 | 1 | 0 | null | 2015-09-18T19:33:45 | 2015-09-18T19:33:44 | null | UTF-8 | Java | false | false | 1,920 | java | // Copyright 2015 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.devtools.build.lib.skyframe;
import com.google.common.base.Predicates;
import com.google.common.collect.Iterables;
import com.google.devtools.build.lib.cmdline.ResolvedTargets;
import com.google.devtools.build.lib.cmdline.TargetParsingException;
import com.google.devtools.build.lib.packages.Target;
import com.google.devtools.build.lib.syntax.Label;
/**
* Evaluates set of build targets based on list of target patterns.
*/
class BuildTargetPatternsResultBuilder extends TargetPatternsResultBuilder {
private ResolvedTargets.Builder<Label> resolvedLabelsBuilder = ResolvedTargets.builder();
@Override
void addLabelsOfNegativePattern(ResolvedTargets<Label> labels) {
resolvedLabelsBuilder.filter(Predicates.not(Predicates.in(labels.getTargets())));
}
@Override
void addLabelsOfPositivePattern(ResolvedTargets<Label> labels) {
resolvedLabelsBuilder.merge(labels);
}
@Override
protected Iterable<Label> getLabels() {
ResolvedTargets<Label> resolvedLabels = resolvedLabelsBuilder.build();
return Iterables.concat(resolvedLabels.getTargets(), resolvedLabels.getFilteredTargets());
}
@Override
ResolvedTargets.Builder<Target> buildInternal() throws TargetParsingException {
return transformLabelsIntoTargets(resolvedLabelsBuilder.build());
}
}
| [
"[email protected]"
] | |
31da1bde9790090ad7dad4b5d54b37cf50d6b307 | f6fba882c712821e7480ebb08a3de917c3b2b962 | /src/main/java/com/algaworks/algamoney/api/event/RecursoCriadoEvent.java | c31e78da53a84058c246ba56333311cf5addb052 | [] | no_license | Caps-Looking/spring-angular | 76bde3924860dbe01735d1db9d9c4b10b06d5a1a | 86facff20f3bb7bc5ef74c2338c6382b52452cc7 | refs/heads/master | 2021-01-25T10:06:06.860776 | 2018-03-05T20:02:08 | 2018-03-05T20:02:08 | 123,337,483 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 599 | java | package com.algaworks.algamoney.api.event;
import javax.servlet.http.HttpServletResponse;
import org.springframework.context.ApplicationEvent;
public class RecursoCriadoEvent extends ApplicationEvent {
private static final long serialVersionUID = 1L;
private HttpServletResponse response;
private Long codigo;
public RecursoCriadoEvent(Object source, HttpServletResponse response, Long codigo) {
super(source);
this.response = response;
this.codigo = codigo;
}
public HttpServletResponse getResponse() {
return response;
}
public Long getCodigo() {
return codigo;
}
}
| [
"[email protected]"
] | |
f2d778395dab36bef479a6e7611c456030e01aa9 | b6c0ebfa0873c71a1724727a11abda4e2910f71e | /src/main/java/com/fusionkoding/bruskiclient/web/client/BreweryClient.java | 4b23ea40919a543d9cbd116d05ea47aa06d00fc6 | [] | no_license | kwalter26/bruski-client | 09957140fd5fb4ac52524aa9b5ccbe14f0a5ea1d | 0b24b1e7259f2f89d075f246980060427f75f37e | refs/heads/main | 2023-05-13T15:48:39.292696 | 2021-06-06T01:11:11 | 2021-06-06T01:11:11 | 306,944,150 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,549 | java | package com.fusionkoding.bruskiclient.web.client;
import java.net.URI;
import java.util.UUID;
import com.fusionkoding.bruskiclient.web.model.BeerDto;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestTemplate;
import lombok.Setter;
@Component
@ConfigurationProperties(value = "bruski", ignoreInvalidFields = false)
public class BreweryClient implements Client<BeerDto, String> {
private static final String BEER_PATH_V1 = "/api/v1/beer/";
private final RestTemplate restTemplate;
@Setter
private String apiHost;
public BreweryClient(RestTemplateBuilder restTemplateBuilder) {
this.restTemplate = restTemplateBuilder.build();
}
@Override
public BeerDto getById(String id) {
return restTemplate.getForObject(apiHost + BEER_PATH_V1 + id.toString(), BeerDto.class);
}
@Override
public BeerDto getByUri(URI uri) {
return restTemplate.getForObject(apiHost + uri.toString(), BeerDto.class);
}
@Override
public URI save(BeerDto dto) {
return restTemplate.postForLocation(apiHost + BEER_PATH_V1, dto);
}
@Override
public void update(String id, BeerDto dto) {
restTemplate.put(apiHost + BEER_PATH_V1 + id.toString(), dto);
}
@Override
public void delete(String id) {
restTemplate.delete(apiHost + BEER_PATH_V1 + id.toString());
}
}
| [
"[email protected]"
] | |
2c0e72192d6e702e6f9fb7e093a10695a91a6f1b | 6b238dcd0256c2d5a4ed283e59654a1dd382174c | /src/com/br/algoritmos/Panel_Filtros_RobertsCruzado.java | 2e663ab435e7400ed0af54ec05670f2da353b4b5 | [] | no_license | lucasmirandadourado/ProcessamentoImagem | e09b270ac1da359acdd33aa1c1c678870c0bb5c9 | e8c94f6f2d946beb2dbc6ab54f24e1fb309d7190 | refs/heads/master | 2021-01-10T08:17:13.945466 | 2015-11-28T01:53:26 | 2015-11-28T01:53:26 | 36,900,341 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,851 | java | package com.br.algoritmos;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Rectangle;
import java.awt.image.BufferedImage;
import java.io.IOException;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.border.LineBorder;
public class Panel_Filtros_RobertsCruzado extends JPanel {
public BufferedImage imagemRobertsCruzado;
/**
* Create the panel.
*/
public Panel_Filtros_RobertsCruzado() {
setBorder(new LineBorder(new Color(0, 0, 0)));
setBounds(new Rectangle(0, 0, 250, 250));
}
public void colocaImagemNoPainel(int alturaDaImagem1, int larguraDaImagem1, int matrizDaImagem1[][]){
try {
geraImagem(alturaDaImagem1, larguraDaImagem1, matrizDaImagem1);
} catch (IOException e) {
JOptionPane.showMessageDialog(null, "Ocorreu um erro ao tentar abrir a imagem.");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void geraImagem(int alturaDaImagem1, int larguraDaImagem1, int matrizDaImagem1[][]) throws Exception{
int altura = alturaDaImagem1;
int largura = larguraDaImagem1;
int matrizImagem[][] = new int[altura][largura];
imagemRobertsCruzado = new BufferedImage(altura, largura, BufferedImage.TYPE_INT_RGB);
for(int i = 0; i<altura; i++){
for(int j=0;j<largura;j++){
int aproximacaoX = 0;
int aproximacaoY = 0;
if (((j + 1) < altura) && ((i + 1) < altura)) {
aproximacaoY = matrizDaImagem1[i][j] - matrizDaImagem1[i + 1][j + 1];
} else {
aproximacaoY = matrizDaImagem1[i][j];
}
if ((i + 1) < largura){
aproximacaoX += matrizDaImagem1[i + 1][j];
}
if ((j + 1) < altura){
aproximacaoX += - matrizDaImagem1[i][j + 1];
}
int mag = Math.abs(aproximacaoY) + Math.abs(aproximacaoX);
matrizImagem[i][j] = mag;
//verificacao do valor do pixel caso o mesmo ultrapasse o valor de 255 (valor maximo)
if(matrizImagem[i][j] > 255){
matrizImagem[i][j] = 255;
}
//verificacao do valor do pixel caso o mesmo ultrapasse o valor de 0 (valor minimo)
if(matrizImagem[i][j] < 0){
matrizImagem[i][j] = 0;
}
imagemRobertsCruzado.setRGB(j, i, corPixel(matrizImagem[i][j]));
repaint();
}
}
}
static int corPixel(int corRGB){
Color cor = new Color(corRGB, corRGB, corRGB);
return cor.getRGB();
}
@Override
protected void paintComponent(Graphics g) {
// TODO Auto-generated method stub
super.paintComponent(g);
g.drawImage(imagemRobertsCruzado, 0, 0, null);
}
}
| [
"[email protected]"
] | |
bc001a5a1b3ea4273743d04ca80bc8e44b6773ee | 2345c9a93e252e59197bb245625b61ab2cc03d72 | /src/dip/lab2/student/solution1/ServiceQuality.java | b7ce506ffff264233435779925fa19f1284fe6b0 | [] | no_license | mparish2/LabDIP | 73602436b2a05d0193708adaede72f4741079ae1 | 96100c892202aaaee995192bd53a59a278863d77 | refs/heads/master | 2016-09-05T09:07:52.164426 | 2015-09-23T20:59:16 | 2015-09-23T20:59:16 | 42,830,932 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 318 | 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 dip.lab2.student.solution1;
/**
*
* @author Matthew_2
*/
public enum ServiceQuality {
GOOD,FAIR,POOR
}
| [
"[email protected]"
] | |
9f311d5a5a52c95db4444846f542ecd34f90b398 | 4f7161af2b5d6e4f5fbd042aaddbbfc43bce22b3 | /src/com/wx/mapper/ProductTypeMapper.java | 2909be704ebdae200f0460054c024a0cf70ebe88 | [] | no_license | wangwenteng/ParseLogTest | f84a4ca0a1bd9ae3e306f09ec1c138f801b877b3 | eb4b7c79e700e8c9ea1f54619f7420a9e6fdd9c0 | refs/heads/master | 2022-03-07T21:13:44.107187 | 2017-06-05T08:25:14 | 2017-06-05T08:25:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 911 | java | package com.wx.mapper;
import com.wx.pojo.ProductType;
import com.wx.pojo.ProductTypeExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface ProductTypeMapper {
int countByExample(ProductTypeExample example);
int deleteByExample(ProductTypeExample example);
int deleteByPrimaryKey(Integer id);
int insert(ProductType record);
int insertSelective(ProductType record);
List<ProductType> selectByExample(ProductTypeExample example);
ProductType selectByPrimaryKey(Integer id);
int updateByExampleSelective(@Param("record") ProductType record, @Param("example") ProductTypeExample example);
int updateByExample(@Param("record") ProductType record, @Param("example") ProductTypeExample example);
int updateByPrimaryKeySelective(ProductType record);
int updateByPrimaryKey(ProductType record);
} | [
"[email protected]"
] | |
ac4f074e317ae138be5a6edee7037af585d4d6cb | db8fbeb7366e4a532089d764b9b2ae8018536171 | /yuli-common/yuli-common-security/src/main/java/cn/javayuli/cloud/common/security/handler/AbstractAuthenticationSuccessEventHandler.java | 2c8c01eb809cf20f8c081ba24d3a02624cff398c | [] | no_license | hanguilin/yuli-cloud | 3e1f7ad51fe2e301bf49057e9eb607bcd42a2580 | 63a4b0f21512dad80bb12d395a62b90dde12e489 | refs/heads/main | 2023-03-11T04:14:24.355842 | 2021-02-19T01:29:59 | 2021-02-19T01:29:59 | 323,272,529 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,020 | java | package cn.javayuli.cloud.common.security.handler;
import cn.hutool.core.collection.CollUtil;
import org.springframework.context.ApplicationListener;
import org.springframework.security.authentication.event.AuthenticationSuccessEvent;
import org.springframework.security.core.Authentication;
/**
* @author lengleng
* @date 2019/2/1 认证成功事件处理器
*/
public abstract class AbstractAuthenticationSuccessEventHandler
implements ApplicationListener<AuthenticationSuccessEvent> {
/**
* Handle an application event.
* @param event the event to respond to
*/
@Override
public void onApplicationEvent(AuthenticationSuccessEvent event) {
Authentication authentication = (Authentication) event.getSource();
if (CollUtil.isNotEmpty(authentication.getAuthorities())) {
handle(authentication);
}
}
/**
* 处理登录成功方法
* <p>
* 获取到登录的authentication 对象
* @param authentication 登录对象
*/
public abstract void handle(Authentication authentication);
}
| [
"[email protected]"
] | |
0e09c44737fd531fbb987ad147a257682adda571 | f2d87ed93e8b1d51ea9202cb0d65630ed2f939dd | /app/src/main/java/com/novugrid/fortos/adapters/viewholder/ProgressViewHolder.java | 5843b017fff43f7ea99ce3f47c41ff07b9662b4f | [] | no_license | culjo/fortos-android | 73f36cdf0fdccd6711daa26dc2a7bf6948196075 | e966cecd6d8845f8edc244f77a31cc761c971e78 | refs/heads/master | 2021-01-11T01:43:49.125337 | 2016-09-29T04:28:45 | 2016-09-29T04:28:45 | 69,530,510 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 568 | java | package com.novugrid.fortos.adapters.viewholder;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.widget.ProgressBar;
import com.novugrid.fortos.R;
/**
* Created by WeaverBird on 9/20/2016.
* For Holding view in adapter classes, Hope it healp me next time..
*/
public class ProgressViewHolder extends RecyclerView.ViewHolder{
public ProgressBar progressBar;
public ProgressViewHolder(View itemView) {
super(itemView);
progressBar = (ProgressBar) itemView.findViewById(R.id.loading_data);
}
}
| [
"[email protected]"
] | |
b389e20a3bee563ab23b776971c78f8e5efb5280 | 0edbb05b6e85c596d8d7caf061ba7e06655255d3 | /app/src/main/java/com/example/ilcarroappl/di/mainAct/MainActModule.java | 7604b9de5ec3834f02821ab7cf83761e590cf837 | [] | no_license | tarakan747/ILCarro | 8deb2b737891a14a3030996f8cb42a79672e96ad | bdc81941a3132cdbc33e151c165b8339cc136db8 | refs/heads/master | 2022-11-17T10:18:34.522876 | 2020-07-13T19:42:02 | 2020-07-13T19:42:02 | 243,259,024 | 0 | 0 | null | 2020-07-13T19:40:44 | 2020-02-26T12:37:47 | Java | UTF-8 | Java | false | false | 822 | java | package com.example.ilcarroappl.di.mainAct;
import com.example.ilcarroappl.business.mainAct.MainActInteractor;
import com.example.ilcarroappl.business.mainAct.MainActInteractorImpl;
import com.example.ilcarroappl.data.mainAct.MainActRepo;
import com.example.ilcarroappl.data.mainAct.MainActRepoImpl;
import com.example.ilcarroappl.data.provider.store.StoreProvider;
import com.example.ilcarroappl.data.provider.web.Api;
import dagger.Module;
import dagger.Provides;
@Module
public class MainActModule {
@Provides
@MainActScope
MainActRepo provideMainActRepo(Api api, StoreProvider provider) {
return new MainActRepoImpl(api, provider);
}
@Provides
@MainActScope
MainActInteractor provideMainActInteractor(MainActRepo repo) {
return new MainActInteractorImpl(repo);
}
}
| [
"[email protected]"
] | |
43ca9fb7ffe4e92ea22cb1086b4a754594c0e270 | 9fcc99569b27fff93ac6c0f2eba7eaa35229632e | /demo/src/main/java/com/example/demo/deprecated/required/DeprecatedRequiredBean.java | d1a284a512f0b415bdc5b7645caf55e0abe05873 | [
"Apache-2.0"
] | permissive | Aris4009/learning-spring | 5ee5b959358653b7a16e3eb05b2e71a2b4cf6906 | f9245f77c3b1f0787309ca3bbe13160bb8cfe40e | refs/heads/main | 2023-03-12T08:38:26.908803 | 2021-03-02T04:50:03 | 2021-03-02T04:50:03 | 302,518,113 | 3 | 0 | Apache-2.0 | 2020-12-15T10:09:49 | 2020-10-09T03:01:27 | null | UTF-8 | Java | false | false | 1,017 | java | package com.example.demo.deprecated.required;
import org.springframework.beans.factory.annotation.Required;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
/**
* @Required注解在Spring 5.1已经被废弃,使用构造函数或者InitializingBean.afterPropertiesSet()的自定义实现来代替
*/
public class DeprecatedRequiredBean {
private RequiredBean requiredBean;
public RequiredBean getRequiredBean() {
return requiredBean;
}
@Required
public void setRequiredBean(RequiredBean requiredBean) {
this.requiredBean = requiredBean;
}
// @Autowired
// public DeprecatedRequiredBean(RequiredBean requiredBean) {
// this.requiredBean = requiredBean;
// }
@Override
public String toString() {
return "DeprecatedRequiredBean{" + "requiredBean=" + requiredBean + '}';
}
public static void main(String[] args) {
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(
DeprecatedRequiredBean.class);
context.close();
}
}
| [
"[email protected]"
] | |
091f8c42e7158f7ceed48b4fe709c587da2dc378 | 322bedb934c5bd6c9b431d8ab0e89f5351433e35 | /datasources/src/main/java/org/wheatinitiative/vitro/webapp/ontology/update/ABoxUpdater.java | 1d29b6d1de909a5268b8e7af1130b3aaa74ec530 | [] | no_license | WheatVIVO/datasources | c4f6cba46494ed788f625e80b2f67a39a2450dad | 723c40f4c6ae240cbb2fb041fe8a545daf914e01 | refs/heads/master | 2023-08-31T14:17:45.616278 | 2023-04-28T10:09:07 | 2023-04-28T10:09:07 | 71,882,701 | 1 | 4 | null | 2023-04-28T10:09:08 | 2016-10-25T09:46:49 | Java | UTF-8 | Java | false | false | 28,954 | java | /* $This file is distributed under the terms of the license in /doc/license.txt$ */
package org.wheatinitiative.vitro.webapp.ontology.update;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.wheatinitiative.vitro.webapp.ontology.update.AtomicOntologyChange.AtomicChangeType;
import com.hp.hpl.jena.ontology.OntClass;
import com.hp.hpl.jena.ontology.OntModel;
import com.hp.hpl.jena.ontology.OntModelSpec;
import com.hp.hpl.jena.ontology.OntProperty;
import com.hp.hpl.jena.query.Dataset;
import com.hp.hpl.jena.query.DatasetFactory;
import com.hp.hpl.jena.rdf.model.Literal;
import com.hp.hpl.jena.rdf.model.Model;
import com.hp.hpl.jena.rdf.model.ModelFactory;
import com.hp.hpl.jena.rdf.model.Property;
import com.hp.hpl.jena.rdf.model.RDFNode;
import com.hp.hpl.jena.rdf.model.Resource;
import com.hp.hpl.jena.rdf.model.ResourceFactory;
import com.hp.hpl.jena.rdf.model.Statement;
import com.hp.hpl.jena.rdf.model.StmtIterator;
import com.hp.hpl.jena.shared.Lock;
import com.hp.hpl.jena.vocabulary.OWL;
import com.hp.hpl.jena.vocabulary.RDF;
/**
* Performs knowledge base updates to the abox to align with a new ontology version
*
*/
public class ABoxUpdater {
private final Log log = LogFactory.getLog(ABoxUpdater.class);
private OntModel oldTboxModel;
private OntModel newTboxModel;
private Dataset dataset;
//private TBoxUpdater tboxUpdater;
private OntClass OWL_THING = (ModelFactory.createOntologyModel(
OntModelSpec.OWL_MEM)).createClass(OWL.Thing.getURI());
/**
*
* Constructor
*
* @param oldTboxModel - previous version of the ontology
* @param newTboxModel - new version of the ontology
* @param aboxModel - the knowledge base to be updated
* @param logger - for writing to the change log
* and the error log.
* @param record - for writing to the additions model
* and the retractions model.
*
*/
public ABoxUpdater(UpdateSettings settings) {
this.dataset = DatasetFactory.createMem();
this.dataset.addNamedModel("http://vivo.example.org/graph/abox",
settings.getABoxModel());
this.oldTboxModel = settings.getOldTBoxModel();
this.newTboxModel = settings.getNewTBoxModel();
//this.newTBoxAnnotationsModel = settings.getNewTBoxAnnotationsModel();
//this.tboxUpdater = new TBoxUpdater(settings, logger, record);
}
/**
*
* Update a knowledge base to align with changes in the class definitions in
* a new version of the ontology. The two versions of the ontology and the
* knowledge base to be updated are provided in the class constructor and
* are referenced via class level variables.
*
* @param changes - a list of AtomicOntologyChange objects, each representing
* one change in class definition in the new version of the
* ontology.
*
* Writes to the change log file, the error log file, and the incremental change
* knowledge base.
*/
public void processClassChanges(List<AtomicOntologyChange> changes) throws IOException {
Iterator<AtomicOntologyChange> iter = changes.iterator();
while (iter.hasNext()) {
AtomicOntologyChange change = iter.next();
switch (change.getAtomicChangeType()){
case ADD:
addClass(change);
break;
case DELETE:
if ("Delete".equals(change.getNotes())) {
deleteIndividualsOfType(change);
} else {
renameClassToParent(change);
}
break;
case RENAME:
renameClass(change);
break;
default:
log.error("unexpected change type indicator: " + change.getAtomicChangeType());
}
}
}
/**
*
* Update the knowledge base for a class rename in the ontology. All references to the
* old class URI in either the subject or the object position of a statement are
* changed to use the new class URI.
*
* @param change - an AtomicOntologyChange object representing a class
* rename operation.
*
*/
public void renameClass(AtomicOntologyChange change) throws IOException {
//logger.log("Processing a class rename from: " + change.getSourceURI() + " to " + change.getDestinationURI());
Iterator<String> graphIt = dataset.listNames();
while(graphIt.hasNext()) {
String graph = graphIt.next();
Model aboxModel = dataset.getNamedModel(graph);
aboxModel.enterCriticalSection(Lock.WRITE);
try {
Model additions = ModelFactory.createDefaultModel();
Model retractions = ModelFactory.createDefaultModel();
//TODO - look for these in the models and log error if not found
Resource oldClass = ResourceFactory.createResource(
change.getSourceURI());
Resource newClass = ResourceFactory.createResource(
change.getDestinationURI());
// Change class references in the subjects of statements
// BJL 2010-04-09 : In future versions we need to keep track of
// the difference between true direct renamings and "use-insteads."
// For now, the best behavior is to remove any remaining statements
// where the old class is the subject, *unless* the statements
// is part of the new annotations file (see comment below) or the
// predicate is vitro:autolinkedToTab. In the latter case,
// the autolinking annotation should be rewritten using the
// new class name.
StmtIterator iter = aboxModel.listStatements(
oldClass, (Property) null, (RDFNode) null);
int removeCount = 0;
while (iter.hasNext()) {
Statement oldStatement = iter.next();
removeCount++;
retractions.add(oldStatement);
}
//log summary of changes
if (removeCount > 0) {
log.debug("Removed " + removeCount + " subject reference" +
((removeCount > 1) ? "s" : "") + " to the " +
oldClass.getURI() + " class");
}
// Change class references in the objects of rdf:type statements
iter = aboxModel.listStatements((Resource) null, RDF.type, oldClass);
int renameCount = 0;
while (iter.hasNext()) {
renameCount++;
Statement oldStatement = iter.next();
Statement newStatement = ResourceFactory.createStatement(
oldStatement.getSubject(), RDF.type, newClass);
retractions.add(oldStatement);
additions.add(newStatement);
}
//log summary of changes
if (renameCount > 0) {
log.debug("Retyped " + renameCount + " individual" +
((renameCount > 1) ? "s" : "") + " from type " +
oldClass.getURI() + " to type " + newClass.getURI());
}
aboxModel.remove(retractions);
//record.recordRetractions(retractions);
aboxModel.add(additions);
//record.recordAdditions(additions);
} finally {
aboxModel.leaveCriticalSection();
}
}
}
/**
*
* Examine the knowledge base for a class addition to the ontology and
* add messages to the change log indicating where manual review is
* recommended. If the added class has a direct parent in the new ontology
* that is not OWL.Thing, and if the knowledge base contains individuals
* asserted to be in the parent class, then log a message recommending
* review of those individuals to see whether they are of the new
* class type.
*
* @param change - an AtomicOntologyChange object representing a class
* addition operation.
*
*/
public void addClass(AtomicOntologyChange change) throws IOException {
//logger.log("Processing a class addition of class " + change.getDestinationURI());
OntClass addedClass = newTboxModel.createClass(change.getDestinationURI());
List<OntClass> classList = addedClass.listSuperClasses(true).toList();
List<OntClass> namedClassList = new ArrayList<OntClass>();
for (OntClass ontClass : classList) {
if (!ontClass.isAnon()) {
namedClassList.add(ontClass);
}
}
if (namedClassList.isEmpty()) {
namedClassList.add(OWL_THING);
}
Iterator<OntClass> classIter = namedClassList.iterator();
while (classIter.hasNext()) {
OntClass parentOfAddedClass = classIter.next();
if (!parentOfAddedClass.equals(OWL.Thing)) {
Iterator<String> graphIt = dataset.listNames();
while(graphIt.hasNext()) {
String graph = graphIt.next();
Model aboxModel = dataset.getNamedModel(graph);
StmtIterator stmtIter = aboxModel.listStatements(null, RDF.type, parentOfAddedClass);
int count = stmtIter.toList().size();
if (count > 0) {
//TODO - take out the detailed logging after our internal testing is completed.
log.debug("There " + ((count > 1) ? "are" : "is") + " " + count + " individual" + ((count > 1) ? "s" : "") + " in the model that " + ((count > 1) ? "are" : "is") + " of type " + parentOfAddedClass.getURI() + "," +
" and a new subclass of that class has been added: " + addedClass.getURI() + ". " +
"Please review " + ((count > 1) ? "these" : "this") + " individual" + ((count > 1) ? "s" : "") + " to see whether " + ((count > 1) ? "they" : "it") + " should be of type: " + addedClass.getURI() );
}
}
}
}
}
/**
*
* Update a knowledge base to account for a class deletion in the ontology.
* All references to the deleted class URI in either the subject or the object
* position of a statement are changed to use the closest available parent of
* the deleted class from the previous ontology that remains in the new version
* of the ontology. Note that the closest available parent may be owl:Thing.
* If the deleted class has more than one closest available parent, then
* change individuals that were asserted to be of the deleted class to be
* asserted to be of both parent classes.
*
* @param change - an AtomicOntologyChange object representing a class
* delete operation.
*
*/
public void renameClassToParent(AtomicOntologyChange change) throws IOException {
//logger.log("Processing a class migration to parent for deleted class " + change.getSourceURI());
OntClass deletedClass = oldTboxModel.getOntClass(change.getSourceURI());
if (deletedClass == null) {
log.warn("WARNING: didn't find the deleted class " + change.getSourceURI() + " in the old model. Skipping updates for this deletion");
return;
}
List<OntClass> classList = deletedClass.listSuperClasses(true).toList();
List<OntClass> namedClassList = new ArrayList<OntClass>();
for (OntClass ontClass : classList) {
if (!ontClass.isAnon()) {
namedClassList.add(ontClass);
}
}
OntClass parent = (!namedClassList.isEmpty())
? namedClassList.get(0)
: OWL_THING;
OntClass replacementClass = newTboxModel.getOntClass(parent.getURI());
while (replacementClass == null) {
parent = parent.getSuperClass();
if (parent == null) {
replacementClass = OWL_THING;
} else {
replacementClass = newTboxModel.getOntClass(parent.getURI());
}
}
//log summary of changes
log.debug("Class " + deletedClass.getURI() + " has been deleted. Any references to it in the knowledge base have been changed to " + replacementClass.getURI());
AtomicOntologyChange chg = new AtomicOntologyChange(deletedClass.getURI(), replacementClass.getURI(), AtomicChangeType.RENAME, change.getNotes());
renameClass(chg);
}
/**
*
* Remove all instances of the given class from the abox of the knowledge base.
*
* @param change - an AtomicOntologyChange object representing a class
* delete operation.
*
*/
public void deleteIndividualsOfType(AtomicOntologyChange change) throws IOException {
//logger.log("Processing a class deletion of class " + change.getSourceURI());
OntClass deletedClass = oldTboxModel.getOntClass(change.getSourceURI());
if (deletedClass == null) {
log.warn("WARNING: didn't find the deleted class " + change.getSourceURI() + " in the old model. Skipping updates for this deletion");
return;
}
// Remove instances of the deleted class
Iterator<String> graphIt = dataset.listNames();
while(graphIt.hasNext()) {
String graph = graphIt.next();
Model aboxModel = dataset.getNamedModel(graph);
aboxModel.enterCriticalSection(Lock.WRITE);
try {
int count = 0;
int refCount = 0;
StmtIterator iter = aboxModel.listStatements((Resource) null, RDF.type, deletedClass);
while (iter.hasNext()) {
count++;
Statement typeStmt = iter.next();
refCount = deleteIndividual(typeStmt.getSubject());
}
if (count > 0) {
log.debug("Removed " + count + " individual" + (((count > 1) ? "s" : "") + " of type " + deletedClass.getURI()) + " (refs = " + refCount + ")");
}
} finally {
aboxModel.leaveCriticalSection();
}
}
}
protected int deleteIndividual(Resource individual) throws IOException {
Model retractions = ModelFactory.createDefaultModel();
int refCount = 0;
Iterator<String> graphIt = dataset.listNames();
while(graphIt.hasNext()) {
String graph = graphIt.next();
Model aboxModel = dataset.getNamedModel(graph);
aboxModel.enterCriticalSection(Lock.WRITE);
try {
StmtIterator iter = aboxModel.listStatements(individual, (Property) null, (RDFNode) null);
while (iter.hasNext()) {
Statement subjstmt = iter.next();
retractions.add(subjstmt);
}
iter = aboxModel.listStatements((Resource) null, (Property) null, individual);
while (iter.hasNext()) {
Statement objstmt = iter.next();
retractions.add(objstmt);
refCount++;
}
aboxModel.remove(retractions);
} finally {
aboxModel.leaveCriticalSection();
}
}
return refCount;
}
public void processPropertyChanges(List<AtomicOntologyChange> changes) throws IOException {
Iterator<AtomicOntologyChange> propItr = changes.iterator();
while(propItr.hasNext()){
AtomicOntologyChange propChangeObj = propItr.next();
log.debug("processing " + propChangeObj);
try {
if (propChangeObj.getAtomicChangeType() == null) {
log.error("Missing change type; skipping " + propChangeObj);
continue;
}
switch (propChangeObj.getAtomicChangeType()){
case ADD:
log.debug("add");
addProperty(propChangeObj);
break;
case DELETE:
log.debug("delete");
deleteProperty(propChangeObj);
break;
case RENAME:
log.debug("rename");
renameProperty(propChangeObj);
break;
default:
log.debug("unknown");
log.error("unexpected change type indicator: " + propChangeObj.getAtomicChangeType());
break;
}
} catch (Exception e) {
log.error(e,e);
}
}
}
private void addProperty(AtomicOntologyChange propObj) throws IOException{
//logger.log("Processing a property addition of property " + propObj.getDestinationURI());
OntProperty addedProperty = newTboxModel.getOntProperty (propObj.getDestinationURI());
if (addedProperty == null) {
log.error("Unable to find property " + propObj.getDestinationURI() + " in new TBox");
return;
}
// if the newly added property has an inverse in the new TBox, then for all existing
// ABox statements involving that inverse (if the inverse is new also there won't be
// any) add the corresponding statement with the new property.
OntProperty inverseOfAddedProperty = addedProperty.getInverseOf();
if (inverseOfAddedProperty != null) {
Model additions = ModelFactory.createDefaultModel();
Iterator<String> graphIt = dataset.listNames();
while(graphIt.hasNext()) {
String graph = graphIt.next();
Model aboxModel = dataset.getNamedModel(graph);
aboxModel.enterCriticalSection(Lock.WRITE);
try {
StmtIterator iter = aboxModel.listStatements((Resource) null, inverseOfAddedProperty, (RDFNode) null);
while (iter.hasNext()) {
Statement stmt = iter.next();
if (stmt.getObject().isResource()) {
Statement newStmt = ResourceFactory.createStatement(stmt.getObject().asResource(), addedProperty, stmt.getSubject());
additions.add(newStmt);
} else {
log.warn("WARNING: expected the object of this statement to be a Resource but it is not. No inverse has been asserted: " + stmtString(stmt));
}
}
aboxModel.add(additions);
//record.recordAdditions(additions);
if (additions.size() > 0) {
log.debug("Added " + additions.size() + " statement" +
((additions.size() > 1) ? "s" : "") +
" with predicate " + addedProperty.getURI() +
" (as an inverse to existing " + inverseOfAddedProperty.getURI() +
" statement" + ((additions.size() > 1) ? "s" : "") + ")");
}
} finally {
aboxModel.leaveCriticalSection();
}
}
}
}
private void deleteProperty(AtomicOntologyChange propObj) throws IOException{
//logger.log("Processing a property deletion of property " + propObj.getSourceURI());
OntProperty deletedProperty = oldTboxModel.getOntProperty(propObj.getSourceURI());
if (deletedProperty == null && "Prop".equals(propObj.getNotes())) {
deletedProperty = (ModelFactory.createOntologyModel(OntModelSpec.OWL_MEM)).createOntProperty(propObj.getSourceURI());
}
if (deletedProperty == null ) {
log.warn("WARNING: didn't find deleted property " + propObj.getSourceURI() + " in oldTBoxModel");
return;
}
OntProperty replacementProperty = null;
if (!propObj.getNotes().equals("Delete")) {
OntProperty parent = deletedProperty.getSuperProperty();
if (parent != null) {
replacementProperty = newTboxModel.getOntProperty(parent.getURI());
while (replacementProperty == null) {
parent = parent.getSuperProperty();
if (parent == null) {
break;
}
replacementProperty = newTboxModel.getOntProperty(parent.getURI());
}
}
}
Iterator<String> graphIt = dataset.listNames();
while(graphIt.hasNext()) {
String graph = graphIt.next();
Model aboxModel = dataset.getNamedModel(graph);
Model deletePropModel = ModelFactory.createDefaultModel();
if (replacementProperty == null) {
aboxModel.enterCriticalSection(Lock.WRITE);
try {
deletePropModel.add(aboxModel.listStatements((Resource) null, deletedProperty, (RDFNode) null));
aboxModel.remove(deletePropModel);
} finally {
aboxModel.leaveCriticalSection();
}
//record.recordRetractions(deletePropModel);
boolean plural = (deletePropModel.size() > 1);
if (deletePropModel.size() > 0) {
log.debug("Removed " + deletePropModel.size() + " statement" + (plural ? "s" : "") + " with predicate " +
propObj.getSourceURI());
}
} else {
AtomicOntologyChange chg = new AtomicOntologyChange(deletedProperty.getURI(), replacementProperty.getURI(), AtomicChangeType.RENAME, propObj.getNotes());
renameProperty(chg);
}
}
}
private void renameProperty(AtomicOntologyChange propObj) throws IOException {
log.debug("Processing a property rename from: " + propObj.getSourceURI() + " to " + propObj.getDestinationURI());
OntProperty oldProperty = oldTboxModel.getOntProperty(propObj.getSourceURI());
Property newProperty = ResourceFactory.createProperty(propObj.getDestinationURI());
if (oldProperty == null) {
log.error("didn't find the " + propObj.getSourceURI() + " property in the old TBox");
return;
}
long start = System.currentTimeMillis();
Iterator<String> graphIt = dataset.listNames();
while(graphIt.hasNext()) {
String graph = graphIt.next();
Model aboxModel = dataset.getNamedModel(graph);
Model renamePropAddModel = ModelFactory.createDefaultModel();
Model renamePropRetractModel = ModelFactory.createDefaultModel();
log.debug("renaming " + oldProperty.getURI() + " in graph " + graph);
aboxModel.enterCriticalSection(Lock.WRITE);
try {
start = System.currentTimeMillis();
// String queryStr = "CONSTRUCT { ?s <" + oldProperty.getURI() + "> ?o } WHERE { GRAPH<" + graph + "> { ?s <" + oldProperty.getURI() + "> ?o } } ";
// try {
// renamePropRetractModel = RDFServiceUtils.parseModel(rdfService.sparqlConstructQuery(queryStr, RDFService.ModelSerializationFormat.NTRIPLE), RDFService.ModelSerializationFormat.NTRIPLE);
// } catch (RDFServiceException e) {
// log.error(e,e);
// }
// log.info(System.currentTimeMillis() - start + " to run sparql construct for " + renamePropRetractModel.size() + " statements" );
start = System.currentTimeMillis();
renamePropRetractModel.add( aboxModel.listStatements(
(Resource) null, oldProperty, (RDFNode) null));
log.debug(System.currentTimeMillis() - start + " to list " + renamePropRetractModel.size() + " old statements");
start = System.currentTimeMillis();
StmtIterator stmItr = renamePropRetractModel.listStatements();
while(stmItr.hasNext()) {
Statement tempStatement = stmItr.nextStatement();
renamePropAddModel.add( tempStatement.getSubject(),
newProperty,
tempStatement.getObject() );
}
log.debug(System.currentTimeMillis() - start + " to make new statements");
start = System.currentTimeMillis();
aboxModel.remove(renamePropRetractModel);
log.debug(System.currentTimeMillis() - start + " to retract old statements");
start = System.currentTimeMillis();
aboxModel.add(renamePropAddModel);
log.debug(System.currentTimeMillis() - start + " to add new statements");
} finally {
aboxModel.leaveCriticalSection();
}
//record.recordAdditions(renamePropAddModel);
//record.recordRetractions(renamePropRetractModel);
if (renamePropRetractModel.size() > 0) {
log.debug("Changed " + renamePropRetractModel.size() + " statement" +
((renamePropRetractModel.size() > 1) ? "s" : "") +
" with predicate " + propObj.getSourceURI() + " to use " +
propObj.getDestinationURI() + " instead");
}
}
//tboxUpdater.renameProperty(propObj);
}
public void logChanges(Statement oldStatement, Statement newStatement) throws IOException {
logChange(oldStatement,false);
logChange(newStatement,true);
}
public void logChange(Statement statement, boolean add) throws IOException {
log.debug( (add ? "Added" : "Removed") + stmtString(statement));
}
public static String stmtString(Statement statement) {
return " [subject = " + statement.getSubject().getURI() +
"] [property = " + statement.getPredicate().getURI() +
"] [object = " + (statement.getObject().isLiteral() ? ((Literal)statement.getObject()).getLexicalForm() + " (Literal)"
: ((Resource)statement.getObject()).getURI() + " (Resource)") + "]";
}
public static String stmtString(Resource subject, Property predicate, RDFNode object) {
return " [subject = " + subject.getURI() +
"] [property = " + predicate.getURI() +
"] [object = " + (object.isLiteral() ? ((Literal)object).getLexicalForm() + " (Literal)"
: ((Resource)object).getURI() + " (Resource)") + "]";
}
}
| [
"[email protected]"
] | |
7d7f95857c368f9c0dd92c82adf528ffc9c93282 | 73fec93a8bfae4638e250fd9159bd5550dae3392 | /stu-dorm-sys/src/main/java/dao/DictionaryTagDAO.java | 5df76c3b373b74a93e751c1d1a2988b20a8999ac | [] | no_license | 181114mly/Personal-Project | 27dde8578789a2a13c59d69bc0ea18bc550e65a8 | 2e9fd3d07e9c5bc352748bbdec86ff69d0049a75 | refs/heads/master | 2022-12-16T18:11:28.337164 | 2020-09-06T13:15:59 | 2020-09-06T13:15:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,422 | java | package dao;
import model.DictionaryTag;
import util.DBUtil;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
public class DictionaryTagDAO {
public static List<DictionaryTag> query(String key) {
List<DictionaryTag> list=new ArrayList<>();
Connection c=null;
PreparedStatement ps=null;
ResultSet rs=null;
try {
c= DBUtil.getConnection();
String sql="select concat(d.dictionary_key, dt.dictionary_tag_key) dictionary_tag_key," +
" dt.dictionary_tag_value" +
" from dictionary d" +
" join dictionary_tag dt on d.id = dt.dictionary_id" +
" where d.dictionary_key =?";
ps=c.prepareStatement(sql);
ps.setString(1,key);
rs=ps.executeQuery();
while(rs.next()){
DictionaryTag tag=new DictionaryTag();
tag.setDictionaryTagKey(rs.getString("dictionary_tag_key"));
tag.setDictionaryTagValue(rs.getString("dictionary_tag_value"));
list.add(tag);
}
} catch (Exception e) {
throw new RuntimeException("查询数据字典标签出错",e);
} finally {
DBUtil.close(c,ps,rs);
}
return list;
}
} | [
"[email protected]"
] | |
6bbfec246cd9e17f39810e997c381723cbdb1f08 | ee6a38396a5363ac4a139ec4634a8ab5e582037b | /NongJi/src/com/fyx/nongji/NongJiActivity.java | 7d9a48d3a706421afc752d2088f800168b00b722 | [] | no_license | FuXiangGit/NongJi | 0d728f5183ed80b431c1eb9a739bfffbbbb49ee4 | 8b4b3c86e33cd769e25f785e76d418f9a78c4f09 | refs/heads/master | 2021-05-27T04:48:48.616626 | 2014-11-26T02:23:53 | 2014-11-26T02:23:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,979 | java | package com.fyx.nongji;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import android.view.KeyEvent;
import android.view.View;
import android.view.Window;
import android.webkit.DownloadListener;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.ProgressBar;
import com.baidu.mapapi.SDKInitializer;
import com.baidu.mapapi.VersionInfo;
import com.fyx.map.PoiSearchDemo;
import com.lidroid.xutils.ViewUtils;
import com.lidroid.xutils.util.LogUtils;
import com.lidroid.xutils.view.annotation.ViewInject;
import com.lidroid.xutils.view.annotation.event.OnClick;
import com.nongji.tools.ProgressWebView;
public class NongJiActivity extends Activity {
private static final String LTAG = NongJiActivity.class.getSimpleName();
// // webView控件定义
// @ViewInject(R.id.main_web_view)
// private WebView mainWeb;
private WebSettings settings;
ProgressBar progressBar;
ProgressWebView webview;
/**
* 构造广播监听类,监听 SDK key 验证以及网络异常广播
*/
public class SDKReceiver extends BroadcastReceiver {
public void onReceive(Context context, Intent intent) {
String s = intent.getAction();
Log.d(LTAG, "action: " + s);
// TextView text = (TextView) findViewById(R.id.text_Info);
if (s.equals(SDKInitializer.SDK_BROADTCAST_ACTION_STRING_PERMISSION_CHECK_ERROR)) {
LogUtils.e("key 验证出错! 请在 AndroidManifest.xml 文件中检查 key 设置");
} else if (s
.equals(SDKInitializer.SDK_BROADCAST_ACTION_STRING_NETWORK_ERROR)) {
LogUtils.d("网络出错");
}
}
}
private SDKReceiver mReceiver;
// 继承方法-------------------------------------------------------------------------------------
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// requestWindowFeature(Window.FEATURE_PROGRESS);
setContentView(R.layout.activity_nong_ji);
ViewUtils.inject(this);
LogUtils.d("欢迎使用百度地图Android SDK v" + VersionInfo.getApiVersion());
// 注册 SDK 广播监听者
IntentFilter iFilter = new IntentFilter();
iFilter.addAction(SDKInitializer.SDK_BROADTCAST_ACTION_STRING_PERMISSION_CHECK_ERROR);
iFilter.addAction(SDKInitializer.SDK_BROADCAST_ACTION_STRING_NETWORK_ERROR);
mReceiver = new SDKReceiver();
registerReceiver(mReceiver, iFilter);
initWebView();
}
@Override
protected void onResume() {
super.onResume();
}
@Override
protected void onDestroy() {
super.onDestroy();
// 取消监听 SDK 广播
unregisterReceiver(mReceiver);
}
// --------------------------------------------------------------------------------
@OnClick({ R.id.btn_myLocation, R.id.btn_xiugai, R.id.btn_state })
public void myClick(View v) {
switch (v.getId()) {
case R.id.btn_myLocation:
// Intent intent = null;
// intent = new Intent(NongJiActivity.this, BaseMapDemo.class);
// this.startActivity(intent);
// startActivity(new Intent(NongJiActivity.this,
// BaseMapDemo.class));
// startActivity(new Intent(NongJiActivity.this,
// LocationDemo.class));
startActivity(new Intent(NongJiActivity.this, PoiSearchDemo.class));
break;
case R.id.btn_xiugai:
Intent intent = new Intent(NongJiActivity.this, XiuGaiInfo.class);
startActivity(intent);
break;
case R.id.btn_state:
Intent myintent = new Intent(NongJiActivity.this, XiuGaiState.class);
startActivity(myintent);
break;
default:
break;
}
}
// --------------------------------------------------------------------------
@SuppressLint("SetJavaScriptEnabled")
private void initWebView() {
/* // requestWindowFeature(R.id.main_web_view);
// 生成水平进度条
progressBar = new ProgressBar(this, null,
android.R.attr.progressBarStyleHorizontal);
settings = mainWeb.getSettings();
settings.setSupportZoom(true); // 支持缩放
settings.setBuiltInZoomControls(true); // 启用内置缩放装置
settings.setJavaScriptEnabled(true); // 启用JS脚本
String baseURL = "http://www.csszengarden.com"; // 根URL
mainWeb.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
mainWeb.loadUrl(baseURL);
// mainWeb.loadDataWithBaseURL(baseURL, html, "text/html", "utf-8",
// null);
mainWeb.setWebChromeClient(new WebChromeClient() {
public void onProgressChanged(WebView view, int progress) {
// Activity和Webview根据加载程度决定进度条的进度大小
// 当加载到100%的时候 进度条自动消失
NongJiActivity.this.setProgress(progress * 100);
}
});
mainWeb.setWebViewClient(new WebViewClient() {
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
});*/
String baseURL = "http://www.baidu.com"; // 根URL
webview = (ProgressWebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true);
webview.setDownloadListener(new DownloadListener() {
@Override
public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) {
if (url != null && url.startsWith("http://"))
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
}
});
webview.loadUrl(baseURL);
webview.setWebViewClient(new WebViewClient() {
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
});
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if ((keyCode == KeyEvent.KEYCODE_BACK) && webview.canGoBack()) {
webview.goBack();
return true;
}
return super.onKeyDown(keyCode, event);
}
}
| [
"[email protected]"
] | |
a05546fc9b3d74f1ae2df37720ded4842db60a20 | 624d1a8dce27bf0a1438ef58f0fc8034bcc1fc41 | /src/test/java/com/employee/management/system/security/SecurityUtilsUnitTest.java | b5afbf0f0a06b75541af30c1aa9961fd9a00abdd | [] | no_license | Partho99/EmployeeManagementSystem | d08f549df2ac1b0d7ccdf566f1974f3fc4d90635 | 54714a617f411d3989c67b6c670cc36ab02d73c9 | refs/heads/master | 2022-07-23T15:41:10.377865 | 2021-07-02T06:46:48 | 2021-07-02T06:46:48 | 131,047,391 | 1 | 0 | null | 2022-07-08T05:47:34 | 2018-04-25T18:24:50 | Java | UTF-8 | Java | false | false | 3,212 | java | package com.employee.management.system.security;
import org.junit.jupiter.api.Test;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.authority.SimpleGrantedAuthority;
import org.springframework.security.core.context.SecurityContext;
import org.springframework.security.core.context.SecurityContextHolder;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Optional;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Test class for the {@link SecurityUtils} utility class.
*/
public class SecurityUtilsUnitTest {
@Test
public void testGetCurrentUserLogin() {
SecurityContext securityContext = SecurityContextHolder.createEmptyContext();
securityContext.setAuthentication(new UsernamePasswordAuthenticationToken("admin", "admin"));
SecurityContextHolder.setContext(securityContext);
Optional<String> login = SecurityUtils.getCurrentUserLogin();
assertThat(login).contains("admin");
}
@Test
public void testgetCurrentUserJWT() {
SecurityContext securityContext = SecurityContextHolder.createEmptyContext();
securityContext.setAuthentication(new UsernamePasswordAuthenticationToken("admin", "token"));
SecurityContextHolder.setContext(securityContext);
Optional<String> jwt = SecurityUtils.getCurrentUserJWT();
assertThat(jwt).contains("token");
}
@Test
public void testIsAuthenticated() {
SecurityContext securityContext = SecurityContextHolder.createEmptyContext();
securityContext.setAuthentication(new UsernamePasswordAuthenticationToken("admin", "admin"));
SecurityContextHolder.setContext(securityContext);
boolean isAuthenticated = SecurityUtils.isAuthenticated();
assertThat(isAuthenticated).isTrue();
}
@Test
public void testAnonymousIsNotAuthenticated() {
SecurityContext securityContext = SecurityContextHolder.createEmptyContext();
Collection<GrantedAuthority> authorities = new ArrayList<>();
authorities.add(new SimpleGrantedAuthority(AuthoritiesConstants.ANONYMOUS));
securityContext.setAuthentication(new UsernamePasswordAuthenticationToken("anonymous", "anonymous", authorities));
SecurityContextHolder.setContext(securityContext);
boolean isAuthenticated = SecurityUtils.isAuthenticated();
assertThat(isAuthenticated).isFalse();
}
@Test
public void testIsCurrentUserInRole() {
SecurityContext securityContext = SecurityContextHolder.createEmptyContext();
Collection<GrantedAuthority> authorities = new ArrayList<>();
authorities.add(new SimpleGrantedAuthority(AuthoritiesConstants.USER));
securityContext.setAuthentication(new UsernamePasswordAuthenticationToken("user", "user", authorities));
SecurityContextHolder.setContext(securityContext);
assertThat(SecurityUtils.isCurrentUserInRole(AuthoritiesConstants.USER)).isTrue();
assertThat(SecurityUtils.isCurrentUserInRole(AuthoritiesConstants.ADMIN)).isFalse();
}
}
| [
"[email protected]"
] | |
67600053a9b10292e97da768b75f30e5749f4a60 | 93c6316ec03529550631f16b06348db5b298e0f7 | /src/miapp/Usuario.java | 22fa2c21f91afa985a3d4d8d2a92f000bf9a54dc | [] | no_license | garciaamor/EjercicioBranches | 15c9e63f0e9d1c3c88e555d15ef7c6e8aa2e8427 | dcc21be6a48682737e8487df8549b1e8d9043c90 | refs/heads/master | 2021-01-10T11:17:07.609310 | 2016-02-11T08:06:33 | 2016-02-11T08:06:33 | 51,990,562 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 466 | java | package miapp;
/**
*
* @author jgarciaamor
*/
public class Usuario {
private String usuario;
private String contrasinal;
public Usuario() {
}
public Usuario(String usuario, String contrasinal) {
this.usuario = usuario;
this.contrasinal = contrasinal;
}
public void engadirLibreta(){
}
public void borrarLibreta(){
}
public void editarLibreta(){
}
}
| [
"[email protected]"
] | |
515ace51bf5c2216818c897a012ca6c94bc7ff4a | 5e1fbed8c730e5a2b82f77a6d8bfd89e12cbf63e | /javaweb/code/java-web/web-14-userListCase/src/com/david/userlist/filter/LoginFilter.java | 3e2e5763eac5a06e70295e6995c5714d1f977b0e | [] | no_license | git4deng/java-all | 9ddef6745542af5ae135574a1f3d711de6c1ed1d | 4e1ce5105890f17d2b8cd771434f8fd655eceea5 | refs/heads/master | 2022-12-22T06:54:46.635614 | 2019-07-05T03:38:22 | 2019-07-05T03:38:22 | 178,428,328 | 1 | 0 | null | 2022-12-16T01:27:15 | 2019-03-29T15:12:50 | Java | UTF-8 | Java | false | false | 1,522 | java | package com.david.userlist.filter;
import javax.servlet.*;
import javax.servlet.annotation.WebFilter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
/**
* 登陆验证的过滤器
* @author david
* @create 2019-06-08 20:36
*/
@WebFilter("/*")
public class LoginFilter implements Filter {
@Override
public void init(FilterConfig filterConfig) throws ServletException {
}
@Override
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
HttpServletRequest req= (HttpServletRequest) servletRequest;
HttpServletResponse res= (HttpServletResponse) servletResponse;
String uri = req.getRequestURI();
if(uri.contains("login.jsp")||uri.contains("/login")||uri.contains("login.jsp")||uri.contains("/checkCode")||uri.contains("/css/")|uri.contains("/js/")||uri.contains("/fonts/")){
//放行
filterChain.doFilter(servletRequest,servletResponse);
}else{
Object user = req.getSession().getAttribute("user");
if(user!=null){
filterChain.doFilter(servletRequest,servletResponse);
}else{
req.setAttribute("login_error","请未登陆请先登陆!");
req.getRequestDispatcher("/login.jsp").forward(req,res);
}
}
}
@Override
public void destroy() {
}
}
| [
"[email protected]"
] | |
9f954a261c7e29ba82e2f01ff282fa9a09bd9f70 | 64099943593bd03c58547fe77117e677e8c7fbc3 | /javasource/boxconnector/actions/GetEmbedLink.java | 2bbe11b67692c1a4156a80b87a577fa269194440 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | mendix/BoxConnector | aedeaf34f60a1e2c06d56dc6b74b9a14db38cbeb | 2a3693241e828f8222e9efb6d438caaa4090a23b | refs/heads/master | 2021-01-09T05:51:40.558956 | 2017-03-09T14:02:52 | 2017-03-09T14:02:52 | 80,847,749 | 1 | 4 | Apache-2.0 | 2020-08-03T10:03:09 | 2017-02-03T16:38:33 | Java | UTF-8 | Java | false | false | 1,801 | java | // This file was generated by Mendix Modeler.
//
// WARNING: Only the following code will be retained when actions are regenerated:
// - the import list
// - the code between BEGIN USER CODE and END USER CODE
// - the code between BEGIN EXTRA CODE and END EXTRA CODE
// Other code you write will be lost the next time you deploy the project.
// Special characters, e.g., é, ö, à, etc. are supported in comments.
package boxconnector.actions;
import static boxconnector.proxies.microflows.Microflows.getEmbedLinkImpl;
import com.mendix.systemwideinterfaces.core.IContext;
import com.mendix.webui.CustomJavaAction;
import com.mendix.systemwideinterfaces.core.IMendixObject;
/**
* Used to retrieve an expiring URL for creating an embedded preview session.
* The URL will expire after 60 seconds and the preview session will expire after 60 minutes.
*/
public class GetEmbedLink extends CustomJavaAction<IMendixObject>
{
private IMendixObject __BoxFileParam;
private boxconnector.proxies.BoxFile BoxFileParam;
public GetEmbedLink(IContext context, IMendixObject BoxFileParam)
{
super(context);
this.__BoxFileParam = BoxFileParam;
}
@Override
public IMendixObject executeAction() throws Exception
{
this.BoxFileParam = __BoxFileParam == null ? null : boxconnector.proxies.BoxFile.initialize(getContext(), __BoxFileParam);
// BEGIN USER CODE
boxconnector.proxies.BoxFile boxFile = getEmbedLinkImpl(getContext(), BoxFileParam);
if (boxFile != null)
return boxFile.getMendixObject();
else
return null;
// END USER CODE
}
/**
* Returns a string representation of this action
*/
@Override
public java.lang.String toString()
{
return "GetEmbedLink";
}
// BEGIN EXTRA CODE
// END EXTRA CODE
}
| [
"[email protected]"
] | |
46aced5b304d1c9f4c5081a473b8364f6de2252c | 32de861bc2cccaf59b84c18f77a40b80743af084 | /artifact/release/JPonyo/trunk/jponyo/src/main/java/net/sf/ponyo/jponyo/user/UserModule.java | 47d1cda5985b556fa8ae991fe1bf404a806fe449 | [] | no_license | christophpickl/ponyo-svn | f2419d9e880c3dc0da2f8863fb5766a94b60ac4a | 99971a27e7f9ee803ac70e5aabbaccaa3a82c1ed | refs/heads/master | 2021-03-08T19:28:49.379381 | 2012-09-14T20:50:57 | 2012-09-14T20:50:57 | 56,807,836 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 401 | java | package net.sf.ponyo.jponyo.user;
import com.google.inject.AbstractModule;
import com.google.inject.assistedinject.FactoryModuleBuilder;
public class UserModule extends AbstractModule {
@Override
protected void configure() {
install(new FactoryModuleBuilder()
.implement(UserManager.class, RunningSessionUserManager.class)
.build(RunningSessionUserManagerFactory.class));
}
}
| [
"[email protected]"
] | |
efea928286b0a09f722c2425e6ac772d3b5ffc78 | d0740555cdda02044aab46e681d52ceec7e1fe90 | /app/src/main/java/com/keke/hejia/api/PublicApi.java | 800853575231a602c8a4ef213255995c77f28ea7 | [] | no_license | baisaikele/HeJiaApp | b48b17cdea447d08e72b1e44a8602a82f42d9529 | a6aef67d2a775b3e7d78763b5894638aadba4367 | refs/heads/master | 2020-04-08T10:23:20.441401 | 2018-12-01T09:43:46 | 2018-12-01T09:43:46 | 159,266,752 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,373 | java | package com.keke.hejia.api;
import com.keke.hejia.api.bean.RxHjDataObserver;
import com.keke.hejia.bean.ApiInitBean;
import java.util.HashMap;
import io.reactivex.android.schedulers.AndroidSchedulers;
import io.reactivex.schedulers.Schedulers;
public class PublicApi {
//初始化接口
public static void getIntAPP(final ResponseListener listener) {
HashMap<String, String> map1 = new HashMap<>();
map1.put("platform", "ANDROID");
HashMap<String, String> stringStringHashMap = Api.initMap(map1, Api.BaseUrl + ApiConstant.APP_INITIAL);
Api.getDefault().getInitApp(ApiConstant.APP_INITIAL, stringStringHashMap)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new RxHjDataObserver<ApiInitBean>() {
@Override
protected void onSuccees(ApiInitBean apiInitBean) throws Exception {
listener.success(apiInitBean);
}
@Override
protected void onFailure(Throwable e, boolean isNetWorkError) throws Exception {
listener.error(e.getMessage());
}
});
}
public interface ResponseListener {
void success(Object o);
void error(String s);
}
}
| [
"[email protected]"
] | |
b304efd566a73fa1b1e6d08077aeca381ce0b143 | b7973888c49562424928c198924ae50c6668a870 | /app/src/main/java/com/example/nasafeed/api/model/DateDTO.java | 67ee4c7ddf9926bcd771919807f38594fc95de0d | [] | no_license | Katerina4545/news-feed | 540b05be6b32db44366560665bcf2e310a894c04 | 463898daa03ab037959af4ad720d28054edca034 | refs/heads/master | 2023-02-19T00:35:12.187043 | 2021-01-20T13:29:46 | 2021-01-20T13:29:46 | 329,542,353 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 300 | java | package com.example.nasafeed.api.model;
//в model собраны транспортные объекты - обекты, которые приходят по сетевым запросам
public class DateDTO {
private String date;
public String getDate() {
return date;
}
}
| [
"[email protected]"
] | |
3a0be9e3855dc2d792308d36b50e4369ba699a2c | 0a11adb5f2313e4637df8c21759968c0e2883bc3 | /Demo_WebApp_1/src/main/java/sample/model/Authenticator.java | 429ec789973c42be18840dc8f507d51daaba147e | [] | no_license | TahiniThai/PEP_ZALA | 8af8038622bb4c445d9d7d255315c9ea7a155fcf | 24a5ff982de82de34bf3e8fcf3baac67db1ff157 | refs/heads/master | 2021-01-20T00:20:00.120849 | 2017-04-23T02:02:36 | 2017-04-23T02:02:36 | 89,110,921 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 330 | java | package sample.model;
/**
* Created by Tahini Thai on 4/22/2017.
*/
public class Authenticator {
public String authenticator(String username, String password) {
if ("admin".equalsIgnoreCase(username) && "admin".equalsIgnoreCase(password))
return "success";
return "failure";
}
}
| [
"[email protected]"
] | |
b77983969b77eee5c7d36b5262fe8e4fd033dd20 | d652a3c9669a06c5bb9d14bfa3ca1d269304a7ea | /helper/Helper.java | cf36a9ffb22a98607c5c71c252e55d8ae98be7a5 | [] | no_license | YifengDeng/MLB-Andriod-apllication-demo | 320744473ab7e4142cc5c86dc5aef4464bd01581 | 06a2eb334a737ab01001b3e58eaa85f5de289483 | refs/heads/master | 2021-06-25T08:46:10.094140 | 2017-09-13T01:05:13 | 2017-09-13T01:05:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 917 | java | package com.inducesmile.androidmultiquiz.helper;
public class Helper {
public static final String instruction = "It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. " +
"The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. " +
"Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites " +
"still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose injected humour and the like";
public static final String SHARED_PREF = "share_pref";
public static final String QUIZ_SCORE = "quiz_score";
}
| [
"[email protected]"
] | |
bd03a2049b32a772755e053591fb1255e54d3cfb | 6610ee13414746719a85ca24112f1c9317829aee | /src/main/java/org/alien4cloud/plugin/kafka/listener/model/CapabilityProps.java | 5d0077cf6c5890d1764927a9a9ca4d5b89c5639a | [] | no_license | alien4cloud/alien4cloud-kafka-listener | 6e26d1f9f40dcbaae78975802f2eb0a66cad7791 | c818421e30b8c22262a7d8a3c4d4e38d8fa199f5 | refs/heads/3.0.x | 2023-04-28T15:46:15.618593 | 2022-04-22T08:27:33 | 2022-04-22T08:27:33 | 226,297,709 | 0 | 0 | null | 2023-04-14T17:43:08 | 2019-12-06T09:55:53 | Java | UTF-8 | Java | false | false | 216 | java | package org.alien4cloud.plugin.kafka.listener.model;
import lombok.Getter;
import lombok.Setter;
import java.util.Map;
@Getter
@Setter
public class CapabilityProps {
private Map<String, String> properties;
}
| [
"[email protected]"
] | |
862ac19e2f710daa906236be92bc2b93a0a87267 | 57c0c760f258512efb8620272cbf0d11f4eeb98c | /src/Repl/q96_RepeatSeperator.java | 94cf7f5cc1277797b483a21db6275b10a7c5c597 | [] | no_license | ferro-sudo/Java | 1065bc6a9c7f98bad2f26b0ac32df83dddf051ae | 4e6465083d0e2da4350680c19eac0bca608a521d | refs/heads/master | 2023-02-22T21:30:56.067667 | 2021-02-02T17:20:46 | 2021-02-02T17:20:46 | 335,305,851 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 425 | java | package Repl;
import java.util.Scanner;
public class q96_RepeatSeperator {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
String word = scan.next();
String separator = scan.next();
int count = scan.nextInt();
String str = "";
for (int i = 0; i < count; i++) {
if (count - 1 == i)
str += word;
else
str += word + separator;
}
System.out.println(str);
}
}
| [
"[email protected]"
] | |
3de550c0890bcb3a23d987749ffaf8b35c59ef49 | 0f62b9ef62c3d5f1b836d65fd5cf634859108dc5 | /src/amazon/chegg.java | 1275439622fbe53026e6a28991c9540567e72889 | [] | no_license | rohitnara/JavaPractice | c2feb9015bf6183f47fb1c81b62424eb7afd3560 | 7f42bf320c8b9b4f3b9d3202b5e1dc4f1ae2e0fb | refs/heads/master | 2021-06-27T04:48:58.452101 | 2020-10-03T04:15:46 | 2020-10-03T04:15:46 | 152,322,845 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 764 | java | package amazon;
import java.util.*;
public class chegg {
static boolean check(ArrayList<Integer> a){
for(int i=1;i<a.size();i++){
if(a.get(i-1)==a.get(i))
return false;
}
return true;
}
static ArrayList<Integer> fun(int a[]){
ArrayList<Integer> arr=new ArrayList<>();
for(int i=0;i<a.length;i++){
arr.add(a[i]);
}
int i;
while(true){
i=0;
if(check(arr)==true)
return arr;
else{
while(i<arr.size()-1){
if(arr.get(i)==arr.get(i+1)){
arr.set(i, arr.get(i)+arr.get(i+1));
arr.remove(i+1);
}
i++;
}
}
}
//return arr;
}
public static void main(String[] args) {
int a[]={2,2,2,4,4,4,8,16};
System.out.println(fun(a));
}
}
| [
"[email protected]"
] | |
2dc6ece005d0a94958f233824044087a75769a31 | a1665993cfcfc927f9c7ecefb0704fae5e509814 | /src/main/java/edu/utdallas/msh150130/cs2336/reversi/controller/Controller.java | 5cc7ad7e134da74c840e029f8d7e8fb5b8e2e30a | [
"MIT"
] | permissive | Michael-Hollister/Reversi | d2b489de8b474b531fd31fe21acd01b979d41686 | 5a5cd5da65671451d7ff7b5972ee57b3a016010c | refs/heads/master | 2021-01-01T04:45:06.140260 | 2016-05-06T03:18:40 | 2016-05-06T03:18:40 | 58,176,516 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,940 | java | package edu.utdallas.msh150130.cs2336.reversi.controller;
/*******************************************************************
* Copyright (c) 2016, Michael Hollister *
* *
* This source code is subject to the terms of The MIT License. *
* If a copy of The MIT License was not distributed with this file, *
* you can obtain one at http://opensource.org/licenses/MIT. *
*******************************************************************/
import edu.utdallas.msh150130.cs2336.reversi.model.Disc;
import edu.utdallas.msh150130.cs2336.reversi.model.InputLocation;
import edu.utdallas.msh150130.cs2336.reversi.model.Model;
import edu.utdallas.msh150130.cs2336.reversi.model.PlayerSetup;
/**
* Handles game input and high level control flow
*/
public abstract class Controller {
/**
* Model that the controller is communicating with
*/
Model model;
/**
* Constructs a {@code Controller} that handles game input and high level control flow
* @param modelToControl model that the controller is communicating with
* @throws IllegalArgumentException if {@code modelToControl} is null
*/
Controller(Model modelToControl){
setGameModel(modelToControl);
}
/**
* Sets the controller to control a new model
* @param modelToControl model that the controller is communicating with
* @throws IllegalArgumentException if {@code modelToControl} is null
*/
void setGameModel(final Model modelToControl){
if(modelToControl == null){
throw new IllegalArgumentException("modelToControl should not be null");
}
this.model = modelToControl;
}
/**
* Main game loop
*/
public final void startGame(){
boolean isGameOver = false;
while(!isGameOver){
InputLocation location;
// Player input
if(model.getPlayerSetup() == PlayerSetup.COMPUTER_VS_COMPUTER ||
(model.getPlayerSetup() == PlayerSetup.PLAYER_VS_COMPUTER) && (model.getPlayerTurn() == Disc.Color.WHITE)){
location = model.receiveComputerInput();
}
else{
location = receiveUserInput();
// Null references are used to pass moves
if(location == null){
continue;
}
}
model.placeDisc(location.getRow(),location.getColumn());
notifyViewMoveMessage(location.getRow(),location.getColumn());
model.changeTurn();
if(!model.validMoveExists(Disc.Color.WHITE) && !model.validMoveExists(Disc.Color.BLACK)){
notifyView("No valid move exists for both players.");
isGameOver = true;
}
else if(!model.validMoveExists(model.getPlayerTurn())){
notifyView("Player " + model.getPlayerTurn().getFriendlyName() + " passes. No valid move exists.");
model.changeTurn();
}
}
gameOver();
}
/**
* Passes a message along to the appropriate view to inform the user
* @param message string to display
*/
abstract void notifyView(final String message);
/**
* Passes a message along to the appropriate view to inform the user about a player made move
* @param row of the new move
* @param column of the new move
*/
abstract void notifyViewMoveMessage(final int row, final int column);
/**
* Allows subclasses to process input appropriately according to the currently used view
* @return a valid location to place a disc for the current players turn
*/
abstract InputLocation receiveUserInput();
/**
* Defines custom game termination behavior according to the currently used view
*/
abstract void gameOver();
}
| [
"[email protected]"
] | |
1e9c788f5aca2b03985f09a8ded44b3632371ca8 | 7926d40d145770e4b1fa7fccc87dc396ec527c58 | /paren/resouce-server/src/main/java/com/security/resouceserver/domain/Instance.java | e22f254be0603c6094d3c047b7cca59794f75cec | [] | no_license | LRCgtp/micro-service-springcloud | ec1a8db81859bd49b07d5df8873ee1c906d12e2c | 9ee6364b990a0bf1c7ca9f2da14335e02cbd1e63 | refs/heads/master | 2023-02-04T19:30:43.335367 | 2020-12-29T05:59:46 | 2020-12-29T05:59:46 | 324,945,706 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 999 | java | package com.security.resouceserver.domain;
/**
* @author [email protected]
*/
public class Instance {
private String serviceId;
private String Host;
private int port;
public Instance() {
}
public Instance(String serviceId, String host, int port) {
this.serviceId = serviceId;
Host = host;
this.port = port;
}
public String getServiceId() {
return serviceId;
}
public void setServiceId(String serviceId) {
this.serviceId = serviceId;
}
public String getHost() {
return Host;
}
public void setHost(String host) {
Host = host;
}
public int getPort() {
return port;
}
public void setPort(int port) {
this.port = port;
}
@Override
public String toString() {
return "Instance{" +
"serviceId='" + serviceId + '\'' +
", Host='" + Host + '\'' +
", port=" + port +
'}';
}
}
| [
"[email protected]"
] | |
8c55aaf27fc5b488719169465a608a28658aa167 | fc11fda18e7080eea968e1377a0f6b6f9a32f868 | /src/Main.java | 1b500425927f91eb632a2b3ae919774e4fe5143b | [] | no_license | IgorMaj/Connect4Engine | 9ce45bb211f6f41be5c5e623dc15baaca5c1abb9 | c3970a3b076578d7987a148e4fd88808b6f81314 | refs/heads/master | 2020-03-18T21:14:23.833808 | 2018-07-11T20:05:09 | 2018-07-11T20:05:09 | 135,268,867 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 185 | java |
import view.MainWindow;
public class Main {
public static void main(String[] args) {
MainWindow mainWindow = new MainWindow();
mainWindow.setVisible(true);
}
}
| [
"[email protected]"
] | |
a7ab539c2dd2ac19cdd18e7238375da51627e7d9 | 8af1164bac943cef64e41bae312223c3c0e38114 | /results-java/Alluxio--alluxio/d0c67d85433df0a1059f1a0069550dc23eaf2ccf/after/FileInStreamTest.java | ac426ad08586b5f68e7b7a387c38d980c643a114 | [] | no_license | fracz/refactor-extractor | 3ae45c97cc63f26d5cb8b92003b12f74cc9973a9 | dd5e82bfcc376e74a99e18c2bf54c95676914272 | refs/heads/master | 2021-01-19T06:50:08.211003 | 2018-11-30T13:00:57 | 2018-11-30T13:00:57 | 87,353,478 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,099 | 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 tachyon.client;
import java.io.IOException;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import tachyon.TestUtils;
import tachyon.master.LocalTachyonCluster;
/**
* Unit tests for <code>tachyon.client.FileInStream</code>.
*/
public class FileInStreamTest {
private final int BLOCK_SIZE = 30;
private final int MIN_LEN = BLOCK_SIZE + 1;
private final int MAX_LEN = 255;
private final int MEAN = (MIN_LEN + MAX_LEN) / 2;
private final int DELTA = 33;
private LocalTachyonCluster mLocalTachyonCluster = null;
private TachyonFS mTfs = null;
@Before
public final void before() throws IOException {
System.setProperty("tachyon.user.quota.unit.bytes", "1000");
System.setProperty("tachyon.user.default.block.size.byte", String.valueOf(BLOCK_SIZE));
mLocalTachyonCluster = new LocalTachyonCluster(10000);
mLocalTachyonCluster.start();
mTfs = mLocalTachyonCluster.getClient();
}
@After
public final void after() throws Exception {
mLocalTachyonCluster.stop();
System.clearProperty("tachyon.user.quota.unit.bytes");
System.clearProperty("tachyon.user.default.block.size.byte");
}
/**
* Test <code>void read()</code>.
*/
@Test
public void readTest1() throws IOException {
for (int k = MIN_LEN; k <= MAX_LEN; k += DELTA) {
for (WriteType op : WriteType.values()) {
int fileId = TestUtils.createByteFile(mTfs, "/root/testFile_" + k + "_" + op, op, k);
TachyonFile file = mTfs.getFile(fileId);
InStream is = (k < MEAN ?
file.getInStream(ReadType.CACHE) : file.getInStream(ReadType.NO_CACHE));
Assert.assertTrue(is instanceof FileInStream);
byte[] ret = new byte[k];
int value = is.read();
int cnt = 0;
while (value != -1) {
Assert.assertTrue(value >= 0);
Assert.assertTrue(value < 256);
ret[cnt ++] = (byte) value;
value = is.read();
}
Assert.assertEquals(cnt, k);
Assert.assertTrue(TestUtils.equalIncreasingByteArray(k, ret));
is.close();
is = (k < MEAN ? file.getInStream(ReadType.CACHE) : file.getInStream(ReadType.NO_CACHE));
Assert.assertTrue(is instanceof FileInStream);
ret = new byte[k];
value = is.read();
cnt = 0;
while (value != -1) {
Assert.assertTrue(value >= 0);
Assert.assertTrue(value < 256);
ret[cnt ++] = (byte) value;
value = is.read();
}
Assert.assertEquals(cnt, k);
Assert.assertTrue(TestUtils.equalIncreasingByteArray(k, ret));
is.close();
}
}
}
/**
* Test <code>void read(byte b[])</code>.
*/
@Test
public void readTest2() throws IOException {
for (int k = MIN_LEN; k <= MAX_LEN; k += DELTA) {
for (WriteType op : WriteType.values()) {
int fileId = TestUtils.createByteFile(mTfs, "/root/testFile_" + k + "_" + op, op, k);
TachyonFile file = mTfs.getFile(fileId);
InStream is =
(k < MEAN ? file.getInStream(ReadType.CACHE) : file.getInStream(ReadType.NO_CACHE));
Assert.assertTrue(is instanceof FileInStream);
byte[] ret = new byte[k];
Assert.assertEquals(k, is.read(ret));
Assert.assertTrue(TestUtils.equalIncreasingByteArray(k, ret));
is.close();
is = (k < MEAN ? file.getInStream(ReadType.CACHE) : file.getInStream(ReadType.NO_CACHE));
Assert.assertTrue(is instanceof FileInStream);
ret = new byte[k];
Assert.assertEquals(k, is.read(ret));
Assert.assertTrue(TestUtils.equalIncreasingByteArray(k, ret));
is.close();
}
}
}
/**
* Test <code>void read(byte[] b, int off, int len)</code>.
*/
@Test
public void readTest3() throws IOException {
for (int k = MIN_LEN; k <= MAX_LEN; k += DELTA) {
for (WriteType op : WriteType.values()) {
int fileId = TestUtils.createByteFile(mTfs, "/root/testFile_" + k + "_" + op, op, k);
TachyonFile file = mTfs.getFile(fileId);
InStream is =
(k < MEAN ? file.getInStream(ReadType.CACHE) : file.getInStream(ReadType.NO_CACHE));
Assert.assertTrue(is instanceof FileInStream);
byte[] ret = new byte[k / 2];
Assert.assertEquals(k / 2, is.read(ret, 0, k / 2));
Assert.assertTrue(TestUtils.equalIncreasingByteArray(k / 2, ret));
is.close();
is = (k < MEAN ? file.getInStream(ReadType.CACHE) : file.getInStream(ReadType.NO_CACHE));
Assert.assertTrue(is instanceof FileInStream);
ret = new byte[k];
Assert.assertEquals(k, is.read(ret, 0, k));
Assert.assertTrue(TestUtils.equalIncreasingByteArray(k, ret));
is.close();
}
}
}
/**
* Test <code>long skip(long len)</code>.
*/
@Test
public void skipTest() throws IOException {
for (int k = MIN_LEN; k <= MAX_LEN; k += DELTA) {
for (WriteType op : WriteType.values()) {
int fileId = TestUtils.createByteFile(mTfs, "/root/testFile_" + k + "_" + op, op, k);
TachyonFile file = mTfs.getFile(fileId);
InStream is = (k < MEAN ?
file.getInStream(ReadType.CACHE) : file.getInStream(ReadType.NO_CACHE));
Assert.assertTrue(is instanceof FileInStream);
Assert.assertEquals(k / 2, is.skip(k / 2));
Assert.assertEquals(k / 2, is.read());
is.close();
is = (k < MEAN ? file.getInStream(ReadType.CACHE) : file.getInStream(ReadType.NO_CACHE));
Assert.assertTrue(is instanceof FileInStream);
Assert.assertEquals(k / 3, is.skip(k / 3));
Assert.assertEquals(k / 3, is.read());
is.close();
}
}
}
/**
* Test <code>void seek(long pos)</code>.
* @throws IOException
*/
@Test
public void seekExceptionTest() throws IOException {
for (int k = MIN_LEN; k <= MAX_LEN; k += DELTA) {
for (WriteType op : WriteType.values()) {
int fileId = TestUtils.createByteFile(mTfs, "/root/testFile_" + k + "_" + op, op, k);
TachyonFile file = mTfs.getFile(fileId);
InStream is = (k < MEAN ?
file.getInStream(ReadType.CACHE) : file.getInStream(ReadType.NO_CACHE));
try {
is.seek(-1);
} catch (IOException e) {
// This is expected
continue;
}
is.close();
throw new IOException("Except seek IOException");
}
}
}
/**
* Test <code>void seek(long pos)</code>.
* @throws IOException
*/
@Test
public void seekTest() throws IOException {
for (int k = MIN_LEN; k <= MAX_LEN; k += DELTA) {
for (WriteType op : WriteType.values()) {
int fileId = TestUtils.createByteFile(mTfs, "/root/testFile_" + k + "_" + op, op, k);
TachyonFile file = mTfs.getFile(fileId);
InStream is = (k < MEAN ?
file.getInStream(ReadType.CACHE) : file.getInStream(ReadType.NO_CACHE));
Assert.assertTrue(is instanceof FileInStream);
is.seek(k / 3);
Assert.assertEquals(k / 3, is.read());
is.seek(k / 2);
Assert.assertEquals(k / 2, is.read());
is.seek(k / 4);
Assert.assertEquals(k / 4, is.read());
is.close();
}
}
}
} | [
"[email protected]"
] | |
0a38fc3711ebf3acf1d5ca85cb46d7144ab6879f | 3e3360fc0aadd516a46bf43d4eed04993327f449 | /app/src/main/java/com/example/android/courtcounter/MainActivity.java | e52c1d262d41c14fab6b8faffb050b0854b6afbe | [] | no_license | SaiPrithviPsp/CourtCounter | 17e3eca202d916dbbca8c334557586d3bc858cbb | e55db1fb28716c0b31cdfb28f8e01a021786666b | refs/heads/master | 2022-05-06T03:22:12.585012 | 2022-03-23T17:32:29 | 2022-03-23T17:32:29 | 179,533,751 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,672 | java | package com.example.android.courtcounter;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
int scoreTeamA = 0;
int scoreTeamB = 0;
public void displayForTeamA(int score) {
TextView scoreView = (TextView) findViewById(R.id.team_a_score);
scoreView.setText(String.valueOf(score));
}
/**
* Displays the given score for Team B.
*/
public void displayForTeamB(int score) {
TextView scoreView = (TextView) findViewById(R.id.team_b_score);
scoreView.setText(String.valueOf(score));
}
public void add3(View view)
{
scoreTeamA += 3;
displayForTeamA(scoreTeamA);
}
public void add2(View view)
{
scoreTeamA += 2;
displayForTeamA(scoreTeamA);
}
public void add1(View view)
{
scoreTeamA += 1;
displayForTeamA(scoreTeamA);
}
public void add3B(View view)
{
scoreTeamB += 3;
displayForTeamB(scoreTeamB);
}
public void add2B(View view)
{
scoreTeamB += 2;
displayForTeamB(scoreTeamB);
}
public void add1B(View view)
{
scoreTeamB += 1;
displayForTeamB(scoreTeamB);
}
public void reset(View view)
{
scoreTeamA = 0;
scoreTeamB = 0;
displayForTeamA(scoreTeamA);
displayForTeamB(scoreTeamB);
}
}
| [
"[email protected]"
] | |
17ec2f42d543da481b6cd01186d7ea7b465dba37 | e3183e9b80e51e289a5046070aee88f8bcd889ff | /src/main/java/Apache/console/eom/CustomerStatement.java | 96745c9210eb621c0754650bb8287454451b3cd0 | [
"Apache-2.0"
] | permissive | angleheart/apache | c8c6c028ea2d3a10f6f12a24f02351461bd259bb | 9473d3d3f1e07ecc7b3c67e23d0c45306be5dd93 | refs/heads/master | 2023-08-03T16:32:35.301169 | 2021-09-15T03:52:19 | 2021-09-15T03:52:19 | 387,284,354 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,361 | java | package Apache.console.eom;
import Apache.objects.Customer;
import Apache.objects.ReceivableReport;
import java.util.Date;
import java.util.List;
public class CustomerStatement {
private Customer customer;
private Date date;
private double balCurr;
private double bal30;
private double bal60;
private double bal90;
private double totalPaid;
private List<StatementLine> statementLines;
public CustomerStatement(
Customer customer,
Date date,
double balCurr,
double bal30,
double bal60,
double bal90,
double totalPaid,
List<StatementLine> lines
) {
this.customer = customer;
this.date = date;
this.balCurr = balCurr;
this.bal30 = bal30;
this.bal60 = bal60;
this.bal90 = bal90;
this.totalPaid = totalPaid;
this.statementLines = lines;
}
public CustomerStatement(Customer customer) {
this.customer = customer;
}
public boolean generate() {
date = new Date();
ReceivableReport receivableReport = new ReceivableReport(customer.getNumber());
if (!receivableReport.runReceivables())
return false;
balCurr = receivableReport.getCurrentBalance();
bal30 = receivableReport.getDay30Balance();
bal60 = receivableReport.getDay60Balance();
bal90 = receivableReport.getDay90Balance();
totalPaid = receivableReport.getTotalPaidThisMonth();
statementLines = StatementGenerator.getStatementLines(customer);
return statementLines != null;
}
public Customer getCustomer() {
return customer;
}
public Date getDate() {
return date;
}
public double getBalCurr() {
return balCurr;
}
public double getBal30() {
return bal30;
}
public double getBal60() {
return bal60;
}
public double getBal90() {
return bal90;
}
public double getTotalPaid() {
return totalPaid;
}
public double getTotalBalance() {
return
balCurr +
bal30 +
bal60 +
bal90;
}
public List<StatementLine> getStatementLines() {
return statementLines;
}
}
| [
"[email protected]"
] | |
8fde4fbbb9faa35e6b55ac57fb7d4c4085c4506a | e0a4a20943a6a874cf173e93323e3328f9636d95 | /Projects/app/src/main/java/com/example/placesofbangladesh/MainActivity.java | c772c6cba005ea82a1db95183c7185742f9e3566 | [] | no_license | ruhulamin005/Android-Development | 33bdc3caaa70a0287935781bbb05bb9647057570 | d09e187bd442f0e3d95c54d50037bc3eb0df0940 | refs/heads/master | 2020-12-06T06:34:13.099389 | 2020-01-12T17:17:19 | 2020-01-12T17:17:19 | 232,374,580 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,371 | java | package com.example.placesofbangladesh;
import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import android.os.Bundle;
import java.util.ArrayList;
import java.util.List;
import Adapter.MyAdapter;
import Model.ListItem;
public class MainActivity extends AppCompatActivity {
private RecyclerView recyclerView;
private RecyclerView.Adapter adapter;
private List<ListItem> listItems;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
recyclerView= (RecyclerView) findViewById(R.id.recycleID);
recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager(new LinearLayoutManager(this));
listItems = new ArrayList<>();
ListItem item1 = new ListItem("Sundarban","Sathkhira, Bagerhat");
ListItem item2 = new ListItem("Cox’s Bazar","Cox’s Bazar, Chittagoang");
ListItem item3 = new ListItem("The St. Martin’s Island","Saint Martin, Cox's Bazar");
ListItem item4 = new ListItem("Kuakata","Kuakata, Patuakhali");
ListItem item5 = new ListItem("Jaflong","Jaflong, Sylhet");
ListItem item6 = new ListItem("Sajek Valley","Sajek Valley, Rangamati");
ListItem item7 = new ListItem("The Shat Gambuj Mosque","Bagerhat,Khula");
ListItem item8 = new ListItem("Paharpur","Paharpur,Naogaon");
ListItem item9 = new ListItem("National Memorial","National Memorial, Savar");
ListItem item10 = new ListItem("Sonargaon","Sonargaon, Narayanganj");
// for(int i=0; i<10;i++){
//
// ListItem item = new ListItem(
// "Item"+(i+1),
// "Description"); // All data shoulbe be passed through Constructor
//
// listItems.add(item);
// }
listItems.add(item1);
listItems.add(item2);
listItems.add(item3);
listItems.add(item4);
listItems.add(item5);
listItems.add(item6);
listItems.add(item7);
listItems.add(item8);
listItems.add(item9);
listItems.add(item10);
//adding adapter
adapter = new MyAdapter(this, listItems);
recyclerView.setAdapter(adapter);
}
}
| [
"[email protected]"
] | |
a39e109d0231ee8145f64da6f981cce2d241a404 | 832f79f1392b7e4b5a5dd355bfb103e788a1861e | /branches/prerelease/Emergo - EI/src/br/ufpe/cin/emergo/core/EmergoException.java | 73ded9fa4b3504c6e8545553ecd934a4c021876f | [] | no_license | jccmelo/emergo | 7eab35dfce9c79af9964b4acd4f423b458a45416 | f2f24c01d3d38611db20a16ba9c764bcf820fa58 | refs/heads/master | 2021-01-24T17:01:46.036179 | 2013-07-10T20:16:13 | 2013-07-10T20:16:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 231 | java | package br.ufpe.cin.emergo.core;
public class EmergoException extends Exception {
private static final long serialVersionUID = -5356542149601378085L;
public EmergoException(String message) {
super(message);
}
}
| [
"tarsiswt@fea7a8a5-5848-46ff-b795-545ed800f380"
] | tarsiswt@fea7a8a5-5848-46ff-b795-545ed800f380 |
7855637d1955f740286a0e7d838a806369f2efab | 81b114b434cd19c04ece9ed322a85b91d157c7f6 | /apps/artemis/src/main/java/org/onosproject/artemis/impl/monitors/package-info.java | aa8ded75011c3efa6b1f4c29e6114966e062b11d | [
"Apache-2.0"
] | permissive | tj0105/onos-domain | 74b896b1ff81b5af14c73034040afe4e77e8ec7e | 691acf6d81be129cd332a61966744599e3a6f828 | refs/heads/onos-ovs-pof | 2022-11-25T17:21:42.249282 | 2020-03-23T08:44:50 | 2020-03-23T08:44:50 | 249,377,060 | 0 | 0 | Apache-2.0 | 2022-11-16T08:26:42 | 2020-03-23T08:40:23 | Java | UTF-8 | Java | false | false | 702 | java | /*
* Copyright 2016-present Open Networking Laboratory
*
* 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.
*/
/**
* Route Collector Monitors.
*/
package org.onosproject.artemis.impl.monitors; | [
"[email protected]"
] | |
aedfb148b5a5695fe73e82783d865a341108e953 | 6a7d8a4c6b8cacef17f2b99eab03b5a794055ecf | /sdk/digitaltwins/azure-digitaltwins-core/src/main/java/com/azure/digitaltwins/core/serialization/ModelProperties.java | 37f839d7901166aaf1fadf1af6922e1d7995d993 | [
"LicenseRef-scancode-generic-cla",
"MIT",
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-or-later",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | SDKAutoUP/azure-sdk-for-java | 52a7be3bbaf26c6169ef87e95b5d5f4ef1588474 | 459eb6745890931d33a750b4cb39dafcf0b1ceb5 | refs/heads/master | 2023-01-03T12:55:36.463419 | 2020-09-11T06:54:27 | 2020-09-11T06:54:27 | 294,706,513 | 0 | 0 | MIT | 2020-11-05T05:16:14 | 2020-09-11T13:44:08 | Java | UTF-8 | Java | false | false | 2,115 | java | package com.azure.digitaltwins.core.serialization;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.HashMap;
import java.util.Map;
/**
* Properties on a component that adhere to a specific model.
*/
@Fluent
@JsonInclude(JsonInclude.Include.NON_NULL)
public final class ModelProperties {
/**
* Information about the model a component conforms to. This field is present on every digital twin.
*/
@JsonProperty(value = "$metadata", required = true)
private ComponentMetadata metadata = new ComponentMetadata();
/**
* The additional properties of the model. This field will contain any properties of the digital twin that are not already defined by the other strong types of this class.
*/
private final Map<String, Object> customProperties = new HashMap<>();
/**
* Gets the metadata about the model.
* @return The model metadata.
*/
public ComponentMetadata getMetadata() {
return metadata;
}
/**
* Sets the model metadata.
* @param metadata Model metadata.
* @return The ModelProperties object itself.
*/
public ModelProperties setMetadata(ComponentMetadata metadata) {
this.metadata = metadata;
return this;
}
/**
* Gets the custom properties
* @return The custom properties
*/
@JsonAnyGetter
public Map<String, Object> getCustomProperties() {
return customProperties;
}
/**
* Sets the custom properties
* @param key The key of the additional property to be added to the digital twin.
* @param value The value of the additional property to be added to the digital twin.
* @return The ModelProperties object itself.
*/
@JsonAnySetter
public ModelProperties setCustomProperties(String key, Object value) {
this.customProperties.put(key, value);
return this;
}
}
| [
"[email protected]"
] | |
d29ec664abea900f6348d3fe13404cb267f4331d | 573bde908382efc86e9e0d4d5ef923a2d07ecb3b | /src/main/java/com/tvd12/ezyfox/sfs2x/extension/BaseExtension.java | 3d722417f27531dbf4cdbdf9b913d0d7225fa8e5 | [
"Apache-2.0"
] | permissive | xty88645/ezyfox-sfs2x | a72fea8be791b4955344d4c3464e53fc808dc55d | 34c4f89c2a58ded2f858745d2141ed13522e2d66 | refs/heads/master | 2021-01-12T04:12:17.182324 | 2016-11-08T15:58:26 | 2016-11-08T15:58:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,497 | java | package com.tvd12.ezyfox.sfs2x.extension;
import java.util.Set;
import com.smartfoxserver.v2.extensions.SFSExtension;
import com.tvd12.ezyfox.core.content.impl.BaseContext;
import com.tvd12.ezyfox.sfs2x.clienthandler.ClientEventHandler;
import com.tvd12.ezyfox.sfs2x.clienthandler.ClientRequestHandler;
import com.tvd12.ezyfox.sfs2x.content.impl.SmartFoxContext;
/**
* @author tavandung12
* Created on Sep 26, 2016
*
*/
public abstract class BaseExtension extends SFSExtension {
protected BaseContext context;
@Override
public void init() {
initContext();
before();
addClientRequestHandlers();
config();
after();
}
/**
* Add client request handlers
*/
protected void addClientRequestHandlers() {
Set<String> commands =
context.getClientRequestCommands();
for(String command : commands)
addClientRequestHandler(command);
}
/**
* Add client request handler and map its to the command
*
* @param command the command
*/
protected void addClientRequestHandler(String command) {
addClientRequestHandler(newClientEventHandler(command));
}
/**
* Create new client event handler
*
* @param command the command
* @return the client event handler
*/
protected ClientEventHandler newClientEventHandler(String command) {
return new ClientEventHandler(context, command);
}
/**
* Add client request handle
*
* @param handler client request handle
*/
protected void addClientRequestHandler(ClientRequestHandler handler) {
addRequestHandler(handler.getCommand(), handler);
}
/**
* Initialize application context
*/
protected void initContext() {
context = createContext();
SmartFoxContext sfsContext = (SmartFoxContext)context;
sfsContext.setApi(getApi());
sfsContext.setExtension(this);
}
/**
* Create the context
*
* @return the context
*/
protected abstract BaseContext createContext();
/**
* Override this function to add custom configuration
*/
protected void config() {
}
/**
* Invoke after initializing application and before initialize anything
*/
protected void before() {
}
/**
* Invoke after initialized all
*/
protected void after() {
}
}
| [
"[email protected]"
] | |
e088baf0bf3cdc9e59995cd408b9875223c71204 | 0dccef976f19741f67479f32f15d76c1e90e7f94 | /db.java | e35345583380bf8d769a12e242758fded4d2b9fe | [] | no_license | Tominous/LabyMod-1.9 | a960959d67817b1300272d67bd942cd383dfd668 | 33e441754a0030d619358fc20ca545df98d55f71 | refs/heads/master | 2020-05-24T21:35:00.931507 | 2017-02-06T21:04:08 | 2017-02-06T21:04:08 | 187,478,724 | 1 | 0 | null | 2019-05-19T13:14:46 | 2019-05-19T13:14:46 | null | UTF-8 | Java | false | false | 199 | java | import java.util.Set;
public abstract interface db<K, V>
extends Iterable<V>
{
public abstract V c(K paramK);
public abstract void a(K paramK, V paramV);
public abstract Set<K> c();
}
| [
"[email protected]"
] | |
d7c20414841e41e5d80afccfe4be71fc5f2d3bbb | b08376681937f0a4f9709c737cec3ce757427018 | /src/test/java/kr/pravusid/service/BoardServiceTest.java | 051b85eeaee01fecb162b50407013584fce30fcd | [] | no_license | hyeonjae/springboot-vue.js-bbs | 97a849de67676cf445bbbd5b0bf33741bed8b2e4 | 3546c5168c4d6957f9480d22bab3e9eb99a11322 | refs/heads/master | 2020-03-31T14:00:25.339273 | 2018-10-09T03:34:42 | 2018-10-09T03:34:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,434 | java | package kr.pravusid.service;
import kr.pravusid.domain.board.Board;
import kr.pravusid.domain.board.BoardRepository;
import kr.pravusid.domain.user.User;
import kr.pravusid.dto.BoardDto;
import kr.pravusid.dto.Pagination;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
import org.springframework.security.authentication.AuthenticationCredentialsNotFoundException;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.context.junit4.SpringRunner;
import static org.junit.Assert.*;
@RunWith(SpringRunner.class)
@SpringBootTest
@ActiveProfiles("dev")
public class BoardServiceTest {
@Autowired
private BoardService boardService;
@Autowired
private BoardRepository boardRepository;
private BoardDto dto;
@Before
public void 게시물과_요청을_생성한다() {
User user = new User(1L);
boardRepository.save(new Board(user, "제목1", "내용1"));
boardRepository.save(new Board(user, "제목2", "내용2"));
boardRepository.save(new Board(user, "제목3", "내용3"));
dto = new BoardDto();
dto.setTitle("테스트제목");
dto.setContent("테스트내용");
}
@Test
public void 전체_게시물을_조회한다() {
// WHEN
Pageable pageable = new PageRequest(0, 10, Sort.Direction.DESC,"id");
// pagination은 검색 필터, 키워드 추출에 사용됨
Pagination pagination = new Pagination();
Page<Board> list = boardService.findAll(pageable, pagination);
// THEN
int total = boardRepository.findAll().size();
assertEquals(0, list.getNumber());
assertEquals(total, list.getTotalElements());
assertEquals("내용3", list.getContent().get(0).getContent() );
assertEquals("내용1", list.getContent().get(2).getContent() );
}
@Test
public void 게시물을_저장한다() {
// WHEN
Board saved = boardService.save("user", dto);
// THEN
Board board = boardRepository.findOne(saved.getId());
assertTrue(board.verifyUser("user"));
assertEquals("테스트제목", board.getTitle());
assertEquals("테스트내용", board.getContent());
}
@Test
public void 게시물을_수정한다() {
// GIVEN
long id = boardRepository.findAll().get(0).getId();
Board board = boardRepository.findOne(id);
// WHEN
Board updated = boardService.update(board.getUser().getUsername(), board.getId(), dto);
// THEN
Board result = boardRepository.findOne(updated.getId());
assertEquals(board.getId(), result.getId());
assertNotEquals(board.getTitle(), result.getTitle());
assertEquals("테스트제목", result.getTitle());
assertEquals("테스트내용", result.getContent());
}
@Test
public void 게시물을_조회하고_조회수를_증가시킨다() {
// GIVEN
long id = boardRepository.findAll().get(0).getId();
Board target = boardRepository.findOne(id);
int hitAnte = target.getHit();
// WHEN
Board board = boardService.findOneAndHit(target.getId());
// THEN
assertEquals(target.getId(), board.getId());
assertEquals(hitAnte + 1, board.getHit());
}
@Test
public void 요청한_회원의_게시물이_맞으면_내용을_반환한다() {
// GIVEN
long id = boardRepository.findAll().get(0).getId();
Board target = boardRepository.findOne(id);
// WHEN
Board board = boardService.findOneForMod(target.getUser().getUsername(), target.getId());
// THEN
assertEquals(target.getId(), board.getId());
}
@Test
public void 요청한_회원의_게시물이_아니면_예외를_발생시킨다() {
// GIVEN
long id = boardRepository.findAll().get(0).getId();
Board target = boardRepository.findOne(id);
// WHEN THEN
try {
boardService.findOneForMod("guest", target.getId());
} catch (Exception e) {
assertTrue(e instanceof AuthenticationCredentialsNotFoundException);
}
}
@Test
public void 요청한_회원의_삭제요청이_맞으면_삭제한다() {
// GIVEN
long id = boardRepository.findAll().get(0).getId();
Board target = boardRepository.findOne(id);
// WHEN
boardService.delete(target.getUser().getUsername(), target.getId());
// THEN
Board board = boardRepository.findOne(target.getId());
assertNull(board);
}
@Test
public void 요청한_회원의_삭제요청이_아니면_예외를_발생시킨다() {
// GIVEN
long id = boardRepository.findAll().get(0).getId();
Board target = boardRepository.findOne(id);
// WHEN THEN
try {
boardService.delete("guest", target.getId());
} catch (Exception e) {
assertTrue(e instanceof AuthenticationCredentialsNotFoundException);
}
}
}
| [
"[email protected]"
] | |
93e8f50bb46402394f3c590c6f9e067f9b0834f5 | b556e3ed81bab31ebbeb215b8f1f29f5b9a1ff6c | /src/main/java/org/codewarrior/rpg/domain/services/MapService.java | 7db006d1df105c63cbc9b45b6a38fcaab36fadea | [] | no_license | jincetomv/warrior-saga | c0640a334dbf00ee966f2d1260f9db8bb1066bc0 | ea3e432dc39224e5e11fcb85d7c7ae9fe4b25db2 | refs/heads/master | 2020-05-25T17:26:20.398926 | 2019-05-22T10:03:50 | 2019-05-22T10:03:50 | 187,908,418 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 337 | java | package org.codewarrior.rpg.domain.services;
import org.codewarrior.rpg.domain.entities.Map;
import org.codewarrior.rpg.domain.entities.Player;
public interface MapService {
public void create(Player player);
public Map get();
public void update();
public boolean allEnemiesDead();
public void load(Map map);
}
| [
"[email protected]"
] | |
babd4c46b03adb3e502a3ce1850309c7b3e9d5da | 2de62e54cec1ee5aa3cdf29e43de1e63bb9730dd | /server/src/main/java/com/example/pikkonsultacje/Enum/Role.java | 2f2ddcb1ba5b0ef42d0125e8260bb153af1f0776 | [] | no_license | Marcin27z/system-zapisow-na-konsultacje-pik | 4335ec039340209a75dcafc591bd6ce4830844d6 | a9732bd3102cc5b008b8bbfb37bcf30a2f1ee45b | refs/heads/master | 2020-05-02T07:49:04.672245 | 2019-09-04T17:49:09 | 2019-09-04T17:49:09 | 177,827,386 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 86 | java | package com.example.pikkonsultacje.Enum;
public enum Role {
TUTOR,
STUDENT
}
| [
"[email protected]"
] | |
be1d5cb921d777e8eb44f1cf5892b5f59cc17844 | e6d5e60f7d22c62259f175be554f2e29b53810db | /decompiled_java/com/badlogic/gdx/scenes/scene2d/actions/Actions.java | 764d3820ff1110ddebbd50305f24b6b3753e3e01 | [] | no_license | khetsothea/seastory-android | cbd93480e5fbf1bb0615bbe0218ff772794c2d6b | 0d6dfe206fa700b9cb43f1e88477bf6da74364ac | refs/heads/master | 2020-12-30T11:02:25.748997 | 2016-08-14T11:21:50 | 2016-08-14T11:21:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,591 | java | // 도박중독 예방 캠페인
// 당신 곁에 우리가 있어요!
// 감당하기 힘든 어려움을 혼자 견디고 계신가요?
// 무엇을 어떻게 해야 할지 막막한가요?
// 당신의 이야기를 듣고 도움을 줄 수 있는 정보를 찾아 드립니다.
// - 한국도박문제관리센터 (국번없이 1336, 24시간)
// - KL중독관리센터 (전화상담 080-7575-535/545)
// - 사행산업통합감독위원회 불법사행산업감시신고센터 (전화상담 1588-0112)
// - 불법도박 등 범죄수익 신고 (지역번호 + 1301)
package com.badlogic.gdx.scenes.scene2d.actions;
import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.math.Interpolation;
import com.badlogic.gdx.scenes.scene2d.Action;
import com.badlogic.gdx.scenes.scene2d.Actor;
import com.badlogic.gdx.scenes.scene2d.EventListener;
import com.badlogic.gdx.scenes.scene2d.Touchable;
import com.badlogic.gdx.utils.Pool;
import com.badlogic.gdx.utils.Pools;
public class Actions {
public Actions() {
super();
}
public static Action action(Class arg2) {
Pool v1 = Pools.get(arg2);
Object v0 = v1.obtain();
((Action)v0).setPool(v1);
return ((Action)v0);
}
public static AddAction addAction(Action action) {
Action v0 = Actions.action(AddAction.class);
((AddAction)v0).setAction(action);
return ((AddAction)v0);
}
public static AddAction addAction(Action action, Actor targetActor) {
Action v0 = Actions.action(AddAction.class);
((AddAction)v0).setTarget(targetActor);
((AddAction)v0).setAction(action);
return ((AddAction)v0);
}
public static AddListenerAction addListener(EventListener listener, boolean capture) {
Action v0 = Actions.action(AddListenerAction.class);
((AddListenerAction)v0).setListener(listener);
((AddListenerAction)v0).setCapture(capture);
return ((AddListenerAction)v0);
}
public static AddListenerAction addListener(EventListener listener, boolean capture, Actor targetActor) {
Action v0 = Actions.action(AddListenerAction.class);
((AddListenerAction)v0).setTarget(targetActor);
((AddListenerAction)v0).setListener(listener);
((AddListenerAction)v0).setCapture(capture);
return ((AddListenerAction)v0);
}
public static AfterAction after(Action action) {
Action v0 = Actions.action(AfterAction.class);
((AfterAction)v0).setAction(action);
return ((AfterAction)v0);
}
public static AlphaAction alpha(float a) {
return Actions.alpha(a, 0f, null);
}
public static AlphaAction alpha(float a, float duration, Interpolation interpolation) {
Action v0 = Actions.action(AlphaAction.class);
((AlphaAction)v0).setAlpha(a);
((AlphaAction)v0).setDuration(duration);
((AlphaAction)v0).setInterpolation(interpolation);
return ((AlphaAction)v0);
}
public static AlphaAction alpha(float a, float duration) {
return Actions.alpha(a, duration, null);
}
public static ColorAction color(Color color) {
return Actions.color(color, 0f, null);
}
public static ColorAction color(Color color, float duration, Interpolation interpolation) {
Action v0 = Actions.action(ColorAction.class);
((ColorAction)v0).setEndColor(color);
((ColorAction)v0).setDuration(duration);
((ColorAction)v0).setInterpolation(interpolation);
return ((ColorAction)v0);
}
public static ColorAction color(Color color, float duration) {
return Actions.color(color, duration, null);
}
public static DelayAction delay(float duration) {
Action v0 = Actions.action(DelayAction.class);
((DelayAction)v0).setDuration(duration);
return ((DelayAction)v0);
}
public static DelayAction delay(float duration, Action delayedAction) {
Action v0 = Actions.action(DelayAction.class);
((DelayAction)v0).setDuration(duration);
((DelayAction)v0).setAction(delayedAction);
return ((DelayAction)v0);
}
public static AlphaAction fadeIn(float duration) {
return Actions.alpha(1f, duration, null);
}
public static AlphaAction fadeIn(float duration, Interpolation interpolation) {
Action v0 = Actions.action(AlphaAction.class);
((AlphaAction)v0).setAlpha(1f);
((AlphaAction)v0).setDuration(duration);
((AlphaAction)v0).setInterpolation(interpolation);
return ((AlphaAction)v0);
}
public static AlphaAction fadeOut(float duration) {
return Actions.alpha(0f, duration, null);
}
public static AlphaAction fadeOut(float duration, Interpolation interpolation) {
Action v0 = Actions.action(AlphaAction.class);
((AlphaAction)v0).setAlpha(0f);
((AlphaAction)v0).setDuration(duration);
((AlphaAction)v0).setInterpolation(interpolation);
return ((AlphaAction)v0);
}
public static RepeatAction forever(Action repeatedAction) {
Action v0 = Actions.action(RepeatAction.class);
((RepeatAction)v0).setCount(-1);
((RepeatAction)v0).setAction(repeatedAction);
return ((RepeatAction)v0);
}
public static VisibleAction hide() {
return Actions.visible(false);
}
public static LayoutAction layout(boolean enabled) {
Action v0 = Actions.action(LayoutAction.class);
((LayoutAction)v0).setLayoutEnabled(enabled);
return ((LayoutAction)v0);
}
public static MoveByAction moveBy(float amountX, float amountY) {
return Actions.moveBy(amountX, amountY, 0f, null);
}
public static MoveByAction moveBy(float amountX, float amountY, float duration, Interpolation interpolation) {
Action v0 = Actions.action(MoveByAction.class);
((MoveByAction)v0).setAmount(amountX, amountY);
((MoveByAction)v0).setDuration(duration);
((MoveByAction)v0).setInterpolation(interpolation);
return ((MoveByAction)v0);
}
public static MoveByAction moveBy(float amountX, float amountY, float duration) {
return Actions.moveBy(amountX, amountY, duration, null);
}
public static MoveToAction moveTo(float x, float y) {
return Actions.moveTo(x, y, 0f, null);
}
public static MoveToAction moveTo(float x, float y, float duration, Interpolation interpolation) {
Action v0 = Actions.action(MoveToAction.class);
((MoveToAction)v0).setPosition(x, y);
((MoveToAction)v0).setDuration(duration);
((MoveToAction)v0).setInterpolation(interpolation);
return ((MoveToAction)v0);
}
public static MoveToAction moveTo(float x, float y, float duration) {
return Actions.moveTo(x, y, duration, null);
}
public static MoveToAction moveToAligned(float x, float y, int alignment) {
return Actions.moveToAligned(x, y, alignment, 0f, null);
}
public static MoveToAction moveToAligned(float x, float y, int alignment, float duration, Interpolation interpolation) {
Action v0 = Actions.action(MoveToAction.class);
((MoveToAction)v0).setPosition(x, y, alignment);
((MoveToAction)v0).setDuration(duration);
((MoveToAction)v0).setInterpolation(interpolation);
return ((MoveToAction)v0);
}
public static MoveToAction moveToAligned(float x, float y, int alignment, float duration) {
return Actions.moveToAligned(x, y, alignment, duration, null);
}
public static ParallelAction parallel() {
return Actions.action(ParallelAction.class);
}
public static ParallelAction parallel(Action action1) {
Action v0 = Actions.action(ParallelAction.class);
((ParallelAction)v0).addAction(action1);
return ((ParallelAction)v0);
}
public static ParallelAction parallel(Action action1, Action action2) {
Action v0 = Actions.action(ParallelAction.class);
((ParallelAction)v0).addAction(action1);
((ParallelAction)v0).addAction(action2);
return ((ParallelAction)v0);
}
public static ParallelAction parallel(Action action1, Action action2, Action action3) {
Action v0 = Actions.action(ParallelAction.class);
((ParallelAction)v0).addAction(action1);
((ParallelAction)v0).addAction(action2);
((ParallelAction)v0).addAction(action3);
return ((ParallelAction)v0);
}
public static ParallelAction parallel(Action action1, Action action2, Action action3, Action action4) {
Action v0 = Actions.action(ParallelAction.class);
((ParallelAction)v0).addAction(action1);
((ParallelAction)v0).addAction(action2);
((ParallelAction)v0).addAction(action3);
((ParallelAction)v0).addAction(action4);
return ((ParallelAction)v0);
}
public static ParallelAction parallel(Action action1, Action action2, Action action3, Action action4, Action action5) {
Action v0 = Actions.action(ParallelAction.class);
((ParallelAction)v0).addAction(action1);
((ParallelAction)v0).addAction(action2);
((ParallelAction)v0).addAction(action3);
((ParallelAction)v0).addAction(action4);
((ParallelAction)v0).addAction(action5);
return ((ParallelAction)v0);
}
public static ParallelAction parallel(Action[] actions) {
Action v0 = Actions.action(ParallelAction.class);
int v1 = 0;
int v2 = actions.length;
while(v1 < v2) {
((ParallelAction)v0).addAction(actions[v1]);
++v1;
}
return ((ParallelAction)v0);
}
public static RemoveAction removeAction(Action action) {
Action v0 = Actions.action(RemoveAction.class);
((RemoveAction)v0).setAction(action);
return ((RemoveAction)v0);
}
public static RemoveAction removeAction(Action action, Actor targetActor) {
Action v0 = Actions.action(RemoveAction.class);
((RemoveAction)v0).setTarget(targetActor);
((RemoveAction)v0).setAction(action);
return ((RemoveAction)v0);
}
public static RemoveActorAction removeActor() {
return Actions.action(RemoveActorAction.class);
}
public static RemoveActorAction removeActor(Actor removeActor) {
Action v0 = Actions.action(RemoveActorAction.class);
((RemoveActorAction)v0).setTarget(removeActor);
return ((RemoveActorAction)v0);
}
public static RemoveListenerAction removeListener(EventListener listener, boolean capture) {
Action v0 = Actions.action(RemoveListenerAction.class);
((RemoveListenerAction)v0).setListener(listener);
((RemoveListenerAction)v0).setCapture(capture);
return ((RemoveListenerAction)v0);
}
public static RemoveListenerAction removeListener(EventListener listener, boolean capture, Actor targetActor) {
Action v0 = Actions.action(RemoveListenerAction.class);
((RemoveListenerAction)v0).setTarget(targetActor);
((RemoveListenerAction)v0).setListener(listener);
((RemoveListenerAction)v0).setCapture(capture);
return ((RemoveListenerAction)v0);
}
public static RepeatAction repeat(int count, Action repeatedAction) {
Action v0 = Actions.action(RepeatAction.class);
((RepeatAction)v0).setCount(count);
((RepeatAction)v0).setAction(repeatedAction);
return ((RepeatAction)v0);
}
public static RotateByAction rotateBy(float rotationAmount) {
return Actions.rotateBy(rotationAmount, 0f, null);
}
public static RotateByAction rotateBy(float rotationAmount, float duration, Interpolation interpolation) {
Action v0 = Actions.action(RotateByAction.class);
((RotateByAction)v0).setAmount(rotationAmount);
((RotateByAction)v0).setDuration(duration);
((RotateByAction)v0).setInterpolation(interpolation);
return ((RotateByAction)v0);
}
public static RotateByAction rotateBy(float rotationAmount, float duration) {
return Actions.rotateBy(rotationAmount, duration, null);
}
public static RotateToAction rotateTo(float rotation) {
return Actions.rotateTo(rotation, 0f, null);
}
public static RotateToAction rotateTo(float rotation, float duration, Interpolation interpolation) {
Action v0 = Actions.action(RotateToAction.class);
((RotateToAction)v0).setRotation(rotation);
((RotateToAction)v0).setDuration(duration);
((RotateToAction)v0).setInterpolation(interpolation);
return ((RotateToAction)v0);
}
public static RotateToAction rotateTo(float rotation, float duration) {
return Actions.rotateTo(rotation, duration, null);
}
public static RunnableAction run(Runnable runnable) {
Action v0 = Actions.action(RunnableAction.class);
((RunnableAction)v0).setRunnable(runnable);
return ((RunnableAction)v0);
}
public static ScaleByAction scaleBy(float amountX, float amountY) {
return Actions.scaleBy(amountX, amountY, 0f, null);
}
public static ScaleByAction scaleBy(float amountX, float amountY, float duration, Interpolation interpolation) {
Action v0 = Actions.action(ScaleByAction.class);
((ScaleByAction)v0).setAmount(amountX, amountY);
((ScaleByAction)v0).setDuration(duration);
((ScaleByAction)v0).setInterpolation(interpolation);
return ((ScaleByAction)v0);
}
public static ScaleByAction scaleBy(float amountX, float amountY, float duration) {
return Actions.scaleBy(amountX, amountY, duration, null);
}
public static ScaleToAction scaleTo(float x, float y) {
return Actions.scaleTo(x, y, 0f, null);
}
public static ScaleToAction scaleTo(float x, float y, float duration, Interpolation interpolation) {
Action v0 = Actions.action(ScaleToAction.class);
((ScaleToAction)v0).setScale(x, y);
((ScaleToAction)v0).setDuration(duration);
((ScaleToAction)v0).setInterpolation(interpolation);
return ((ScaleToAction)v0);
}
public static ScaleToAction scaleTo(float x, float y, float duration) {
return Actions.scaleTo(x, y, duration, null);
}
public static SequenceAction sequence() {
return Actions.action(SequenceAction.class);
}
public static SequenceAction sequence(Action action1) {
Action v0 = Actions.action(SequenceAction.class);
((SequenceAction)v0).addAction(action1);
return ((SequenceAction)v0);
}
public static SequenceAction sequence(Action action1, Action action2) {
Action v0 = Actions.action(SequenceAction.class);
((SequenceAction)v0).addAction(action1);
((SequenceAction)v0).addAction(action2);
return ((SequenceAction)v0);
}
public static SequenceAction sequence(Action action1, Action action2, Action action3) {
Action v0 = Actions.action(SequenceAction.class);
((SequenceAction)v0).addAction(action1);
((SequenceAction)v0).addAction(action2);
((SequenceAction)v0).addAction(action3);
return ((SequenceAction)v0);
}
public static SequenceAction sequence(Action action1, Action action2, Action action3, Action action4) {
Action v0 = Actions.action(SequenceAction.class);
((SequenceAction)v0).addAction(action1);
((SequenceAction)v0).addAction(action2);
((SequenceAction)v0).addAction(action3);
((SequenceAction)v0).addAction(action4);
return ((SequenceAction)v0);
}
public static SequenceAction sequence(Action action1, Action action2, Action action3, Action action4, Action action5) {
Action v0 = Actions.action(SequenceAction.class);
((SequenceAction)v0).addAction(action1);
((SequenceAction)v0).addAction(action2);
((SequenceAction)v0).addAction(action3);
((SequenceAction)v0).addAction(action4);
((SequenceAction)v0).addAction(action5);
return ((SequenceAction)v0);
}
public static SequenceAction sequence(Action[] actions) {
Action v0 = Actions.action(SequenceAction.class);
int v1 = 0;
int v2 = actions.length;
while(v1 < v2) {
((SequenceAction)v0).addAction(actions[v1]);
++v1;
}
return ((SequenceAction)v0);
}
public static VisibleAction show() {
return Actions.visible(true);
}
public static SizeByAction sizeBy(float amountX, float amountY) {
return Actions.sizeBy(amountX, amountY, 0f, null);
}
public static SizeByAction sizeBy(float amountX, float amountY, float duration, Interpolation interpolation) {
Action v0 = Actions.action(SizeByAction.class);
((SizeByAction)v0).setAmount(amountX, amountY);
((SizeByAction)v0).setDuration(duration);
((SizeByAction)v0).setInterpolation(interpolation);
return ((SizeByAction)v0);
}
public static SizeByAction sizeBy(float amountX, float amountY, float duration) {
return Actions.sizeBy(amountX, amountY, duration, null);
}
public static SizeToAction sizeTo(float x, float y) {
return Actions.sizeTo(x, y, 0f, null);
}
public static SizeToAction sizeTo(float x, float y, float duration, Interpolation interpolation) {
Action v0 = Actions.action(SizeToAction.class);
((SizeToAction)v0).setSize(x, y);
((SizeToAction)v0).setDuration(duration);
((SizeToAction)v0).setInterpolation(interpolation);
return ((SizeToAction)v0);
}
public static SizeToAction sizeTo(float x, float y, float duration) {
return Actions.sizeTo(x, y, duration, null);
}
public static TimeScaleAction timeScale(float scale, Action scaledAction) {
Action v0 = Actions.action(TimeScaleAction.class);
((TimeScaleAction)v0).setScale(scale);
((TimeScaleAction)v0).setAction(scaledAction);
return ((TimeScaleAction)v0);
}
public static TouchableAction touchable(Touchable touchable) {
Action v0 = Actions.action(TouchableAction.class);
((TouchableAction)v0).setTouchable(touchable);
return ((TouchableAction)v0);
}
public static VisibleAction visible(boolean visible) {
Action v0 = Actions.action(VisibleAction.class);
((VisibleAction)v0).setVisible(visible);
return ((VisibleAction)v0);
}
}
| [
"[email protected]"
] | |
71e88068b829adf9448de3dc6ba575658fc1e8dc | 3ba765e40fb8bd096634fbd93852530bda53c144 | /code/Robot/src/database/dao/FactoryDAO.java | d5dfc7945df88cb2e0baa66d18a291bb01d99b74 | [] | no_license | syffer/Robot_UPES | befde133d9cdc16a6f37a041a11b352f873a5c1d | 22834f8ef840b15588cab936ce3d80fdf23ac8a9 | refs/heads/master | 2021-03-24T12:32:50.643499 | 2016-08-27T14:37:17 | 2016-08-27T14:37:17 | 60,453,447 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,369 | java | package database.dao;
import java.util.HashMap;
import java.util.Map;
import database.sessions.ConnectionException;
import database.sessions.Session;
import database.sessions.SessionOracle;
public class FactoryDAO {
private static Map<Session, AnnotatedObjectDAO> singletons = new HashMap<Session, AnnotatedObjectDAO>();
/*
public static DAO<?, ?> getDAO(Session session, Class<Bean> clazz) throws Exception {
if(clazz.equals(AnnotatedObjectDAO.class)) return FactoryDAO.getAnnotatedObjectDAO(session);
throw new Exception(")");
}
*/
public static AnnotatedObjectDAO getAnnotatedObjectDAO(Session session) {
AnnotatedObjectDAO annotatedObjectDAO = FactoryDAO.singletons.get(session);
if(annotatedObjectDAO == null) { // !FactoryDAO.singletons.containsKey(session)
annotatedObjectDAO = new AnnotatedObjectDAO(session);
FactoryDAO.singletons.put(session, annotatedObjectDAO);
}
return annotatedObjectDAO;
}
public static class Test {
public static void main(String[] args) {
Session session;
try {
session = new SessionOracle();
AnnotatedObjectDAO dao1 = FactoryDAO.getAnnotatedObjectDAO(session);
AnnotatedObjectDAO dao2 = FactoryDAO.getAnnotatedObjectDAO(session);
System.out.println(dao1 == dao2);
} catch (ConnectionException e) {
e.printStackTrace();
}
}
}
}
| [
"[email protected]"
] | |
fadcbf553a1987f0a178166acc155536d3ac54f8 | 643dd864071725a8932bcbdcc454d9337867a72c | /Student_Request_Admin/src/java/controller/LogoutController.java | bfff1e4ccf3e0175d8174476eb43cc92dffa19f0 | [] | no_license | Thoaitv/Lab_Web | 9f1c56584cafa843908c64710366a823cfd8492b | f9328a7633a0a9b162d38f76a90a1d0ea68c0022 | refs/heads/main | 2023-07-02T18:16:22.014063 | 2021-08-11T12:22:42 | 2021-08-11T12:22:42 | 394,979,284 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,688 | 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 controller;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
/**
*
* @author thoai
*/
@WebServlet(name = "LogoutController", urlPatterns = {"/LogoutController"})
public class LogoutController extends HttpServlet {
/**
* Processes requests for both HTTP <code>GET</code> and <code>POST</code>
* methods.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
//remove Session account to log out
HttpSession session = request.getSession();
session.removeAttribute("account");
response.sendRedirect("login.jsp");
}
// <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
/**
* Handles the HTTP <code>GET</code> method.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
}
/**
* Handles the HTTP <code>POST</code> method.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
}
/**
* Returns a short description of the servlet.
*
* @return a String containing servlet description
*/
@Override
public String getServletInfo() {
return "Short description";
}// </editor-fold>
}
| [
"[email protected]"
] | |
d882f5fc2a9fe10681b969bd63e59f4fb8a7dc0c | 7494a94d246307d43d574f4e971dfc0d8656963a | /app/src/main/java/com/xy/psn/services/PSNInstanceIdService.java | 41cefbb26bf3a911a2b79a94ae1479ffc47e6f6f | [] | no_license | xavier0507/Product-Sharing-Notification | 92b0d272a30a3ad1fac03ee5c2d7a9308c43efde | a7e01daca26f954b15f337140b421c735f13d47e | refs/heads/master | 2021-01-17T17:35:54.633518 | 2016-10-10T15:15:47 | 2016-10-10T15:15:47 | 70,476,627 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 670 | java | package com.xy.psn.services;
import com.google.firebase.iid.FirebaseInstanceId;
import com.google.firebase.iid.FirebaseInstanceIdService;
import com.xy.psn.managers.UserDataManager;
import com.xy.utils.Logger;
/**
* Created by Xavier Yin on 10/5/16.
*/
public class PSNInstanceIdService extends FirebaseInstanceIdService {
private static final Logger LOGGER = Logger.getInstance(PSNInstanceIdService.class);
@Override
public void onTokenRefresh() {
String currentToken = FirebaseInstanceId.getInstance().getToken();
LOGGER.d("Current Token: " + currentToken);
UserDataManager.getInstance().setPushToken(currentToken);
}
}
| [
"[email protected]"
] | |
dc0f35871129b500506bd181d1af7a66e3401ecb | efd4cbfac01527251597bb69203ca4cb1a53efeb | /src/com/classtask/Task005.java | 1d2d2311bc5b970c80ae5ff347012717ae605ff3 | [] | no_license | davidsteelus/deneme | cc4159d6729ec17dc0b35f0d95ed4223bf92efdc | 64f9723cf43c56f9f784741a6be56208223f1320 | refs/heads/master | 2020-09-04T21:04:43.669128 | 2019-11-06T02:04:57 | 2019-11-06T02:04:57 | 219,891,657 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 215 | java | package com.classtask;
public class Task005 {
public static void main(String[]args) {
String Name="Chen";
int age=50;
int iq=50;
System.out.println(Name);
System.out.println(age+""+iq);
}
}
| [
"[email protected]"
] | |
402dd0f8a2940d3c9c00a7e0f4a10511c24e9f55 | bdbbe7143cc597d4fe7bb6ea65ee102805432187 | /src/gamecontrollerdefault/AbstractCommand.java | 73c171a0e31cce7176f111851f7a234d49c186ed | [] | no_license | cbdscolin/Hunt-the-Wumpus-GUI | 5ec08f1b585aee062769015f0fc06e38218379aa | 3fe29365f3715a67f3ec154520f6e4ea1a443a81 | refs/heads/master | 2023-02-02T12:31:46.216136 | 2020-12-08T03:02:38 | 2020-12-08T03:02:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,036 | java | package gamecontrollerdefault;
import java.io.IOException;
import gamemodel.IGameModel;
import mazeexceptions.RecoverableException;
import mazeexceptions.UnrecoverableException;
import player.PlayerKilledException;
import player.PlayerKillsWumpusException;
/**
* The super class that should be overridden by the sub classes that are used to
* encapsulate and execute commands from the controller in MVC architecture.
*/
public abstract class AbstractCommand implements IMazeCommand {
protected final IGameModel model;
/**
* Constructor for the super class. It initializes the model that is used by other commands
* inheriting this class.
* @param model model of the mvc architecture which has maze, player and other creatures.
*/
protected AbstractCommand(IGameModel model) {
this.model = model;
}
@Override
public abstract void execute() throws UnrecoverableException, PlayerKilledException,
PlayerKillsWumpusException, IOException, RecoverableException;
}
| [
"[email protected]"
] | |
37cc3ca48f78f5ae1d3a09302f6fdb14d57e4b90 | 5a8fc00e07c1503215c85e544fa1f3bb9b4706ce | /app/src/main/java/com/movies/fragment/CategoryFragment.java | f3a46ace5fc68fc822dc9d7a16e6d43ed33168b0 | [] | no_license | fandofastest/radjamovies | 29eb7d6329c7b9e74c72073527ef0d2959152742 | b97d62c991a15186a8aa16ae1a285b0668b1f7cd | refs/heads/master | 2020-11-29T18:55:39.906552 | 2019-12-26T04:26:30 | 2019-12-26T04:26:30 | 230,194,498 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,048 | java | package com.movies.fragment;
import android.os.AsyncTask;
import android.os.Bundle;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import androidx.recyclerview.widget.GridLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import com.movies.adapter.ApCategory;
import com.movies.setting.config;
import com.movies.setting.item_ctgory;
import com.statailo.cinemaxhd.R;
import com.movies.setting.JsonUtils;
import com.wang.avi.AVLoadingIndicatorView;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.ArrayList;
public class CategoryFragment extends Fragment {
ArrayList<item_ctgory> mListItem;
public RecyclerView recyclerView;
ApCategory adapter;
private AVLoadingIndicatorView progressBar;
private LinearLayout lyt_not_found;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.item_more, container, false);
mListItem = new ArrayList<>();
lyt_not_found = (LinearLayout) rootView.findViewById(R.id.lyt_not_found);
progressBar = (AVLoadingIndicatorView) rootView.findViewById(R.id.progressBar);
recyclerView = (RecyclerView) rootView.findViewById(R.id.vertical_courses_list);
int columns = getResources().getInteger(R.integer.col_cat);
recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager(new GridLayoutManager(getActivity(), columns));
if (JsonUtils.isNetworkAvailable(getActivity())) {
new getCategory().execute(config.CATEGORY_LINK);
}
return rootView;
}
private class getCategory extends AsyncTask<String, Void, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
showProgress(true);
}
@Override
protected String doInBackground(String... params) {
return JsonUtils.getJSONString(params[0]);
}
@Override
protected void onPostExecute(String result) {
super.onPostExecute(result);
showProgress(false);
if (null == result || result.length() == 0) {
lyt_not_found.setVisibility(View.VISIBLE);
} else {
try {
JSONObject mainJson = new JSONObject(result);
JSONArray jsonArray = mainJson.getJSONArray(config.ARRAY_NAME);
JSONObject objJson;
for (int i = 0; i < jsonArray.length(); i++) {
objJson = jsonArray.getJSONObject(i);
item_ctgory objItem = new item_ctgory();
objItem.setCategoryId(objJson.getInt(config.CAT_CID));
objItem.setCatName(objJson.getString(config.CAT_NAME));
objItem.setCatImage(objJson.getString(config.CAT_IMAGE));
mListItem.add(objItem);
}
} catch (JSONException e) {
e.printStackTrace();
}
displayData();
}
}
}
private void displayData() {
adapter = new ApCategory(getActivity(), mListItem);
recyclerView.setAdapter(adapter);
if (adapter.getItemCount() == 0) {
lyt_not_found.setVisibility(View.VISIBLE);
} else {
lyt_not_found.setVisibility(View.GONE);
}
}
private void showProgress(boolean show) {
if (show) {
progressBar.setVisibility(View.VISIBLE);
recyclerView.setVisibility(View.GONE);
lyt_not_found.setVisibility(View.GONE);
} else {
progressBar.setVisibility(View.GONE);
recyclerView.setVisibility(View.VISIBLE);
}
}
}
| [
"[email protected]"
] | |
f7a9fd542e118cba35cd04bd43f193c0caa645f3 | 94dac24100856e08a06a1eb22d885c34538a0c98 | /app/src/main/java/vn/backshop/github/helper/CommonUtil.java | a65d8c05199b788eafc504ac24ca7cb14e1a4898 | [] | no_license | tnmp83/backshop | 95ef0c52579986b9d5e76fcabb4b22209307db2c | 68a5a2b9649af0e8798e8782ed27cb8576b5832f | refs/heads/master | 2020-03-31T20:10:47.516710 | 2018-10-11T18:21:03 | 2018-10-11T18:21:03 | 152,528,719 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,342 | java | package vn.backshop.github.helper;
import android.content.Context;
import android.graphics.Color;
import android.support.v4.content.ContextCompat;
import android.support.v7.widget.AppCompatTextView;
import android.text.Spannable;
import android.text.TextPaint;
import android.text.method.LinkMovementMethod;
import android.text.style.ClickableSpan;
import android.view.View;
public class CommonUtil {
private static CommonUtil instance;
public static CommonUtil getInstance() {
if (instance == null) {
synchronized (CommonUtil.class) {
if (instance == null) {
instance = new CommonUtil();
}
}
}
return instance;
}
private CommonUtil() {
}
public void spannableString(Context context, AppCompatTextView textView, int color, final SpannableListener listener) {
String sourceString = textView.getText().toString();
Spannable spannable = Spannable.Factory.getInstance().newSpannable(sourceString);
if(null != listener) {
String strTmp = listener.onClicked(false);
int posTmp = sourceString.indexOf(strTmp);
if (0 <= posTmp) {
int eosTmp = posTmp + strTmp.length();
spannable.setSpan(clickableSpan(ContextCompat.getColor(context, color), listener),
posTmp, eosTmp, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
}
}
textView.setText(spannable);
textView.setMovementMethod(LinkMovementMethod.getInstance());
textView.setHighlightColor(Color.TRANSPARENT);
}
public interface SpannableListener{
String onClicked(boolean isClicked);
}
private ClickableSpan clickableSpan(final int color, final SpannableListener listener) {
return new ClickableSpan() {
@Override
public void onClick(final View view) {
listener.onClicked(true);
}
@Override
public void updateDrawState(TextPaint ds) {
super.updateDrawState(ds);
if(0 != color) {
ds.setColor(color);
}
//Remove default underline associated with spans
//ds.setUnderlineText(false);
}
};
}
}
| [
"[email protected]"
] | |
478e3799cb025f9d172d095678d8d4933bafdae1 | 4e119310675128d3986747070e0d41bc7954da96 | /10-Trie/src/Trie.java | 4158bf44ecbb14e4f286a845b37caaa08ba0f940 | [] | no_license | bgst009/PlayWithDataStructure | 8afaf941dbb72ed08797ad1ba6c178e7169e6a1b | 7fa868a8d1dab426f6795897f8885ce1f444ae32 | refs/heads/master | 2022-11-18T02:00:56.463448 | 2020-07-08T08:38:21 | 2020-07-08T08:38:21 | 266,301,129 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,703 | java | import java.util.TreeMap;
public class Trie {
private Node root;
private int size;
public Trie() {
root = new Node();
size = 0;
}
/**
* 获得Trie中存储的单词数量
*
* @return 存储的单词数量
*/
public int getSize() {
return size;
}
/**
* 向Trie中添加一个新的单词word
*
* @param word 单词word
*/
public void add(String word) {
Node curr = root;
for (int i = 0; i < word.length(); i++) {
char c = word.charAt(i);
if (curr.next.get(c) == null) {
curr.next.put(c, new Node());
}
curr = curr.next.get(c);
}
if (!curr.isWord) {
curr.isWord = true;
size++;
}
}
/**
* 查询单词word是否在Trie中
*
* @param word 单词word
* @return boolean
*/
public boolean contains(String word) {
Node curr = root;
for (int i = 0; i < word.length(); i++) {
char c = word.charAt(i);
if (curr.next.get(c) == null) {
return false;
}
curr = curr.next.get(c);
}
return curr.isWord;
}
/**
* 查询是否在Trie中有单词以prefix为前缀
*
* @param prefix 前缀
* @return boolean
*/
public boolean isPrefix(String prefix) {
Node cur = root;
for (int i = 0; i < prefix.length(); i++) {
char c = prefix.charAt(i);
if (cur.next.get(c) == null) {
return false;
}
cur = cur.next.get(c);
}
return true;
}
private class Node {
boolean isWord;
TreeMap<Character, Node> next;
public Node(boolean isWord) {
this.isWord = isWord;
next = new TreeMap<>();
}
public Node() {
this(false);
}
}
}
| [
"[email protected]"
] | |
2399a817ceedbbca021ec5e5aa47952f69f3138e | 3a3ab308ca6f50c177e1154018f2e97425d2e67d | /src/main/java/com/solution/smartTution/controller/LessonController.java | 24a3f2760b77fbd4cc9ce2cdd7004dc448ebb886 | [] | no_license | kasunebj/smartTution | e8d040ef994741e77da5514c4fc07889a8c59d2f | a62e1b93d0574f9048ff381e80b2e991cbc4573e | refs/heads/master | 2020-05-07T18:30:08.544094 | 2019-04-19T18:21:47 | 2019-04-19T18:21:47 | 180,769,469 | 0 | 0 | null | 2019-04-20T02:10:27 | 2019-04-11T10:30:31 | Java | UTF-8 | Java | false | false | 81 | java | package com.solution.smartTution.controller;
public class LessonController {
}
| [
"[email protected]"
] | |
2cd776f924296aff8589bade6a3dc10f1115cc7c | b9cef3ef4d8d4629fe3a1b3aad71831478ed7848 | /APCS/HW15/Stats.java | 69e6307496f873b53f0c69c4d7a6bf26f5e568f7 | [] | no_license | jzaia18/StuyHomework | 6259e351b0135e2a6a2b9f72da9f9d7419e196c1 | 3000994ccab33d5443d02201e9a62e51cc11cc12 | refs/heads/master | 2020-03-28T20:14:17.433944 | 2018-09-17T01:29:40 | 2018-09-17T01:29:40 | 149,051,818 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,617 | java | //Jake Zaia
//APCS pd5
//HW #14: stAtistically sPeaking
//2016-10-06
public class Stats{
//Mean methods
public static int mean(int a,int b){
return (a+b)/2;
}
public static double mean(double a, double b){
return (a+b)/2;
}
//Max methods
public static int max(int a, int b){
if (a>b){
return a; }
else{
return b; }
}
public static double max(double a, double b){
if (a>b){
return a; }
else{
return b; }
}
public static int max(int a, int b, int c){
return max(max(a,b),c); //Yay recursion!
}
public static double max(double a, double b, double c){
return max(max(a,b),c);
}
//Geometric Mean Methods
public static int geoMean(int a, int b){
return (int) Math.sqrt(a*b);
}
public static double geoMean(double a, double b){
return Math.sqrt(a*b);
}
public static int geoMean(int a, int b, int c){
return (int) Math.pow((a*b*c),(1.0/3.0));
}
public static double geoMean(double a,double b,double c){
return Math.pow((a*b*c),(1.0/3.0));
}
//Main for testing
public static void main( String [] args){
System.out.println(mean(0,10));//Expected:5
System.out.println(mean(0.0,5.0));//Expected:2.5
System.out.println(max(0,5,10));//Expected:10
System.out.println(max(0.0,5.0,10.0));//Expected:10.0
System.out.println(geoMean(2,4,8));//Expected:4
System.out.println(geoMean(2.0,4.0,8.0));//Expected:4.0
//Because of how Java calculates, what should be 4.0 is 3.99999996
//This therefor makes the int version 3.
}
}
| [
"[email protected]"
] | |
ca6768caff4e9c0f073769f002933069f8685d94 | e3b150efeccedd88e5e118e05b7e12d19aec664b | /android/app/src/main/java/come/manager/direct/hackuniversity/ListFragment.java | e5631736b41f2f50102f640702f448bfc383df9a | [] | no_license | BladzheR/hackuniversity | b90f6c3ab7974ecf6771d2be77bbf090edc208ec | b7538d307a1e468fef149e593899da40f92c1ff9 | refs/heads/master | 2020-05-01T06:42:59.151278 | 2019-03-23T18:56:19 | 2019-03-23T18:56:19 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,443 | java | package come.manager.direct.hackuniversity;
import android.content.Context;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
/**
* A simple {@link Fragment} subclass.
* Activities that contain this fragment must implement the
* {@link OnFragmentInteractionListener} interface
* to handle interaction events.
* Use the {@link ListFragment#newInstance} factory method to
* create an instance of this fragment.
*/
public class ListFragment extends Fragment{
// TODO: Rename parameter arguments, choose names that match
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
private static final String ARG_PARAM1 = "param1";
private static final String ARG_PARAM2 = "param2";
// TODO: Rename and change types of parameters
private String mParam1;
private String mParam2;
private OnFragmentInteractionListener mListener;
public ListFragment() {
// Required empty public constructor
}
/**
* Use this factory method to create a new instance of
* this fragment using the provided parameters.
*
* @param param1 Parameter 1.
* @param param2 Parameter 2.
* @return A new instance of fragment ListFragment.
*/
// TODO: Rename and change types and number of parameters
public static ListFragment newInstance(String param1, String param2) {
ListFragment fragment = new ListFragment();
Bundle args = new Bundle();
args.putString(ARG_PARAM1, param1);
args.putString(ARG_PARAM2, param2);
fragment.setArguments(args);
return fragment;
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (getArguments() != null) {
mParam1 = getArguments().getString(ARG_PARAM1);
mParam2 = getArguments().getString(ARG_PARAM2);
}
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_list, container, false);
}
// TODO: Rename method, update argument and hook method into UI event
public void onButtonPressed(Uri uri) {
if (mListener != null) {
mListener.onFragmentInteraction(uri);
}
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
if (context instanceof OnFragmentInteractionListener) {
mListener = (OnFragmentInteractionListener) context;
} else {
throw new RuntimeException(context.toString()
+ " must implement OnFragmentInteractionListener");
}
}
@Override
public void onDetach() {
super.onDetach();
mListener = null;
}
/**
* This interface must be implemented by activities that contain this
* fragment to allow an interaction in this fragment to be communicated
* to the activity and potentially other fragments contained in that
* activity.
* <p>
* See the Android Training lesson <a href=
* "http://developer.android.com/training/basics/fragments/communicating.html"
* >Communicating with Other Fragments</a> for more information.
*/
}
| [
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.