blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
410
content_id
stringlengths
40
40
detected_licenses
listlengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
684M
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
132 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
28 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
352
322d4572cf26337e7e9020e3e4bb342de6604658
6f7804dc229169562c9f140e537d7de5d7584e61
/onesAndZeros/src/main/java/BinaryArrayToNumber.java
62b097f3cfb8a9b91278578d7edfba14f3b29231
[]
no_license
asystentRoberta/codeWarsSolutions
c517b4e4573783ce1ea37ddcd303c659f9f40d82
91b86b4a11c897f3f8ac8e7466edf33676f3d65a
refs/heads/master
2020-06-21T21:48:31.324884
2020-05-29T14:35:43
2020-05-29T14:35:43
197,559,848
2
0
null
2020-05-29T07:43:19
2019-07-18T09:50:50
Java
UTF-8
Java
false
false
359
java
import java.util.List; public class BinaryArrayToNumber { public static int ConvertBinaryArrayToInt(List<Integer> binary) { StringBuilder binaryAsString = new StringBuilder(); for (Integer integer : binary) { binaryAsString.append(integer); } return Integer.parseInt(binaryAsString.toString(), 2); } }
[ "asystent.roberta@gmail.com" ]
asystent.roberta@gmail.com
ef8d254bec5a1709fbbe0a6c551e518094ff42d2
4537dc55414909eb20522d8972dd535e7f15db7f
/src/com/painless/pc/tracker/RotationLockTracker.java
e4bd5b4391f60939bfb57329a6b4e2c1d912f0c6
[ "MIT" ]
permissive
ggets/PowerToggles
a69ac98c807ce8c0c9761cb5b565e17c4b534f71
782ed2811848c36870f16e13cde25eb56974ffaf
refs/heads/master
2021-06-06T14:57:09.948727
2016-10-15T23:26:52
2016-10-15T23:26:52
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,066
java
package com.painless.pc.tracker; import android.content.ContentResolver; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.content.res.Configuration; import android.provider.Settings; import android.view.Surface; import android.view.WindowManager; import com.painless.pc.R; import com.painless.pc.RLPicker; import com.painless.pc.RLService; import com.painless.pc.singleton.Globals; public class RotationLockTracker extends AbstractTracker { private boolean mShowPrompt; public RotationLockTracker(int trackerId, SharedPreferences pref) { super(trackerId, pref, new int[] { COLOR_DEFAULT, R.drawable.icon_rotation_port, COLOR_DEFAULT, R.drawable.icon_rotation_land, COLOR_ON, R.drawable.icon_toggle_autorotate }); } @Override public void init(SharedPreferences pref) { mShowPrompt = pref.getBoolean("rotation_lock_prompt", true); } @Override public int getActualState(Context context) { final ContentResolver cr = context.getContentResolver(); if (isAutoRotate(cr) && (RLService.LOCK_VIEW == null)) { return STATE_ENABLED; } else { boolean isLandScapeDefault = isLandScapeDefault(context); boolean isPortrait = isLandScapeDefault ^ RLService.LOCK_VIEW == null; return isPortrait ? STATE_DISABLED : STATE_INTERMEDIATE; } } @Override public void toggleState(Context context) { if (mShowPrompt) { Globals.startIntent(context, Globals.setIncognetoIntent(new Intent(context, RLPicker.class))); } else { Intent i = new Intent(context, RLService.class); if (isAutoRotate(context.getContentResolver())) { context.stopService(i); } else if (RLService.LOCK_VIEW == null) { context.startService(i); } else { context.stopService(i); } RLPicker.setAutoRotate(context, 0); } } @Override protected void requestStateChange(Context context, boolean desiredState) { // Never Called } @Override public boolean shouldProxy(Context context) { return true; } @Override public String getStateText(int state, String[] states, String[] labelArray) { return states[7 + mDisplayNumber]; } public static final boolean isLandScapeDefault(Context ctx) { WindowManager lWindowManager = (WindowManager) ctx.getSystemService(Context.WINDOW_SERVICE); Configuration cfg = ctx.getResources().getConfiguration(); int lRotation = lWindowManager.getDefaultDisplay().getRotation(); return (((lRotation == Surface.ROTATION_0) || (lRotation == Surface.ROTATION_180)) && (cfg.orientation == Configuration.ORIENTATION_LANDSCAPE)) || (((lRotation == Surface.ROTATION_90) || (lRotation == Surface.ROTATION_270)) && (cfg.orientation == Configuration.ORIENTATION_PORTRAIT)); } private static boolean isAutoRotate(final ContentResolver resolver) { return Settings.System.getInt(resolver, Settings.System.ACCELEROMETER_ROTATION, 1) == 1; } }
[ "sunnygoyal@google.com" ]
sunnygoyal@google.com
76848af504d24351bac6348577d57cb835be07af
68374eb2631cb33ccd8d7924a16bfb79ad08040a
/core/src/test/java/com/gengoai/hermes/annotator/DocumentProvider.java
1df6c1f9cdf60413e5e665fe30a4ccaf33d445c8
[ "Apache-2.0" ]
permissive
gengoai/hermes
92f413788f2870b51369b440d8e479824bdd3ce0
78f48e9edee397907d7ac0bda32fb5ea24f6be4a
refs/heads/master
2021-06-02T06:27:26.783582
2020-07-31T16:47:23
2020-07-31T16:47:23
130,230,032
2
1
Apache-2.0
2020-05-03T15:02:55
2018-04-19T14:41:39
Java
UTF-8
Java
false
false
3,629
java
/* * (c) 2005 David B. Bracewell * * 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 com.gengoai.hermes.annotator; import com.gengoai.Language; import com.gengoai.hermes.Document; import com.gengoai.hermes.DocumentFactory; import com.gengoai.hermes.Types; /** * @author David B. Bracewell */ public interface DocumentProvider { static Document getAnnotatedDocument() { Document doc = getDocument(); doc.annotate(Types.TOKEN, Types.SENTENCE); return doc; } static Document getAnnotatedEmoticonDocument() { Document doc = DocumentFactory.getInstance().create("I had a great time at the party ;-). " + "See all the video at http://www.somevideo.com/video.html " + "I don't even mind being out $100.", Language.ENGLISH); doc.annotate(Types.TOKEN, Types.SENTENCE); doc.setCompleted(Types.PART_OF_SPEECH, "a"); return doc; } static Document getChineseDocument() { return DocumentFactory.getInstance().fromTokens(Language.CHINESE, "我", "爱", "你"); } static Document getDocument() { return DocumentFactory.getInstance().create( " Alice was beginning to get very tired of sitting by her sister on the bank, and of having nothing to do: once or " + "twice she had peeped into the book her sister was reading, but it had no pictures or conversations in it, " + "'and what is the use of a book,' thought Alice 'without pictures or conversations?'\n" + "So she was considering in her own mind (as well as she could, for the hot day made her feel very sleepy " + "and stupid), whether the pleasure of making a daisy-chain would be worth the trouble of getting up and " + "picking the daisies, when suddenly a White Rabbit with pink eyes ran close by her.\n" + "There was nothing so very remarkable in that; nor did Alice think it so very much out of the way to hear " + "the Rabbit say to itself, 'Oh dear! Oh dear! I shall be late!' (when she thought it over afterwards, it " + "occurred to her that she ought to have wondered at this, but at the time it all seemed quite natural); but " + "when the Rabbit actually took a watch out of its waistcoat-pocket, and looked at it, and then hurried on, " + "Alice started to her feet, for it flashed across her mind that she had never before seen a rabbit with either " + "a waistcoat-pocket, or a watch to take out of it, and burning with curiosity, she ran across the field after " + "it, and fortunately was just in time to see it pop down a large rabbit-hole under the hedge.\n" ); } }//END OF DocumentProvider
[ "david@davidbracewell.com" ]
david@davidbracewell.com
8f065d288849a08b2fa144be714a3a7e65d34348
c4b0562856ee724a732632411e97ddf20748d6a0
/src/main/java/ex4/Main.java
4a9675e57ba6eec26ec53ac5fe14db5b399a051e
[]
no_license
LessonsVcs/lesson19
bd2bf055582b5084750ce9b766e7ef1f7e14ce37
6c807f194aef1d54cd0e563e8f0fe7415a087714
refs/heads/master
2021-04-09T11:29:40.132438
2018-03-16T18:23:29
2018-03-16T18:23:29
125,543,420
0
0
null
null
null
null
UTF-8
Java
false
false
842
java
package ex4; class Table{ synchronized void printTable(int n){//method not synchronized for(int i=1;i<=5;i++){ System.out.println(n*i); try{ Thread.sleep(400); }catch(Exception e){System.out.println(e);} } } } class MyThread1 extends Thread{ Table t; MyThread1(Table t){ this.t=t; } public void run(){ t.printTable(5); } } class MyThread2 extends Thread{ Table t; MyThread2(Table t){ this.t=t; } public void run(){ t.printTable(100); } } class TestSynchronization1{ public static void main(String args[]){ Table obj = new Table();//only one object MyThread1 t1=new MyThread1(obj); MyThread2 t2=new MyThread2(obj); t1.start(); t2.start(); } }
[ "Aurimas" ]
Aurimas
11c7dbc79648339292c4884f6aebaed89b3c6c09
e77777b387a7c9908956ac398652ba1ca3bfbf92
/src/main/java/com/axisdesignsolution/gateway/config/DateTimeFormatConfiguration.java
0ee9b5c2cd450e3ec2987a63ede604978e1a7e73
[]
no_license
leorajesh/AxisDesignSolutionWebApp
cc2de4952ac0ab61eb57ac2d73682e8a2e011eff
33c272dcc53814e42461872d1c0deec89d911fd4
refs/heads/master
2022-10-29T23:30:34.574700
2018-11-19T15:32:30
2018-11-19T15:32:30
158,247,664
0
0
null
2022-10-05T19:15:33
2018-11-19T15:32:21
Java
UTF-8
Java
false
false
737
java
package com.axisdesignsolution.gateway.config; import org.springframework.context.annotation.Configuration; import org.springframework.format.FormatterRegistry; import org.springframework.format.datetime.standard.DateTimeFormatterRegistrar; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; /** * Configure the converters to use the ISO format for dates by default. */ @Configuration public class DateTimeFormatConfiguration implements WebMvcConfigurer { @Override public void addFormatters(FormatterRegistry registry) { DateTimeFormatterRegistrar registrar = new DateTimeFormatterRegistrar(); registrar.setUseIsoFormat(true); registrar.registerFormatters(registry); } }
[ "jhipster-bot@jhipster.tech" ]
jhipster-bot@jhipster.tech
ab1fab4855c405f5cdabbbb1a2653dcbec03a005
28361145f030144fe1184bddea9933d0e9cf157f
/src/main/java/org/mcupdater/mojang/VersionManifest.java
0b81f23a83cca3d5885fe3bc947a47f96e65c737
[ "Apache-2.0" ]
permissive
MCUpdater/MCU-API
2121e6771a5d6f67afd74fd91aaa565055e4d292
1e898a37ae1bf9c2c58a3ee0ec51123c119308fc
refs/heads/master
2023-07-07T01:19:22.758639
2022-09-03T21:48:53
2022-09-03T21:48:53
15,918,707
2
7
Apache-2.0
2022-09-03T21:48:54
2014-01-14T23:08:36
Java
UTF-8
Java
false
false
1,916
java
package org.mcupdater.mojang; import com.google.gson.Gson; import java.io.IOException; import java.io.InputStreamReader; import java.net.URL; import java.net.URLConnection; import java.util.List; public class VersionManifest { private Latest latest; private List<VersionInfo> versions; private static VersionManifest current; public static VersionManifest getCurrent(boolean forceRefresh) throws IOException { Gson gson = new Gson(); if (current == null || forceRefresh) { URLConnection conn; conn = (new URL("https://launchermeta.mojang.com/mc/game/version_manifest.json")).openConnection(); current = gson.fromJson(new InputStreamReader(conn.getInputStream()),VersionManifest.class); } return current; } public Latest getLatest() { return latest; } public List<VersionInfo> getVersions() { return versions; } public VersionInfo getVersion(String versionNumber) throws VersionNotFoundException { for (VersionInfo version : versions) { if (version.getId().equals(versionNumber)) { return version; } } throw new VersionNotFoundException(); } public class Latest { private String snapshot; private String release; public String getSnapshot() { return snapshot; } public String getRelease() { return release; } } public class VersionInfo { private String id; private String type; private String time; private String releaseTime; private String url; public String getId() { return id; } public String getType() { return type; } public String getTime() { return time; } public String getReleaseTime() { return releaseTime; } public String getUrl() { return url; } @Override public String toString() { return type + ": " + id; } } public class VersionNotFoundException extends Exception { public VersionNotFoundException() { super("Requested version not found."); } } }
[ "smbarbour@gmail.com" ]
smbarbour@gmail.com
76d34c8d9d8171c71603772e33aa582c67976eda
bbec793c3255abd4d71e52d7bbbdaad5e9881f09
/MXA/src/de/tudresden/inf/rn/mobilis/mxa/xmpp/MXAIdentFilter.java
e9d673e9408cb5fc384a6e798ad66078ba594950
[]
no_license
benjaminsoellner/TUD_MobilisMiddleware
26174994ef0dfbbd9f7e3eb1262ce8cf72fbeda9
f2357363dc4bb592190a89c3606a477515405a22
refs/heads/master
2016-08-11T21:45:56.193208
2015-12-17T22:29:15
2015-12-17T22:29:15
48,201,450
0
0
null
null
null
null
MacCentralEurope
Java
false
false
1,815
java
/** * Copyright (C) 2009 Technische Universitšt Dresden * * 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 de.tudresden.inf.rn.mobilis.mxa.xmpp; import org.jivesoftware.smack.filter.PacketExtensionFilter; import org.jivesoftware.smack.packet.Packet; /** * A simple packet extension filter that checks for the correct namespace and * token of an mxa-ident packet extension. * * @author Istvan Koren * */ public class MXAIdentFilter extends PacketExtensionFilter { private String namespace; private String token; public MXAIdentFilter(String namespace, String token) { super(MXAIdentExtension.ELEMENT_NAME, MXAIdentExtension.NAMESPACE); this.namespace = namespace; this.token = token; } @Override public boolean accept(Packet packet) { if (super.accept(packet)) { MXAIdentExtension mie = (MXAIdentExtension) packet .getExtension(MXAIdentExtension.ELEMENT_NAME, MXAIdentExtension.NAMESPACE); return ((namespace.equals(mie.getConsumerNamespace())) && (token .equals(mie.getToken()))); } else { return false; } } @Override public boolean equals(Object o) { if (o instanceof MXAIdentFilter) { return ((((MXAIdentFilter) o).namespace.equals(namespace)) && (((MXAIdentFilter) o).token .equals(token))); } return false; } }
[ "benjamin.soellner@gmail.com" ]
benjamin.soellner@gmail.com
bbcd613e9da99cf8c25896c4bf018d1bd8252266
575045b65050153540e08c5dcc94bc95d5610c75
/coreJava/src/sortMethods/BinarySearch2.java
7ab944f5faf63d241e28656bab40ac4d6bb6fe50
[]
no_license
sangsporer/bnybackup
4ed15a1335ae3438a59180f7c4f216bb6f9988d4
6a359c5d463965ffe4bea626dda1486e917dfbef
refs/heads/master
2020-05-09T10:08:56.386175
2019-04-12T15:06:32
2019-04-12T15:06:32
181,030,226
0
0
null
null
null
null
UTF-8
Java
false
false
1,389
java
package sortMethods; import java.awt.ItemSelectable; import java.util.Scanner; public class BinarySearch2 { // binary search then do linear if not using recursive // public static int biSearch (int key, int[] ordArr){ // //declare and initialize middle index point // int midI=ordArr.length/2; // int lastI=ordArr.length-1; // int firstI=0; // //if key equals middle of list just return index // if(key==ordArr[midI]) { // return ordArr[midI]; // } // // //if key is less than middle, ignore top half and set index as such // if(key<ordArr[midI]) { // lastI=midI; // midI=lastI/2; // } // // //if key is greater than the middle, ignore bottom half and set index as such // // // // } // // // return -1; // } public static void main(String[] args) { // TODO Auto-generated method stub Scanner input = new Scanner(System.in); System.out.println("Please enter ordered list of numbers"); String numbers = input.next(); String delimiter = ","; numbers = numbers.replaceAll("\\s+", ""); String[] numArr = numbers.split(delimiter); // int key = 5; // int[] ordArr = {1, 3, 5, 7, 9, 10}; // // if(key>ordArr[ordArr.length/2]) { // if (key>ordArr[]) // } // firstI=midI; // lastI=ordArr.length-midI; // midI=lastI/2; } }
[ "sangsporer@gmail.com" ]
sangsporer@gmail.com
e54ab4544ca509899fd086582fa0ad8d50429cc3
f2b70e4c2f38ff4a814650df12ee9cecd877c65a
/src/main/java/osm5/ns/yang/ietf/network/rev180226/$YangModelBindingProvider.java
c9fb1b8494f64d16b7a86e9f66d5d5fbe23cb5d5
[ "Apache-2.0" ]
permissive
5GinFIRE/eu.5ginfire.nbi.osm5java
34f17f78930178bdf3b428db7a0e9b24982c7c2a
19b6a70cd39e5b0eddd1d0a63069532fa2a1cee0
refs/heads/master
2021-08-11T15:50:07.182421
2019-06-14T12:25:45
2019-06-14T12:25:45
182,989,539
0
0
Apache-2.0
2021-08-02T17:16:53
2019-04-23T10:15:57
Java
UTF-8
Java
false
false
335
java
package osm5.ns.yang.ietf.network.rev180226; public final class $YangModelBindingProvider implements org.opendaylight.yangtools.yang.binding.YangModelBindingProvider { @java.lang.Override public org.opendaylight.yangtools.yang.binding.YangModuleInfo getModuleInfo() { return $YangModuleInfoImpl.getInstance(); } }
[ "ioannischatzis@gmail.com" ]
ioannischatzis@gmail.com
2edfa34fdb68122ec6ff089c112bd6d37782288b
f13b71874679ac9dcce7f3b5d276598403101e37
/src/MainP.java
4c4a67d6befa497de14689d8db2ed4e541fa2b81
[]
no_license
edward877/os2
10d6c31c32ba2ee643269d273dc8c82544b1b495
0459456b0fb7a95097f7e9c071d0d1e8482b415f
refs/heads/master
2021-01-23T17:08:32.762672
2017-09-07T16:59:38
2017-09-07T16:59:38
102,763,275
0
0
null
null
null
null
WINDOWS-1251
Java
false
false
8,639
java
import javax.swing.JFrame; import javax.swing.JTextArea; import javax.swing.table.DefaultTableModel; import javax.swing.JButton; import java.awt.event.ActionListener; import java.util.ArrayList; import java.util.Random; import java.awt.event.ActionEvent; import javax.swing.JScrollPane; import javax.swing.JTable; import java.awt.Color; import javax.swing.ListSelectionModel; import java.awt.Font; import javax.swing.JLabel; import javax.swing.JEditorPane; import javax.swing.*; import javax.swing.border.BevelBorder; public class MainP { private JFrame frame; private MMU mmu = new MMU(); final static int quantum = 20; Virtual virtual = new Virtual(); Swap swap = new Swap(); Random r; private DefaultTableModel tableModel = new DefaultTableModel(); JEditorPane editorPaneRight; JButton btnPause; JButton btnStart; JButton btnCreate; public MainP() { initialize(); frame.setVisible(true); JScrollPane scrollPane_2 = new JScrollPane(); scrollPane_2.setBounds(507, 46, 438, 471); frame.getContentPane().add(scrollPane_2); table = new JTable(); table.setEnabled(false); table.setBorder(new BevelBorder(BevelBorder.LOWERED, null, null, null, null)); table.setFont(new Font("Tahoma", Font.PLAIN, 13)); table.setRowHeight(40); table.setModel(tableModel); table.setCellSelectionEnabled(true); table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); table.setFillsViewportHeight(true); table.setColumnSelectionAllowed(true); table.setBackground(Color.WHITE); table.setBounds(474, 22, 242, 140); tableModel.setRowCount(0); tableModel.setColumnCount(0); for(int i=0; i < MMU.PhysMemb; i++){ tableModel.addColumn((i+1) +""); } scrollPane_2.setViewportView(table); JLabel label = new JLabel("\u043F\u0440\u043E\u0446\u0435\u0441\u0441\u044B \u0438 \u043F\u043E\u0442\u043E\u043A\u0438"); label.setFont(new Font("Tahoma", Font.PLAIN, 18)); label.setBounds(45, 11, 168, 23); frame.getContentPane().add(label); JLabel label_1 = new JLabel("\u0445\u043E\u0434 \u0432\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u044F"); label_1.setFont(new Font("Tahoma", Font.PLAIN, 18)); label_1.setBounds(270, 11, 150, 23); frame.getContentPane().add(label_1); JLabel label_2 = new JLabel("\u0424\u0438\u0437\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u043F\u0430\u043C\u044F\u0442\u044C"); label_2.setFont(new Font("Tahoma", Font.PLAIN, 18)); label_2.setBounds(645, 14, 207, 23); frame.getContentPane().add(label_2); btnPause = new JButton("stop"); btnPause.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent arg0) { btnPause.setEnabled(false); btnStart.setEnabled(true); timerAction.stop(); } }); btnPause.setEnabled(false); btnPause.setBounds(584, 528, 96, 23); frame.getContentPane().add(btnPause); btnStart = new JButton("start"); btnStart.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { btnPause.setEnabled(true); btnStart.setEnabled(false); timerAction.start(); } }); btnStart.setEnabled(false); btnStart.setBounds(679, 528, 96, 23); frame.getContentPane().add(btnStart); } /** * Initialize the contents of the frame. */ private void initialize() { frame = new JFrame(); frame.setBounds(100, 100, 1063, 601); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.getContentPane().setLayout(null); JScrollPane scrollPane_1 = new JScrollPane(); scrollPane_1.setBounds(21, 45, 202, 472); frame.getContentPane().add(scrollPane_1); JTextArea textAreaLeft = new JTextArea(); scrollPane_1.setViewportView(textAreaLeft); JScrollPane scrollPane = new JScrollPane(); scrollPane.setBounds(233, 45, 251, 472); frame.getContentPane().add(scrollPane); editorPaneRight = new JEditorPane("text/html", ""); scrollPane.setViewportView(editorPaneRight); btnCreate = new JButton("\u043D\u0430\u0447\u0430\u0442\u044C"); btnCreate.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent arg0) { editorText = ""; editorPaneRight.setText(editorText); btnCreate.setEnabled(false); btnPause.setEnabled(true); table_process.clear(); tableModel.setRowCount(0); createProcesses(); textAreaLeft.setText( ShowProcess() ); online_process = table_process.size(); timerAction.start(); } }); btnCreate.setBounds(404, 528, 89, 23); frame.getContentPane().add(btnCreate); } String editorText; ActionListener listener = new ActionListener() { public void actionPerformed(ActionEvent e) { ShowActing(); editorPaneRight.setText(editorText); } }; ArrayList<Process> table_process = new ArrayList<>(); private JTable table;; Timer timerAction = new Timer(500, listener); private void createProcesses() { r = new Random(); int n = r.nextInt(2) + 3; for(int i = 0; i < n ; i++) { table_process.add(new Process(r,quantum, virtual)); } } private String ShowProcess() { String text = ""; for(int i = 0; i < table_process.size(); i++) { Process p = table_process.get(i); text += "процесс " + (i+1); text += ". time = " + p.getTime_process() + " "; text += "priotity = " + p.getPriority() + "\n"; for(int j = 0; j < p.getTableStream().size(); j++) { Stream s = p.getTableStream().get(j); text += "\tПоток " + (j+1) + ". time = " +s.getTime_stream() + "\n"; } text += "\n"; } return text; } int online_process; private void ShowActing() { String text = ""; if(online_process <= 0) { timerAction.stop(); btnCreate.setEnabled(true); btnPause.setEnabled(false); return; } int maxP = 0; //первый процесс с оставшимся временем for(int l = 0; l < table_process.size(); l++) { if(table_process.get(l).getTime_process()!=0){ maxP = l; break; } } //ищем более приоритетный процесс for(int l = 0; l < table_process.size(); l++) { if(table_process.get(l).getTime_process()!=0){ if(table_process.get(l).getPriority() > table_process.get(maxP).getPriority()){ maxP = l; } } } Process p = table_process.get(maxP); if(p.getTime_process()!=0) { p.setQuantum(quantum); text += "процесс " + (maxP+1) + ". "; text += "priotity = " + p.getPriority() + "<br>"; for(int i =0; i < r.nextInt(3)+1; i++){ text +=mmu(p); } for(int j = 0; j < p.getTableStream().size(); j++) { Stream s = p.getTableStream().get(j); if(s.getTime_stream()!=0){ p.setTime_stream(j); text += " Поток " + (j+1) + ". "; int time_stream = s.getTime_stream(); if(time_stream==0){ text += "закончился<br>"; }else{ text += "time = " + time_stream + "<br>"; } } } p.setTime_process(); if(p.getTime_process()==0){ text += "ПРОЦЕСС закончился!<br>"; online_process--; } text += "_______________________________<br>"; } p.PriorityMinus(); editorText+= text; } private String mmu(Process process) { String text = ""; //получаем страницу процесса с случайным индексом ArrayList<Integer> array = process.getListPage(); int randIndex = r.nextInt(array.size()); Page page = virtual.getPageTables().get(array.get(randIndex)); text += "<b>Страница "+ page.getId() + " </b><br>"; // Если страницы еще нет в физ памяти, то if(!mmu.getPageBlocks().contains(page)){ int indexEmptyBlock = mmu.emptyBlock(); // Если в физ памяти есть место, то добавляем туда страницу if (indexEmptyBlock >=0) { mmu.addPage(indexEmptyBlock, page); }else{ //если страница в свапе, то выгружаем оттуда if(swap.getSwap().contains(page)){ swap.RemoveFromSwap(page); } //добавление в физ память на место старой выбранной страницы //и добавление старой страницы в свап swap.addPageSwap(mmu.ReplacePage(page)); } //таблица физ памяти ArrayList<String> pageBlocks = new ArrayList<>(); for (Page pageblock : mmu.getPageBlocks()) { if(pageblock!=null) pageBlocks.add(pageblock.getId() + " "); } tableModel.addRow(pageBlocks.toArray()); } //бит присутствия делаем единицей page.setR(true); return text; } }
[ "edward877@mail.ru" ]
edward877@mail.ru
c8adb743ba36c436a46ab81834e87fda44528195
bcfb8f96fa730f00075edd005cade4bfc82c3010
/services-elasticsearch/src/main/java/com/meorient/mebuyerdiscovery/elasticsearch/utils/SnowFlake.java
db87bd4116206ac5791b95d61316937b9fd816c7
[]
no_license
allen0224/springcloud-zjt
ec6c48b02cc6183c86c93c07190446b8906f064f
3dce161f7683f45773f699b83e56f92e41ec792c
refs/heads/master
2022-12-23T06:36:29.842051
2020-07-09T01:46:07
2020-07-09T01:46:07
183,213,377
0
0
null
2022-12-12T21:42:46
2019-04-24T11:18:10
Java
UTF-8
Java
false
false
4,437
java
package com.meorient.mebuyerdiscovery.elasticsearch.utils; import java.util.concurrent.ConcurrentHashMap; /** * 描述: Twitter的分布式自增ID雪花算法snowflake (Java版) */ public class SnowFlake { private static Object LOCK = new Object(); /** * 起始的时间戳 */ private final static long START_STMP = 1480166465631L; /** * 每一部分占用的位数 */ private final static long SEQUENCE_BIT = 12; //序列号占用的位数 private final static long MACHINE_BIT = 5; //机器标识占用的位数 private final static long DATACENTER_BIT = 5;//数据中心占用的位数 /** * 每一部分的最大值 */ private final static long MAX_DATACENTER_NUM = -1L ^ (-1L << DATACENTER_BIT); private final static long MAX_MACHINE_NUM = -1L ^ (-1L << MACHINE_BIT); private final static long MAX_SEQUENCE = -1L ^ (-1L << SEQUENCE_BIT); /** * 每一部分向左的位移 */ private final static long MACHINE_LEFT = SEQUENCE_BIT; private final static long DATACENTER_LEFT = SEQUENCE_BIT + MACHINE_BIT; private final static long TIMESTMP_LEFT = DATACENTER_LEFT + DATACENTER_BIT; private long datacenterId; //数据中心 private long machineId; //机器标识 private long sequence = 0L; //序列号 private long lastStmp = -1L;//上一次时间戳 private SnowFlake() {} private static ConcurrentHashMap<String, SnowFlake> instanceMap = new ConcurrentHashMap<>(); public static SnowFlake getInstance(long datacenterId, long machineId) { String key = datacenterId + "-" + machineId; if (instanceMap.containsKey(key)) return instanceMap.get(key); else { synchronized(LOCK) { instanceMap.putIfAbsent(key, new SnowFlake(datacenterId, machineId)); return instanceMap.get(key); } } } /** * * @param datacenterId, 对应一个分布式系统 * @param machineId 对应分布式系统里的虚拟机节点 - 一台机子 * machineId,对应每个node角色,这个id应该由数据库维护唯一性 * 简单版本,使用参数0,0 * SnowFlake.getInstance(0,0).nextId(); */ private SnowFlake(long datacenterId, long machineId) { if (datacenterId > MAX_DATACENTER_NUM || datacenterId < 0) { throw new IllegalArgumentException("datacenterId can't be greater than MAX_DATACENTER_NUM or less than 0"); } if (machineId > MAX_MACHINE_NUM || machineId < 0) { throw new IllegalArgumentException("machineId can't be greater than MAX_MACHINE_NUM or less than 0"); } this.datacenterId = datacenterId; this.machineId = machineId; } /** * 产生下一个ID * * @return */ public synchronized long nextId() { long currStmp = getNewstmp(); if (currStmp < lastStmp) { throw new RuntimeException("Clock moved backwards. Refusing to generate id"); } if (currStmp == lastStmp) { //相同毫秒内,序列号自增 sequence = (sequence + 1) & MAX_SEQUENCE; //同一毫秒的序列数已经达到最大 if (sequence == 0L) { currStmp = getNextMill(); } } else { //不同毫秒内,序列号置为0 sequence = 0L; } lastStmp = currStmp; return (currStmp - START_STMP) << TIMESTMP_LEFT //时间戳部分 | datacenterId << DATACENTER_LEFT //数据中心部分 | machineId << MACHINE_LEFT //机器标识部分 | sequence; //序列号部分 } private long getNextMill() { long mill = getNewstmp(); while (mill <= lastStmp) { mill = getNewstmp(); } return mill; } private long getNewstmp() { return System.currentTimeMillis(); } public static void main(String[] args) { SnowFlake snowFlake = new SnowFlake(2, 3); long start = System.currentTimeMillis(); for (int i = 0; i < 5; i++) { System.out.println(snowFlake.nextId()); } System.out.println(System.currentTimeMillis() - start); } }
[ "zhangjitong@meorient.com" ]
zhangjitong@meorient.com
170351fb1e6b0641731b9b4773cb2bda985ae255
dfb4e35ea388df5685a5a99e57419ba51f56087a
/src/main/java/com/guildwars2api/service/TraitService.java
34815888355fb0b3a6ca8fee83acbdfa18c61d4a
[]
no_license
cdpsystem/CDP-guil-wars-2-api-2
4de7f75be8ec4bf47a8fd2d5209a9f01462a0690
87a52d6583f411f967031f3af219bed572c5b0d8
refs/heads/master
2020-04-10T06:13:55.571074
2018-12-07T16:34:07
2018-12-07T16:34:07
160,849,256
0
0
null
null
null
null
UTF-8
Java
false
false
409
java
package com.guildwars2api.service; import com.guildwars2api.config.APIOptions; import com.guildwars2api.connector.ApiConnector; import java.io.IOException; public class TraitService { private ApiConnector apc; public TraitService(ApiConnector apc) { this.apc = apc; } public String getTraitList() throws IOException { return apc.getResponseV2(APIOptions.TRAITS); } }
[ "cdp.officesystem.com" ]
cdp.officesystem.com
66e932b66961ca6bd163de7d5885cf5c58157908
1c1cd94b5048126de8c61daff5c2987346254d2a
/app/src/androidTest/java/com/example/finaltest/ExampleInstrumentedTest.java
af0e569231b36306f54160ebbebfe4ac313ce7a2
[]
no_license
AdrianYu-811/FinalTest
caf51a4031e671c5263fdf36e877bfa815ba5d86
149cf88f40bc17efa5b15169d839d9ba65e8472f
refs/heads/master
2022-12-02T19:30:29.234676
2020-08-16T01:48:46
2020-08-16T01:48:46
287,853,658
0
0
null
null
null
null
UTF-8
Java
false
false
713
java
package com.example.finaltest; import android.content.Context; import androidx.test.InstrumentationRegistry; import androidx.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() { // Context of the app under test. Context appContext = InstrumentationRegistry.getTargetContext(); assertEquals("com.example.finaltest", appContext.getPackageName()); } }
[ "adrian930811@gmail.com" ]
adrian930811@gmail.com
780f04ebadc8c3713145df277583356564c7e23e
d81aa4a61dbd91e206cc2e71c4983cda6ede4bee
/src/test/java/fr/agenceAix/tdd/kata1/FizzBuzzTest.java
49323341dad75e128709daf03052094b88381259
[]
no_license
gfiAgenceAix/TDD_Kata1
d613f847ba2936a19b5482665b3368ee3ef68e9a
99f6e783cc4f9347859e8f696be07d46f1db51f8
refs/heads/master
2021-01-12T12:57:54.678393
2016-10-06T09:36:47
2016-10-07T16:03:07
70,130,977
1
0
null
null
null
null
UTF-8
Java
false
false
3,542
java
package fr.agenceAix.tdd.kata1; import org.junit.Before; import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; import fr.gfi.agenceAix.tdd.kata1.model.BasicNumber; import fr.gfi.agenceAix.tdd.kata1.model.Countable; import fr.gfi.agenceAix.tdd.kata1.service.CountableService; import fr.gfi.agenceAix.tdd.kata1.service.CountableServiceImpl; import static org.hamcrest.Matchers.*; import static org.junit.Assert.*; import java.util.Arrays; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class FizzBuzzTest { CountableService countableService; @Before public void initTest() { countableService = new CountableServiceImpl(); } @Test public void exercice_01() { Countable c = countableService.createCountable(1); assertNotNull(c); assertThat(c, instanceOf(BasicNumber.class)); assertEquals("1", c.count()); } @Test public void exercice_02() { Countable c = countableService.createCountable(2); assertThat(c, instanceOf(BasicNumber.class)); assertEquals("2", c.count()); c = countableService.createCountable(4); assertThat(c, instanceOf(BasicNumber.class)); assertEquals("4", c.count()); c = countableService.createCountable(7); assertThat(c, instanceOf(BasicNumber.class)); assertEquals("7", c.count()); } @Test public void exercice_03() { Countable c = countableService.createCountable(3); assertNotNull(c); assertEquals("Fizz", c.count()); assertThat(c, not(instanceOf(BasicNumber.class))); } @Test public void exercice_04() { Countable c = countableService.createCountable(6); assertEquals("Fizz", c.count()); c = countableService.createCountable(9); assertEquals("Fizz", c.count()); c = countableService.createCountable(5); assertEquals("Buzz", c.count()); c = countableService.createCountable(10); assertEquals("Buzz", c.count()); } @Test(expected = ArithmeticException.class) public void exercice_05() { countableService.createCountable(0); } @Test(expected = ArithmeticException.class) public void exercice_06() { countableService.createCountable(-1); } @Test public void exercice_07() { Countable[] range = countableService.createCountableRange(1, 10); assertNotNull(range); assertEquals(10, range.length); for (int i = 2; i < range.length; i+=3) { assertThat(String.format("There's a problem with range[%s]", i), range[i].count(), containsString("Fizz")); } for (int i = 4; i < range.length; i+=5) { assertThat(String.format("There's a problem with range[%s]", i), range[i].count(), containsString("Buzz")); } } @Test(expected = ArithmeticException.class) public void exercice_08() { countableService.createCountableRange(0, 10); } @Test(expected = ArithmeticException.class) public void exercice_09() { countableService.createCountableRange(10, 1); } @Test public void exercice_10() { Countable[] range = countableService.createCountableRange(1, 100); assertNotNull(range); assertEquals(100, range.length); for (int i = 2; i < range.length; i+=3) { assertThat(String.format("There's a problem with range[%s]", i), range[i].count(), containsString("Fizz")); } for (int i = 4; i < range.length; i+=5) { assertThat(String.format("There's a problem with range[%s]", i), range[i].count(), containsString("Buzz")); } for (int i = 0; i < range.length; i++) { if((i+1) %3 > 0 && (i+1) % 5 > 0) { assertThat(String.format("There's a problem with range[%s]", i), range[i].count(), equalTo(String.valueOf(i +1))); } } } }
[ "sebastien.tauvel@gfi.fr" ]
sebastien.tauvel@gfi.fr
eed7850869ce1bae30f34ab87d9cb7835a137a63
01993ce8cfce657279aeb2cd0e33579c4da32c48
/src/main/java/com/hyd/salto/IndexController.java
57f32cf5866fb986cd84528127f465c97cb03a53
[ "Apache-2.0" ]
permissive
yiding-he/salto
8a1ab27a3a303c159b501e16cc80173f4a21216a
3c6b43d9eedc31e45270aa59c6e2f99d0466e9e3
refs/heads/master
2021-01-01T06:36:42.645012
2017-07-18T12:16:21
2017-07-18T12:16:21
97,468,876
0
0
null
null
null
null
UTF-8
Java
false
false
272
java
package com.hyd.salto; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; @Controller public class IndexController { @GetMapping("/") public String index() { return "index"; } }
[ "yiding.he@gmail.com" ]
yiding.he@gmail.com
e4ca01da4fcd793bf7ba27a2aebb91d7bf0554a7
1b4bc1f947df2c916139649ea9c9559180d3fdff
/src/com/demo/bean/impl/OrderServiceBean.java
fcb68d492ad3dcc3bab6c1d259913d9a897edd75
[]
no_license
zhaoxiaohu/webservice-demo
e73d3635ac40061663646fee8c31132d85b9986c
4e0389f0ae8e5eaf86b43f1e1d941520b3ccd2a0
refs/heads/master
2021-01-12T06:27:06.351516
2012-12-21T02:52:43
2012-12-21T02:52:43
null
0
0
null
null
null
null
UTF-8
Java
false
false
958
java
package com.demo.bean.impl; import java.util.ArrayList; import java.util.List; import javax.ejb.Remote; import javax.ejb.Stateless; import javax.jws.WebMethod; import com.demo.bean.Order; import com.demo.service.OrderService; @Stateless @Remote(OrderService.class) public class OrderServiceBean implements OrderService { // @WebMethod public String getUserName(String name) { // TODO Auto-generated method stub return null; } public Order getOrder(String orderid) { Order order = new Order(); order.setOrderid(orderid); order.setName("little birds"); return order; } public List<Order> getOrders() { List<Order> persons = new ArrayList<Order>(); Order order1 = new Order(); order1.setName("one"); order1.setOrderid("001"); Order order2 = new Order(); order2.setName("two"); order2.setOrderid("002"); persons.add(order2); persons.add(order1); return persons; } }
[ "jinhua.wang18@gmail.com" ]
jinhua.wang18@gmail.com
39b6d9b39760ececc1ef5d06290446d023d21477
78f8252d1c9b0e699a8b4f8692a50bc296bbcb1e
/app/src/androidTest/java/com/example/customlistadapter/ExampleInstrumentedTest.java
1bdae52f9a0806cac02c367017b68b45fe477806
[]
no_license
kkubli3246/Activity6_CustomAdapter
7ae850f63492a7378444f189a245021e2ac10900
b45d5e39aad47f08d21be38ce03578ff4f349498
refs/heads/master
2020-12-14T16:35:57.076780
2020-01-18T22:58:58
2020-01-18T22:58:58
234,809,213
0
0
null
null
null
null
UTF-8
Java
false
false
774
java
package com.example.customlistadapter; import android.content.Context; import androidx.test.platform.app.InstrumentationRegistry; import androidx.test.ext.junit.runners.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() { // Context of the app under test. Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); assertEquals("com.example.customlistadapter", appContext.getPackageName()); } }
[ "kkubli3246@gmail.com" ]
kkubli3246@gmail.com
e96164a5d91b122721e288b2bc26043406ea676c
ef79153e2af1e08ff9de883671b982ea4b31cf1a
/src/main/java/com/starr/java8/javascript/JSExample.java
e30dd0fc402aa6c64a0c5a9deacc9a5c457161b2
[]
no_license
TaniaKys/Java8Study
c6debe5170901e73ec8ee559364c319fc8f6fee5
29603a82165f880c2e6ca19f0a0b44862c7e2a5d
refs/heads/master
2021-01-19T10:01:17.118866
2017-05-24T14:41:41
2017-05-24T14:41:41
87,815,412
0
0
null
null
null
null
UTF-8
Java
false
false
678
java
package com.starr.java8.javascript; import javax.script.ScriptEngine; import javax.script.ScriptEngineManager; import javax.script.ScriptException; public class JSExample { public static void main(String[] args) { ScriptEngineManager manager = new ScriptEngineManager(); ScriptEngine engine = manager.getEngineByName("nashorn"); String script = "var welcome = 'Hello'; " + "welcome += ', Tania'; " + "welcome;"; try { String result = (String) engine.eval(script); System.out.println(result); } catch (ScriptException e) { e.printStackTrace(); } } }
[ "always_ultra@ukr.net" ]
always_ultra@ukr.net
c6073abe9b65d5ed3db7029aac1a143c6bde5709
78a217e39f766b0595f0f339c479a86adcb754e1
/src/com/javarush/test/level15/lesson02/task03/Solution.java
3f95833c30dc704f59143fdafd8f50f0b563de2f
[]
no_license
Olegusplatypus/JavaRushHomeWork
af9785d88209291ba95bbf9ccc6a1d97f1b7bcb5
5b9b17d94be85d820a4b07b964dad51d293454a0
refs/heads/master
2020-12-25T14:22:55.066156
2016-08-02T11:27:42
2016-08-02T11:27:42
64,745,213
0
0
null
null
null
null
UTF-8
Java
false
false
2,968
java
package com.javarush.test.level15.lesson02.task03; /* ООП - машинки 1. Для вывода использовать можно только переменные из класса Constants. 2. В классе Ferrari реализуйте метод printlnDesire, чтобы он выводил на экран "Я хочу ездить на Феррари". 3. В классе Lanos реализуйте метод printlnDesire, чтобы он выводил на экран "Я хочу ездить на Ланосе". 4. Создайте public static класс LuxuriousCar(РоскошнаяМашина). 5. Создайте public static класс CheapCar(ДешеваяМашина). 6. Унаследуйте Ferrari и Lanos от CheapCar и LuxuriousCar, подумайте, какой класс для кого. 7. В классе LuxuriousCar реализуйте метод printlnDesire, чтобы он выводил на экран "Я хочу ездить на роскошной машине". 8. В классе CheapCar реализуйте метод printlnDesire, чтобы он выводил на экран "Я хочу ездить на дешевой машине". 9. В класах LuxuriousCar и CheapCar для метода printlnDesire расставьте различными способами модификаторы доступа так, чтобы в классах Ferrari и Lanos выполнялось расширение видимости. */ public class Solution { public static void main(String[] args) { new Solution.LuxuriousCar().printlnDesire(); new Solution.CheapCar().printlnDesire(); new Solution.Ferrari().printlnDesire(); new Solution.Lanos().printlnDesire(); } public static class Ferrari extends LuxuriousCar { public void printlnDesire() { System.out.println(Constants.WANT_STRING+Constants.FERRARY_NAME); //add your code here } } public static class Lanos extends CheapCar{ public void printlnDesire() { System.out.println(Constants.WANT_STRING+Constants.LANOS_NAME); //add your code here } } public static class LuxuriousCar { void printlnDesire() { System.out.println(Constants.WANT_STRING+Constants.LUXURIOUS_CAR); //add your code here } } public static class CheapCar { protected void printlnDesire() { System.out.println(Constants.WANT_STRING+Constants.CHEAP_CAR); //add your code here } } public static class Constants { public static String WANT_STRING = "Я хочу ездить на "; public static String LUXURIOUS_CAR = "роскошной машине"; public static String CHEAP_CAR = "дешевой машине"; public static String FERRARY_NAME = "Феррари"; public static String LANOS_NAME = "Ланосе"; } }
[ "dovakinn@rambler.ru" ]
dovakinn@rambler.ru
8ee15589214eb0d72809625f37a3da2b3b9b8814
7908299834b5dea6b82330c96b2c06052c9f11b1
/src/_07_abstract_class_interface/baitap/Rectangle.java
331423f3c05e3402b0acd65524962008e852f827
[]
no_license
phucnguyen1995/phucnguyen1995-C0421G1__NguyenKhacPhuc_Module2
75875847e688fe998fb97a380f2c095392a104cd
2def78adbbe4eee5008a58988221f103463f1579
refs/heads/main
2023-07-19T20:00:51.643915
2021-09-04T14:22:41
2021-09-04T14:22:41
372,704,762
0
0
null
null
null
null
UTF-8
Java
false
false
1,381
java
package _07_abstract_class_interface.baitap; public class Rectangle extends Shape implements Resizeable { private double width = 1.0; private double length = 1.0; public Rectangle() { } public Rectangle(double width, double length) { this.width = width; this.length = length; } public Rectangle(double width, double length, String color, boolean filled) { super(color, filled); this.width = width; this.length = length; } public double getWidth() { return width; } public void setWidth(double width) { this.width = width; } public double getLength() { return length; } public void setLength(double length) { this.length = length; } public double getArea() { return width * this.length; } public double getPerimeter() { return 2 * (width + this.length); } @Override public String toString() { return "A Rectangle with width=" + getWidth() + " and length=" + getLength() + ", which is a subclass of " + super.toString(); } @Override public void resize(double percent) { this.length = this.length * ((percent + 100)/100); this.width = this.width * ((percent + 100)/100); } }
[ "phuckhac1995@gmail.com" ]
phuckhac1995@gmail.com
26238adae2eb4f76adabaebd8cde68a0322c107a
10cba34c5ef8792a918780bd4b3d0e2b8decdaca
/src/main/java/dev/gigaherz/elementsofpower/client/package-info.java
60704bebfae0114ca073397938e5ca6420bae823
[]
no_license
gigaherz/ElementsOfPower
0536a177ca01587baa138f226c84c30272a6cde3
2a4b531f6d8523db0bc5ec6e7567cf066dcb259b
refs/heads/master
2023-07-07T04:14:54.015613
2023-07-02T22:25:07
2023-07-02T22:25:07
7,384,096
13
10
null
2015-11-25T01:51:24
2012-12-31T05:48:49
Java
UTF-8
Java
false
false
215
java
@MethodsReturnNonnullByDefault @ParametersAreNonnullByDefault package dev.gigaherz.elementsofpower.client; import net.minecraft.MethodsReturnNonnullByDefault; import javax.annotation.ParametersAreNonnullByDefault;
[ "gigaherz@gmail.com" ]
gigaherz@gmail.com
c2df7fb8fe0e5899e83679ebc5551d91a1eb9829
482528f554ba0929f7e701b44b493163935c82b8
/domain/src/main/java/domain/foundation/Repository.java
6d9f8005a157d9448c558a360f0efcc4e2957f43
[ "Apache-2.0" ]
permissive
danangkimhoa/espresso_BaseAppAndroid
a0e385c750f1a518767f18ee87f8845803c7ca66
47e586e66fedf572ee97956ab3885ba9f0a2755c
refs/heads/master
2022-12-10T17:55:54.320458
2016-04-05T19:38:15
2016-04-05T19:38:15
291,883,263
0
0
null
null
null
null
UTF-8
Java
false
false
762
java
/* * Copyright 2015 RefineriaWeb * * 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 domain.foundation; /** * Base interface for any repository. * These interfaces will be implemented in the data layer. */ public interface Repository { }
[ "victor@refineriaweb.com" ]
victor@refineriaweb.com
cbd301bd80dfbb5dd5d11909c0d769675ac02f72
c16e60a1f07a822588086f494e471bc3306fb10e
/old/Tree/Vertical-order-traversal-of-a-binary-tree.java
397874b9e2fb227b59c8ad67f280827c0602e2d0
[]
no_license
frankzengjj/leetcode-algorithm
693b168ee14b0b1e1bdabda62a25693116bd909e
342cde4331ff200aff8a0e21ce165e6ae437e839
refs/heads/master
2022-01-15T18:36:18.935663
2022-01-05T07:27:07
2022-01-05T07:27:07
188,773,778
0
1
null
null
null
null
UTF-8
Java
false
false
1,972
java
/** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ class Solution { class Pair{ TreeNode node; int x; //horizontal int y; //depth Pair(TreeNode n, int x, int y) { node = n; this.x = x; this.y = y; } } public List<List<Integer>> verticalTraversal(TreeNode root) { List<List<Integer>> lists = new ArrayList<>(); Map<Integer, List<Pair>> map = new HashMap<>(); //x -> list (some nodes might have same y in the list) Queue<Pair> q = new LinkedList<>(); q.add(new Pair(root, 0, 0)); int min = 0, max = 0; while(!q.isEmpty()) { Pair p = q.remove(); min = Math.min(min, p.x); max = Math.max(max, p.x); if(!map.containsKey(p.x)) map.put(p.x, new ArrayList<>()); map.get(p.x).add(p); if(p.node.left!=null) q.add(new Pair(p.node.left, p.x-1, p.y+1)); if(p.node.right!=null) q.add(new Pair(p.node.right, p.x+1, p.y+1)); } for(int i=min; i<=max; i++) { Collections.sort(map.get(i), new Comparator<Pair>(){ public int compare(Pair a, Pair b) { if(a.y==b.y) //when y is equal, sort it by value return a.node.val - b.node.val; return 0; //otherwise don't change the order as BFS ganrantees that top nodes are visited first } }); List<Integer> list = new ArrayList<>(); for(int j=0; j<map.get(i).size(); j++) { list.add(map.get(i).get(j).node.val); } lists.add(list); } return lists; } }
[ "tianyuzeng1997@gmail.com" ]
tianyuzeng1997@gmail.com
48a4d10ed58e018963015d06536f700a33fc2dc4
436581fcc6f3785a22f6f627d3af2067671456bf
/src/main/com/bsuir/autoservice/command/account/PersonalAccountUpdateGeneralInformationCommand.java
983e8d93b44eb9265b2a84774216821a0f165a4b
[]
no_license
alexey3nemckovich/JavaMagicBandProject
c1ad5e3681513ae1bd6e2611043e8dba16220a19
9742cbf5539fe037fe30bdc6539519fca678f819
refs/heads/master
2020-12-31T05:57:33.832438
2017-05-24T16:17:43
2017-05-24T16:17:43
86,386,152
1
3
null
2017-05-24T15:45:40
2017-03-27T21:35:04
Java
UTF-8
Java
false
false
1,347
java
package main.com.bsuir.autoservice.command.account; import com.google.inject.Inject; import main.com.bsuir.autoservice.command.AbstractSessionCommand; import main.com.bsuir.autoservice.command.param.PersonalAccountUpdateGeneralInformationInfo; import main.com.bsuir.autoservice.command.ret.PersonalAccountUpdateGeneralInformationRet; import main.com.bsuir.autoservice.dto.UserUpdateInformationDTO; import main.com.bsuir.autoservice.infrastructure.session.IUserSession; import main.com.bsuir.autoservice.service.unitofwork.IServiceUnitOfWork; public class PersonalAccountUpdateGeneralInformationCommand extends AbstractSessionCommand<PersonalAccountUpdateGeneralInformationInfo, PersonalAccountUpdateGeneralInformationRet>{ @Inject public PersonalAccountUpdateGeneralInformationCommand(IServiceUnitOfWork serviceUnitOfWork, IUserSession session) { super(serviceUnitOfWork, session); } @Override protected PersonalAccountUpdateGeneralInformationRet executeImpl(PersonalAccountUpdateGeneralInformationInfo param) throws Exception { return new PersonalAccountUpdateGeneralInformationRet(serviceUnitOfWork.getUserService(). updateUserInformation(session.getUserId(), new UserUpdateInformationDTO(param.getName(), param.getLastName(), param.getPhone()))); } }
[ "nuskit@mail.com" ]
nuskit@mail.com
61c2aa9bfed14e758c6dd41054bd4bd854089a5c
a92ba375caa435e3999574c02edbb913f6eae901
/linq-common/src/main/java/com/linq/common/utils/spring/SpringUtils.java
14bf7e3dd5c279de92f06d9f747bf984522a9d27
[]
no_license
wusijava/jiewu
f4febee79da4b5931522c93efef37f01b8b52351
41ad92122e7c09c7618aa9a4a5f2118fdaff173d
refs/heads/master
2023-02-16T23:03:58.273783
2021-01-14T02:46:44
2021-01-14T02:46:44
329,489,086
0
0
null
null
null
null
UTF-8
Java
false
false
3,182
java
package com.linq.common.utils.spring; import org.springframework.aop.framework.AopContext; import org.springframework.beans.BeansException; import org.springframework.beans.factory.NoSuchBeanDefinitionException; import org.springframework.beans.factory.config.BeanFactoryPostProcessor; import org.springframework.beans.factory.config.ConfigurableListableBeanFactory; import org.springframework.stereotype.Component; /** * spring工具类 方便在非spring管理环境中获取bean */ @Component public final class SpringUtils implements BeanFactoryPostProcessor { /** * Spring应用上下文环境 */ private static ConfigurableListableBeanFactory beanFactory; @Override public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException { SpringUtils.beanFactory = beanFactory; } /** * 获取对象 * * @param name / * * @return Object 一个以所给名字注册的bean的实例 * * @throws BeansException */ @SuppressWarnings("unchecked") public static <T> T getBean(String name) throws BeansException { return (T) beanFactory.getBean(name); } /** * 获取类型为requiredType的对象 * * @param clz / * * @return / * * @throws BeansException / */ public static <T> T getBean(Class<T> clz) throws BeansException { return (T) beanFactory.getBean(clz); } /** * 如果BeanFactory包含一个与所给名称匹配的bean定义,则返回true * * @param name / * * @return boolean */ public static boolean containsBean(String name) { return beanFactory.containsBean(name); } /** * 判断以给定名字注册的bean定义是一个singleton还是一个prototype。 如果与给定名字相应的bean定义没有被找到,将会抛出一个异常(NoSuchBeanDefinitionException) * * @param name / * * @return boolean * * @throws NoSuchBeanDefinitionException / */ public static boolean isSingleton(String name) throws NoSuchBeanDefinitionException { return beanFactory.isSingleton(name); } /** * @param name / * * @return Class 注册对象的类型 * * @throws NoSuchBeanDefinitionException / */ public static Class<?> getType(String name) throws NoSuchBeanDefinitionException { return beanFactory.getType(name); } /** * 如果给定的bean名字在bean定义中有别名,则返回这些别名 * * @param name / * * @return / * * @throws NoSuchBeanDefinitionException */ public static String[] getAliases(String name) throws NoSuchBeanDefinitionException { return beanFactory.getAliases(name); } /** * 获取aop代理对象 * * @param invoker / * * @return / */ @SuppressWarnings("unchecked") public static <T> T getAopProxy(T invoker) { return (T) AopContext.currentProxy(); } }
[ "jay@JaydeMacBook-Pro.local" ]
jay@JaydeMacBook-Pro.local
f2ef3f9e64e298fff6436179b948dc3bd3103748
309995c813a0700bb6b005aa9847962c5b6de2b8
/flink-streaming-java/src/test/java/org/apache/flink/streaming/runtime/tasks/MultipleInputStreamTaskChainedSourcesCheckpointingTest.java
5f912ab0c6069949167e82cbc3cefc7cd64ba4a6
[ "MIT", "OFL-1.1", "ISC", "Apache-2.0", "BSD-3-Clause" ]
permissive
wangxiyuan/flink
5635a643bf6a96aa5abbdef3c9577ea89700bc9c
d126d94d3a0b9efc15ba60b976bff751c97cdd55
refs/heads/master
2021-06-27T21:47:27.188829
2020-12-09T09:33:03
2020-12-09T09:33:03
194,633,053
1
2
Apache-2.0
2023-08-15T07:25:52
2019-07-01T08:34:48
Java
UTF-8
Java
false
false
11,898
java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.flink.streaming.runtime.tasks; import org.apache.flink.api.common.eventtime.TimestampAssigner; import org.apache.flink.api.common.eventtime.WatermarkStrategy; import org.apache.flink.api.common.typeinfo.BasicTypeInfo; import org.apache.flink.api.connector.source.Boundedness; import org.apache.flink.api.connector.source.mocks.MockSource; import org.apache.flink.runtime.checkpoint.CheckpointMetaData; import org.apache.flink.runtime.checkpoint.CheckpointOptions; import org.apache.flink.runtime.checkpoint.CheckpointType; import org.apache.flink.runtime.io.network.api.CheckpointBarrier; import org.apache.flink.runtime.state.CheckpointStorageLocationReference; import org.apache.flink.streaming.api.graph.StreamConfig; import org.apache.flink.streaming.api.operators.SourceOperatorFactory; import org.apache.flink.streaming.runtime.streamrecord.StreamRecord; import org.apache.flink.streaming.runtime.tasks.MultipleInputStreamTaskTest.MapToStringMultipleInputOperatorFactory; import org.junit.Test; import java.util.ArrayDeque; import java.util.ArrayList; import java.util.concurrent.Future; import java.util.function.Supplier; import static org.apache.flink.streaming.runtime.tasks.MultipleInputStreamTaskTest.addSourceRecords; import static org.apache.flink.streaming.runtime.tasks.MultipleInputStreamTaskTest.buildTestHarness; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.contains; import static org.hamcrest.Matchers.containsInAnyOrder; import static org.hamcrest.Matchers.equalTo; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; /** * Tests for {@link MultipleInputStreamTask} combined with {@link org.apache.flink.streaming.api.operators.SourceOperator} chaining. */ public class MultipleInputStreamTaskChainedSourcesCheckpointingTest { private static final int MAX_STEPS = 100; private final CheckpointMetaData metaData = new CheckpointMetaData(1L, System.currentTimeMillis()); /** * In this scenario: * 1. checkpoint is triggered via RPC and source is blocked * 2. network inputs are processed until CheckpointBarriers are processed * 3. aligned checkpoint is performed */ @Test public void testSourceCheckpointFirst() throws Exception { try (StreamTaskMailboxTestHarness<String> testHarness = buildTestHarness()) { testHarness.setAutoProcess(false); ArrayDeque<Object> expectedOutput = new ArrayDeque<>(); CheckpointBarrier barrier = createBarrier(testHarness); addRecordsAndBarriers(testHarness, barrier); Future<Boolean> checkpointFuture = testHarness.getStreamTask().triggerCheckpointAsync(metaData, barrier.getCheckpointOptions(), false); processSingleStepUntil(testHarness, checkpointFuture::isDone); expectedOutput.add(new StreamRecord<>("44", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("44", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("47.0", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("47.0", TimestampAssigner.NO_TIMESTAMP)); ArrayList<Object> actualOutput = new ArrayList<>(testHarness.getOutput()); assertThat(actualOutput.subList(0, expectedOutput.size()), containsInAnyOrder(expectedOutput.toArray())); assertThat(actualOutput.get(expectedOutput.size()), equalTo(barrier)); } } /** * In this scenario: * 1. checkpoint is triggered via RPC and source is blocked * 2. unaligned checkpoint is performed * 3. all data from network inputs are processed */ @Test public void testSourceCheckpointFirstUnaligned() throws Exception { try (StreamTaskMailboxTestHarness<String> testHarness = buildTestHarness(true)) { testHarness.setAutoProcess(false); ArrayDeque<Object> expectedOutput = new ArrayDeque<>(); addRecords(testHarness); CheckpointBarrier barrier = createBarrier(testHarness); Future<Boolean> checkpointFuture = testHarness.getStreamTask().triggerCheckpointAsync(metaData, barrier.getCheckpointOptions(), false); processSingleStepUntil(testHarness, checkpointFuture::isDone); assertThat(testHarness.getOutput(), contains(barrier)); testHarness.processAll(); expectedOutput.add(new StreamRecord<>("44", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("44", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("47.0", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("47.0", TimestampAssigner.NO_TIMESTAMP)); ArrayList<Object> actualOutput = new ArrayList<>(testHarness.getOutput()); assertThat(actualOutput.subList(1, expectedOutput.size() + 1), containsInAnyOrder(expectedOutput.toArray())); } } /** * In this scenario: * 1a. network inputs are processed until CheckpointBarriers are processed * 1b. source records are processed at the same time * 2. checkpoint is triggered via RPC * 3. aligned checkpoint is performed */ @Test public void testSourceCheckpointLast() throws Exception { try (StreamTaskMailboxTestHarness<String> testHarness = buildTestHarness()) { testHarness.setAutoProcess(false); ArrayDeque<Object> expectedOutput = new ArrayDeque<>(); CheckpointBarrier barrier = createBarrier(testHarness); addRecordsAndBarriers(testHarness, barrier); testHarness.processAll(); Future<Boolean> checkpointFuture = testHarness.getStreamTask().triggerCheckpointAsync(metaData, barrier.getCheckpointOptions(), false); processSingleStepUntil(testHarness, checkpointFuture::isDone); expectedOutput.add(new StreamRecord<>("42", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("42", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("42", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("44", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("44", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("47.0", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("47.0", TimestampAssigner.NO_TIMESTAMP)); ArrayList<Object> actualOutput = new ArrayList<>(testHarness.getOutput()); assertThat(actualOutput.subList(0, expectedOutput.size()), containsInAnyOrder(expectedOutput.toArray())); assertThat(actualOutput.get(expectedOutput.size()), equalTo(barrier)); } } /** * In this scenario: * 1. network inputs are processed until CheckpointBarriers are processed * 2. there are no source records to be processed * 3. checkpoint is triggered on first received CheckpointBarrier * 4. unaligned checkpoint is performed at some point of time blocking the source * 5. more source records are added, that shouldn't be processed */ @Test public void testSourceCheckpointLastUnaligned() throws Exception { boolean unaligned = true; try (StreamTaskMailboxTestHarness<String> testHarness = buildTestHarness(unaligned)) { testHarness.setAutoProcess(false); ArrayDeque<Object> expectedOutput = new ArrayDeque<>(); addNetworkRecords(testHarness); CheckpointBarrier barrier = createBarrier(testHarness); addBarriers(testHarness, barrier); testHarness.processAll(); addSourceRecords(testHarness, 1, 1337, 1337, 1337); testHarness.processAll(); expectedOutput.add(new StreamRecord<>("44", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("44", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("47.0", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(new StreamRecord<>("47.0", TimestampAssigner.NO_TIMESTAMP)); expectedOutput.add(barrier); assertThat(testHarness.getOutput(), containsInAnyOrder(expectedOutput.toArray())); } } @Test public void testOnlyOneSource() throws Exception { try (StreamTaskMailboxTestHarness<String> testHarness = new StreamTaskMailboxTestHarnessBuilder<>(MultipleInputStreamTask::new, BasicTypeInfo.STRING_TYPE_INFO) .modifyExecutionConfig(config -> config.enableObjectReuse()) .addSourceInput( new SourceOperatorFactory<>( new MockSource(Boundedness.BOUNDED, 1), WatermarkStrategy.noWatermarks())) .setupOutputForSingletonOperatorChain(new MapToStringMultipleInputOperatorFactory(1)) .build()) { testHarness.setAutoProcess(false); ArrayDeque<Object> expectedOutput = new ArrayDeque<>(); addSourceRecords(testHarness, 0, 42, 43, 44); processSingleStepUntil(testHarness, () -> !testHarness.getOutput().isEmpty()); expectedOutput.add(new StreamRecord<>("42", TimestampAssigner.NO_TIMESTAMP)); CheckpointBarrier barrier = createBarrier(testHarness); Future<Boolean> checkpointFuture = testHarness.getStreamTask().triggerCheckpointAsync(metaData, barrier.getCheckpointOptions(), false); processSingleStepUntil(testHarness, checkpointFuture::isDone); ArrayList<Object> actualOutput = new ArrayList<>(testHarness.getOutput()); assertThat(actualOutput.subList(0, expectedOutput.size()), containsInAnyOrder(expectedOutput.toArray())); assertThat(actualOutput.get(expectedOutput.size()), equalTo(barrier)); } } private void addRecordsAndBarriers(StreamTaskMailboxTestHarness<String> testHarness, CheckpointBarrier checkpointBarrier) throws Exception { addRecords(testHarness); addBarriers(testHarness, checkpointBarrier); } private CheckpointBarrier createBarrier(StreamTaskMailboxTestHarness<String> testHarness) { StreamConfig config = testHarness.getStreamTask().getConfiguration(); CheckpointOptions checkpointOptions = CheckpointOptions.create( CheckpointType.CHECKPOINT, CheckpointStorageLocationReference.getDefault(), config.isExactlyOnceCheckpointMode(), config.isUnalignedCheckpointsEnabled(), config.getAlignmentTimeout()); return new CheckpointBarrier(metaData.getCheckpointId(), metaData.getTimestamp(), checkpointOptions); } private void addBarriers(StreamTaskMailboxTestHarness<String> testHarness, CheckpointBarrier checkpointBarrier) throws Exception { testHarness.processEvent(checkpointBarrier, 0); testHarness.processEvent(checkpointBarrier, 1); } private void addRecords(StreamTaskMailboxTestHarness<String> testHarness) throws Exception { addSourceRecords(testHarness, 1, 42, 42, 42); addNetworkRecords(testHarness); } private void addNetworkRecords(StreamTaskMailboxTestHarness<String> testHarness) throws Exception { testHarness.processElement(new StreamRecord<>("44", TimestampAssigner.NO_TIMESTAMP), 0); testHarness.processElement(new StreamRecord<>("44", TimestampAssigner.NO_TIMESTAMP), 0); testHarness.processElement(new StreamRecord<>(47d, TimestampAssigner.NO_TIMESTAMP), 1); testHarness.processElement(new StreamRecord<>(47d, TimestampAssigner.NO_TIMESTAMP), 1); } private void processSingleStepUntil(StreamTaskMailboxTestHarness<String> testHarness, Supplier<Boolean> condition) throws Exception { assertFalse(condition.get()); for (int i = 0; i < MAX_STEPS && !condition.get(); i++) { testHarness.processSingleStep(); } assertTrue(condition.get()); } }
[ "pnowojski@users.noreply.github.com" ]
pnowojski@users.noreply.github.com
ce2ad3b68902f4997e8585be3b0d6ff76de982b5
68959e58550aff897f193d32273fa44695758ce8
/app/src/main/java/com/lgq/fruitgrower/view/adapter/StatusAdapter.java
e6a04ee403d887da68bd979562f5d65f3923b964
[]
no_license
lgq895767507/FruitGrower
0e1b0e6989d95f9d69df21668acde88252d5f310
f70fd96d66e766a8f89b27ef90e5cf5d97eb136e
refs/heads/master
2021-01-21T04:46:55.847474
2018-02-27T14:30:45
2018-02-27T14:30:45
50,713,063
3
0
null
null
null
null
UTF-8
Java
false
false
8,771
java
package com.lgq.fruitgrower.view.adapter; import android.content.Context; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Color; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.ColorDrawable; import android.graphics.drawable.Drawable; import android.support.v7.widget.RecyclerView; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; import android.widget.FrameLayout; import android.widget.ImageButton; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; import android.widget.Toast; import com.bumptech.glide.DrawableRequestBuilder; import com.bumptech.glide.Glide; import com.bumptech.glide.load.engine.DiskCacheStrategy; import com.lgq.fruitgrower.R; import com.lgq.fruitgrower.model.beans.Goods; import com.lgq.fruitgrower.model.beans.Pubilsh; import com.lgq.fruitgrower.model.constance.Constance; import com.lgq.fruitgrower.view.utils.ToastUtils; import com.lgq.fruitgrower.view.widget.WrapHeightGridView; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; /** * Created by lgq on 16-3-14. */ public class StatusAdapter extends RecyclerView.Adapter<StatusAdapter.MyViewHolder> { //获取上下文 private Context context; private ArrayList<Pubilsh> datas; //hashMap 保存 private static HashMap<Integer,Boolean> hashChange = new HashMap<>(); MyViewHolder.ItemClick itemClick; public ArrayList<Pubilsh> getDatas() { return datas; } public StatusAdapter(MyViewHolder.ItemClick itemClick) { this.itemClick = itemClick; datas = new ArrayList<>(); } @Override public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { context = parent.getContext(); MyViewHolder holder = new MyViewHolder(LayoutInflater.from(context).inflate(R.layout.item_card_view, parent, false), itemClick); return holder; } @Override public void onBindViewHolder(MyViewHolder holder, int position) { //设置头像 if (datas.get(position).getImg() != null) { Log.i("lgq", "position" + position); Glide.with(context) .load(datas.get(position).getPhoto().getFileUrl(context)) .into(holder.iv_avatar); } else { Bitmap defaultImg = BitmapFactory.decodeResource(this.context.getResources(), R.mipmap.logo); holder.iv_avatar.setImageBitmap(defaultImg); } //设置名字 if (datas.get(position).getName() != null){ holder.tv_subhead.setText(datas.get(position).getName()); }else{ holder.tv_subhead.setText(datas.get(position).getEmail()); } //设置发布时间 holder.tv_caption.setText(datas.get(position).getCreatedAt()); //设置内容 holder.tv_content.setText(datas.get(position).getContent()); //设置图片内容,并缓存图片和缩略图片,增强应用的性能增强。 if (datas.get(position).getPhoto() != null) { Log.i("lgq", "position" + position); Glide.with(context) .load(datas.get(position).getPhoto().getFileUrl(context)) .thumbnail(Constance.SizeHalf) .diskCacheStrategy(DiskCacheStrategy.ALL) .into(holder.iv_image); holder.include_status_image.setVisibility(View.VISIBLE); holder.iv_image.setVisibility(View.VISIBLE); } else { holder.include_status_image.setVisibility(View.GONE); holder.iv_image.setVisibility(View.GONE); } Log.i("lgq","hashMap:"+hashChange.get(position)); if (hashChange.get(position) == null) { holder.iv_like_bottom.setImageDrawable(context.getResources().getDrawable(R.mipmap.timeline_icon_like_disable)); } else if (hashChange.get(position)) { holder.iv_like_bottom.setImageDrawable(context.getResources().getDrawable(R.mipmap.timeline_icon_like)); }else{ holder.iv_like_bottom.setImageDrawable(context.getResources().getDrawable(R.mipmap.timeline_icon_like_disable)); } } @Override public int getItemCount() { return datas.size(); } public static class MyViewHolder extends RecyclerView.ViewHolder implements AdapterView.OnClickListener { public ImageView iv_avatar; public TextView tv_subhead; public TextView tv_caption; public TextView tv_content; public ImageView iv_like_bottom; public ImageView iv_image; public WrapHeightGridView gv_images; public TextView tv_retweeted_content; public LinearLayout ll_share_bottom; public LinearLayout ll_comment_bottom; public LinearLayout ll_like_bottom; public FrameLayout include_status_image; public LinearLayout ll_card_content; //设置点赞的改变值 private boolean isChanged = false; //region 回调接口 ItemClick itemClick; public interface ItemClick { void onBtnCommentClick(int position); void onBtnShareClick(int position); void onRootViewClick(int position); void onBtnLikeClick(int position); void onBtnUnLikeClick(int position); } //endregion public MyViewHolder(View itemView, ItemClick itemClick) { super(itemView); this.itemClick = itemClick; iv_avatar = (ImageView) itemView.findViewById(R.id.iv_avatar); tv_subhead = (TextView) itemView.findViewById(R.id.tv_subhead); tv_caption = (TextView) itemView.findViewById(R.id.tv_caption); tv_content = (TextView) itemView.findViewById(R.id.tv_content); iv_like_bottom = (ImageView) itemView.findViewById(R.id.iv_like_bottom); iv_image = (ImageView) itemView.findViewById(R.id.iv_image); gv_images = (WrapHeightGridView) itemView.findViewById(R.id.gv_images); tv_retweeted_content = (TextView) itemView.findViewById(R.id.tv_retweeted_content); ll_share_bottom = (LinearLayout) itemView.findViewById(R.id.ll_share_bottom); ll_comment_bottom = (LinearLayout) itemView.findViewById(R.id.ll_comment_bottom); ll_like_bottom = (LinearLayout) itemView.findViewById(R.id.ll_like_bottom); include_status_image = (FrameLayout) itemView.findViewById(R.id.include_status_image); ll_card_content = (LinearLayout) itemView.findViewById(R.id.ll_card_content); ll_card_content.setOnClickListener(this); ll_comment_bottom.setOnClickListener(this); ll_share_bottom.setOnClickListener(this); ll_like_bottom.setOnClickListener(this); } @Override public void onClick(View v) { switch (v.getId()) { case R.id.ll_card_content: if (itemClick != null) { itemClick.onRootViewClick(getAdapterPosition()); } break; case R.id.ll_share_bottom: if (itemClick != null) { itemClick.onBtnShareClick(getAdapterPosition()); } break; case R.id.ll_comment_bottom: if (itemClick != null) { itemClick.onBtnCommentClick(getAdapterPosition()); } break; case R.id.ll_like_bottom: if (itemClick != null) { if (isChanged) { //设置点击背景 Drawable drawableLiled = v.getResources().getDrawable(R.mipmap.timeline_icon_like_disable); iv_like_bottom.setImageDrawable(drawableLiled); itemClick.onBtnUnLikeClick(getAdapterPosition()); }else { Drawable drawableLiled = v.getResources().getDrawable(R.mipmap.timeline_icon_like); iv_like_bottom.setImageDrawable(drawableLiled); itemClick.onBtnLikeClick(getAdapterPosition()); } isChanged = !isChanged; hashChange.put(getAdapterPosition(),isChanged); } break; } } } }
[ "gqliu1@lewatek.com" ]
gqliu1@lewatek.com
259ed03b15c97c36a1960335eb4581ab4c62b9c5
45a9161e35385b17827c1409e91dc8b3168ce1e1
/app/src/test/java/bd/com/text/ExampleUnitTest.java
349604b51d833d4efbc2e092f52e167923667d67
[]
no_license
rzhaolin/Test
4e74b00aac71753e84a3bf7aebf7e3af9397efe0
e7e0a4dad5fe78cce0c34c74448d3cc771b15c20
refs/heads/master
2021-01-10T03:54:29.271807
2016-03-25T05:43:50
2016-03-25T05:43:50
54,697,029
0
0
null
null
null
null
UTF-8
Java
false
false
304
java
package bd.com.text; import org.junit.Test; import static org.junit.Assert.*; /** * To work on unit tests, switch the Test Artifact in the Build Variants view. */ public class ExampleUnitTest { @Test public void addition_isCorrect() throws Exception { assertEquals(4, 2 + 2); } }
[ "rizhao.lin@baidao.com" ]
rizhao.lin@baidao.com
f1b5045a13d63d545953d6c55e83f698bbd190af
37362a66cc13c72c67da854c8462395566962849
/wlwgc-util/src/main/java/com/dao/util/comm/MyBeanFactory.java
b93fc010e545224127811ea9999084bc6e2fc353
[]
no_license
wanwujiedao/wlwgc
0f4289fee6b9aa76ebafe8beccbe28cb0c48a2ed
9fa6c75303639759c9ff05301465e548a5ec8925
refs/heads/master
2021-01-22T19:55:24.390959
2017-03-17T02:53:53
2017-03-17T02:53:53
85,264,253
0
1
null
null
null
null
UTF-8
Java
false
false
883
java
package com.dao.util.comm; /** * Created by back on 2016/1/18. */ import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; public class MyBeanFactory implements ApplicationContextAware { private static ApplicationContext context = null; public void setApplicationContext(ApplicationContext arg0) throws BeansException { context = arg0; System.out.println("MyBeanFactory is start"); } public static Object getBean(String name) { if(context==null) { return null; } return context.getBean(name); } public static <T> T getBean(Class<T> clname) { if(context==null) { return null; } return context.getBean(clname); } }
[ "2472591219@qq.com" ]
2472591219@qq.com
10f7470a2147c759098a2c7925da2d1fb1e7adf0
2388a977f81c0794ca5ddb8bb0dad0c11805f56b
/src/me/martin/main/Commands/ConfigReload.java
63866f8b5bc33dcf1dbfc95dfa2573cab88d5924
[]
no_license
yungmartin/theminingdeadrt
6d25b883ad2d0abd6fffd90670f0dc3bc9c00606
a0da23306a94d875052c6066e8fb0b02db268a6b
refs/heads/master
2023-07-06T10:57:04.593851
2021-08-11T19:36:55
2021-08-11T19:36:55
393,679,630
1
1
null
null
null
null
UTF-8
Java
false
false
1,130
java
package me.martin.main.Commands; import me.martin.main.Main; import me.martin.main.Utils.Utils; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; public class ConfigReload implements CommandExecutor { Main main; public ConfigReload(Main main){ this.main = main; } @Override public boolean onCommand(CommandSender commandSender, Command command, String s, String[] args) { if(commandSender instanceof Player){ Player player = (Player) commandSender; if(args.length > 0) { if(args[0].equalsIgnoreCase("reload")) { main.reloadConfig(); player.sendMessage(Utils.chatColor("&8[&a●&8] &7Config has been reloaded!")); } }else{ player.sendMessage(" "); player.sendMessage(Utils.chatColor("&c/config reload &7- &7&oReloads configuration file")); player.sendMessage(" "); } } return false; } }
[ "unconfigured@null.spigotmc.org" ]
unconfigured@null.spigotmc.org
c3c77d7cc16332a3e88720c619b4fb1c5a6163db
663add9b2dbc56fac67cb417f9b40d3477dad927
/core/src/com/mygdx/screens/LoadingScreen.java
16a71c5256886e2aab94e83475c3dc7b9ce76e6a
[]
no_license
manugs92/ProyectTesting
e4eb9546f2176bb8f36e8f175abf171a4cbc9d13
bd969408dce37d9eb7b303c232ee6d269b035b16
refs/heads/master
2020-04-30T02:22:30.815631
2019-06-18T02:31:16
2019-06-18T02:31:16
176,557,630
0
0
null
null
null
null
UTF-8
Java
false
false
450
java
package com.mygdx.screens; import com.mygdx.game.MyGdxGameScreen; import com.mygdx.managers.MyGdxGameScreenManager; /* * Screen usada para pantallas de carga. * */ public class LoadingScreen extends MyGdxGameScreen { public LoadingScreen(MyGdxGameScreenManager myGdxGameScreenManagerR) { super(myGdxGameScreenManagerR); } @Override public void show() { } @Override public void render(float delta) { } }
[ "mgomez@elpuig.xeill.net" ]
mgomez@elpuig.xeill.net
867da18a1a5907583d050726f49bfc65166ca26e
b93b1ab664d17d17712cec5171c219391097e5fc
/src/main/java/me/earth/phobos/features/modules/movement/StepOld.java
1b196d2648a872a409227bb597bd2728bb16252e
[]
no_license
3000IQPlay/phobos-1.6.9-src-leak
03a862779e94b22e8570e22c0329a2b08fa372b9
2793ec10779bca00df34d9da8dfa0f2125576307
refs/heads/main
2023-07-10T16:41:01.909458
2021-08-16T10:31:40
2021-08-16T10:31:40
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,610
java
package me.earth.phobos.features.modules.movement; import me.earth.phobos.features.modules.Module; import me.earth.phobos.features.setting.Setting; import net.minecraft.block.Block; import net.minecraft.block.BlockAir; import net.minecraft.block.material.Material; import net.minecraft.network.play.client.CPacketPlayer; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; public class StepOld extends Module { private static StepOld instance; final double[] twoFiveOffset = new double[]{0.425, 0.821, 0.699, 0.599, 1.022, 1.372, 1.652, 1.869, 2.019, 1.907}; private final double[] oneblockPositions = new double[]{0.42, 0.75}; private final double[] twoblockPositions = new double[]{0.4, 0.75, 0.5, 0.41, 0.83, 1.16, 1.41, 1.57, 1.58, 1.42}; private final double[] futurePositions = new double[]{0.42, 0.78, 0.63, 0.51, 0.9, 1.21, 1.45, 1.43}; private final double[] threeBlockPositions = new double[]{0.42, 0.78, 0.63, 0.51, 0.9, 1.21, 1.45, 1.43, 1.78, 1.63, 1.51, 1.9, 2.21, 2.45, 2.43}; private final double[] fourBlockPositions = new double[]{0.42, 0.78, 0.63, 0.51, 0.9, 1.21, 1.45, 1.43, 1.78, 1.63, 1.51, 1.9, 2.21, 2.45, 2.43, 2.78, 2.63, 2.51, 2.9, 3.21, 3.45, 3.43}; public Setting<Boolean> vanilla = this.register(new Setting<Boolean>("Vanilla", false)); public Setting<Float> stepHeightVanilla = this.register(new Setting<Object>("VHeight", Float.valueOf(2.0f), Float.valueOf(0.0f), Float.valueOf(4.0f), v -> this.vanilla.getValue())); public Setting<Integer> stepHeight = this.register(new Setting<Object>("Height", Integer.valueOf(2), Integer.valueOf(1), Integer.valueOf(4), v -> this.vanilla.getValue() == false)); public Setting<Boolean> spoof = this.register(new Setting<Object>("Spoof", Boolean.valueOf(true), v -> this.vanilla.getValue() == false)); public Setting<Integer> ticks = this.register(new Setting<Object>("Delay", Integer.valueOf(3), Integer.valueOf(0), Integer.valueOf(25), v -> this.spoof.getValue() != false && this.vanilla.getValue() == false)); public Setting<Boolean> turnOff = this.register(new Setting<Object>("Disable", Boolean.valueOf(false), v -> this.vanilla.getValue() == false)); public Setting<Boolean> check = this.register(new Setting<Object>("Check", Boolean.valueOf(true), v -> this.vanilla.getValue() == false)); public Setting<Boolean> small = this.register(new Setting<Object>("Offset", Boolean.valueOf(false), v -> this.stepHeight.getValue() > 1 && this.vanilla.getValue() == false)); private double[] selectedPositions = new double[0]; private int packets; public StepOld() { super("StepOld", "Allows you to step up blocks", Module.Category.MOVEMENT, true, false, false); instance = this; } public static StepOld getInstance() { if (instance == null) { instance = new StepOld(); } return instance; } @Override public void onToggle() { StepOld.mc.player.stepHeight = 0.6f; } @Override public void onUpdate() { if (this.vanilla.getValue().booleanValue()) { StepOld.mc.player.stepHeight = this.stepHeightVanilla.getValue().floatValue(); return; } switch (this.stepHeight.getValue()) { case 1: { this.selectedPositions = this.oneblockPositions; break; } case 2: { this.selectedPositions = this.small.getValue() != false ? this.twoblockPositions : this.futurePositions; break; } case 3: { this.selectedPositions = this.twoFiveOffset; } case 4: { this.selectedPositions = this.fourBlockPositions; } } if (StepOld.mc.player.collidedHorizontally && StepOld.mc.player.onGround) { ++this.packets; } AxisAlignedBB bb = StepOld.mc.player.getEntityBoundingBox(); if (this.check.getValue().booleanValue()) { for (int x = MathHelper.floor(bb.minX); x < MathHelper.floor(bb.maxX + 1.0); ++x) { for (int z = MathHelper.floor(bb.minZ); z < MathHelper.floor(bb.maxZ + 1.0); ++z) { Block block = StepOld.mc.world.getBlockState(new BlockPos(x, bb.maxY + 1.0, z)).getBlock(); if (block instanceof BlockAir) continue; return; } } } if (StepOld.mc.player.onGround && !StepOld.mc.player.isInsideOfMaterial(Material.WATER) && !StepOld.mc.player.isInsideOfMaterial(Material.LAVA) && StepOld.mc.player.collidedVertically && StepOld.mc.player.fallDistance == 0.0f && !StepOld.mc.gameSettings.keyBindJump.pressed && StepOld.mc.player.collidedHorizontally && !StepOld.mc.player.isOnLadder() && (this.packets > this.selectedPositions.length - 2 || this.spoof.getValue().booleanValue() && this.packets > this.ticks.getValue())) { for (double position : this.selectedPositions) { StepOld.mc.player.connection.sendPacket(new CPacketPlayer.Position(StepOld.mc.player.posX, StepOld.mc.player.posY + position, StepOld.mc.player.posZ, true)); } StepOld.mc.player.setPosition(StepOld.mc.player.posX, StepOld.mc.player.posY + this.selectedPositions[this.selectedPositions.length - 1], StepOld.mc.player.posZ); this.packets = 0; if (this.turnOff.getValue().booleanValue()) { this.disable(); } } } }
[ "lorozin@hotmail.com" ]
lorozin@hotmail.com
5f13ce8448a15e967e9d2df9b7df1d90ccbe82ef
49ddef8047497ac0e915b99fdfd039b4fafd31b1
/MegaMart/src/main/java/com/ihub/model/WishList.java
1fd04bd54ad2204c04ffff4438ad68eaba3c8f54
[]
no_license
VSKBhat/VSKProject
5665b784621e29fc3ae764547de2124a7b1d457f
9302ae3152272f6354021dc0694dfed3549e75b7
refs/heads/master
2021-07-12T07:15:56.770519
2019-07-30T05:39:03
2019-07-30T05:39:03
197,907,282
0
0
null
null
null
null
UTF-8
Java
false
false
856
java
package com.ihub.model; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name="wishlist_tb") public class WishList { @Id private String wid; private String display_name; private String short_desc; private String category; public String getWid() { return wid; } public void setWid(String wid) { this.wid = wid; } public String getDisplay_name() { return display_name; } public void setDisplay_name(String display_name) { this.display_name = display_name; } public String getShort_desc() { return short_desc; } public void setShort_desc(String short_desc) { this.short_desc = short_desc; } public String getCategory() { return category; } public void setCategory(String category) { this.category = category; } }
[ "User@User-LP" ]
User@User-LP
63fab18190e659cbf877da87b2c5157db0d9cd9d
49ef877c1401a226d68ffd3f2f0e0b3a9f48b35f
/src/main/java/com/oracle/casb/leetcode/LinkedList.java
8b4e314f18c0457de33dd9fc2e3c8d82d777c93f
[]
no_license
abhijeet-srivastava/DailyAlgorithms
17880aa421cbebdacc5951d412e53953b393effd
05a1a3dc3136027f955d9ae3246aea11cd7ff25b
refs/heads/master
2023-08-28T02:29:19.027714
2023-07-28T03:45:30
2023-07-28T03:45:30
196,544,940
0
0
null
2019-07-12T08:55:56
2019-07-12T08:55:56
null
UTF-8
Java
false
false
5,785
java
package com.oracle.casb.leetcode; import com.oracle.casb.common.ListNode; import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; public class LinkedList { public static void main(String[] args) { LinkedList ll = new LinkedList(); //ll.testKReverse(); ll.testDutchSort(); } private Node flatten(Node root) { Node main = root; if (main == null) { return root; } while(main != null) { Node scndry = main.down; if (scndry != null) { merge(main, scndry); main.down = null; } main = main.right; } return root; } private void merge(Node main, Node scndry) { Node current = main; main = main.right; Node prev = main; while (scndry != null) { int mainData = (main != null) ? main.data : Integer.MAX_VALUE; int scndryData = (scndry != null) ? scndry.data : Integer.MAX_VALUE; if (mainData < scndryData) { prev = main; main = main.right; } else { scndry.right = main; prev.right = scndry; scndry = scndry.down; } } } public int[][] kClosest(int[][] points, int K) { List<int[]> arr = Arrays.stream(points) .sorted((a, b) -> (a[0]*a[0] + a[1]*a[1] - (b[0]*b[0] + b[1]*b[1]))) .limit(K) .collect(Collectors.toList()); int[][] ret = new int[K][]; final int[] i = {0}; arr.stream().forEach( a -> ret[i[0]++] = a ); return ret; } private void testDutchSort() { int[] arr = {0,2,1,0,0,2,1,3,3,3,2,2,1,1,3,2,1,0,0,1,0,2,0,2,3,3,2,1,2,3,1}; //dutchSort(arr); dutch4sort(arr); System.out.println(Arrays.stream(arr).boxed().map(String::valueOf).collect(Collectors.joining(","))); } private void testKReverse() { ListNode head = createList(); ListNode reverse = reverseKGroup(head, 3); } public void dutch4sort(int[] arr) { int lo = 0, mid = 0, hi = arr.length-1; while (mid <= hi) { if (arr[mid] == 0) { swap(arr, mid, lo); mid += 1; lo += 1; } else if (arr[mid] == 1) { mid += 1; } else { swap(arr, mid, hi); hi -= 1; } } lo = mid+1; hi = arr.length-1; while (lo <= hi) { if (arr[lo] == 2) { lo += 1; } else { swap(arr, lo, hi); hi -= 1; } } } public void dutchSort(int[] arr) { if(arr == null || arr.length ==0) { return; } int lo = 0, mid = 0, hi = arr.length - 1; while(mid <= hi) { if (arr[mid] == 0) { swap(arr, mid, lo); mid += 1; lo += 1; } else if (arr[mid] == 1) { mid += 1; } else if (arr[mid] == 2) { swap(arr, mid, hi); hi -= 1; } } } private void swap(int[] arr, int p1, int p2) { int tmp = arr[p1]; arr[p1] = arr[p2]; arr[p2] = tmp; } public ListNode reverseKGroup(ListNode head, int k) { ListNode curr = head; int count = 0; while (curr != null && count != k) { // find the k+1 node curr = curr.getNext(); count++; } if (count == k) { // if k+1 node is found curr = reverseKGroup(curr, k); // reverse list with k+1 node as head // head - head-pointer to direct part, // curr - head-pointer to reversed part; while (count-- > 0) { // reverse current k-group: ListNode tmp = head.getNext(); // tmp - next head in direct part head.setNext(curr); // preappending "direct" head to the reversed list curr = head; // move head of reversed part to a new node head = tmp; // move "direct" head to the next node in direct part } head = curr; } return head; } private ListNode reverseKGroup1(ListNode head, int k) { if (head == null) { return head; } int count = 1; ListNode last = head; while(count < k && last != null) { last = last.getNext(); count += 1; } if (count < k || last == null) { return head; } ListNode tmp = last.getNext(); reverseList(head, last); head.setNext(reverseKGroup(tmp, k)); head = last; return head; } private void reverseList(ListNode head, ListNode last) { ListNode start = head; ListNode prev = null; ListNode tmp = start.getNext(); start.setNext(null); while(prev != last && tmp != null) { ListNode next = tmp.getNext(); tmp.setNext(start); start = tmp; prev = tmp; tmp = next; } } private ListNode createList() { ListNode head = new ListNode(1); ListNode tmp = head; for (int i = 2; i <= 11; i++) { tmp.setNext(new ListNode(i)); tmp = tmp.getNext(); } return head; } private class Node { int data; Node right, down; Node(int data) { this.data = data; right = null; down = null; } } }
[ "abhijeet.srivastva@walmart.com" ]
abhijeet.srivastva@walmart.com
b1dbc8777a9c19ea9c814d5c7f5ad104c7f672f0
6a25fb10efb20eb1152994122487f67735d1c77d
/XML-project/Admin module/src/test/java/ftn/xmlws/adminmodule/AdminModuleApplicationTests.java
b86630d5533a16167bb850a2e3e445f7fe53de19
[]
no_license
filipetrovic/XML-and-Web-Services-project
5e3b2868ad45b9d00bbe1fe466eb96143029fab9
e70b717b3ba8cc4d92a2703411aa2d0df6adafd6
refs/heads/master
2020-03-19T20:57:32.868458
2018-06-24T09:25:47
2018-06-24T09:25:47
136,924,082
0
0
null
null
null
null
UTF-8
Java
false
false
343
java
package ftn.xmlws.adminmodule; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest public class AdminModuleApplicationTests { @Test public void contextLoads() { } }
[ "fpetrovic@ymail.com" ]
fpetrovic@ymail.com
a2a5e090d1ab6138928aa2a09c78765184cec0b7
32364ab81af8bf4d7c0d4283ab3077bc70cba8b8
/src/test/java/spring_framework/head_01_test/becomejavasenior_com/MyApplicationTest.java
084d50e7d326c6b151babdbd05dc2d2d32a63e33
[]
no_license
dimaSkalora/Spring_Easyjava_ru
77fc115bd1996d4b2b2f7e7e91488f3d42eff208
bbf9ee244df81174aca28c4dc8efa7e0cbd1b9be
refs/heads/master
2021-05-08T03:11:16.405255
2017-11-08T17:26:10
2017-11-08T17:26:10
108,232,637
0
0
null
null
null
null
UTF-8
Java
false
false
1,557
java
package spring_framework.head_01_test.becomejavasenior_com; import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import spring_framework.head_01.becomejavasenior_com.becomejavasenior.spring.di.consumer.MyApplication; import spring_framework.head_01.becomejavasenior_com.becomejavasenior.spring.di.services.MessageService; @Configuration @ComponentScan(value= "spring_framework.head_01.becomejavasenior_com.becomejavasenior.spring.di.consumer") public class MyApplicationTest { private AnnotationConfigApplicationContext context = null; @Bean public MessageService getMessageService() { return new MessageService(){ public boolean sendMessage(String msg, String rec) { System.out.println("Mock Service"); return true; } }; } @Before public void setUp() throws Exception { context = new AnnotationConfigApplicationContext(MyApplicationTest.class); } @After public void tearDown() throws Exception { context.close(); } @Test public void test() { MyApplication app = context.getBean(MyApplication.class); Assert.assertTrue(app.processMessage("Hi Dmytro", "dmytro@becomejavasenior_com.com")); } }
[ "timon2@ukr.net" ]
timon2@ukr.net
b93a1d68a62004a03e44b9267601258478396971
6839e7abfa2e354becd034ea46f14db3cbcc7488
/src/cn/com/sinosoft/action/shop/BillSaveAction.java
d121f35a583de7c5998f41b67917112c74b6d47e
[]
no_license
trigrass2/wj
aa2d310baa876f9e32a65238bcd36e7a2440b8c6
0d4da9d033c6fa2edb014e3a80715c9751a93cd5
refs/heads/master
2021-04-19T11:03:25.609807
2018-01-12T09:26:11
2018-01-12T09:26:11
null
0
0
null
null
null
null
UTF-8
Java
false
false
19,438
java
package cn.com.sinosoft.action.shop; import cn.com.sinosoft.entity.Member; import cn.com.sinosoft.entity.SDBillInfo; import cn.com.sinosoft.entity.SDBillTitle; import cn.com.sinosoft.entity.SDDeliverAddress; import cn.com.sinosoft.entity.SDOrder; import cn.com.sinosoft.service.AreaService; import cn.com.sinosoft.service.BindInfoForLoginService; import cn.com.sinosoft.service.SDBillTitleService; import cn.com.sinosoft.service.SDDeliverAddressService; import cn.com.sinosoft.service.SDOrderService; import com.sinosoft.framework.Config; import com.sinosoft.framework.data.DataTable; import com.sinosoft.framework.data.QueryBuilder; import com.sinosoft.framework.data.Transaction; import com.sinosoft.framework.utility.StringUtil; import com.sinosoft.lis.pubfun.PubFun; import com.sinosoft.platform.pub.NoUtil; import com.sinosoft.schema.SDRemarkSchema; import org.apache.commons.io.FileUtils; import org.json.JSONObject; import javax.annotation.Resource; import java.io.File; import java.io.IOException; import java.math.BigDecimal; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Arrays; import java.util.Calendar; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; /** * 前台Action类 - 开具发票 */ public class BillSaveAction extends BaseShopAction { /** * */ private static final long serialVersionUID = 4681069613613697836L; @Resource private BindInfoForLoginService bindInfoForLoginService; @Resource private AreaService areaService; @Resource private SDDeliverAddressService mSDDeliverAddressService; @Resource private SDOrderService sDOrderService; @Resource private SDBillTitleService mSDBillTitleService; private String memberID = "";// 登录会员ID private String billType; private String billTypeName; private List<SDDeliverAddress> deliverAddressList = new ArrayList<SDDeliverAddress>();// 邮寄地址信息表 private int deliverAddressCount = 0;// 已有邮寄地址数量 private int leftdeliverAddressCount = 0;// 可添加邮寄地址数量 // 订单额 大于 200 标记 private boolean moreThan200Flag = false; // 抬头数量 private int billTitleCount = 0; // 可添加抬头数量 private int leftbillTitleCount = 0; private String billRequireFlag; private SDOrder order; private List<SDBillTitle> billTitles = new ArrayList<SDBillTitle>(); // 投保人名称 private String applicantName; private String deliverProvinceName; private String deliverCityName; private String deliverDetailAddr; private String deliverName; private String deliverTel; private String deliverZipCode; private String titleName; private File fileUpload;//上传文件 private String fileUploadContentType;//格式同上"fileName"+ContentType private String fileUploadFileName;//格式同上"fileName"+FileName private String orderSns; private String titleId; private String billReqUrl; public String getBillReqUrl() { return billReqUrl; } public void setBillReqUrl(String billReqUrl) { this.billReqUrl = billReqUrl; } public String getTitleId() { return titleId; } public void setTitleId(String titleId) { this.titleId = titleId; } public String getOrderSns() { return orderSns; } public void setOrderSns(String orderSns) { this.orderSns = orderSns; } public String getFileUploadContentType() { return fileUploadContentType; } public void setFileUploadContentType(String fileUploadContentType) { this.fileUploadContentType = fileUploadContentType; } public String getFileUploadFileName() { return fileUploadFileName; } public void setFileUploadFileName(String fileUploadFileName) { this.fileUploadFileName = fileUploadFileName; } public File getFileUpload() { return fileUpload; } public void setFileUpload(File fileUpload) { this.fileUpload = fileUpload; } public String getDeliverProvinceName() { return deliverProvinceName; } public void setDeliverProvinceName(String deliverProvinceName) { this.deliverProvinceName = deliverProvinceName; } public String getDeliverCityName() { return deliverCityName; } public void setDeliverCityName(String deliverCityName) { this.deliverCityName = deliverCityName; } public String getDeliverDetailAddr() { return deliverDetailAddr; } public void setDeliverDetailAddr(String deliverDetailAddr) { this.deliverDetailAddr = deliverDetailAddr; } public String getDeliverName() { return deliverName; } public void setDeliverName(String deliverName) { this.deliverName = deliverName; } public String getDeliverTel() { return deliverTel; } public void setDeliverTel(String deliverTel) { this.deliverTel = deliverTel; } public String getDeliverZipCode() { return deliverZipCode; } public void setDeliverZipCode(String deliverZipCode) { this.deliverZipCode = deliverZipCode; } public String getTitleName() { return titleName; } public void setTitleName(String titleName) { this.titleName = titleName; } public String enterBilling() { String billType = getParameter("billType"); String orderSn = getParameter("orderSn"); billRequireFlag = getParameter("billRequireFlag"); orderSns = orderSn; String view = "error"; Member mMember = this.getLoginMember(); memberID = mMember.getId(); this.setBillType(billType); Map<String, String> billTypeMap = getBillTypeMap(); this.setBillTypeName(billTypeMap.get(billType)); deliverAddressList= mSDDeliverAddressService.getSDDeliverAddressInfo(memberID); if (deliverAddressList != null && deliverAddressList.size() >= 1) { deliverAddressCount = deliverAddressList.size(); } leftdeliverAddressCount = 5 - deliverAddressCount; //发票申请表下载地址 billReqUrl = new QueryBuilder("SELECT VALUE FROM zdconfig WHERE TYPE ='BillRequireTemplatePath'").executeString(); String[] orderSnArray = orderSn.split(","); if(orderSnArray.length==1){ // 订单 SDOrder o = sDOrderService.getOrderByOrderSn(orderSn); this.setOrder(o); BigDecimal totalAmount = o.getTotalAmount(); if (null != totalAmount && totalAmount.compareTo(new BigDecimal("200")) >= 0) { this.setMoreThan200Flag(true); } // 投保人姓名 QueryBuilder queryOrder = new QueryBuilder( "select appnt.applicantName,info.insuranceCompany from sdinformation info,sdinformationappnt appnt, sdorders o where " + " info.informationSn = appnt.informationSn " + " and info.orderSn = o.orderSn " + " and o.orderSn = '" + orderSn + "'"); DataTable applicantDt = queryOrder.executeDataTable(); if(applicantDt != null && applicantDt.getRowCount()>0){ titleName = applicantDt.getString(0, 0); billReqUrl = billReqUrl + applicantDt.getString(0, 1) + ".pdf"; } }else { BigDecimal totalAmount = new BigDecimal(0); List<String> orderSnList = Arrays.asList(orderSnArray); for (String orderSnItem : orderSnList) { // 订单 SDOrder o = sDOrderService.getOrderByOrderSn(orderSnItem); this.setOrder(o); if (null != o.getTotalAmount()) { totalAmount = totalAmount.add(o.getTotalAmount()); } } if (totalAmount.compareTo(new BigDecimal("200")) >= 0) { this.setMoreThan200Flag(true); } // 投保人姓名 QueryBuilder queryOrder = new QueryBuilder( "select appnt.applicantName from sdinformation info,sdinformationappnt appnt, sdorders o where " + " info.informationSn = appnt.informationSn " + " and info.orderSn = o.orderSn " + " and o.orderSn in ('" + orderSn.replace(",", "','") + "')"); titleName = queryOrder.executeString(); } // 发票抬头 List<SDBillTitle> billTitleList = mSDBillTitleService.getSDBillTitle(memberID); if (null != billTitleList) { for(int i = 0; i < billTitleList.size(); i++){ billTitles.add(billTitleList.get(i)); } } if (billTitles != null && billTitles.size() >= 1) { billTitleCount = billTitles.size(); } leftbillTitleCount = 10 - billTitleCount; view = "billing"; return view; } /** * 获取发票类型名称 * * @return */ private Map<String, String> getBillTypeMap(){ DataTable dtBillType = new QueryBuilder("SELECT c.codeValue,c.codeName FROM zdcode c WHERE c.ParentCode = 'billType' ").executeDataTable(); Map<String, String> billTypeMap = new HashMap<String, String>(); if (dtBillType != null && dtBillType.getRowCount() > 0) { int len = dtBillType.getRowCount(); for (int i = 0; i < len; i++) { billTypeMap.put(dtBillType.get(i, 0).toString(), (String)dtBillType.get(i, 1)); } } return billTypeMap; } /** * 发票申请时数据保存处理 */ public String saveBillInfo(){ Map<String, Object> tData = new HashMap<String, Object>(); if (!checkLogin()) { tData.put("tFlag", "Err"); tData.put("Msg", "请登陆后,再进行此操作!"); JSONObject jsonObject = new JSONObject(tData); return ajax(jsonObject.toString(), "text/html"); } Member mMember = this.getLoginMember(); String destPath = getRequest().getSession().getServletContext().getRealPath("upload"); String dateStr = new SimpleDateFormat("yyyyMMddHHmmss").format(Calendar.getInstance().getTime()); String sitUrl = getRequest().getContextPath().replace("//", "/"); String basePath = Config.getFrontServerContextPath() + "/" +sitUrl; String savePath = "/" + mMember.getId() +"/" + dateStr + fileUploadFileName; try { SDBillInfo billInfo = new SDBillInfo(); StringBuffer sb = new StringBuffer(); String[] orderSnArr = orderSns.split(","); for (int i = 0; i < orderSnArr.length; i++) { sb.append("'"); sb.append(orderSnArr[i]); sb.append("'"); sb.append(","); } if(!orderSns.isEmpty()){ String totalAmount= new QueryBuilder("SELECT SUM(totalamount) FROM sdorders WHERE orderSn IN ( " + sb.deleteCharAt(sb.length() -1).toString() + ")").executeString(); if(!totalAmount.isEmpty()){ billInfo.setBillAmount(totalAmount); } } if("04".equals(billType)){ billInfo.setBillReqUrl(basePath + "/upload" +savePath); } if("01".equals(billType)){ titleName = "定额"; } billInfo.setBillTitle(titleName); billInfo.setBillType(billType); billInfo.setDeliverCity(deliverCityName); billInfo.setDeliverDate(dateStr); billInfo.setDeliverDetailAddr(deliverDetailAddr); billInfo.setDeliverName(deliverName); billInfo.setDeliverProvince(deliverProvinceName); billInfo.setDeliverTel(deliverTel); billInfo.setDeliverZipCode(deliverZipCode); billInfo.setMemberId(mMember.getId()); billInfo.setModifyUser(mMember.getUsername()); billInfo.setStatus("01"); billInfo.setOrderSns(orderSns); Map<String,String> result=saveBillInfo(billInfo); String flag=result.get("flag"); if("true".equals(flag)){ if(fileUpload != null && "04".equals(billType)){ FileUtils.copyFile(fileUpload, new File(destPath + savePath)); } tData.put("tFlag", "Suc"); tData.put("Msg", "申请成功!"); }else{ tData.put("tFlag", "Err"); String message=result.get("message"); if(StringUtil.isEmpty(message)){ tData.put("Msg", "申请失败!"); }else{ tData.put("Msg",message); } } } catch (IOException e) { logger.error(e.getMessage(), e); tData.put("tFlag", "Err"); tData.put("Msg", "申请失败!"); } JSONObject jsonObject = new JSONObject(tData); return ajax(jsonObject.toString(), "text/html"); } /** * 申请信息保存 */ private Map<String,String> saveBillInfo(SDBillInfo billInfo) { Map<String,String> result=new HashMap<String,String>(); result.put("flag", "true"); String orderSns = billInfo.getOrderSns(); String[] orderSnArr = orderSns.split(","); Transaction trans = new Transaction(); Date updateDateTime = new Date(); String billId = NoUtil.getMaxNo("sdbillinfo"); String insertBillInfoSql = "insert into sdbillinfo(id,billAmount,billReqUrl,billTitle,billType,deliverCity,deliverDate,deliverDetailAddr,deliverName,deliverProvince,deliverTel,deliverZipCode,memberId,status,modifyUser,updateDate,createUser,createDate) values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)"; QueryBuilder qbBillInsert = new QueryBuilder(insertBillInfoSql); qbBillInsert.add(billId); qbBillInsert.add(billInfo.getBillAmount()); qbBillInsert.add(billInfo.getBillReqUrl()); qbBillInsert.add(billInfo.getBillTitle()); qbBillInsert.add(billInfo.getBillType()); qbBillInsert.add(billInfo.getDeliverCity()); qbBillInsert.add(billInfo.getDeliverDate()); qbBillInsert.add(billInfo.getDeliverDetailAddr()); qbBillInsert.add(billInfo.getDeliverName()); qbBillInsert.add(billInfo.getDeliverProvince()); qbBillInsert.add(billInfo.getDeliverTel()); qbBillInsert.add(billInfo.getDeliverZipCode()); qbBillInsert.add(billInfo.getMemberId()); qbBillInsert.add(billInfo.getStatus()); qbBillInsert.add(billInfo.getMemberId()); qbBillInsert.add(updateDateTime); qbBillInsert.add(billInfo.getMemberId()); qbBillInsert.add(updateDateTime); trans.add(qbBillInsert); String remark = "【发票索要】"; if (StringUtil.isNotEmpty(billInfo.getDeliverProvince())) { remark += billInfo.getDeliverProvince(); } if (StringUtil.isNotEmpty(billInfo.getDeliverCity())) { remark += billInfo.getDeliverCity(); } if (StringUtil.isNotEmpty(billInfo.getDeliverDetailAddr())) { remark += billInfo.getDeliverDetailAddr(); } remark += (","+billInfo.getDeliverName()); remark += (","+billInfo.getDeliverTel()+",自助申请"); for (int i = 0; i < orderSnArr.length; i++) { orderSns = orderSnArr[i]; String selectBillInfoSql = "select count(1) from sdbillinfo s1 , sdbillorderref s2 where s1.id=s2.billId and s1.status!='04' and s2.orderSn = ? "; QueryBuilder qbSelectBillInfo = new QueryBuilder(selectBillInfoSql); qbSelectBillInfo.add(orderSns); int row=qbSelectBillInfo.executeInt(); if (row> 0) { result.put("flag", "false"); result.put("message", "订单:"+orderSns+"已申请开具发票,不能重复申请!"); return result; // Map<String, Object> map = new HashMap<String, Object>(); // DataColumn[] col = dtBillInfo.getDataRow(0).getDataColumns(); // for (int j = 0; j < col.length; j++) { // map.put((String)col[j].getColumnName(), dtBillInfo.get(0, col[j].getColumnName())); // } // billId = (String)map.get("id"); // // String updateBillInfoSql = "update sdbillinfo set billAmount=?,billReqUrl=?,billTitle=?,billType=?,deliverCity=?,deliverDate=?,deliverDetailAddr=?,deliverName=?,deliverProvince=?,deliverTel=?,deliverZipCode=?,memberId=?,status=?,modifyUser=?,modifyDate=? where id=?"; // QueryBuilder qbBillUpdate = new QueryBuilder(updateBillInfoSql); // qbBillUpdate.add(billInfo.getBillAmount()); // qbBillUpdate.add(billInfo.getBillReqUrl()); // qbBillUpdate.add(billInfo.getBillTitle()); // qbBillUpdate.add(billInfo.getBillType()); // qbBillUpdate.add(billInfo.getDeliverCity()); // qbBillUpdate.add(billInfo.getDeliverDate()); // qbBillUpdate.add(billInfo.getDeliverDetailAddr()); // qbBillUpdate.add(billInfo.getDeliverName()); // qbBillUpdate.add(billInfo.getDeliverProvince()); // qbBillUpdate.add(billInfo.getDeliverTel()); // qbBillUpdate.add(billInfo.getDeliverZipCode()); // qbBillUpdate.add(billInfo.getMemberId()); // qbBillUpdate.add(billInfo.getStatus()); // qbBillUpdate.add(billInfo.getMemberId()); // qbBillUpdate.add(updateDateTime); // // qbBillUpdate.add(billId); // trans.add(qbBillUpdate); // // String deleteBillOrderRefSql = "delete from sdbillorderref where billId=?"; // QueryBuilder qbBillDelete = new QueryBuilder(deleteBillOrderRefSql); // qbBillDelete.add(billId); // trans.add(qbBillDelete); } String insertBillOrderRefSql = "insert into sdbillorderref(id,billId,memberId,orderSn,modifyUser,modifyDate,createUser,createDate) values(?,?,?,?,?,?,?,?)"; QueryBuilder qbBillOrderRefInsert = new QueryBuilder(insertBillOrderRefSql); String billOrderRefId = NoUtil.getMaxNo("sdbillorderref"); qbBillOrderRefInsert.add(billOrderRefId); qbBillOrderRefInsert.add(billId); qbBillOrderRefInsert.add(billInfo.getMemberId()); qbBillOrderRefInsert.add(orderSns); qbBillOrderRefInsert.add(billInfo.getMemberId()); qbBillOrderRefInsert.add(updateDateTime); qbBillOrderRefInsert.add(billInfo.getMemberId()); qbBillOrderRefInsert.add(updateDateTime); trans.add(qbBillOrderRefInsert); // 加保全记录 SDRemarkSchema schema = new SDRemarkSchema(); schema.setid(PubFun.GetNRemarkId()); schema.setremark(remark); schema.setorderSn(orderSns); schema.setOperateName(""); schema.setOperateTime(updateDateTime); schema.setOperateType("add"); schema.setprop1(""); schema.setprop2(""); schema.setupperId(""); trans.add(schema, Transaction.INSERT); } if(!trans.commit()){ result.put("flag", "false"); } return result; } /** * 检查当前用户是否登录成功 * * @return 判断是否登录 */ public boolean checkLogin() { Member member = getLoginMember(); if (member == null || "".equals(member)) { return false; } return true; } public String getBillType() { return billType; } public void setBillType(String billType) { this.billType = billType; } public String getBillTypeName() { return billTypeName; } public void setBillTypeName(String billTypeName) { this.billTypeName = billTypeName; } public String getMemberID() { return memberID; } public void setMemberID(String memberID) { this.memberID = memberID; } public List<SDDeliverAddress> getDeliverAddressList() { return deliverAddressList; } public void setDeliverAddressList(List<SDDeliverAddress> deliverAddressList) { this.deliverAddressList = deliverAddressList; } public int getDeliverAddressCount() { return deliverAddressCount; } public void setDeliverAddressCount(int deliverAddressCount) { this.deliverAddressCount = deliverAddressCount; } public int getLeftdeliverAddressCount() { return leftdeliverAddressCount; } public void setLeftdeliverAddressCount(int leftdeliverAddressCount) { this.leftdeliverAddressCount = leftdeliverAddressCount; } public SDOrder getOrder() { return order; } public void setOrder(SDOrder order) { this.order = order; } public boolean isMoreThan200Flag() { return moreThan200Flag; } public void setMoreThan200Flag(boolean moreThan200Flag) { this.moreThan200Flag = moreThan200Flag; } public int getBillTitleCount() { return billTitleCount; } public void setBillTitleCount(int billTitleCount) { this.billTitleCount = billTitleCount; } public int getLeftbillTitleCount() { return leftbillTitleCount; } public void setLeftbillTitleCount(int leftbillTitleCount) { this.leftbillTitleCount = leftbillTitleCount; } public String getApplicantName() { return applicantName; } public void setApplicantName(String applicantName) { this.applicantName = applicantName; } public String getBillRequireFlag() { return billRequireFlag; } public void setBillRequireFlag(String billRequireFlag) { this.billRequireFlag = billRequireFlag; } public List<SDBillTitle> getBillTitles() { return billTitles; } public void setBillTitles(List<SDBillTitle> billTitles) { this.billTitles = billTitles; } }
[ "liyinfeng0520@163.com" ]
liyinfeng0520@163.com
60303ca5ba9a51b184468ae06b3787daf3e62b81
63b4a0d07290bf69bd2005013f8c3c15ba52d9b3
/src/rollManager/Student.java
f3e0fcd41a1195bd101fb0164b37b043ea31d4ea
[]
no_license
pieemperor/ClassRollManager
3faaa786f1e1e1cca65e43d0854b8256de755e0f
e50c059c1470f08ba6a37e82020d1f0fdadc8567
refs/heads/master
2021-09-01T01:26:24.946511
2017-12-24T04:42:43
2017-12-24T04:42:43
115,239,657
0
0
null
null
null
null
UTF-8
Java
false
false
8,182
java
package rollManager; /** * --------------------------------------------------------------------------- * File name: Student.java * Project name: Project1 * --------------------------------------------------------------------------- * Creator's name and email: Dakota Cowell, cowelld@goldmail.etsu.edu * Course: CSCI 1260-002 * Creation Date: Feb 16, 2016 * --------------------------------------------------------------------------- */ /** * To be able to make Student objects to save their information * * <hr> * Date created: Feb 16, 2016 * <hr> * @author Dakota Cowell */ public class Student { private String lastName; //attribute to store a student's last name private String firstName; //attribute to store a student's first name private String major; //attribute to store a student's major private int hoursCompleted; //attribute to store hours completed private double gpa; //attribute to store gpa private String photoFile; //attribute to store a photo file private Classification classification; //enum attribute to store a classification /** * Constructor * * <hr> * Date created: Feb 16, 2016 * * */ public Student() { super ( ); setLastName("XXXXXX"); //setting last name to default setFirstName("XXXXXX"); //setting first name to default setMajor("XXXX"); //setting major to default setHoursCompleted(0); //setting hours completed to default setGpa(0.0); //setting gpa to default setPhotoFile("XXXX.XXX"); //setting photo file to default setClassification(Classification.OTHER); //setting classification to default } /** * Constructor * * <hr> * Date created: Feb 22, 2016 * * * @param firstName * @param lastName * @param major * @param hoursCompleted * @param gpa * @param photoFile * @param classification */ public Student (String firstName, String lastName, String major, int hoursCompleted, double gpa, String photoFile, Classification classification) { super ( ); setLastName(lastName); //setting last name to name passed in setFirstName(firstName); //setting first name to name passed in setMajor(major); //setting major to major passed in setHoursCompleted(hoursCompleted); //setting hoursCompleted to hours passed in setGpa(gpa); //setting gpa to number passed in setPhotoFile(photoFile); //setting photo file to name passed in setClassification(classification); //setting classification to classification passed in } /** * Constructor * * <hr> * Date created: Feb 22, 2016 * * * @param original */ public Student (Student original) { setFirstName(original.firstName); //set new students first name equal to original students first name setLastName(original.lastName);//set new students last name equal to original students last name setMajor(original.major); //set new students major equal to original students major setHoursCompleted(original.hoursCompleted); //set new students hours equal to original students hours setGpa(original.gpa); //set new students gpa equal to original students gpa setPhotoFile(original.photoFile); //set new students photo equal to original students photo setClassification(original.classification); //set new students classification equal to original students classification } /** * Method to get the students last name * * <hr> * Date created: Feb 22, 2016 * * <hr> * @return lastName returns a String of the Student's last name */ public String getLastName ( ) { return lastName; } /** * Method to set the students last name * * <hr> * Date created: Feb 22, 2016 * * <hr> * @param lastName */ public void setLastName (String lastName) { this.lastName = lastName; } /** * Method to get the students first name * * <hr> * Date created: Feb 22, 2016 * * <hr> * @return firstName returns a String of the Student's first name */ public String getFirstName ( ) { return firstName; } /** * Method to set the students first name * * <hr> * Date created: Feb 22, 2016 * * <hr> * @param firstName */ public void setFirstName (String firstName) { this.firstName = firstName; } /** * Method to get the students major * * <hr> * Date created: Feb 22, 2016 * * <hr> * @return major returns a String storing the Student's major */ public String getMajor ( ) { return major; } /** * Method to set the students major * * <hr> * Date created: Feb 22, 2016 * * <hr> * @param major */ public void setMajor (String major) { if(major.length() == 4) { this.major = major.toUpperCase(); } else { this.major = "XXXX"; } } /** * Method to get the students hours completed * * <hr> * Date created: Feb 22, 2016 * * <hr> * @return hoursCompleted returns an int of hours the student has completed */ public int getHoursCompleted ( ) { return hoursCompleted; } /** * Method to set the students hours completed * * <hr> * Date created: Feb 22, 2016 * * <hr> * @param hoursCompleted */ public void setHoursCompleted (int hoursCompleted) { if(hoursCompleted > 0) { this.hoursCompleted = hoursCompleted; } else { this.hoursCompleted = 0; } } /** * Method to get the students gpa * * <hr> * Date created: Feb 22, 2016 * * <hr> * @return gpa returns a double that stores the student's gpa */ public double getGpa ( ) { return gpa; } /** * Method to set the students gpa * * <hr> * Date created: Feb 22, 2016 * * <hr> * @param gpa */ public void setGpa (double gpa) { if(hoursCompleted > 0) { if(gpa > 0 && gpa <= 4.0) { this.gpa = gpa; } else { this.gpa = 0.0; } } else { this.gpa = 0.0; } } /** * Method to get the students photo file * * <hr> * Date created: Feb 22, 2016 * * <hr> * @return photoFile returns a String of the file for a Student's picture */ public String getPhotoFile ( ) { return photoFile; } /** * Method to set the students photo file * * <hr> * Date created: Feb 22, 2016 * * <hr> * @param photoFile */ public void setPhotoFile (String photoFile) { this.photoFile = photoFile; } /** * Method to return a string that displays all of the students' information * * <hr> * Date created: Feb 22, 2016 * * <hr> * @return classification returns a Classification object of * the student's classification * @see java.lang.Object#toString() */ public Classification getClassification() { return classification; } /** * Method to set the students classification * * <hr> * Date created: Feb 22, 2016 * * <hr> * @param classification */ public void setClassification(Classification classification) { this.classification = classification; } public void setClassification(String temp) { if(temp.equalsIgnoreCase("FRESHMAN")) { classification = (Classification.FRESHMAN); } else if(temp.equalsIgnoreCase("SOPHOMORE")) { classification = Classification.SOPHOMORE; } else if(temp.equalsIgnoreCase("JUNIOR")) { classification = Classification.JUNIOR; } else if(temp.equalsIgnoreCase("SENIOR")) { classification = Classification.SENIOR; } else if(temp.equalsIgnoreCase("GRADUATE")) { classification = Classification.GRADUATE; } else { classification = Classification.OTHER; } } /** * Method to convert the info to a string used to display * * <hr> * Date created: Feb 22, 2016 * * <hr> * @return str is a String object returning the Student's info */ public String toString() { String str = " First Name: " + firstName + "\n" + " Last Name: " + lastName + "\n" + " Major: " + major + "\n" + " Classification: " + classification + "\n" + "Hours Completed: " + hoursCompleted + "\n" + " GPA: " + gpa + "\n" + " JPG File Name: " + photoFile; return str; } }
[ "dakotacowell@gmail.com" ]
dakotacowell@gmail.com
a61acd50bc08108af6dd71e811f99ac26f9d1b27
f40ba0be10e056339daf3be94b80363ed46bc416
/src/main/java/codeWars/directionsReduction_20200427/DirReductionBestPractice.java
e03ddef97f9024e62816e7edbaed49fc2ab92157
[]
no_license
JinHoooooou/codeWarsChallenge
e94a3d078389bc35eb25928ddc6c963f5878eb3e
4f6cbc7351e6f027f2451b5237db05aa1dc5f857
refs/heads/master
2022-05-21T03:04:36.139987
2021-10-25T06:29:05
2021-10-25T06:29:05
253,538,045
1
1
null
null
null
null
UTF-8
Java
false
false
1,127
java
package codeWars.directionsReduction_20200427; import java.util.Stack; public class DirReductionBestPractice { public static String[] dirReduc(String[] arr) { final Stack<String> stack = new Stack<>(); for (final String direction : arr) { final String lastElement = stack.size() > 0 ? stack.lastElement() : null; switch (direction) { case "NORTH": if ("SOUTH".equals(lastElement)) { stack.pop(); } else { stack.push(direction); } break; case "SOUTH": if ("NORTH".equals(lastElement)) { stack.pop(); } else { stack.push(direction); } break; case "EAST": if ("WEST".equals(lastElement)) { stack.pop(); } else { stack.push(direction); } break; case "WEST": if ("EAST".equals(lastElement)) { stack.pop(); } else { stack.push(direction); } break; } } return stack.stream().toArray(String[]::new); } }
[ "jinho4744@naver.com" ]
jinho4744@naver.com
12435713ea2242a8eaeb8b65a62df66a487f507c
e54040da97a1ffce152ad95ba89dc7738b628b85
/PokeApp/app/src/main/java/lina/pokeapp/MainActivity.java
fcbaf7e141f4b44be12b910ce7dc7d56c63397fe
[]
no_license
LinaToquica/pokedex
7920445e82aee4bac20808c167835ec8328c2071
1dce3611e12f8337f8126706724c2bab134b0852
refs/heads/master
2021-01-19T09:53:19.404527
2017-04-10T12:46:34
2017-04-10T12:46:34
87,795,013
0
0
null
null
null
null
UTF-8
Java
false
false
9,336
java
package lina.pokeapp; import android.content.Context; import android.content.Intent; import android.content.res.AssetManager; import android.graphics.Color; import android.graphics.Typeface; import android.support.annotation.NonNull; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.ImageButton; import android.widget.ImageView; import android.widget.TextView; import com.firebase.ui.database.FirebaseRecyclerAdapter; 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.squareup.picasso.Callback; import com.squareup.picasso.NetworkPolicy; import com.squareup.picasso.Picasso; import java.util.Locale; public class MainActivity extends AppCompatActivity { private RecyclerView mPokemonList; private DatabaseReference mdatabase; private FirebaseAuth mAuth; private FirebaseAuth.AuthStateListener mauthlistener; private boolean pokedex=false; private DatabaseReference mdatabaseuser; private DatabaseReference mdatabasepokedex; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mPokemonList = (RecyclerView)findViewById(R.id.pokemon_list); mPokemonList.setHasFixedSize(true); mPokemonList.setLayoutManager(new LinearLayoutManager(this)); mdatabase = FirebaseDatabase.getInstance().getReference().child("Pokemones"); mdatabaseuser = FirebaseDatabase.getInstance().getReference().child("Users"); mdatabasepokedex = FirebaseDatabase.getInstance().getReference().child("Atrapados"); mdatabase.keepSynced(true); mdatabaseuser.keepSynced(true); mdatabasepokedex.keepSynced(true); mAuth = FirebaseAuth.getInstance(); mauthlistener = new FirebaseAuth.AuthStateListener(){ @Override public void onAuthStateChanged(@NonNull FirebaseAuth firebaseAuth) { if(firebaseAuth.getCurrentUser() == null){ Intent loginintent = new Intent(MainActivity.this,LoginActivity.class); loginintent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(loginintent); } else { //checkexist(); } } }; } @Override protected void onStart() { super.onStart(); mAuth.addAuthStateListener(mauthlistener); FirebaseRecyclerAdapter<Pokemon,PokemonViewHolder> firebaseRecyclerAdapter = new FirebaseRecyclerAdapter<Pokemon, PokemonViewHolder>( Pokemon.class, R.layout.pokemon_row, PokemonViewHolder.class, mdatabase ) { @Override protected void populateViewHolder(PokemonViewHolder viewHolder, Pokemon model, int position) { final String postkey= getRef(position).getKey().toString(); viewHolder.setnombre(model.getNombre(),getApplicationContext()); viewHolder.setimage(getApplicationContext(),model.getImagen()); viewHolder.setatrapado(postkey); viewHolder.mView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { //Toast.makeText(MainActivity.this,postkey,Toast.LENGTH_LONG).show(); Intent singleblog = new Intent(MainActivity.this,PokemonSingle.class); singleblog.putExtra("blog_id", postkey); startActivity(singleblog); } }); viewHolder.pokebolaimg.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { pokedex=true; mdatabasepokedex.addValueEventListener(new ValueEventListener() { @Override public void onDataChange(DataSnapshot dataSnapshot) { if(pokedex){ if(dataSnapshot.child(postkey).hasChild(mAuth.getCurrentUser().getUid())){ mdatabasepokedex.child(postkey).child(mAuth.getCurrentUser().getUid()).removeValue(); pokedex = false; } else{ mdatabasepokedex.child(postkey).child(mAuth.getCurrentUser().getUid()).setValue("RandomValue"); pokedex= false; } } } @Override public void onCancelled(DatabaseError databaseError) { } }); } }); } }; mPokemonList.setAdapter(firebaseRecyclerAdapter); } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.menu,menu); return super.onCreateOptionsMenu(menu); } @Override public boolean onOptionsItemSelected(MenuItem item) { if(item.getItemId()==R.id.logout){ logout(); } return super.onOptionsItemSelected(item); } public static class PokemonViewHolder extends RecyclerView.ViewHolder{ View mView; ImageButton pokebolaimg; DatabaseReference databaseatrapado; FirebaseAuth mAuth; FirebaseAuth.AuthStateListener mauthlistener; public PokemonViewHolder(View itemView) { super(itemView); mView = itemView; pokebolaimg = (ImageButton)mView.findViewById(R.id.pokebola); databaseatrapado= FirebaseDatabase.getInstance().getReference().child("Atrapados"); mAuth = FirebaseAuth.getInstance(); databaseatrapado.keepSynced(true); } public void setnombre(String name,Context context){ TextView nombretxt = (TextView)mView.findViewById(R.id.nombrepokemon); AssetManager am = context.getApplicationContext().getAssets(); Typeface typeface = Typeface.createFromAsset(am, String.format(Locale.US, "fonts/%s", "Pokemon Solid.ttf")); nombretxt.setTypeface(typeface); nombretxt.setTextColor(Color.rgb(0,0,0)); nombretxt.setText(name); } public void setimage(final Context ctx,final String image){ final ImageView imagen_pok =(ImageView)mView.findViewById(R.id.imgpokemon); Picasso.with(ctx).load(image).networkPolicy(NetworkPolicy.OFFLINE).into(imagen_pok, new Callback() { @Override public void onSuccess() { } @Override public void onError() { Picasso.with(ctx).load(image).into(imagen_pok); } }); } public void setatrapado(final String postkey) { databaseatrapado.addValueEventListener(new ValueEventListener() { @Override public void onDataChange(DataSnapshot dataSnapshot) { if(mAuth.getCurrentUser() != null) { if (dataSnapshot.child(postkey).hasChild(mAuth.getCurrentUser().getUid())) { pokebolaimg.setImageResource(R.mipmap.pokebolaroja); } else { pokebolaimg.setImageResource(R.mipmap.pokebola); } } else { Intent intent = new Intent (mView.getContext(), LoginActivity.class); mView.getContext().startActivity(intent); } } /* else { Intent intent = new Intent (mView.getContext(), LoginActivity.class); mView.getContext().startActivity(intent); } }*/ @Override public void onCancelled(DatabaseError databaseError) { } }); } } private void logout() { mAuth.signOut(); } }
[ "linamtoquica@outlook.com" ]
linamtoquica@outlook.com
afc33394dd174cc1567b9741d6573ddc326b54e6
3f66f6b50506f019f4421e58ee42c66947ec3bd6
/src/JavaSpring/JavaCollection.java
628ed3d3fb9943ddf00e33a010190561e817a4dd
[]
no_license
lyj183/JavaSpring
3f933e56385d8a9e3a5fdcd9d86e72ae4428db11
6cb94b8e94c6409526f4e2334bd3a9551ebe1c47
refs/heads/master
2020-03-14T21:02:57.973648
2018-05-02T02:33:31
2018-05-02T02:33:31
131,787,936
0
0
null
null
null
null
UTF-8
Java
false
false
1,189
java
package JavaSpring; import java.util.*; /** * @author: linyijin * @Date: Created in 2017/12/13 11:09 * @Description: 3.4、Spring 注入集合 **/ public class JavaCollection { List addressList; Set addressSet; Map addressMap; Properties addressProp; public void setAddressList(List addressList) { this.addressList = addressList; } public List getAddressList() { System.out.println("List Elements :" + addressList); return addressList; } public void setAddressSet(Set addressSet) { this.addressSet = addressSet; } public Set getAddressSet() { System.out.println("Set Elements :" + addressSet); return addressSet; } public void setAddressMap(Map addressMap) { this.addressMap = addressMap; } public Map getAddressMap() { System.out.println("Map Elements :" + addressMap); return addressMap; } public void setAddressProp(Properties addressProp) { this.addressProp = addressProp; } public Properties getAddressProp() { System.out.println("Property Elements :" + addressProp); return addressProp; } }
[ "linyijin@wanda.cn" ]
linyijin@wanda.cn
2be888bfbc93674f3782c2dc43455d1373ea71a9
16c32b3d2e93b4897e685fa98615fadb2fe74251
/config-bus-server/src/test/java/com/glen/configbusserver/ConfigBusServerApplicationTests.java
7fcb5dd7f5499ae123b2c3e1f6c24a3981cb9fd7
[]
no_license
yingLeos/microservice-1
1aebe27e4a6882fbc13b4e4f26088833eb59356d
455c97dfb022f4fde4e2a45252f94e5543c16365
refs/heads/master
2020-07-11T06:30:18.563536
2019-08-01T05:14:29
2019-08-01T05:14:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
359
java
package com.glen.configbusserver; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest public class ConfigBusServerApplicationTests { @Test public void contextLoads() { } }
[ "gaiyc@chinaunicom.cn" ]
gaiyc@chinaunicom.cn
43308ae89e7e62dbf967346f5e478138448e2b68
16d63be740eb24142745404d5055950d5c72df74
/src/contagionJVM/Event/Module_OnPlayerDying.java
76ad3bf90465c1d4b8540d2628ccfa92b5d6dea9
[ "MIT" ]
permissive
zunath/Contagion_JVM
8775969bee1ba3a0680c4c21c7095da0db81fcb6
7d25464ca8c4374f9de086f373c3a038c56327af
refs/heads/master
2021-07-03T03:37:31.293914
2016-12-28T15:23:36
2016-12-28T15:23:36
30,473,386
3
0
null
null
null
null
UTF-8
Java
false
false
1,956
java
package contagionJVM.Event; import contagionJVM.Constants; import contagionJVM.Helper.ColorToken; import contagionJVM.IScriptEventHandler; import org.nwnx.nwnx2.jvm.*; import org.nwnx.nwnx2.jvm.constants.*; @SuppressWarnings("unused") public class Module_OnPlayerDying implements IScriptEventHandler { @Override public void runScript(NWObject objSelf) { final NWObject oPC = NWScript.getLastPlayerDying(); Scheduler.assign(oPC, new Runnable() { @Override public void run() { NWScript.clearAllActions(false); DeathFunction(oPC, 8); } }); } private void DeathFunction(final NWObject oPC, int nDC) { int iHP = NWScript.getCurrentHitPoints(oPC); if (!NWScript.getIsObjectValid(oPC)) return; //Player Rolls a random number between 1 and 20+ConMod int iRoll = 20 + NWScript.getAbilityModifier(Ability.CONSTITUTION, oPC); iRoll = NWScript.random(iRoll) + 1; //Sanity Check if (nDC > 30) nDC = 30; else if (nDC < 4) nDC = 4; NWEffect eResult; if (iHP <= 0) { if (iRoll >= nDC) //Stabilize { nDC -= 2; eResult = NWScript.effectHeal(1); //PlayVoiceChat(VOICE_CHAT_LAUGH); } else //Failed! { if (NWScript.random(2) + 1 == 1) nDC++; eResult = NWScript.effectDamage(1, DamageType.MAGICAL, DamagePower.NORMAL); //Death! if (iHP <= -9) { NWScript.applyEffectToObject(DurationType.INSTANT, NWScript.effectVisualEffect(Vfx.IMP_DEATH, false), oPC, 0.0f); NWScript.applyEffectToObject(DurationType.INSTANT, NWScript.effectDeath(false, true), oPC, 0.0f); return; } else { NWScript.sendMessageToPC(oPC, ColorToken.Orange() + "You failed to stabilize this round." + ColorToken.End()); } NWScript.applyEffectToObject(DurationType.INSTANT, eResult, oPC, 0.0f); final int dcCopy = nDC; Scheduler.delay(oPC, 3000, new Runnable() { @Override public void run() { DeathFunction(oPC, dcCopy); } }); } } } }
[ "coolty3001@yahoo.com" ]
coolty3001@yahoo.com
7e2b8e9f6605a4abacd90075f8dd46c91321e5ea
7b34a5a10a7f1d905a9b3ac2f2f06d4bdde29b60
/app/src/main/java/com/solarexsoft/tableview/MatrixTableAdapter.java
fbc5e049332e5949bdbb8791b0b23f7e17f5234c
[ "Apache-2.0" ]
permissive
flyfire/TableView
ebf2b3a619af47a18d87281864488d53fae071cd
153bd706afb83a0f320cfa0d99f828df6b304141
refs/heads/master
2021-01-15T12:02:07.596296
2017-08-08T02:47:56
2017-08-08T02:47:56
99,641,751
0
0
null
null
null
null
UTF-8
Java
false
false
2,125
java
package com.solarexsoft.tableview; import android.content.Context; import android.content.res.Resources; import android.util.TypedValue; import android.view.Gravity; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import com.solarexsoft.solarextableview.adapter.BaseTableAdapter; /** * <pre> * Author: houruhou * Project: https://solarex.github.io/projects * CreatAt: 08/08/2017 * Desc: * </pre> */ public class MatrixTableAdapter<T> extends BaseTableAdapter { private static final int WIDTH = 110; private static final int HEIGHT = 32; private final Context mContext; private T[][] table; private final int width; private final int height; public MatrixTableAdapter(Context context) { this(context, null); } public MatrixTableAdapter(Context context, T[][] table) { mContext = context; Resources r = context.getResources(); width = Math.round(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, WIDTH, r .getDisplayMetrics())); height = Math.round(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, HEIGHT, r .getDisplayMetrics())); this.table = table; } @Override public int getRowCount() { return table.length - 1; } @Override public int getColumnCount() { return table[0].length - 1; } @Override public View getView(int row, int column, View convertView, ViewGroup parent) { if (convertView == null){ convertView = new TextView(mContext); ((TextView)convertView).setGravity(Gravity.CENTER); } ((TextView)convertView).setText(table[row+1][column+1].toString()); return convertView; } @Override public int getWidth(int column) { return width; } @Override public int getHeight(int row) { return height; } @Override public int getItemViewType(int row, int column) { return 0; } @Override public int getViewTypeCount() { return 1; } }
[ "rh.hou.work@gmail.com" ]
rh.hou.work@gmail.com
962bb4529206f82d377d05e626fd6d339a071981
b5b612a50b69ea8b7ad06b9bb08c555b7d160dd9
/file-demo/src/main/java/com/file/demo/service/MinioFileUploadService.java
b3297e7bccd05aa7eff4ca90955b2c6746038688
[]
no_license
GentleDevin/file-parent
49a62af5ff7bac3163781b7ac96e4c8600f0e96d
1bc26f4e0fa88c697d454a4fd376faa19d68e71e
refs/heads/master
2023-02-20T11:58:47.769579
2021-01-22T14:40:56
2021-01-22T14:40:56
330,931,560
0
0
null
null
null
null
UTF-8
Java
false
false
2,153
java
package com.file.demo.service; import com.file.commons.common.FileInfoResult; import com.file.commons.common.ResponseResult; import com.file.demo.dao.FileInfoDAO; import com.file.demo.entity.FileInfo; import com.file.demo.entity.FileType; import com.file.demo.entity.UserInfo; import org.springframework.beans.BeanUtils; import org.springframework.stereotype.Service; import javax.annotation.Resource; import java.util.List; /** * @Title: 文件信息服务层 * @Description: 处理文件类型业务逻辑 * @Author: Devin * CreateDate: 2021/1/13 16:42 */ @Service public class MinioFileUploadService { @Resource private FileInfoDAO fileInfoDAO; /** * @param id: 主键id * @Description: 获取唯一对象 * @CreateDate: 2021/01/14 18:31:32 * @return: com.minio.entity.FileInfo **/ public FileInfo getOne(Long id) { return fileInfoDAO.getOne(id); } /** * @param ids: 主键id集合 * @Description: 根据id集合, 获取多个对象 * @CreateDate: 2021/01/14 18:31:32 * @return: com.minio.entity.FileInfo **/ public List<FileInfo> findAllById(List<Long> ids) { return fileInfoDAO.findAllById(ids); } /** * @param responseResult: * @Description: 保存文件信息 * @Author: Devin * @CreateDate: 2021/01/13 17:06:05 * @return: void **/ public void save(List<ResponseResult> responseResult) { for (ResponseResult result : responseResult) { if (null != result.get("data")) { FileInfoResult fileInfoResult = (FileInfoResult) result.get("data"); FileInfo fileInfo = new FileInfo(); fileInfo.setFileType(new FileType(1L)); fileInfo.setUser(new UserInfo(1L)); BeanUtils.copyProperties(fileInfoResult, fileInfo); fileInfoDAO.save(fileInfo); } } } /** * @Description: 删除对象 * param fileInfo: 文件信息 * @CreateDate: 2021/01/14 18:31:32 **/ public void delete(FileInfo fileInfo) { fileInfoDAO.delete(fileInfo); } }
[ "GentleDevin@163.com" ]
GentleDevin@163.com
6c2a3c4943e8451012c16e91f287cd41e321d588
b1d64a5ab8e263c2987f1522ed1ed27d211ec33f
/src/main/java/com/rsostream/tcp/models/SensorReading.java
4659821b2e0fa436b5d336bc81bbc4ba52d7a6d2
[]
no_license
rsoStream/rsostreamtcp
ff7a9ed8dcf86aae10a039df2332fb916e4902cb
2987c9d4904b5327333ada5c7a0c4c7cf25169b9
refs/heads/master
2021-09-04T08:52:14.487132
2018-01-17T13:04:04
2018-01-17T13:04:04
115,654,654
0
0
null
null
null
null
UTF-8
Java
false
false
1,831
java
package com.rsostream.tcp.models; import com.rsostream.tcp.util.InvalidMessageException; import javax.xml.bind.annotation.XmlRootElement; import java.util.Date; @XmlRootElement public class SensorReading { public final EnumType TYPE; private Date timeObtained; private String imei; private int signalQuality; private static int numberOfAttributes = 3; SensorReading(Date timeObtained, String imei, int signalQuality) { TYPE = EnumType.SUPER; this.timeObtained = timeObtained; this.imei = imei; this.signalQuality = signalQuality; } SensorReading(EnumType type, Date timeObtained, String imei, int signalQuality) { TYPE = type; this.timeObtained = timeObtained; this.imei = imei; this.signalQuality = signalQuality; } public Date getTimeObtained() { return timeObtained; } public void setTimeObtained(Date timeObtained) { this.timeObtained = timeObtained; } public int getNumberOfAttributes() { return numberOfAttributes; } public String getImei() { return imei; } public void setImei(String imei) { this.imei = imei; } public int getSignalQuality() { return signalQuality; } public void setSignalQuality(int signalQuality) { this.signalQuality = signalQuality; } public static SensorReading createReading(String[] data) throws InvalidMessageException { if (data.length != SensorReading.numberOfAttributes) { throw new InvalidMessageException(); } Date dateObtained = new Date(Long.parseLong(data[0])); String IMEI = data[1]; int signalQuality = Integer.parseInt(data[2]); return new SensorReading(dateObtained, IMEI, signalQuality); } }
[ "markoprelevik@gmail.com" ]
markoprelevik@gmail.com
669fdbd0c395aeea29f10bc6c00fcd40876d157f
76bfe8bd99ba1746d4511081ae8db2b44487b8b8
/src/pruebas/Rueda.java
cbf58ac5f25e1248b847acb82de169164b0cfa55
[]
no_license
dard0/PSPDardo
c5759700afb802b0ef00734d59cd838366e1ce77
c9d8913e1db12062bf408f91431c1a758bec4f22
refs/heads/master
2016-09-05T12:06:14.402362
2012-11-05T09:57:46
2012-11-05T09:57:46
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,913
java
package pruebas; import pruebas.RuedaPinchadaException; public class Rueda { private int diametroPulgadas; private int anchuraNominalMm; private int ratioAspectoPc; private static final int limiteKm = 60000; private int rodaduraKm = 0; private boolean pinchada = false; private boolean cambiar = false; private float presionPSI; Rueda(int diametroPulgadas, int anchuraNominalMm, int ratioAspectoPc, float presionPSI) { this.diametroPulgadas = diametroPulgadas; this.anchuraNominalMm = anchuraNominalMm; this.ratioAspectoPc = ratioAspectoPc; this.presionPSI = presionPSI; } // Rueda Estándar Rueda() { this(16,205,55,2.2f); } public void rodar(int km) throws RuedaPinchadaException { if (!pinchada) { this.rodaduraKm += km; if (rodaduraKm >= limiteKm) { cambiar = true; } } else throw new RuedaPinchadaException("Esta pinchada, no puedes rodar!", presionPSI, 60); } public void pinchar() { pinchada = true; } public void reparar() { pinchada = false; } public void print() { int difKm=limiteKm-rodaduraKm; System.out.println("Diámetro: "+diametroPulgadas+'"'); System.out.println("Anchura: "+anchuraNominalMm+" mm"); System.out.println("Relación de Aspecto: "+ratioAspectoPc+'%'); if ( (difKm) > 0) System.out.println("Km: "+rodaduraKm+" restan "+difKm); else System.out.println("Km: "+rodaduraKm+" excedidos "+ (-difKm)); System.out.println("Pinchada: "+pinchada); System.out.println("Cambiar: "+cambiar); System.out.println("Presio: " + presionPSI); } public void println() { this.print(); System.out.print('\n'); } public static void main(String[] args) { Rueda r1=new Rueda(), r2=new Rueda(165,14,175,2.2f); try { r1.rodar(75000); r1.pinchar(); r2.rodar(34500); r1.rodar(5); } catch (Exception e) { System.out.println(e.getMessage()); } r1.println(); r2.println(); } }
[ "contacto@dard0.es" ]
contacto@dard0.es
0462fd05c9b4e995b9d056144f5d86ea74016e6a
85cda57a1c3ffe47f8cd2342e159042b6e750a2d
/mssc-beer-services/src/main/java/com/bhatti/msscbeerservices/web/model/BeerDto.java
87f05673dadb7efdea508fef4a4cb2545795bcb7
[]
no_license
nabeeltariqbhatti/spring-DI
62af6e19efddba63645d03dabe360eb17263b4e5
6ff0537ba4c268abbce5263d01334b5967ab391e
refs/heads/master
2023-08-03T20:07:45.478339
2021-07-08T09:35:41
2021-07-08T09:35:41
369,276,307
0
0
null
2023-07-25T01:59:22
2021-05-20T16:45:12
Java
UTF-8
Java
false
false
867
java
package com.bhatti.msscbeerservices.web.model; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; import javax.validation.constraints.Min; import javax.validation.constraints.NotBlank; import javax.validation.constraints.Null; import javax.validation.constraints.Positive; import java.math.BigDecimal; import java.time.OffsetDateTime; import java.util.UUID; @Data @NoArgsConstructor @AllArgsConstructor @Builder public class BeerDto { @Null private UUID id; private Integer version; private OffsetDateTime createdDate; private OffsetDateTime lastModifiedDate; @NotBlank private String beerName; @NotBlank private BeerStyleEnum beerStyle; @Positive private Long upc; @Min(value = 1) private BigDecimal price; private Integer quantityOnHand; }
[ "nabeeltaariq@gmail.com" ]
nabeeltaariq@gmail.com
74e139742536644db03e1604f7ff8a564937ccb4
0ec02571dc0205e62373dcabb7d6bd68f4286dc7
/src/main/java/com/evgesha/config/MvcConfig.java
4a3a797d1e947937cfed2ad52955a8153ab846ce
[]
no_license
EvgeshQa/News
26efd55639cd9f66f93c57d4b385efe09ffdc830
2fbea69ecd938910771145ec95bfc37b7a525daa
refs/heads/master
2023-05-19T10:53:46.427601
2021-06-07T08:50:02
2021-06-07T08:50:02
374,429,207
0
0
null
null
null
null
UTF-8
Java
false
false
462
java
package com.evgesha.config; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ViewControllerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration public class MvcConfig implements WebMvcConfigurer { public void addViewControllers(ViewControllerRegistry registry) { registry.addViewController("/login").setViewName("login"); } }
[ "74290834+EvgeshQa@users.noreply.github.com" ]
74290834+EvgeshQa@users.noreply.github.com
09ae881608252328d679c4f26097cd786f18ac9f
644c89b2c4d4e392e886c1e0c150e2b54a99d079
/Avançado/Projetos/exercicios basico java/horoscopo/src/app/App14.java
a1b789777aaab8d38b33ba4a462dbd89c911d8d0
[]
no_license
albertompaz/Residencia-em-Software
b972063f4a4727b98ab0c07788d263b4bc58d52d
49a896c7ffff17aafb72b37adf08acb50ec7f8d0
refs/heads/master
2023-05-12T12:42:04.405600
2020-01-24T01:29:33
2020-01-24T01:29:33
235,891,600
0
0
null
2023-05-07T20:18:22
2020-01-23T21:38:17
TypeScript
UTF-8
Java
false
false
5,055
java
/* Programa para determinar o signo e se a data é valida de uma pessoa * Programador: Alberto Paz * Data: 05/12/2019 */ package app; // Importando o pacote Scanner para ler dados de entrada do usuario import java.util.Scanner; public class App14 { public static void main(String[] args) throws Exception { // Instanciando e criando um objeto Scanner: Scanner ler = new Scanner(System.in); Integer dia, mes; String nomeMes = ""; System.out.println("Informe o dia do seu aniversario: "); //.nextInt pois recebra um valor inteiro dia = ler.nextInt(); System.out.println("informe o mes do seu aniversario: "); mes = ler.nextInt(); ler.close(); //Print so para separar entrada de saida dos dados System.out.println("////////////////////////////////////////////////////"); //Achando o nome correspondente ao numero do mes switch (mes) { case 1: nomeMes = "janeiro"; break; case 2: nomeMes = "fevereiro"; break; case 3: nomeMes = "março"; break; case 4: nomeMes = "abril"; break; case 5: nomeMes = "maio"; break; case 6: nomeMes = "junho"; break; case 7: nomeMes = "julho"; break; case 8: nomeMes = "agosto"; break; case 9: nomeMes = "setembro"; break; case 10: nomeMes = "outubro"; break; case 11: nomeMes = "novembro"; break; case 12: nomeMes = "dezembro"; break; default: System.out.println("Numero de mes informado não é valido"); } //verificando o mes if (nomeMes == "fevereiro") { //verificando dias que o mes contem if (dia <= 29 && mes == 2) { System.out.println("Data ok!"); System.out.println("O mes do seu aniversario e: "+nomeMes); } else { System.out.println("Quantidade de dias invalido para "+nomeMes); System.out.println("Dia de mes invalido para "+nomeMes); } } else { if (nomeMes == "abril" || nomeMes == "junho" || nomeMes == "setembro" || nomeMes == "novembro") { if (dia <= 30) { System.out.println("Data ok!"); System.out.println("O mes do seu aniversario e: "+nomeMes); } else { System.out.println("Quantidade de dias invalido para "+nomeMes); System.out.println("Dia de mes invalido para "+nomeMes); } } else { if (dia <=31) { System.out.println("Data ok!"); System.out.println("O mes do seu aniversario e: "+nomeMes); } else { System.out.println("Quantidade de dias invalido para "+nomeMes); System.out.println("Dia de mes invalido para "+nomeMes); } } } //Iniciando a verificação dos signos if ( (dia >= 21 && mes == 3) || (dia <= 19 && mes == 4) ) { System.out.println("Seu signo é Áries."); } if ( (dia >= 20 && mes == 4) || (dia <= 20 && mes == 5) ) { System.out.println("Seu signo é Touro."); } if ( (dia >= 21 && mes == 5) || (dia <= 21 && mes == 6) ) { System.out.println("Seu signo é Gêmeos."); } if ( (dia >= 22 && mes == 6) || (dia <= 22 && mes == 7) ) { System.out.println("Seu signo é Câncer."); } if ( (dia >= 23 && mes == 7) || (dia <= 22 && mes == 8) ) { System.out.println("Seu signo é Leão."); } if ( (dia >= 23 && mes == 8) || (dia <= 22 && mes == 9) ) { System.out.println("Seu signo é Virgem."); } if ( (dia >= 23 && mes == 9) || (dia <= 22 && mes == 10) ) { System.out.println("Seu signo é libra."); } if ( (dia >= 23 && mes == 10) || (dia <= 21 && mes == 11) ) { System.out.println("Seu signo é Escorpião."); } if ( (dia >= 22 && mes == 11) || (dia <= 21 && mes == 12) ) { System.out.println("Seu signo é Sagitário."); } if ( (dia >= 22 && mes == 12) || (dia <= 19 && mes == 1) ) { System.out.println("Seu signo é Capricórnio."); } if ( (dia >= 22 && mes == 1) || (dia <= 18 && mes == 2) ) { System.out.println("Seu signo é Aquário."); } if ( (dia >= 19 && mes == 2) || (dia <= 20 && mes == 3) ) { System.out.println("Seu signo é Peixes."); } } }
[ "albertocmdp@gmail.com" ]
albertocmdp@gmail.com
345aa452caadefa9e62ed3880bd61cb6bd0b3db7
7fa49925ed7c8517c65d9f9543621d08309bc2cf
/sources\ca\albertahealthservices\contacttracing\services\BluetoothMonitoringService$isBluetoothEnabled$bluetoothAdapter$2.java
11a5e49382c851c6c403124939c42d1131850331
[]
no_license
abtt-decompiled/abtracetogether_1.0.0.apk_disassembled
c8717a47f384fb7e8da076e48abe1e4ef8500837
d81b0ee1490911104ab36056d220be7fe3a19e1c
refs/heads/master
2022-06-24T02:51:29.783727
2020-05-08T21:05:20
2020-05-08T21:05:20
262,426,826
2
1
null
null
null
null
UTF-8
Java
false
false
1,402
java
package ca.albertahealthservices.contacttracing.services; import android.bluetooth.BluetoothAdapter; import android.bluetooth.BluetoothManager; import kotlin.Metadata; import kotlin.TypeCastException; import kotlin.jvm.functions.Function0; import kotlin.jvm.internal.Lambda; @Metadata(bv = {1, 0, 3}, d1 = {"\u0000\n\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\u0010\u0000\u001a\n \u0002*\u0004\u0018\u00010\u00010\u0001H\n¢\u0006\u0002\b\u0003"}, d2 = {"<anonymous>", "Landroid/bluetooth/BluetoothAdapter;", "kotlin.jvm.PlatformType", "invoke"}, k = 3, mv = {1, 1, 16}) /* compiled from: BluetoothMonitoringService.kt */ final class BluetoothMonitoringService$isBluetoothEnabled$bluetoothAdapter$2 extends Lambda implements Function0<BluetoothAdapter> { final /* synthetic */ BluetoothMonitoringService this$0; BluetoothMonitoringService$isBluetoothEnabled$bluetoothAdapter$2(BluetoothMonitoringService bluetoothMonitoringService) { this.this$0 = bluetoothMonitoringService; super(0); } public final BluetoothAdapter invoke() { Object systemService = this.this$0.getSystemService("bluetooth"); if (systemService != null) { return ((BluetoothManager) systemService).getAdapter(); } throw new TypeCastException("null cannot be cast to non-null type android.bluetooth.BluetoothManager"); } }
[ "patrick.f.king+abtt@gmail.com" ]
patrick.f.king+abtt@gmail.com
cab7a72e672ddb6ba0d7b66c5a5468c40e317bec
8c193c588f4bff632857614dd3de62e697e2c7ba
/src/dk/esmann/evecacheparser/CacheNoneNode.java
5dfe04538bc03338e86be0697b6659fe4e10b61d
[]
no_license
lazyrohan/EveCacheParser
1b55dace5b6600a848532c5dadc5cf17b1ef2892
71e18a68b9beb72c37999872b1c5330163c23b6e
refs/heads/master
2021-01-18T10:38:49.665408
2012-05-20T08:49:16
2012-05-20T08:49:16
null
0
0
null
null
null
null
UTF-8
Java
false
false
361
java
package dk.esmann.evecacheparser; import dk.esmann.evecacheparser.enums.EveStreamCode; /** * Created with IntelliJ IDEA. * User: Alex Esmann * Date: 5/16/12 * Time: 9:10 PM * To change this template use File | Settings | File Templates. */ public class CacheNoneNode extends CacheNode { CacheNoneNode() { super(EveStreamCode.None); } }
[ "alex@alexesmann.dk" ]
alex@alexesmann.dk
f7c4b16108718e57e3551e684bdb4a8418af35e6
2758aef4c3a38075667c429ee7bb7b172b9aa5af
/JavaSE(API)_Demo/src/map/Key.java
afb954d255afc7e23b7c476ff6a01dda2b79debc
[ "MIT" ]
permissive
Paranoidzhou/Java
676c00ef17e5fddbbebe8eb566a879d9bf3bb7a2
92d0e3e83860085d5212d0b788cebc3ab920dac6
refs/heads/master
2020-03-17T04:52:52.306829
2018-07-22T15:05:56
2018-07-22T15:05:56
133,292,350
0
0
null
null
null
null
UTF-8
Java
false
false
1,916
java
package map; /* * HashMap内部由数组保存键值对,存储元素时根据Key的hascode值计算数组下标,并将键值对存入, *获取时也根据该值计算下标直接找到该元素,所以HashMap根据这个方式避免了查找元素时对数组的遍历 *操作,所以其不受元素的多少而影响查询性能。 * * 由于Key的hashcode决定着键值对在HashMap中数组下标位置,而equals方法决定着Key是否重复. *所以这两个方法要妥善重写,当遇到两个Key的hashcode值一样,但是equals比较不为true的情况时, *会出现链表、链表会降低查询性能,应当尽量避免。 * * hashcode与equals方法都是定义在Object中的,所有类都具有,java提供的类都妥善的重写了 * 这两个方法.当我们定义的类需要重写equals或hashcode时必须遵循以下原则: * 1:成对重写,当我们需要重写一个类的equals方法时就应当连同重写hashcode方法。 * 2:一致性,当两个对象equals比较为true时,hashcode值应当相等,反之虽然不是必须的,但是尽 * 量保证当两个对象Hashcode方法返回值相等时,equals方法比较为true,否则会在HashMap中出现 * 链表。 * 3:稳定性,当参与equals比较的属性没有发生变化的情况下,多次调用hashcode方法返回的数字不应 * 当有变化。 */ public class Key { private int x; private int y; @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + x; result = prime * result + y; return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; Key other = (Key) obj; if (x != other.x) return false; if (y != other.y) return false; return true; } }
[ "1565413124@qq.com" ]
1565413124@qq.com
9be17eda11841267aa3774e59538662c0bb394e1
b71164ba742970e98a9b734af0cecab88d371631
/src/main/java/com/links/exception/TeamException.java
2547ec5ac047285a738dbce76ae328b286adc788
[]
no_license
timmymy/maventest
4e57fd658497f86feb9aff71b3884f3ca6a338c7
9c4d719243fc82dc4625a0ebe4f24a99f3afe9a9
refs/heads/master
2020-03-30T00:49:56.105690
2018-10-22T06:39:40
2018-10-22T06:39:40
150,546,299
0
0
null
null
null
null
UTF-8
Java
false
false
415
java
package com.links.exception; public class TeamException extends Exception { /** * */ private static final long serialVersionUID = 1L; private String message; public TeamException(String message) { super(message); this.message = message; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } }
[ "2467130853@qq.com" ]
2467130853@qq.com
07ab561e69660976c4c51f64546b631edde21e66
b779e4199fba7f74b4a3be88960746375ac9771b
/src/test/java/pl/napierala/cinemacodechallenge/builder/MovieShowingEntityBuilderTest.java
65f3514b3c4b98480af0bf84e0267e56a80ff798
[]
no_license
napierala/CinemaCodeChallenge
12b86551c222de7862bf2fbb5f11f6276e5e5e8f
6692f8492e4714dea18368597463d5d56abdce11
refs/heads/main
2023-09-05T07:41:12.153164
2021-11-15T08:52:46
2021-11-15T08:52:46
426,943,546
0
0
null
null
null
null
UTF-8
Java
false
false
2,263
java
package pl.napierala.cinemacodechallenge.builder; import org.junit.Test; import pl.napierala.cinemacodechallenge.entity.CinemaEntity; import pl.napierala.cinemacodechallenge.entity.MovieEntity; import pl.napierala.cinemacodechallenge.entity.MovieShowingEntity; import pl.napierala.cinemacodechallenge.extmodel.AddMovieShowingRequest; import java.time.LocalDateTime; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; public class MovieShowingEntityBuilderTest { @Test public void shouldBuildCorrectly() { // Given String code = "CODE"; String name = "NAME"; String address = "ADDRESS"; CinemaEntity cinemaEntity = CinemaEntity.builder() .code(code) .name(name) .address(address) .build(); String movieCode = "CODE"; String movieName = "NAME"; MovieEntity movieEntity = MovieEntity.builder() .code(movieCode) .name(movieName) .imdbId("ID") .build(); LocalDateTime dateTime1 = LocalDateTime.of(2004, 11, 26, 8, 0); String room1 = "1A"; AddMovieShowingRequest request = AddMovieShowingRequest.builder() .cinemaCode(cinemaEntity.getCode()) .movieCode(movieEntity.getCode()) .dateTime(dateTime1) .room(room1) .build(); // When MovieShowingEntity result = MovieShowingEntityBuilder.buildWith(cinemaEntity, movieEntity, request); // Then assertNotNull(result); assertNotNull(result.getCinema()); assertEquals(cinemaEntity.getCode(), result.getCinema().getCode()); assertEquals(cinemaEntity.getName(), result.getCinema().getName()); assertEquals(cinemaEntity.getAddress(), result.getCinema().getAddress()); assertNotNull(result.getMovie()); assertEquals(movieEntity.getCode(), result.getMovie().getCode()); assertEquals(movieEntity.getName(), result.getMovie().getName()); assertNotNull(result.getUuid()); assertEquals(dateTime1, result.getDateTime()); assertEquals(room1, result.getRoom()); } }
[ "napierala.jedrzej@gmail.com" ]
napierala.jedrzej@gmail.com
15f6fcde33a79ab5a8a02062a936eaba10ec1022
908c9f95e52a4a5c265c690c73932aeb3f82dfe8
/gmall-oms/src/main/java/com/atguigu/gmall/oms/controller/OrderSettingController.java
d54cc4c21e600cf978ddbfca87e33d3ae230dbcc
[ "Apache-2.0" ]
permissive
ccyj1024/gmall
e8201cc2fea80e77d038f19aac2725755c0ed019
b13b504204ed411937fc60e9bc829c4cf50b8893
refs/heads/master
2022-12-15T21:38:39.858644
2019-09-29T01:03:12
2019-09-29T01:03:12
209,918,123
0
0
Apache-2.0
2022-12-10T06:26:58
2019-09-21T03:23:04
JavaScript
UTF-8
Java
false
false
2,561
java
package com.atguigu.gmall.oms.controller; import java.util.Arrays; import java.util.Map; import com.atguigu.core.bean.PageVo; import com.atguigu.core.bean.QueryCondition; import com.atguigu.core.bean.Resp; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.web.bind.annotation.*; import com.atguigu.gmall.oms.entity.OrderSettingEntity; import com.atguigu.gmall.oms.service.OrderSettingService; /** * 订单配置信息 * * @author ccyj * @email ccyj1024@126.com * @date 2019-09-21 13:51:10 */ @Api(tags = "订单配置信息 管理") @RestController @RequestMapping("oms/ordersetting") public class OrderSettingController { @Autowired private OrderSettingService orderSettingService; /** * 列表 */ @ApiOperation("分页查询(排序)") @GetMapping("/list") @PreAuthorize("hasAuthority('oms:ordersetting:list')") public Resp<PageVo> list(QueryCondition queryCondition) { PageVo page = orderSettingService.queryPage(queryCondition); return Resp.ok(page); } /** * 信息 */ @ApiOperation("详情查询") @GetMapping("/info/{id}") @PreAuthorize("hasAuthority('oms:ordersetting:info')") public Resp<OrderSettingEntity> info(@PathVariable("id") Long id){ OrderSettingEntity orderSetting = orderSettingService.getById(id); return Resp.ok(orderSetting); } /** * 保存 */ @ApiOperation("保存") @PostMapping("/save") @PreAuthorize("hasAuthority('oms:ordersetting:save')") public Resp<Object> save(@RequestBody OrderSettingEntity orderSetting){ orderSettingService.save(orderSetting); return Resp.ok(null); } /** * 修改 */ @ApiOperation("修改") @PostMapping("/update") @PreAuthorize("hasAuthority('oms:ordersetting:update')") public Resp<Object> update(@RequestBody OrderSettingEntity orderSetting){ orderSettingService.updateById(orderSetting); return Resp.ok(null); } /** * 删除 */ @ApiOperation("删除") @PostMapping("/delete") @PreAuthorize("hasAuthority('oms:ordersetting:delete')") public Resp<Object> delete(@RequestBody Long[] ids){ orderSettingService.removeByIds(Arrays.asList(ids)); return Resp.ok(null); } }
[ "ccyj1024@126.com" ]
ccyj1024@126.com
e6d51d6e8a2c46848319cca8144daf76bba675f0
a828119846088bba601a2aae274aa71ace65d9a4
/Tool/dex2jar/out/com/google/android/gms/ads/search/SearchAdView.java
3ee9fb34c376b438bb0be0f676c22c04fede7a4a
[]
no_license
PhuongThao09/ZingMP3
19112d400dc2c30719f03272c0de3b8101bfe3b9
a060ee305894c2d89e8636bd2700b16ecde6c421
refs/heads/master
2020-06-11T20:11:33.371267
2019-06-27T11:37:16
2019-06-27T11:37:16
194,065,503
1
0
null
null
null
null
UTF-8
Java
false
false
3,137
java
// // Decompiled by Procyon v0.5.30 // package com.google.android.gms.ads.search; import android.view.View; import com.google.android.gms.ads.AdSize; import com.google.android.gms.ads.AdListener; import android.util.AttributeSet; import android.content.Context; import com.google.android.gms.ads.internal.client.zzz; import android.view.ViewGroup; public final class SearchAdView extends ViewGroup { private final zzz a; public SearchAdView(final Context context) { super(context); this.a = new zzz(this); } public SearchAdView(final Context context, final AttributeSet set) { super(context, set); this.a = new zzz(this, set, false); } public SearchAdView(final Context context, final AttributeSet set, final int n) { super(context, set, n); this.a = new zzz(this, set, false); } public void destroy() { this.a.destroy(); } public AdListener getAdListener() { return this.a.getAdListener(); } public AdSize getAdSize() { return this.a.getAdSize(); } public String getAdUnitId() { return this.a.getAdUnitId(); } public void loadAd(final SearchAdRequest searchAdRequest) { this.a.zza(searchAdRequest.a()); } protected void onLayout(final boolean b, int n, int n2, final int n3, final int n4) { final View child = this.getChildAt(0); if (child != null && child.getVisibility() != 8) { final int measuredWidth = child.getMeasuredWidth(); final int measuredHeight = child.getMeasuredHeight(); n = (n3 - n - measuredWidth) / 2; n2 = (n4 - n2 - measuredHeight) / 2; child.layout(n, n2, measuredWidth + n, measuredHeight + n2); } } protected void onMeasure(final int n, final int n2) { int n3 = 0; final View child = this.getChildAt(0); int n4; if (child != null && child.getVisibility() != 8) { this.measureChild(child, n, n2); n4 = child.getMeasuredWidth(); n3 = child.getMeasuredHeight(); } else { final AdSize adSize = this.getAdSize(); if (adSize != null) { final Context context = this.getContext(); n4 = adSize.getWidthInPixels(context); n3 = adSize.getHeightInPixels(context); } else { n4 = 0; } } this.setMeasuredDimension(View.resolveSize(Math.max(n4, this.getSuggestedMinimumWidth()), n), View.resolveSize(Math.max(n3, this.getSuggestedMinimumHeight()), n2)); } public void pause() { this.a.pause(); } public void resume() { this.a.resume(); } public void setAdListener(final AdListener adListener) { this.a.setAdListener(adListener); } public void setAdSize(final AdSize adSize) { this.a.setAdSizes(adSize); } public void setAdUnitId(final String adUnitId) { this.a.setAdUnitId(adUnitId); } }
[ "̣" ]
̣
f3bddd7db13b7085c55da417f596fb202230cb06
c897b075a1890c38100cf0e5726b8998b672a8ab
/AllCollections/src/test.java
b4290243ab4efb12bec83207227acdd443479bf5
[]
no_license
hemantjava/Spring_Framework_2016
91e173e8703c24a3a22c6bd1635eec2f920654e9
c440c9d0eadfc729dd7871c5dc816d7b207021c8
refs/heads/master
2023-07-18T00:23:49.763328
2021-08-13T06:37:55
2021-08-13T06:37:55
395,531,898
0
0
null
null
null
null
UTF-8
Java
false
false
165
java
public class test { static int j=f(); static int i=10; static int f(){ return i; } public static void main(String[] args) { System.out.println(i+" "+j); } }
[ "hemantjava90@gmail.com" ]
hemantjava90@gmail.com
efd9e9f35801440ce5f7dc5337e995cb93fcf28b
67c9e8f519b10e18318ac4591ba23b604f882ef1
/src/main/java/com/example/demo/entities/pk/OrderItemPk.java
0b953bcaa1caa58205453985e9b1918d6184a4f8
[]
no_license
joaoramos00/cursospringboot2java11
eab510de7d419058ab3dde7f800b7dea3f1cf564
a9a5ec9ac61bf8a20a255c64876d6cab3126f225
refs/heads/master
2022-07-18T05:11:00.814207
2020-05-14T11:57:23
2020-05-14T11:57:23
262,809,751
0
0
null
null
null
null
UTF-8
Java
false
false
1,497
java
package com.example.demo.entities.pk; import java.io.Serializable; import javax.persistence.Embeddable; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import com.example.demo.entities.Order; import com.example.demo.entities.Product; @Embeddable public class OrderItemPk implements Serializable { private static final long serialVersionUID = 1L; @ManyToOne @JoinColumn(name = "order_id") private Order order; @ManyToOne @JoinColumn(name = "product_id") private Product product; public Order getOrder() { return order; } public void setOrder(Order order) { this.order = order; } public Product getProduct() { return product; } public void setProduct(Product product) { this.product = product; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((order == null) ? 0 : order.hashCode()); result = prime * result + ((product == null) ? 0 : product.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; OrderItemPk other = (OrderItemPk) obj; if (order == null) { if (other.order != null) return false; } else if (!order.equals(other.order)) return false; if (product == null) { if (other.product != null) return false; } else if (!product.equals(other.product)) return false; return true; } }
[ "joaoramos00@gmail.com" ]
joaoramos00@gmail.com
e596e8a50b9257c984fa391b583b9832eaec47cb
bd5d7bbffc14bfa340575c8dffed69f8175c1f8c
/netty_iot/src/main/java/com/example/netty_iot/IotApplication.java
856daa899b5534a38682f2827088b3e9bf1b09eb
[]
no_license
peiqingliu/springboot_netty_all
d1325c3068670e0cdcaadcd865854a171b4bef1f
8b71d5fb8666ccb90cf644765a4087a15eb7e4f2
refs/heads/master
2022-10-06T05:21:09.150253
2020-02-08T03:25:31
2020-02-08T03:25:31
237,787,233
0
0
null
2022-10-04T23:55:53
2020-02-02T14:56:18
Java
UTF-8
Java
false
false
387
java
package com.example.netty_iot; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; /** * @Author Liupeiqing * @Date 2020/2/3 19:31 * @Version 1.0 */ @SpringBootApplication public class IotApplication { public static void main(String[] args) { SpringApplication.run(IotApplication.class,args); } }
[ "1226880979@qq.com" ]
1226880979@qq.com
8eb432f9aaf1a4ea534ab9241781c2d8d7b224d3
ff7105c0b628206aca25691e0fffb90f6b8184dc
/app/src/main/java/com/example/xiaojun/linghejiedao/beans/TianQiBean.java
b8a34d46cbb15eb27895cabb11bfbe2694763609
[]
no_license
yoyo89757001/linhejiedaoXiaoTV
e5ff793e665b4db35a24867847f23dcb54093ae7
44a49126d7166005a5190992023453f06a8019f9
refs/heads/master
2021-01-19T06:02:39.926493
2017-08-17T10:03:39
2017-08-17T10:03:39
100,589,658
0
0
null
null
null
null
UTF-8
Java
false
false
7,060
java
package com.example.xiaojun.linghejiedao.beans; import java.util.List; /** * Created by chenjun on 2017/5/15. */ public class TianQiBean { /** * desc : OK * status : 1000 * data : {"wendu":"25","ganmao":"风较大,阴冷潮湿,较易发生感冒,体质较弱的朋友请注意适当防护。","forecast":[{"fengxiang":"南风","fengli":"3-4级","high":"高温 27℃","type":"暴雨","low":"低温 23℃","date":"15日星期一"},{"fengxiang":"北风","fengli":"3-4级","high":"高温 29℃","type":"多云","low":"低温 23℃","date":"16日星期二"},{"fengxiang":"无持续风向","fengli":"微风级","high":"高温 30℃","type":"多云","low":"低温 24℃","date":"17日星期三"},{"fengxiang":"无持续风向","fengli":"微风级","high":"高温 29℃","type":"多云","low":"低温 25℃","date":"18日星期四"},{"fengxiang":"无持续风向","fengli":"微风级","high":"高温 29℃","type":"多云","low":"低温 23℃","date":"19日星期五"}],"yesterday":{"fl":"微风","fx":"无持续风向","high":"高温 29℃","type":"多云","low":"低温 23℃","date":"14日星期日"},"aqi":"27","city":"广州"} */ private String desc; private int status; private DataBean data; public String getDesc() { return desc; } public void setDesc(String desc) { this.desc = desc; } public int getStatus() { return status; } public void setStatus(int status) { this.status = status; } public DataBean getData() { return data; } public void setData(DataBean data) { this.data = data; } public static class DataBean { /** * wendu : 25 * ganmao : 风较大,阴冷潮湿,较易发生感冒,体质较弱的朋友请注意适当防护。 * forecast : [{"fengxiang":"南风","fengli":"3-4级","high":"高温 27℃","type":"暴雨","low":"低温 23℃","date":"15日星期一"},{"fengxiang":"北风","fengli":"3-4级","high":"高温 29℃","type":"多云","low":"低温 23℃","date":"16日星期二"},{"fengxiang":"无持续风向","fengli":"微风级","high":"高温 30℃","type":"多云","low":"低温 24℃","date":"17日星期三"},{"fengxiang":"无持续风向","fengli":"微风级","high":"高温 29℃","type":"多云","low":"低温 25℃","date":"18日星期四"},{"fengxiang":"无持续风向","fengli":"微风级","high":"高温 29℃","type":"多云","low":"低温 23℃","date":"19日星期五"}] * yesterday : {"fl":"微风","fx":"无持续风向","high":"高温 29℃","type":"多云","low":"低温 23℃","date":"14日星期日"} * aqi : 27 * city : 广州 */ private String wendu; private String ganmao; private YesterdayBean yesterday; private String aqi; private String city; private List<ForecastBean> forecast; public String getWendu() { return wendu; } public void setWendu(String wendu) { this.wendu = wendu; } public String getGanmao() { return ganmao; } public void setGanmao(String ganmao) { this.ganmao = ganmao; } public YesterdayBean getYesterday() { return yesterday; } public void setYesterday(YesterdayBean yesterday) { this.yesterday = yesterday; } public String getAqi() { return aqi; } public void setAqi(String aqi) { this.aqi = aqi; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public List<ForecastBean> getForecast() { return forecast; } public void setForecast(List<ForecastBean> forecast) { this.forecast = forecast; } public static class YesterdayBean { /** * fl : 微风 * fx : 无持续风向 * high : 高温 29℃ * type : 多云 * low : 低温 23℃ * date : 14日星期日 */ private String fl; private String fx; private String high; private String type; private String low; private String date; public String getFl() { return fl; } public void setFl(String fl) { this.fl = fl; } public String getFx() { return fx; } public void setFx(String fx) { this.fx = fx; } public String getHigh() { return high; } public void setHigh(String high) { this.high = high; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getLow() { return low; } public void setLow(String low) { this.low = low; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } } public static class ForecastBean { /** * fengxiang : 南风 * fengli : 3-4级 * high : 高温 27℃ * type : 暴雨 * low : 低温 23℃ * date : 15日星期一 */ private String fengxiang; private String fengli; private String high; private String type; private String low; private String date; public String getFengxiang() { return fengxiang; } public void setFengxiang(String fengxiang) { this.fengxiang = fengxiang; } public String getFengli() { return fengli; } public void setFengli(String fengli) { this.fengli = fengli; } public String getHigh() { return high; } public void setHigh(String high) { this.high = high; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getLow() { return low; } public void setLow(String low) { this.low = low; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } } } }
[ "332663557@qq.com" ]
332663557@qq.com
857d804fb6ca5c472e1b1256655614f8369e49c6
e00a0c7af9b02b819dba19fd2916e163868cfc3c
/src/main/java/com/mycompany/controller/shop/CmsPages.java
5e15b7647ca25b84c12f574be74c5c970afe8f1e
[]
no_license
silentcharacter/jooby-app
2d595ca3d76c8b8bb22a95e40d0e98defad1210e
f480a0cdd00b3d5bddb9b564077e95a7bf5071e5
refs/heads/master
2020-04-07T05:29:03.415236
2019-02-17T15:33:03
2019-02-17T15:33:03
48,643,970
3
1
null
null
null
null
UTF-8
Java
false
false
328
java
package com.mycompany.controller.shop; import com.mycompany.controller.AbstractResource; import com.mycompany.domain.shop.CmsPage; import com.mycompany.service.shop.CmsPageService; public class CmsPages extends AbstractResource<CmsPage> { public CmsPages() { super(CmsPage.class, CmsPageService.class); } }
[ "ilya.igolnikov@zaelab.com" ]
ilya.igolnikov@zaelab.com
5f925c1d1b9eb39ab5e2404f93b0791f87aefa90
11fced7d40e3e46d85a2d5afea272dbc6ad8c3c2
/src/chapter15/PE1513_Client.java
37d0b3cf15853e284f7b0d0f3f03b9391a1ab961
[]
no_license
Lo1s/JavaIntroduction
152c94c45f99992df9e32fc5608eda617cd8b9d5
9aa4f37210706ec30f49a15ed339dfff3d175f47
refs/heads/master
2016-09-06T17:55:26.432493
2015-07-03T09:34:38
2015-07-03T09:34:38
37,971,996
0
0
null
null
null
null
UTF-8
Java
false
false
513
java
/** * */ package chapter15; /** * @author jslapnicka * @Date & @Time 8. 9. 2014 2014 8:24:07 */ public class PE1513_Client { /** * @param args */ public static void main(String[] args) throws CloneNotSupportedException { // TODO Auto-generated method stub PE1513_Octagon o1 = new PE1513_Octagon(6); PE1513_Octagon o2 = (PE1513_Octagon)o1.clone(); @SuppressWarnings("unused") PE1513_Octagon o3 = new PE1513_Octagon(5); System.out.println("o1.compareTo(o2): " + o1.compareTo(o2)); } }
[ "hydRwa@gmail.com" ]
hydRwa@gmail.com
05b428e061a4e22f4f89ea8ad35f78912f38a7b0
4c04c7885ac05b248a7cc14a355a2c9f3f103ad4
/src/Drive.java
dfd7d396e002149b99b518546fd5aa0577221ff6
[]
no_license
milad-saadat/HW2-3
92813446e8670950f0f2b3312ffcad2c98b42e3c
73692ccec4ddc9792a64319cdba239a2f340a211
refs/heads/master
2021-05-21T23:11:01.702096
2020-04-15T07:03:47
2020-04-15T07:03:47
252,851,780
0
0
null
null
null
null
UTF-8
Java
false
false
2,734
java
import java.util.ArrayList; public class Drive extends Directory { public static ArrayList<Drive> allDrives = new ArrayList<>(); private int allSpace; public int getAllSpace() { return allSpace; } public Drive(int allSpace, String name) { this.allSpace = allSpace; this.name = name; this.parent = this; this.usedSpace = 0; this.root = this; allDrives.add(this); } public String getName() { return name; } public static void initialize(){ int hardSize; int hardNum; int sizeUntilNow=0; while (true){ String line = Main.input.nextLine(); line = line.trim(); if (line.matches("\\d+ \\d+")){ String[] command = line.split(" "); hardSize = Integer.parseInt(command[0]); hardNum = Integer.parseInt(command[1]); break; } else { System.out.println("invalid command"); } } for (int i = 0; i < hardNum; i++) { String name; int space; while (true){ String line = Main.input.nextLine(); line = line.trim(); if (line.matches("\\S+ \\d+")){ String[] command = line.split(" "); name = command[0]; space = Integer.parseInt(command[1]); if (!isValidName(name)){ System.out.println("invalid name"); } else if (sizeUntilNow + space > hardSize){ System.out.println("insufficient hard size"); } else { sizeUntilNow += space; new Drive(space , name); break; } } else { System.out.println("invalid command"); } } } } private static boolean isValidName(String name){ if (name.length() > 1) return false; if (name.charAt(0) < 'A' || name.charAt(0) > 'Z') return false; return getDriveByName(name) == null; } public static Drive getDriveByName(String name){ for (Drive drive : allDrives) { if (drive.getName().equals(name)) return drive; } return null; } public static void printDriveStatus(){ for (Drive drive : allDrives) { System.out.println(drive.name + " " + drive.allSpace + "MB " + drive.usedSpace + "MB"); } } }
[ "msaadat1379@gmail.com" ]
msaadat1379@gmail.com
22c6361f624fb0d8d89302f61e65253940c19cb9
8ccd1c071b19388f1f2e92c5e5dbedc78fead327
/src/main/java/ohos/appexecfwk/utils/PerfProfile.java
e69e0855bd914b9e0e28ad70baa10dff54be4fa4
[]
no_license
yearsyan/Harmony-OS-Java-class-library
d6c135b6a672c4c9eebf9d3857016995edeb38c9
902adac4d7dca6fd82bb133c75c64f331b58b390
refs/heads/main
2023-06-11T21:41:32.097483
2021-06-24T05:35:32
2021-06-24T05:35:32
379,816,304
6
3
null
null
null
null
UTF-8
Java
false
false
918
java
package ohos.appexecfwk.utils; import ohos.hiviewdfx.HiLogLabel; public class PerfProfile { private static final HiLogLabel PERFPROFILE_LABEL = new HiLogLabel(3, 218108160, "AppPerfProfile"); private static final int TIME_UNIT = 1000; public static long getTimeStamp() { return System.nanoTime(); } public static void printDurationTime(long j, long j2, String str) { if (j2 < j) { AppLog.w(PERFPROFILE_LABEL, "PerfProfile::printDurationTime stop must greater or equal to start", new Object[0]); } else if (str == null || str.isEmpty()) { AppLog.w(PERFPROFILE_LABEL, "PerfProfile::printDurationTime message invalid", new Object[0]); } else { String valueOf = String.valueOf((j2 - j) / 1000); AppLog.i(PERFPROFILE_LABEL, "%{public}s spend time %{public}s us", str, valueOf); } } }
[ "yearsyan@gmail.com" ]
yearsyan@gmail.com
8bada3ef95e56c6de640921ba674bed1c53d9b80
840d06787d44056decb54c6da4a42c0f1adf958b
/src/main/java/pl/alkom/spring/repositories/TeamRepository.java
394a5479c73a9698ca2d12e366ba3b31eac1cb5b
[]
no_license
DanielMichalski/altkom-spring-mvc
893f066b159fec71b88bb21c10e5fe35cd5ab9cd
b58a5e7aa355bc4ee02dfba312f161e209501803
refs/heads/master
2021-01-01T19:46:41.917237
2014-08-31T11:23:50
2014-08-31T11:23:50
23,369,575
1
2
null
null
null
null
UTF-8
Java
false
false
231
java
package pl.alkom.spring.repositories; import org.springframework.data.repository.CrudRepository; import pl.alkom.spring.model.Team; /** * Author: Daniel */ public interface TeamRepository extends CrudRepository<Team, Long> { }
[ "michalskidaniel2@gmail.com" ]
michalskidaniel2@gmail.com
c79e77398e1c1dd35f1d1209265ad35850bbb570
fbc34f6c3395ec55efc362a7dfc6ef921e432801
/RestServiceApp/src/main/java/nl/dennisvdwielen/enums/Orders.java
879818141f72be31e91d2a1d490da97fd5d303fc
[]
no_license
Denn93/EmergingTechnologiesProject-backend
9ee7546fbc1ce7d2865159765a15f75f465cd61f
d32041ca8f9d2c6c3d68a27755ae19ae54c638c2
refs/heads/master
2021-01-01T18:47:54.168265
2014-06-23T11:50:58
2014-06-23T11:50:58
null
0
0
null
null
null
null
UTF-8
Java
false
false
582
java
package nl.dennisvdwielen.enums; /** * Created by Dennis on 20-5-2014 at 11:14) * <p/> * This code is part of the RestServiceApp project. * This class is within package nl.dennisvdwielen.enums */ /** * This enum class is used for organizing the order options within the backend. The create clear constant and value pairs */ public enum Orders { ASCENDING("ASC"), DESCENDING("DESC"); private String shortValue; private Orders(String shortValue) { this.shortValue = shortValue; } public String getValue() { return shortValue; } }
[ "dennis.wielen@gmail.com" ]
dennis.wielen@gmail.com
8e1e71b195ad5231bbd4962ef263c8ad4c25bbf6
6a97d5a1477c1a0665326222cb246c57213aa957
/app/src/test/java/com/dynamic_host/database/ExampleUnitTest.java
0bf37ea5cb71c2f84c41c20caf501739dac548e8
[]
no_license
Sarowal-1734/Database
e4aa9df519ab2e678f7a9509de686df0311f316e
5cecb1a99a0db3dc1b13b6a2a9bae0e6f61e2969
refs/heads/master
2023-01-04T11:25:57.275370
2020-11-01T17:25:44
2020-11-01T17:25:44
309,149,642
0
0
null
null
null
null
UTF-8
Java
false
false
386
java
package com.dynamic_host.database; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() { assertEquals(4, 2 + 2); } }
[ "sarowalhossain1997@gmail.com" ]
sarowalhossain1997@gmail.com
0bb57a893ac3acbc21aae245b72c85d85c0aebfe
4f0e455285a298335b1d9b7f02fd1cf98696367f
/app/src/main/java/com/example/battleship/data/DatabaseHelper.java
5beae8900967c03fda868c22624f3e2e8e1cbd76
[]
no_license
Nadezhda24/BattleShip2
c3631820bf37dab86bd5b49b4e2d5e2d632cb024
ca094ad730e4bc088db4736940953016a7723b5d
refs/heads/master
2020-12-22T09:59:45.288410
2020-05-29T11:49:11
2020-05-29T11:49:11
236,743,529
0
0
null
null
null
null
UTF-8
Java
false
false
4,534
java
package com.example.battleship.data; import android.content.ContentValues; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; import android.util.Log; import androidx.annotation.Nullable; import static com.example.battleship.data.Database.DatabasePlayer.TABLE_NAME; public class DatabaseHelper extends SQLiteOpenHelper { private static final String DATABASE_NAME = "player.db"; //Версия базы данных. При изменении схемы увеличить на единицу private static final int DATABASE_VERSION = 4; public DatabaseHelper(Context context) { super(context, DATABASE_NAME, null, DATABASE_VERSION); } // для создания бд @Override public void onCreate(SQLiteDatabase db) { String SQL_create_Player = "CREATE TABLE if not exists " + Database.DatabasePlayer.TABLE_NAME + " (" + Database.DatabasePlayer.id_Player + " INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, " + Database.DatabasePlayer.name_Player + " TEXT NOT NULL, " + Database.DatabasePlayer.login_Player + " TEXT NOT NULL, " + Database.DatabasePlayer.password_Player + " TEXT NOT NULL, " + Database.DatabasePlayer.money_Player + " INTEGER NOT NULL DEFAULT 0, " + Database.DatabasePlayer.experiment_Player + " INTEGER NOT NULL DEFAULT 0, " + Database.DatabasePlayer.count_game_Player + " INTEGER NOT NULL DEFAULT 0, " + Database.DatabasePlayer. count_win_Player + " INTEGER NOT NULL DEFAULT 0, " + Database.DatabasePlayer.id_zvanie_Player + " INTEGER NOT NULL DEFAULT 0," + "FOREIGN KEY (" + Database.DatabasePlayer.id_zvanie_Player + ")REFERENCES " + Database.DatabaseZvanie.TABLE_NAME + "(" + Database.DatabaseZvanie.id_Zvanie + ") ON DELETE NO ACTION ON UPDATE NO ACTION);"; String SQL_create_Zvanie = "CREATE TABLE if not exists " + Database.DatabaseZvanie.TABLE_NAME + " (" + Database.DatabaseZvanie.id_Zvanie + " INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, " + Database.DatabaseZvanie.name_Zvanie + " TEXT NOT NULL);"; String SQL_create_Feature = "CREATE TABLE if not exists " + Database.DatabaseFeature.TABLE_NAME + " (" + Database.DatabaseFeature.id_Feature + " INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, " + Database.DatabaseFeature.name_Feature + " TEXT NOT NULL);"; /* String SQL_create_Player_has_Feature = "CREATE TABLE " + Database.DatabasePlayer_has_Feature.TABLE_NAME + "(" + Database.DatabasePlayer_has_Feature.id_Player + " INTEGER NOT NULL PRIMARY KEY ," + Database.DatabasePlayer_has_Feature.id_Feature + " INTEGER NOT NULL PRIMARY KEY ," + Database.DatabasePlayer_has_Feature.count_Feature + " INTEGER NOT NULL," + "FOREIGN KEY (" + Database.DatabasePlayer_has_Feature.id_Player + ")REFERENCES " + Database.DatabasePlayer.TABLE_NAME + "(" + Database.DatabasePlayer.id_Player + ") ON DELETE NO ACTION ON UPDATE NO ACTION," + "FOREIGN KEY (" + Database.DatabasePlayer_has_Feature.id_Feature + ")REFERENCES " + Database.DatabaseFeature.TABLE_NAME + "(" + Database.DatabaseFeature.id_Feature + ") ON DELETE NO ACTION ON UPDATE NO ACTION);"; */ db.execSQL(SQL_create_Player); db.execSQL(SQL_create_Zvanie); db.execSQL(SQL_create_Feature); // db.execSQL(SQL_create_Player_has_Feature); } // при обновлении схемы бд @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { // Запишем в журнал Log.w("SQLite", "Обновляемся с версии " + oldVersion + " на версию " + newVersion); // Удаляем старую таблицу и создаём новую db.execSQL("DROP TABLE " + Database.DatabasePlayer.TABLE_NAME); // Создаём новую таблицу onCreate(db); } }
[ "gerasimova.nadezhda2001@gmail.com" ]
gerasimova.nadezhda2001@gmail.com
53132b3f9bec9019ca42715242bdca697fb44181
6fa701cdaa0d83caa0d3cbffe39b40e54bf3d386
/google/cloud/videointelligence/v1p1beta1/google-cloud-videointelligence-v1p1beta1-java/proto-google-cloud-videointelligence-v1p1beta1-java/src/main/java/com/google/cloud/videointelligence/v1p1beta1/ExplicitContentDetectionConfig.java
04d58311f2efe925d73a74a0500f78d9b94dea28
[ "Apache-2.0" ]
permissive
oltoco/googleapis-gen
bf40cfad61b4217aca07068bd4922a86e3bbd2d5
00ca50bdde80906d6f62314ef4f7630b8cdb6e15
refs/heads/master
2023-07-17T22:11:47.848185
2021-08-29T20:39:47
2021-08-29T20:39:47
null
0
0
null
null
null
null
UTF-8
Java
false
true
21,974
java
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/cloud/videointelligence/v1p1beta1/video_intelligence.proto package com.google.cloud.videointelligence.v1p1beta1; /** * <pre> * Config for EXPLICIT_CONTENT_DETECTION. * </pre> * * Protobuf type {@code google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig} */ public final class ExplicitContentDetectionConfig extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig) ExplicitContentDetectionConfigOrBuilder { private static final long serialVersionUID = 0L; // Use ExplicitContentDetectionConfig.newBuilder() to construct. private ExplicitContentDetectionConfig(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { super(builder); } private ExplicitContentDetectionConfig() { model_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new ExplicitContentDetectionConfig(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private ExplicitContentDetectionConfig( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { java.lang.String s = input.readStringRequireUtf8(); model_ = s; break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.videointelligence.v1p1beta1.VideoIntelligenceServiceProto.internal_static_google_cloud_videointelligence_v1p1beta1_ExplicitContentDetectionConfig_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.videointelligence.v1p1beta1.VideoIntelligenceServiceProto.internal_static_google_cloud_videointelligence_v1p1beta1_ExplicitContentDetectionConfig_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig.class, com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig.Builder.class); } public static final int MODEL_FIELD_NUMBER = 1; private volatile java.lang.Object model_; /** * <pre> * Model to use for explicit content detection. * Supported values: "builtin/stable" (the default if unset) and * "builtin/latest". * </pre> * * <code>string model = 1;</code> * @return The model. */ @java.lang.Override public java.lang.String getModel() { java.lang.Object ref = model_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); model_ = s; return s; } } /** * <pre> * Model to use for explicit content detection. * Supported values: "builtin/stable" (the default if unset) and * "builtin/latest". * </pre> * * <code>string model = 1;</code> * @return The bytes for model. */ @java.lang.Override public com.google.protobuf.ByteString getModelBytes() { java.lang.Object ref = model_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); model_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!getModelBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, model_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!getModelBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, model_); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig)) { return super.equals(obj); } com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig other = (com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig) obj; if (!getModel() .equals(other.getModel())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + MODEL_FIELD_NUMBER; hash = (53 * hash) + getModel().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** * <pre> * Config for EXPLICIT_CONTENT_DETECTION. * </pre> * * Protobuf type {@code google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements // @@protoc_insertion_point(builder_implements:google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig) com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfigOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.videointelligence.v1p1beta1.VideoIntelligenceServiceProto.internal_static_google_cloud_videointelligence_v1p1beta1_ExplicitContentDetectionConfig_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.videointelligence.v1p1beta1.VideoIntelligenceServiceProto.internal_static_google_cloud_videointelligence_v1p1beta1_ExplicitContentDetectionConfig_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig.class, com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig.Builder.class); } // Construct using com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); model_ = ""; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.videointelligence.v1p1beta1.VideoIntelligenceServiceProto.internal_static_google_cloud_videointelligence_v1p1beta1_ExplicitContentDetectionConfig_descriptor; } @java.lang.Override public com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig getDefaultInstanceForType() { return com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig.getDefaultInstance(); } @java.lang.Override public com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig build() { com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig buildPartial() { com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig result = new com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig(this); result.model_ = model_; onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig) { return mergeFrom((com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig other) { if (other == com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig.getDefaultInstance()) return this; if (!other.getModel().isEmpty()) { model_ = other.model_; onChanged(); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private java.lang.Object model_ = ""; /** * <pre> * Model to use for explicit content detection. * Supported values: "builtin/stable" (the default if unset) and * "builtin/latest". * </pre> * * <code>string model = 1;</code> * @return The model. */ public java.lang.String getModel() { java.lang.Object ref = model_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); model_ = s; return s; } else { return (java.lang.String) ref; } } /** * <pre> * Model to use for explicit content detection. * Supported values: "builtin/stable" (the default if unset) and * "builtin/latest". * </pre> * * <code>string model = 1;</code> * @return The bytes for model. */ public com.google.protobuf.ByteString getModelBytes() { java.lang.Object ref = model_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); model_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * <pre> * Model to use for explicit content detection. * Supported values: "builtin/stable" (the default if unset) and * "builtin/latest". * </pre> * * <code>string model = 1;</code> * @param value The model to set. * @return This builder for chaining. */ public Builder setModel( java.lang.String value) { if (value == null) { throw new NullPointerException(); } model_ = value; onChanged(); return this; } /** * <pre> * Model to use for explicit content detection. * Supported values: "builtin/stable" (the default if unset) and * "builtin/latest". * </pre> * * <code>string model = 1;</code> * @return This builder for chaining. */ public Builder clearModel() { model_ = getDefaultInstance().getModel(); onChanged(); return this; } /** * <pre> * Model to use for explicit content detection. * Supported values: "builtin/stable" (the default if unset) and * "builtin/latest". * </pre> * * <code>string model = 1;</code> * @param value The bytes for model to set. * @return This builder for chaining. */ public Builder setModelBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); model_ = value; onChanged(); return this; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig) } // @@protoc_insertion_point(class_scope:google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig) private static final com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig(); } public static com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser<ExplicitContentDetectionConfig> PARSER = new com.google.protobuf.AbstractParser<ExplicitContentDetectionConfig>() { @java.lang.Override public ExplicitContentDetectionConfig parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new ExplicitContentDetectionConfig(input, extensionRegistry); } }; public static com.google.protobuf.Parser<ExplicitContentDetectionConfig> parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser<ExplicitContentDetectionConfig> getParserForType() { return PARSER; } @java.lang.Override public com.google.cloud.videointelligence.v1p1beta1.ExplicitContentDetectionConfig getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }
[ "bazel-bot-development[bot]@users.noreply.github.com" ]
bazel-bot-development[bot]@users.noreply.github.com
1ac3e931b91ea5c4409a006d058fb7f6e1583447
6dc27545eceaa0fe130139c62e36f2c4b17de8f3
/src/main/java/com/norconex/committer/core3/impl/MemoryCommitter.java
54597b6f063cebc3489e12c588467ed38cc5a259
[ "Apache-2.0" ]
permissive
Norconex/committer-core
30059fa960c21e03def13c71cef3bd60ca3f876b
0ed3718c6484b820c5dc2e81fa01a87288a589b7
refs/heads/master
2023-02-09T09:28:06.924160
2022-01-02T21:50:16
2022-01-02T21:50:16
12,910,531
6
11
Apache-2.0
2023-02-08T23:07:44
2013-09-18T00:47:26
Java
UTF-8
Java
false
false
7,337
java
/* Copyright 2019-2020 Norconex 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.norconex.committer.core3.impl; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.List; import java.util.Map.Entry; import java.util.stream.Collectors; import org.apache.commons.io.IOUtils; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.norconex.committer.core3.AbstractCommitter; import com.norconex.committer.core3.CommitterException; import com.norconex.committer.core3.DeleteRequest; import com.norconex.committer.core3.ICommitterRequest; import com.norconex.committer.core3.UpsertRequest; import com.norconex.commons.lang.map.Properties; import com.norconex.commons.lang.text.TextMatcher; import com.norconex.commons.lang.xml.XML; /** * <p> * <b>WARNING: Not intended for production use.</b> * </p> * <p> * A Committer that stores every document received into memory. * This can be useful for testing or troubleshooting applications using * Committers. * Given this committer can eat up memory pretty quickly, its use is strongly * discouraged for regular production use. * </p> * * {@nx.xml.usage * <committer class="com.norconex.committer.core3.impl.MemoryCommitter"> * {@nx.include com.norconex.committer.core3.AbstractCommitter@nx.xml.usage} * </committer> * } * * @author Pascal Essiembre * @since 3.0.0 */ @SuppressWarnings("javadoc") public class MemoryCommitter extends AbstractCommitter { private static final Logger LOG = LoggerFactory.getLogger(MemoryCommitter.class); private final List<ICommitterRequest> requests = new ArrayList<>(); private int upsertCount = 0; private int deleteCount = 0; private boolean ignoreContent; private final TextMatcher fieldMatcher = new TextMatcher(); /** * Constructor. */ public MemoryCommitter() { super(); } public boolean isIgnoreContent() { return ignoreContent; } public void setIgnoreContent(boolean ignoreContent) { this.ignoreContent = ignoreContent; } public TextMatcher getFieldMatcher() { return fieldMatcher; } public void setFieldMatcher(TextMatcher fieldMatcher) { this.fieldMatcher.copyFrom(fieldMatcher); } @Override protected void doInit() { //NOOP } public boolean removeRequest(ICommitterRequest req) { return requests.remove(req); } public List<ICommitterRequest> getAllRequests() { return requests; } public List<UpsertRequest> getUpsertRequests() { return requests.stream() .filter(o -> o instanceof UpsertRequest) .map(o -> (UpsertRequest) o) .collect(Collectors.toList()); } public List<DeleteRequest> getDeleteRequests() { return requests.stream() .filter(o -> o instanceof DeleteRequest) .map(o -> (DeleteRequest) o) .collect(Collectors.toList()); } public int getUpsertCount() { return upsertCount; } public int getDeleteCount() { return deleteCount; } public int getRequestCount() { return requests.size(); } @Override protected void doUpsert(UpsertRequest upsertRequest) throws CommitterException { String memReference = upsertRequest.getReference(); LOG.debug("Committing upsert request for {}", memReference); InputStream memContent = null; InputStream reqContent = upsertRequest.getContent(); if (!ignoreContent && reqContent != null) { try { memContent = new ByteArrayInputStream( IOUtils.toByteArray(reqContent)); } catch (IOException e) { throw new CommitterException( "Could not do upsert for " + memReference); } } Properties memMetadata = filteredMetadata(upsertRequest.getMetadata()); requests.add(new UpsertRequest(memReference, memMetadata, memContent)); upsertCount++; } @Override protected void doDelete(DeleteRequest deleteRequest) { String memReference = deleteRequest.getReference(); LOG.debug("Committing delete request for {}", memReference); Properties memMetadata = filteredMetadata(deleteRequest.getMetadata()); requests.add(new DeleteRequest(memReference, memMetadata)); deleteCount++; } private Properties filteredMetadata(Properties reqMetadata) { Properties memMetadata = new Properties(); if (reqMetadata != null) { if (fieldMatcher.getPattern() == null) { memMetadata.loadFromMap(reqMetadata); } else { memMetadata.loadFromMap(reqMetadata.entrySet().stream() .filter(en -> fieldMatcher.matches(en.getKey())) .collect(Collectors.toMap( Entry::getKey, Entry::getValue))); } } return memMetadata; } @Override protected void doClose() throws com.norconex.committer.core3.CommitterException { LOG.info("{} upserts committed.", upsertCount); LOG.info("{} deletions committed.", deleteCount); } @Override protected void doClean() throws CommitterException { // NOOP } @Override public boolean equals(final Object other) { return EqualsBuilder.reflectionEquals(this, other); } @Override public int hashCode() { return HashCodeBuilder.reflectionHashCode(this); } @Override public String toString() { // Cannot use ReflectionToStringBuilder here to prevent // "An illegal reflective access operation has occurred" return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE) .appendSuper(super.toString()) .append("requests", requests, false) .append("upsertCount", upsertCount) .append("deleteCount", deleteCount) .build(); } @Override public void loadCommitterFromXML(XML xml) { //NOOP } @Override public void saveCommitterToXML(XML xml) { //NOOP } }
[ "pascal.essiembre@norconex.com" ]
pascal.essiembre@norconex.com
f21c3ad2b3b3e3c29ec1d90739705d174d8d2eb1
c97a2b5ab98555d6247c61d9b85d67604babdc4e
/epi/SearchForMinMaxInArray.java
b77f0f5de02903a9c5768b7e1b6d5d5dcb38187e
[]
no_license
codecarvaan/Epi-Solutions
daafb83baab20615ca4a95586deb2116848e5b53
011aedd19d88a6fcb7eeb18edb32078d0248e67a
refs/heads/master
2020-06-16T07:41:41.709228
2020-02-23T13:50:04
2020-02-23T13:50:04
195,514,524
0
0
null
null
null
null
UTF-8
Java
false
false
2,088
java
package epi; import epi.test_framework.EpiTest; import epi.test_framework.EpiUserType; import epi.test_framework.GenericTest; import java.util.List; public class SearchForMinMaxInArray { @EpiUserType(ctorParams = {Integer.class, Integer.class}) public static class MinMax { public Integer smallest; public Integer largest; public MinMax(Integer smallest, Integer largest) { this.smallest = smallest; this.largest = largest; } private static MinMax minMax(Integer a, Integer b) { return Integer.compare(b, a) < 0 ? new MinMax(b, a) : new MinMax(a, b); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } MinMax minMax = (MinMax)o; if (!smallest.equals(minMax.smallest)) { return false; } return largest.equals(minMax.largest); } @Override public String toString() { return "min: " + smallest + ", max: " + largest; } } @EpiTest(testDataFile = "search_for_min_max_in_array.tsv") public static MinMax findMinMax(List<Integer> A) { if(A.size()==1){ return new MinMax(A.get(0),A.get(0)); } MinMax global=new MinMax(A.get(0),A.get(0)); for(int i=1;i<A.size();i+=2){ MinMax local=MinMax.minMax(A.get(i-1),A.get(i)); global=MinMax.minMax(MinMax.minMax(local.smallest,global.smallest).smallest,MinMax.minMax(local.largest,global.largest).largest); } if(A.size()%2!=0){ MinMax local=MinMax.minMax(A.get(A.size()-1),A.get(A.size()-1)); global=MinMax.minMax(MinMax.minMax(local.smallest,global.smallest).smallest,MinMax.minMax(local.largest,global.largest).largest); } return global; } public static void main(String[] args) { System.exit( GenericTest .runFromAnnotations(args, "SearchForMinMaxInArray.java", new Object() {}.getClass().getEnclosingClass()) .ordinal()); } }
[ "sharma.shivam7770@gmail.com" ]
sharma.shivam7770@gmail.com
06a1a3862ac47cb702e9bddbef0f7e335fa48763
7c16c7dc29b7ec913951dbcf2a44e9ccc1ee51af
/Durga-Projects/Hosptial/DurgaFileUpload/src/main/java/com/file/app/durgafileupload/repo/BookBedInformationRepo.java
39bcaa5f9bc4030c3c669856ab37fc0ec03d1b79
[]
no_license
Pavankumarnaidu2021/Pavankumarnaidu2021
4d52cf94914d835438e4606129b889894343b4a6
baf608bc73a8c3277e0e98c0e1b28b678cbc9a3e
refs/heads/master
2023-08-26T17:11:45.013816
2021-10-28T04:11:21
2021-10-28T04:11:21
417,180,103
0
0
null
null
null
null
UTF-8
Java
false
false
327
java
package com.file.app.durgafileupload.repo; import com.file.app.durgafileupload.entity.BookBedInformation; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository public interface BookBedInformationRepo extends JpaRepository<BookBedInformation, Integer> { }
[ "pavan@nuvepro.com" ]
pavan@nuvepro.com
e20aa2f576e440e33e12ddf950374c38d3034b0b
866ce7474bbc4eff1d9f35fb205158dd42f27c5f
/service-zuul/src/main/java/com/dfz/service/zuul/ZuulApplication.java
57274d3f6f023e2ccd64746fc29cc2f0ee6bb497
[]
no_license
Hogantry/spring-cloud-demos
92bc28bb18858a12d28961dda418a388f2c46269
8ab389e47b78d94f9a5989360f8c1d04d5bfd988
refs/heads/master
2023-05-04T12:20:32.715032
2021-04-23T01:45:36
2021-04-23T01:45:36
371,975,886
0
0
null
null
null
null
UTF-8
Java
false
false
704
java
package com.dfz.service.zuul; import brave.sampler.Sampler; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.zuul.EnableZuulProxy; import org.springframework.context.annotation.Bean; /** * @ClassName ZuulApplication * @Description ZuulApplication * @Author dfz * @Date 2019-10-30 14:29 * @Version 1.0 **/ @SpringBootApplication @EnableZuulProxy public class ZuulApplication { public static void main(String[] args) { SpringApplication.run(ZuulApplication.class, args); } @Bean public Sampler defaultSampler() { return Sampler.ALWAYS_SAMPLE; } }
[ "dengfz@ztzqzg.com" ]
dengfz@ztzqzg.com
0109912dfee7dd31ea21a29c4a320dd8897c90cb
43cf52b5d3e51ceace25883c3ca0d39ea018076c
/app/src/test/java/com/example/bluetoothenabler/ExampleUnitTest.java
e913161d16f685638386a6f841c68bfacd12cfeb
[]
no_license
sanki4489/Bluetooth-Enabler
3498908e5cdca6607184109cbda209625e2067dc
992c3018bf1573b93a8bebfee15f79a73f2b160b
refs/heads/master
2023-01-01T06:29:16.325299
2020-10-26T04:34:15
2020-10-26T04:34:15
302,251,704
1
0
null
null
null
null
UTF-8
Java
false
false
389
java
package com.example.bluetoothenabler; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() { assertEquals(4, 2 + 2); } }
[ "43778681+sanki4489@users.noreply.github.com" ]
43778681+sanki4489@users.noreply.github.com
8ac61c6330a523eb2c94fdafca11c3781e553c7d
709161625d5b80e42b308f36d9473b6ed314fb00
/app/build/generated/source/buildConfig/androidTest/debug/com/example/shashikant/bhuconnect/test/BuildConfig.java
d74feb0706eb08b6fffb347135e29b079026fb8a
[]
no_license
DwivediShashikant/CC-BHU
e32b6f36ad5f5c60160143f88edef4986182895c
a9ed99d977bd7aaa3a9f6e972fb15f3320c4802e
refs/heads/master
2021-01-21T16:45:17.994137
2017-06-26T05:08:41
2017-06-26T05:08:41
95,409,647
0
0
null
null
null
null
UTF-8
Java
false
false
483
java
/** * Automatically generated file. DO NOT MODIFY */ package com.example.shashikant.bhuconnect.test; public final class BuildConfig { public static final boolean DEBUG = Boolean.parseBoolean("true"); public static final String APPLICATION_ID = "com.example.shashikant.bhuconnect.test"; public static final String BUILD_TYPE = "debug"; public static final String FLAVOR = ""; public static final int VERSION_CODE = 1; public static final String VERSION_NAME = "1.0"; }
[ "dwivedi.sk@outlook.com" ]
dwivedi.sk@outlook.com
2e9ec588e755628189b047c5001e716d4ffbcf57
032cac7260fa6895b623412268febfaa27699388
/app/src/main/java/com/haleysoftware/popularmovies/objects/MovieItem.java
082c4e9f4638ea15242bb25460bd157cf6d2e3cc
[]
no_license
Haleysoftware/PopularMovies
9bf0691374b214f5626384feed4792f9ded5b469
3848c0b760787a7834a93d5510bea1fb38799f8d
refs/heads/master
2020-04-03T19:09:24.830630
2018-10-31T06:53:44
2018-10-31T06:53:44
155,510,646
0
0
null
null
null
null
UTF-8
Java
false
false
6,535
java
package com.haleysoftware.popularmovies.objects; import android.arch.persistence.room.Entity; import android.arch.persistence.room.PrimaryKey; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.drawable.BitmapDrawable; import android.os.Parcel; import android.os.Parcelable; import android.support.annotation.NonNull; /** * This object is used to hold data for each movie. * <p> * Created by haleysoft on 8/26/18. */ @Entity public class MovieItem implements Parcelable { public static final String SORT_ID = "grid_sorting"; public static final String ITEM = "movieItem"; public static final String POSTER_PATH = "https://image.tmdb.org/t/p/"; public static final String POSTER_SIZE = "w185/"; /** * Creates a new object from a parcel. */ public static final Parcelable.Creator CREATOR = new Parcelable.Creator() { public MovieItem createFromParcel(Parcel in) { return new MovieItem(in); } /** * Creates a new array for movie items. * * @param size The size of the new array. * @return The new array that was created. */ public MovieItem[] newArray(int size) { return new MovieItem[size]; } }; @PrimaryKey @NonNull private int movieId; private String release; private String poster; private double voteAverage; private String overview; @NonNull private String title; /** * Creates a movie object. * * @param movieId The Movie's ID. * @param title The movie's title. * @param release The movie's release date. * @param poster The URL ID for the movie poster on TheMovieDB.org. * @param voteAverage The average votes for the movie. * @param overview The movie's overview. */ public MovieItem(@NonNull int movieId, @NonNull String title, String release, String poster, double voteAverage, String overview) { this.movieId = movieId; this.title = title; this.release = release; this.poster = poster; this.voteAverage = voteAverage; this.overview = overview; } /** * Fills the new movie item with data from a parcel. * * @param in The parcel that was passed. */ public MovieItem(Parcel in) { this.movieId = in.readInt(); this.title = in.readString(); this.release = in.readString(); this.poster = in.readString(); this.voteAverage = in.readDouble(); this.overview = in.readString(); } /** * This is used when there is no poster for the movie item. It will create a blank poster * and insert the title. * * @param context The context of the activity used to get resources. * @param title The movie's title to use for the blank poster. * @return returns the drawable for the poster. */ static public BitmapDrawable noMoviePoster(Context context, String title) { Bitmap.Config config = Bitmap.Config.ARGB_8888; int height = 277 * 3; int width = 185 * 3; Bitmap newPoster = Bitmap.createBitmap(width, height, config); Paint paint = new Paint(); paint.setStyle(Paint.Style.FILL); paint.setColor(Color.BLACK); paint.setTextSize(50); Canvas canvas = new Canvas(newPoster); canvas.drawText(title, 5, newPoster.getHeight() / 2, paint); return new BitmapDrawable(context.getResources(), newPoster); } /** * Not used. * * @return Zero is sent. */ @Override public int describeContents() { return 0; } /** * Moves data from the object to a parcel. * * @param dest * @param flags */ @Override public void writeToParcel(Parcel dest, int flags) { dest.writeInt(this.movieId); dest.writeString(this.title); dest.writeString(this.release); dest.writeString(this.poster); dest.writeDouble(this.voteAverage); dest.writeString(this.overview); } /** * Returns the ID of the movie object. * * @return The Movie ID. */ @NonNull public int getMovieId() { return movieId; } /** * Sets the movie ID. Needed for Room. * * @param movieId The new movie ID. */ public void setMovieId(@NonNull int movieId) { this.movieId = movieId; } /** * Get the movie's title from this object. * * @return The movie's title. */ public String getTitle() { return title; } /** * Sets the movie's title. * * @param title The new title. */ public void setTitle(@NonNull String title) { this.title = title; } /** * Get the movie's release date from this object. * * @return The movie's release date. */ public String getRelease() { return release; } /** * Sets the movie's release date. * * @param release the new release date. */ public void setRelease(String release) { this.release = release; } /** * Get the path to the movie poster from this object. * The path will need to be appended to the end of the rest of the path and size. * * @return the movie path or null. */ public String getPoster() { return poster; } /** * Sets the movie's poster path. * * @param poster The new poster path. */ public void setPoster(String poster) { this.poster = poster; } /** * Get the vote average from this object. * * @return The average vote for this movie. */ public double getVoteAverage() { return voteAverage; } /** * Sets the movie's vote average. * * @param voteAverage The new vote average. */ public void setVoteAverage(double voteAverage) { this.voteAverage = voteAverage; } /** * Get the overview from this object. * * @return the overview for this movie. */ public String getOverview() { return overview; } /** * Sets the movie's overview. * * @param overview The new overview. */ public void setOverview(String overview) { this.overview = overview; } }
[ "michael@haleysoftware.com" ]
michael@haleysoftware.com
c6fdc8d1339eb51a8dd3c91876d83c96c7419830
d13fb02bb909606b9314bfbe67873deb00197fae
/app/src/main/java/com/xy/wk/BaseFragmentActivity.java
163c5ddc8924da9a54966403747b990a5a65ce3d
[]
no_license
chinafengqiang/wkPhone
1ff4e2e8feac47a97f193dc704b7c707a2b43e11
60d8e04fac5fd5c635f146aba4f33899091bd109
refs/heads/master
2020-12-13T03:35:41.420420
2016-08-02T10:41:11
2016-08-02T10:41:11
55,571,229
0
0
null
null
null
null
UTF-8
Java
false
false
1,692
java
package com.xy.wk; import android.content.Context; import android.os.Bundle; import android.support.v4.app.FragmentActivity; import android.view.View; import com.xy.view.FProgrssDialog; /** * Created by FQ.CHINA on 2015/8/31. */ public abstract class BaseFragmentActivity extends FragmentActivity implements View.OnClickListener{ protected Context mContext; protected FProgrssDialog progressDialog; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //mContext = getApplicationContext(); mContext = this; initView(); } private void initView() { loadViewLayout(); findViewById(); initSp(); initTitle(); setListener(); processLogic(); } protected void showProgressDialog() { closeProgressDialog(); if ((!isFinishing()) && (this.progressDialog == null)) { this.progressDialog = new FProgrssDialog(mContext); } this.progressDialog.show(); } protected void closeProgressDialog() { if (this.progressDialog != null){ this.progressDialog.dismiss(); this.progressDialog = null; } } @Override protected void onDestroy() { super.onDestroy(); closeProgressDialog(); mContext = null; } protected abstract void findViewById(); protected abstract void initTitle(); protected abstract void initSp(); /** * setContentView() * */ protected abstract void loadViewLayout(); protected abstract void processLogic(); protected abstract void setListener(); }
[ "chinafengqiang@sina.com" ]
chinafengqiang@sina.com
f8d91c76b8b3e9a3e46887337b7b78c47326347f
6add2789a8dd742d2b11d1f0b5b58a21e2314828
/app/src/test/java/com/example/tao/mytestapp/ExampleUnitTest.java
1a522a523a1fadbcdf849f789a809c8bfe102d5f
[]
no_license
TaoX999/MyTestAPP
d28e380a937b61d89991708c70de4e2406951162
e662adb8be89b29e3da71bafb3baf5e8cdfb554d
refs/heads/master
2021-04-06T17:01:03.284345
2018-03-08T11:15:23
2018-03-08T11:15:23
124,380,136
0
0
null
null
null
null
UTF-8
Java
false
false
403
java
package com.example.tao.mytestapp; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() throws Exception { assertEquals(4, 2 + 2); } }
[ "40290330@qq.com" ]
40290330@qq.com
f05fc6cada5738c650789b72c60ae90be097e839
b8dec60a1146b175d300a3b06cb167e9e519222a
/src/main/java/vehicles/SimpleSteering.java
d08c2cfc72301518963f5539f0c95553d639dfd8
[]
no_license
Jazriel/DisManSoft
7d98ed375223452464926ede86120a297ae2f893
d598bc94031d51a2b1cba1eea4475ed72244b18a
refs/heads/master
2021-01-20T07:47:28.379753
2016-11-19T11:33:49
2016-11-19T11:33:49
69,379,125
0
0
null
null
null
null
UTF-8
Java
false
false
503
java
package main.java.vehicles; import java.util.List; public class SimpleSteering implements ISteering { private List<IWheel> steeringWheels; public SimpleSteering(List<IWheel> steeringWheels) { this.steeringWheels = steeringWheels; } @Override public void turnLeft(double degrees) { for (IWheel wheel : steeringWheels) { wheel.setAngle(-degrees); } } @Override public void turnRight(double degrees) { for (IWheel wheel : steeringWheels) { wheel.setAngle(degrees); } } }
[ "jmr0082@alu.ubu.es" ]
jmr0082@alu.ubu.es
1827515a146f049d5f66668cde9c98c1437ef97e
2f5304331511575d1ad347894f85683d871b6776
/src/main/java/studio/baxia/fo/service/impl/FriendlinkServiceImpl.java
0b2ceca477a4ea5089c6be2ce01d47bf2a8a7a62
[]
no_license
laidigaga/jswang_blog
ba3bd39b040d6a9bb0acaf9d9c594aefdf224add
02b98ece598d49b44abfdac00c32c8f2e3646a1c
refs/heads/master
2021-01-25T01:14:46.626651
2017-06-19T08:00:27
2017-06-19T08:00:27
94,733,914
3
0
null
null
null
null
UTF-8
Java
false
false
2,388
java
package studio.baxia.fo.service.impl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import studio.baxia.fo.common.PageConfig; import studio.baxia.fo.common.PageInfoResult; import studio.baxia.fo.dao.IFriendDao; import studio.baxia.fo.pojo.Friendlink; import studio.baxia.fo.service.IFriendlinkService; import studio.baxia.fo.util.ReturnUtil; import java.util.Date; import java.util.List; /** * Created by Pan on 2016/12/1. */ @Service("iFriendlinkService") public class FriendlinkServiceImpl implements IFriendlinkService { @Autowired private IFriendDao iFriendDao; /** * 添加 * * @param friendlink * @return 操作结果 */ @Override public boolean add(Friendlink friendlink) { if(friendlink==null){ return false; } friendlink.setAddTime(new Date()); friendlink.setHits(0); int result = iFriendDao.insert(friendlink); return ReturnUtil.returnResult(result); } /** * 分页获取 * * @param pageConfig * @return 分页结果 */ @Override public PageInfoResult<Friendlink> pagingList(PageConfig pageConfig) { List<Friendlink> list = iFriendDao.selectBy(pageConfig); int count = iFriendDao.selectCountBy(); PageInfoResult<Friendlink> pageInfoResult = new PageInfoResult<>(list,pageConfig,count); return pageInfoResult; } /** * 获取所有 * * @return 所有记录 */ @Override public List<Friendlink> list() { List<Friendlink> list = iFriendDao.selectBy(null); return list; } @Override public Friendlink get(int fId) { Friendlink friendlink = iFriendDao.selectById(fId); return friendlink; } @Override public boolean delete(int fId) { int result = iFriendDao.deleteById(fId); return ReturnUtil.returnResult(result); } @Override public boolean update(Friendlink friendlink) { int result = iFriendDao.update(friendlink); return ReturnUtil.returnResult(result); } @Override public boolean hits(int id) { Friendlink friendlink = iFriendDao.selectById(id); friendlink.setHits(friendlink.getHits()+1); iFriendDao.updateHits(friendlink); return true; } }
[ "1013069553@qq.com" ]
1013069553@qq.com
5ca65141484c61638cf864d1e4476c3d687f2284
8b9190a8c5855d5753eb8ba7003e1db875f5d28f
/sources/androidx/transition/TransitionInflater.java
1efe9a3a9b0e6b5f8a8d0b8b2146afd636e4847b
[]
no_license
stevehav/iowa-caucus-app
6aeb7de7487bd800f69cb0b51cc901f79bd4666b
e3c7eb39de0be6bbfa8b6b063aaa85dcbcee9044
refs/heads/master
2020-12-29T10:25:28.354117
2020-02-05T23:15:52
2020-02-05T23:15:52
238,565,283
21
3
null
null
null
null
UTF-8
Java
false
false
15,859
java
package androidx.transition; import android.annotation.SuppressLint; import android.content.Context; import android.content.res.Resources; import android.content.res.TypedArray; import android.content.res.XmlResourceParser; import android.util.AttributeSet; import android.util.Xml; import android.view.InflateException; import android.view.ViewGroup; import androidx.annotation.NonNull; import androidx.collection.ArrayMap; import androidx.core.content.res.TypedArrayUtils; import com.facebook.react.uimanager.events.TouchesHelper; import java.io.IOException; import java.lang.reflect.Constructor; import org.xmlpull.v1.XmlPullParser; import org.xmlpull.v1.XmlPullParserException; public class TransitionInflater { private static final ArrayMap<String, Constructor> CONSTRUCTORS = new ArrayMap<>(); private static final Class<?>[] CONSTRUCTOR_SIGNATURE = {Context.class, AttributeSet.class}; private final Context mContext; private TransitionInflater(@NonNull Context context) { this.mContext = context; } public static TransitionInflater from(Context context) { return new TransitionInflater(context); } public Transition inflateTransition(int i) { XmlResourceParser xml = this.mContext.getResources().getXml(i); try { Transition createTransitionFromXml = createTransitionFromXml(xml, Xml.asAttributeSet(xml), (Transition) null); xml.close(); return createTransitionFromXml; } catch (XmlPullParserException e) { throw new InflateException(e.getMessage(), e); } catch (IOException e2) { throw new InflateException(xml.getPositionDescription() + ": " + e2.getMessage(), e2); } catch (Throwable th) { xml.close(); throw th; } } public TransitionManager inflateTransitionManager(int i, ViewGroup viewGroup) { XmlResourceParser xml = this.mContext.getResources().getXml(i); try { TransitionManager createTransitionManagerFromXml = createTransitionManagerFromXml(xml, Xml.asAttributeSet(xml), viewGroup); xml.close(); return createTransitionManagerFromXml; } catch (XmlPullParserException e) { InflateException inflateException = new InflateException(e.getMessage()); inflateException.initCause(e); throw inflateException; } catch (IOException e2) { InflateException inflateException2 = new InflateException(xml.getPositionDescription() + ": " + e2.getMessage()); inflateException2.initCause(e2); throw inflateException2; } catch (Throwable th) { xml.close(); throw th; } } private Transition createTransitionFromXml(XmlPullParser xmlPullParser, AttributeSet attributeSet, Transition transition) throws XmlPullParserException, IOException { Transition transition2; int depth = xmlPullParser.getDepth(); TransitionSet transitionSet = transition instanceof TransitionSet ? (TransitionSet) transition : null; loop0: while (true) { transition2 = null; while (true) { int next = xmlPullParser.next(); if ((next != 3 || xmlPullParser.getDepth() > depth) && next != 1) { if (next == 2) { String name = xmlPullParser.getName(); if ("fade".equals(name)) { transition2 = new Fade(this.mContext, attributeSet); } else if ("changeBounds".equals(name)) { transition2 = new ChangeBounds(this.mContext, attributeSet); } else if ("slide".equals(name)) { transition2 = new Slide(this.mContext, attributeSet); } else if ("explode".equals(name)) { transition2 = new Explode(this.mContext, attributeSet); } else if ("changeImageTransform".equals(name)) { transition2 = new ChangeImageTransform(this.mContext, attributeSet); } else if ("changeTransform".equals(name)) { transition2 = new ChangeTransform(this.mContext, attributeSet); } else if ("changeClipBounds".equals(name)) { transition2 = new ChangeClipBounds(this.mContext, attributeSet); } else if ("autoTransition".equals(name)) { transition2 = new AutoTransition(this.mContext, attributeSet); } else if ("changeScroll".equals(name)) { transition2 = new ChangeScroll(this.mContext, attributeSet); } else if ("transitionSet".equals(name)) { transition2 = new TransitionSet(this.mContext, attributeSet); } else if ("transition".equals(name)) { transition2 = (Transition) createCustom(attributeSet, Transition.class, "transition"); } else if ("targets".equals(name)) { getTargetIds(xmlPullParser, attributeSet, transition); } else if ("arcMotion".equals(name)) { if (transition != null) { transition.setPathMotion(new ArcMotion(this.mContext, attributeSet)); } else { throw new RuntimeException("Invalid use of arcMotion element"); } } else if ("pathMotion".equals(name)) { if (transition != null) { transition.setPathMotion((PathMotion) createCustom(attributeSet, PathMotion.class, "pathMotion")); } else { throw new RuntimeException("Invalid use of pathMotion element"); } } else if (!"patternPathMotion".equals(name)) { throw new RuntimeException("Unknown scene name: " + xmlPullParser.getName()); } else if (transition != null) { transition.setPathMotion(new PatternPathMotion(this.mContext, attributeSet)); } else { throw new RuntimeException("Invalid use of patternPathMotion element"); } if (transition2 == null) { continue; } else { if (!xmlPullParser.isEmptyElementTag()) { createTransitionFromXml(xmlPullParser, attributeSet, transition2); } if (transitionSet != null) { break; } else if (transition != null) { throw new InflateException("Could not add transition to another transition."); } } } } } transitionSet.addTransition(transition2); } return transition2; } private Object createCustom(AttributeSet attributeSet, Class cls, String str) { Object newInstance; Class<? extends U> asSubclass; String attributeValue = attributeSet.getAttributeValue((String) null, "class"); if (attributeValue != null) { try { synchronized (CONSTRUCTORS) { Constructor<? extends U> constructor = CONSTRUCTORS.get(attributeValue); if (constructor == null && (asSubclass = Class.forName(attributeValue, false, this.mContext.getClassLoader()).asSubclass(cls)) != null) { constructor = asSubclass.getConstructor(CONSTRUCTOR_SIGNATURE); constructor.setAccessible(true); CONSTRUCTORS.put(attributeValue, constructor); } newInstance = constructor.newInstance(new Object[]{this.mContext, attributeSet}); } return newInstance; } catch (Exception e) { throw new InflateException("Could not instantiate " + cls + " class " + attributeValue, e); } } else { throw new InflateException(str + " tag must have a 'class' attribute"); } } @SuppressLint({"RestrictedApi"}) private void getTargetIds(XmlPullParser xmlPullParser, AttributeSet attributeSet, Transition transition) throws XmlPullParserException, IOException { int depth = xmlPullParser.getDepth(); while (true) { int next = xmlPullParser.next(); if ((next == 3 && xmlPullParser.getDepth() <= depth) || next == 1) { return; } if (next == 2) { if (xmlPullParser.getName().equals(TouchesHelper.TARGET_KEY)) { TypedArray obtainStyledAttributes = this.mContext.obtainStyledAttributes(attributeSet, Styleable.TRANSITION_TARGET); int namedResourceId = TypedArrayUtils.getNamedResourceId(obtainStyledAttributes, xmlPullParser, "targetId", 1, 0); if (namedResourceId != 0) { transition.addTarget(namedResourceId); } else { int namedResourceId2 = TypedArrayUtils.getNamedResourceId(obtainStyledAttributes, xmlPullParser, "excludeId", 2, 0); if (namedResourceId2 != 0) { transition.excludeTarget(namedResourceId2, true); } else { String namedString = TypedArrayUtils.getNamedString(obtainStyledAttributes, xmlPullParser, "targetName", 4); if (namedString != null) { transition.addTarget(namedString); } else { String namedString2 = TypedArrayUtils.getNamedString(obtainStyledAttributes, xmlPullParser, "excludeName", 5); if (namedString2 != null) { transition.excludeTarget(namedString2, true); } else { String namedString3 = TypedArrayUtils.getNamedString(obtainStyledAttributes, xmlPullParser, "excludeClass", 3); if (namedString3 != null) { try { transition.excludeTarget((Class) Class.forName(namedString3), true); } catch (ClassNotFoundException e) { obtainStyledAttributes.recycle(); throw new RuntimeException("Could not create " + namedString3, e); } } else { String namedString4 = TypedArrayUtils.getNamedString(obtainStyledAttributes, xmlPullParser, "targetClass", 0); if (namedString4 != null) { transition.addTarget((Class) Class.forName(namedString4)); } } } } } } obtainStyledAttributes.recycle(); } else { throw new RuntimeException("Unknown scene name: " + xmlPullParser.getName()); } } } } /* JADX WARNING: Code restructure failed: missing block: B:18:0x0054, code lost: return r1; */ /* Code decompiled incorrectly, please refer to instructions dump. */ private androidx.transition.TransitionManager createTransitionManagerFromXml(org.xmlpull.v1.XmlPullParser r5, android.util.AttributeSet r6, android.view.ViewGroup r7) throws org.xmlpull.v1.XmlPullParserException, java.io.IOException { /* r4 = this; int r0 = r5.getDepth() r1 = 0 L_0x0005: int r2 = r5.next() r3 = 3 if (r2 != r3) goto L_0x0012 int r3 = r5.getDepth() if (r3 <= r0) goto L_0x0054 L_0x0012: r3 = 1 if (r2 == r3) goto L_0x0054 r3 = 2 if (r2 == r3) goto L_0x0019 goto L_0x0005 L_0x0019: java.lang.String r2 = r5.getName() java.lang.String r3 = "transitionManager" boolean r3 = r2.equals(r3) if (r3 == 0) goto L_0x002b androidx.transition.TransitionManager r1 = new androidx.transition.TransitionManager r1.<init>() goto L_0x0005 L_0x002b: java.lang.String r3 = "transition" boolean r2 = r2.equals(r3) if (r2 == 0) goto L_0x0039 if (r1 == 0) goto L_0x0039 r4.loadTransition(r6, r5, r7, r1) goto L_0x0005 L_0x0039: java.lang.RuntimeException r6 = new java.lang.RuntimeException java.lang.StringBuilder r7 = new java.lang.StringBuilder r7.<init>() java.lang.String r0 = "Unknown scene name: " r7.append(r0) java.lang.String r5 = r5.getName() r7.append(r5) java.lang.String r5 = r7.toString() r6.<init>(r5) throw r6 L_0x0054: return r1 */ throw new UnsupportedOperationException("Method not decompiled: androidx.transition.TransitionInflater.createTransitionManagerFromXml(org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.view.ViewGroup):androidx.transition.TransitionManager"); } @SuppressLint({"RestrictedApi"}) private void loadTransition(AttributeSet attributeSet, XmlPullParser xmlPullParser, ViewGroup viewGroup, TransitionManager transitionManager) throws Resources.NotFoundException { Scene scene; Transition inflateTransition; TypedArray obtainStyledAttributes = this.mContext.obtainStyledAttributes(attributeSet, Styleable.TRANSITION_MANAGER); int namedResourceId = TypedArrayUtils.getNamedResourceId(obtainStyledAttributes, xmlPullParser, "transition", 2, -1); int namedResourceId2 = TypedArrayUtils.getNamedResourceId(obtainStyledAttributes, xmlPullParser, "fromScene", 0, -1); Scene scene2 = null; if (namedResourceId2 < 0) { scene = null; } else { scene = Scene.getSceneForLayout(viewGroup, namedResourceId2, this.mContext); } int namedResourceId3 = TypedArrayUtils.getNamedResourceId(obtainStyledAttributes, xmlPullParser, "toScene", 1, -1); if (namedResourceId3 >= 0) { scene2 = Scene.getSceneForLayout(viewGroup, namedResourceId3, this.mContext); } if (namedResourceId >= 0 && (inflateTransition = inflateTransition(namedResourceId)) != null) { if (scene2 == null) { throw new RuntimeException("No toScene for transition ID " + namedResourceId); } else if (scene == null) { transitionManager.setTransition(scene2, inflateTransition); } else { transitionManager.setTransition(scene, scene2, inflateTransition); } } obtainStyledAttributes.recycle(); } }
[ "steve@havelka.co" ]
steve@havelka.co
e0cc251dc9b4bc8adbc36eebfdd649e706ef674f
368f8f42431eba16f7341b824ae06299f78bf4bb
/paraga/paragaServices/src/main/java/gr/akis/paraga/db/UserDB.java
aaf48c5376720280e237851153f9ab58a44bd0be
[]
no_license
anagnosg/akis
54a96dad1c5ec8f8bdc86490c83acd7331984b99
4489ba96fb4dade7931e0dd1eb7828fb5bd5f4c1
refs/heads/master
2021-01-19T14:32:54.040008
2019-04-07T18:49:39
2019-04-07T18:49:39
87,891,831
0
0
null
null
null
null
UTF-8
Java
false
false
4,567
java
package gr.akis.paraga.db; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.util.ArrayList; import java.util.List; import javax.enterprise.context.RequestScoped; import javax.inject.Inject; import org.jboss.security.auth.spi.Users; import gr.akis.paraga.models.Team; import gr.akis.paraga.models.User; import gr.anagnosg.employeeservices.db.utils.ConnectionWrapper; @RequestScoped public class UserDB { @Inject ConnectionWrapper connWrapper; public UserDB() { } /** * Finds all persons * * @return * @throws SQLException */ public List<User> selectAll() throws SQLException { List<User> users = new ArrayList<User>(); String sql = "SELECT ID ,USERNAME,PASSWORD FROM Users "; try (PreparedStatement pstate = this.connWrapper.getConnection().prepareStatement(sql); ResultSet rs = pstate.executeQuery();) { while (rs.next()) { User u = new User(); u.setId(rs.getInt("ID")); u.setPassword(rs.getString("USERNAME")); u.setUsername(rs.getString("PASSWORD")); users.add(u); } } return users; } public List<User> selectUser(String username,String password) throws SQLException { List<User> users = new ArrayList<User>(); String sql = "SELECT ID ,USERNAME,PASSWORD FROM Users " + "where username=? and password=?"; try (PreparedStatement pstate = this.connWrapper.getConnection().prepareStatement(sql); ) { pstate.setString(1,username); pstate.setString(2,password); try(ResultSet rs = pstate.executeQuery();){ while (rs.next()) { User u = new User(); u.setId(rs.getInt("ID")); u.setPassword(rs.getString("USERNAME")); u.setUsername(rs.getString("PASSWORD")); users.add(u); } } } return users; } public User insert(User users) throws SQLException { String sql = "INSERT INTO USERS (USERNAME ,PASSWORD) VALUES (?,?)"; // orismoume // se // ena // string // thn // sql // pou // 8a // treksoume Connection conn = this.connWrapper.getConnection(); // Pernoume mia // sundesh // (connection) me // thn bash // apo to connection ekteloume thn methodo prepareStatement kai // proetoimazoume thn java // gia thn ektelesh ths entolhs sql. // Statement.RETURN_GENERATED_KEYS epistrefei ta identities . PreparedStatement pstate = conn.prepareStatement(sql, Statement.RETURN_GENERATED_KEYS); // to try einai ena block kodika to opoio mporei n apetaksei kapoio // exception // kai me to try sthn periptosh pou petaksi kapoio exeception ekteloume // kapoies leitourgies. try { pstate.setString(1, users.getUsername()); // pername tis patametrous pstate.setString(2, users.getPassword()); pstate.executeUpdate(); // ekteloume to sql .Epeidh einai insert h // updat ekteloume to // execute update. // kaloume apo to pstate thn methodo getGeneratedKeys gia na paroume // ta identities. try (ResultSet generatedKeys = pstate.getGeneratedKeys()) { if (generatedKeys.next()) {// eprnouem to epomeno identity. users.setId(generatedKeys.getInt(1)); // badoume to id sto // antikeimeno mas. } } } // to finaly 8a ektelestei panta sto telos tou try oti kai na ginei sto // try. finally { if (pstate != null) { pstate.close(); } } return users; } public User update(User users) throws SQLException { String sql = "update Users set username=? ,password=? where id = ? "; try (PreparedStatement pstate = this.connWrapper.getConnection().prepareStatement(sql);) { pstate.setString(1, users.getUsername()); pstate.setString(2, users.getPassword()); pstate.setInt(3, users.getId()); int count = pstate.executeUpdate();// epistrefei to plh8os ton // grammon poy exei allaksei if (count != 0) { return users; } } catch (SQLException ex) { ex.printStackTrace(); } return null; } public User delete(User users) throws SQLException { int count = 0; String sql = " delete from Users where id = ? "; try (PreparedStatement pstate = this.connWrapper.getConnection().prepareStatement(sql);) { pstate.setInt(1, users.getId()); count = pstate.executeUpdate(); } return users; } }
[ "roinas_akindynos@yahoo.com" ]
roinas_akindynos@yahoo.com
4b4cb83af26dfe8c49c9e97c2dc905357af9d300
085d8e9dac87dd862ee865f26bed5e3a90285ef6
/app/src/main/java/id/keyta/graphdemo/ui/gallery/GalleryFragment.java
d7aab88c1461802b76ca0b14aba7b4f7e924dfeb
[]
no_license
ainulhamdani/graph_demo
d751356893a29dcb09318b2ee3866b4b173b7916
c74bdf632aa53e49d1905d113350d1207b738234
refs/heads/master
2023-08-13T11:49:09.271898
2021-09-08T10:04:38
2021-09-08T10:04:38
404,297,966
0
0
null
null
null
null
UTF-8
Java
false
false
69,205
java
package id.keyta.graphdemo.ui.gallery; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.fragment.app.Fragment; import androidx.lifecycle.Observer; import androidx.lifecycle.ViewModelProvider; import com.highsoft.highcharts.common.HIColor; import com.highsoft.highcharts.common.hichartsclasses.HIAnnotations; import com.highsoft.highcharts.common.hichartsclasses.HIArea; import com.highsoft.highcharts.common.hichartsclasses.HICSSObject; import com.highsoft.highcharts.common.hichartsclasses.HIChart; import com.highsoft.highcharts.common.hichartsclasses.HIColumn; import com.highsoft.highcharts.common.hichartsclasses.HICondition; import com.highsoft.highcharts.common.hichartsclasses.HILabel; import com.highsoft.highcharts.common.hichartsclasses.HILabelOptions; import com.highsoft.highcharts.common.hichartsclasses.HILabels; import com.highsoft.highcharts.common.hichartsclasses.HILegend; import com.highsoft.highcharts.common.hichartsclasses.HILine; import com.highsoft.highcharts.common.hichartsclasses.HIMarker; import com.highsoft.highcharts.common.hichartsclasses.HIOptions; import com.highsoft.highcharts.common.hichartsclasses.HIPanning; import com.highsoft.highcharts.common.hichartsclasses.HIPlotOptions; import com.highsoft.highcharts.common.hichartsclasses.HIPoint; import com.highsoft.highcharts.common.hichartsclasses.HIResponsive; import com.highsoft.highcharts.common.hichartsclasses.HIRules; import com.highsoft.highcharts.common.hichartsclasses.HISeries; import com.highsoft.highcharts.common.hichartsclasses.HIStyle; import com.highsoft.highcharts.common.hichartsclasses.HISubtitle; import com.highsoft.highcharts.common.hichartsclasses.HITitle; import com.highsoft.highcharts.common.hichartsclasses.HITooltip; import com.highsoft.highcharts.common.hichartsclasses.HIXAxis; import com.highsoft.highcharts.common.hichartsclasses.HIYAxis; import com.highsoft.highcharts.core.HIChartView; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import id.keyta.graphdemo.R; import id.keyta.graphdemo.databinding.FragmentGalleryBinding; public class GalleryFragment extends Fragment { private GalleryViewModel galleryViewModel; private FragmentGalleryBinding binding; public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { galleryViewModel = new ViewModelProvider(this).get(GalleryViewModel.class); binding = FragmentGalleryBinding.inflate(inflater, container, false); return binding.getRoot(); } @Override public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); setLineChart(); setLineChart2(); setBarChart(); } private void setLineChart2() { binding.line2.plugins = new ArrayList<>(Arrays.asList("annotations")); HIOptions options = new HIOptions(); HIChart chart = new HIChart(); chart.setType("area"); chart.setZoomType("x"); chart.setPanning(new HIPanning()); chart.setPanKey("shift"); options.setChart(chart); HITitle title = new HITitle(); title.setText("2017 Tour de France Stage 8: Dole - Station des Rousses"); options.setTitle(title); HISubtitle subtitle = new HISubtitle(); subtitle.setText("An annotated chart in Highcharts"); options.setSubtitle(subtitle); HIAnnotations annotations1 = new HIAnnotations(); annotations1.setLabelOptions(new HILabelOptions()); annotations1.getLabelOptions().setBackgroundColor(HIColor.initWithRGBA(255, 255, 255, 5)); annotations1.getLabelOptions().setVerticalAlign("top"); annotations1.getLabelOptions().setY(15); HILabels labels1 = new HILabels(); labels1.setPoint(new HIPoint()); labels1.getPoint().setXAxis(0); labels1.getPoint().setYAxis(0); labels1.getPoint().setX(27.98); labels1.getPoint().setY(255); labels1.setText("Arbois"); HILabels labels2 = new HILabels(); labels2.setPoint(new HIPoint()); labels2.getPoint().setYAxis(0); labels2.getPoint().setXAxis(0); labels2.getPoint().setX(45.5); labels2.getPoint().setY(611); labels2.setText("Montrond"); HILabels labels3 = new HILabels(); labels3.setPoint(new HIPoint()); labels3.getPoint().setYAxis(0); labels3.getPoint().setXAxis(0); labels3.getPoint().setX(63); labels3.getPoint().setY(651); labels3.setText("Mont-sur-Monnet"); HILabels labels4 = new HILabels(); labels4.setPoint(new HIPoint()); labels4.getPoint().setYAxis(0); labels4.getPoint().setXAxis(0); labels4.getPoint().setX(84); labels4.getPoint().setY(789); labels4.setX(-10); labels4.setText("Bonlieu"); HILabels labels5 = new HILabels(); labels5.setPoint(new HIPoint()); labels5.getPoint().setYAxis(0); labels5.getPoint().setXAxis(0); labels5.getPoint().setX(129.5); labels5.getPoint().setY(382); labels5.setText("Chassal"); HILabels labels6 = new HILabels(); labels6.setPoint(new HIPoint()); labels6.getPoint().setYAxis(0); labels6.getPoint().setXAxis(0); labels6.getPoint().setX(159); labels6.getPoint().setY(443); labels6.setText("Saint-Claud"); annotations1.setLabels(new ArrayList<>(Arrays.asList(labels1, labels2, labels3, labels4, labels5, labels6))); HIAnnotations annotations2 = new HIAnnotations(); HILabels labels7 = new HILabels(); labels7.setPoint(new HIPoint()); labels7.getPoint().setYAxis(0); labels7.getPoint().setXAxis(0); labels7.getPoint().setX(101.44); labels7.getPoint().setY(1026); labels7.setX(-30); labels7.setText("Col de la Joux"); HILabels labels8 = new HILabels(); labels8.setPoint(new HIPoint()); labels8.getPoint().setYAxis(0); labels8.getPoint().setXAxis(0); labels8.getPoint().setX(138.5); labels8.getPoint().setY(748); labels8.setText("Côte de Viry"); HILabels labels9 = new HILabels(); labels9.setPoint(new HIPoint()); labels9.getPoint().setYAxis(0); labels9.getPoint().setXAxis(0); labels9.getPoint().setX(176.4); labels9.getPoint().setY(1202); labels9.setText("Montée de la Combe<br>de Laisia Les Molunes"); annotations2.setLabels(new ArrayList<>(Arrays.asList(labels7, labels8, labels9))); HIAnnotations annotations3 = new HIAnnotations(); annotations3.setLabelOptions(new HILabelOptions()); annotations3.getLabelOptions().setShape("connector"); annotations3.getLabelOptions().setAlign("right"); annotations3.getLabelOptions().setCrop(true); annotations3.getLabelOptions().setStyle(new HICSSObject()); annotations3.getLabelOptions().getStyle().setFontSize("0.8em"); HILabels labels10 = new HILabels(); labels10.setPoint(new HIPoint()); labels10.getPoint().setYAxis(0); labels10.getPoint().setXAxis(0); labels10.getPoint().setX(96.2); labels10.getPoint().setY(783); labels10.setText("6.1 km climb<br>4.6% on avg."); HILabels labels11 = new HILabels(); labels11.setPoint(new HIPoint()); labels11.getPoint().setYAxis(0); labels11.getPoint().setXAxis(0); labels11.getPoint().setX(134.5); labels11.getPoint().setY(540); labels11.setText("7.6 km climb<br>5.2% on avg."); HILabels labels12 = new HILabels(); labels12.setPoint(new HIPoint()); labels12.getPoint().setYAxis(0); labels12.getPoint().setXAxis(0); labels12.getPoint().setX(172.2); labels12.getPoint().setY(925); labels12.setText("11.7 km climb<br>6.4% on avg."); annotations3.setLabels(new ArrayList<>(Arrays.asList(labels10, labels11, labels12))); options.setAnnotations(new ArrayList<>(Arrays.asList(annotations1,annotations2, annotations3))); HIXAxis xaxis = new HIXAxis(); xaxis.setLabels(new HILabels()); xaxis.getLabels().setFormat("{value} km"); xaxis.setMinRange(5); xaxis.setTitle(new HITitle()); xaxis.getTitle().setText("Distance"); options.setXAxis(new ArrayList<>(Collections.singletonList(xaxis))); HIYAxis yaxis = new HIYAxis(); yaxis.setStartOnTick(true); yaxis.setEndOnTick(false); yaxis.setMaxPadding(0.35); yaxis.setTitle(new HITitle()); yaxis.setLabels(new HILabels()); yaxis.getLabels().setFormat("{value} m"); options.setYAxis(new ArrayList<>(Collections.singletonList(yaxis))); HITooltip tooltip = new HITooltip(); tooltip.setHeaderFormat("Distance: {point.x:.1f} km<br>"); tooltip.setPointFormat("{point.y} m a. s. l."); tooltip.setShared(false); options.setTooltip(tooltip); HILegend legend = new HILegend(); legend.setEnabled(false); options.setLegend(legend); HIArea area = new HIArea(); area.setData(this.elevationData()); area.setLineColor(HIColor.initWithHexValue("0d233a")); area.setColor(HIColor.initWithHexValue("8bbc21")); area.setFillOpacity(0.5); area.setName("Elevation"); area.setMarker(new HIMarker()); area.getMarker().setEnabled(false); options.setSeries(new ArrayList<>(Collections.singletonList(area))); binding.line2.setOptions(options); } private ArrayList elevationData(){ Number[][] data = new Number[][] { {0.0, 225}, {0.1, 226}, {0.2, 228}, {0.3, 228}, {0.4, 229}, {0.5, 229}, {0.6, 230}, {0.7, 234}, {0.8, 235}, {0.9, 236}, {1.0, 235}, {1.1, 232}, {1.2, 228}, {1.3, 223}, {1.4, 218}, {1.5, 214}, {1.6, 207}, {1.7, 202}, {1.8, 198}, {1.9, 196}, {2.0, 197}, {2.1, 200}, {2.2, 205}, {2.3, 206}, {2.4, 210}, {2.5, 210}, {2.6, 210}, {2.7, 209}, {2.8, 208}, {2.9, 207}, {3.0, 209}, {3.1, 208}, {3.2, 207}, {3.3, 207}, {3.4, 206}, {3.5, 206}, {3.6, 205}, {3.7, 201}, {3.8, 195}, {3.9, 191}, {4.0, 191}, {4.1, 195}, {4.2, 199}, {4.3, 203}, {4.4, 208}, {4.5, 208}, {4.6, 208}, {4.7, 208}, {4.8, 209}, {4.9, 207}, {5.0, 207}, {5.1, 208}, {5.2, 209}, {5.3, 208}, {5.4, 210}, {5.5, 209}, {5.6, 209}, {5.7, 206}, {5.8, 207}, {5.9, 209}, {6.0, 211}, {6.1, 206}, {6.2, 201}, {6.3, 199}, {6.4, 200}, {6.5, 202}, {6.6, 203}, {6.7, 202}, {6.8, 204}, {6.9, 206}, {7.0, 208}, {7.1, 205}, {7.2, 202}, {7.3, 198}, {7.4, 198}, {7.5, 198}, {7.6, 198}, {7.7, 198}, {7.8, 199}, {7.9, 197}, {8.0, 194}, {8.1, 194}, {8.2, 195}, {8.3, 195}, {8.4, 196}, {8.5, 192}, {8.6, 200}, {8.7, 197}, {8.8, 194}, {8.9, 194}, {9.0, 193}, {9.1, 192}, {9.2, 192}, {9.3, 193}, {9.4, 191}, {9.5, 191}, {9.6, 193}, {9.7, 193}, {9.8, 194}, {9.9, 192}, {10.0, 192}, {10.1, 192}, {10.2, 192}, {10.3, 192}, {10.4, 193}, {10.5, 193}, {10.6, 193}, {10.7, 193}, {10.8, 194}, {10.9, 194}, {11.0, 194}, {11.1, 195}, {11.2, 194}, {11.3, 194}, {11.4, 194}, {11.5, 194}, {11.6, 193}, {11.7, 194}, {11.8, 194}, {11.9, 194}, {12.0, 195}, {12.1, 195}, {12.2, 195}, {12.3, 197}, {12.4, 197}, {12.5, 197}, {12.6, 198}, {12.7, 201}, {12.8, 202}, {12.9, 203}, {13.0, 205}, {13.1, 205}, {13.2, 204}, {13.3, 210}, {13.4, 213}, {13.5, 212}, {13.6, 213}, {13.7, 213}, {13.8, 213}, {13.9, 214}, {14.0, 214}, {14.1, 212}, {14.2, 209}, {14.3, 207}, {14.4, 207}, {14.5, 208}, {14.6, 211}, {14.7, 215}, {14.8, 219}, {14.9, 219}, {15.0, 221}, {15.1, 224}, {15.2, 224}, {15.3, 225}, {15.4, 225}, {15.5, 225}, {15.6, 225}, {15.7, 225}, {15.8, 225}, {15.9, 226}, {16.0, 226}, {16.1, 227}, {16.2, 227}, {16.3, 230}, {16.4, 231}, {16.5, 231}, {16.6, 232}, {16.7, 230}, {16.8, 229}, {16.9, 228}, {17.0, 226}, {17.1, 226}, {17.2, 224}, {17.3, 223}, {17.4, 224}, {17.5, 223}, {17.6, 221}, {17.7, 220}, {17.8, 218}, {17.9, 217}, {18.0, 216}, {18.1, 216}, {18.2, 215}, {18.3, 214}, {18.4, 213}, {18.5, 212}, {18.6, 212}, {18.7, 213}, {18.8, 214}, {18.9, 215}, {19.0, 215}, {19.1, 216}, {19.2, 217}, {19.3, 216}, {19.4, 216}, {19.5, 217}, {19.6, 219}, {19.7, 218}, {19.8, 218}, {19.9, 220}, {20.0, 224}, {20.1, 224}, {20.2, 225}, {20.3, 224}, {20.4, 225}, {20.5, 228}, {20.6, 228}, {20.7, 227}, {20.8, 228}, {20.9, 228}, {21.0, 228}, {21.1, 229}, {21.2, 225}, {21.3, 223}, {21.4, 222}, {21.5, 222}, {21.6, 223}, {21.7, 224}, {21.8, 224}, {21.9, 226}, {22.0, 228}, {22.1, 233}, {22.2, 237}, {22.3, 237}, {22.4, 238}, {22.5, 236}, {22.6, 232}, {22.7, 232}, {22.8, 228}, {22.9, 227}, {23.0, 227}, {23.1, 227}, {23.2, 227}, {23.3, 226}, {23.4, 226}, {23.5, 226}, {23.6, 226}, {23.7, 226}, {23.8, 226}, {23.9, 226}, {24.0, 228}, {24.1, 228}, {24.2, 229}, {24.3, 230}, {24.4, 230}, {24.5, 233}, {24.6, 235}, {24.7, 234}, {24.8, 234}, {24.9, 233}, {25.0, 233}, {25.1, 232}, {25.2, 232}, {25.3, 232}, {25.4, 232}, {25.5, 234}, {25.6, 234}, {25.7, 234}, {25.8, 234}, {25.9, 237}, {26.0, 238}, {26.1, 238}, {26.2, 238}, {26.3, 240}, {26.4, 240}, {26.5, 244}, {26.6, 241}, {26.7, 241}, {26.8, 245}, {26.9, 254}, {27.0, 262}, {27.1, 255}, {27.2, 255}, {27.3, 251}, {27.4, 252}, {27.5, 253}, {27.6, 253}, {27.7, 251}, {27.8, 251}, {27.9, 254}, {28.0, 255}, {28.1, 257}, {28.2, 259}, {28.3, 259}, {28.4, 259}, {28.5, 260}, {28.6, 258}, {28.7, 258}, {28.8, 262}, {28.9, 260}, {29.0, 262}, {29.1, 266}, {29.2, 268}, {29.3, 270}, {29.4, 278}, {29.5, 276}, {29.6, 278}, {29.7, 282}, {29.8, 281}, {29.9, 284}, {30.0, 287}, {30.1, 292}, {30.2, 303}, {30.3, 309}, {30.4, 317}, {30.5, 324}, {30.6, 334}, {30.7, 334}, {30.8, 319}, {30.9, 321}, {31.0, 333}, {31.1, 337}, {31.2, 345}, {31.3, 352}, {31.4, 386}, {31.5, 398}, {31.6, 406}, {31.7, 416}, {31.8, 423}, {31.9, 425}, {32.0, 425}, {32.1, 424}, {32.2, 423}, {32.3, 421}, {32.4, 421}, {32.5, 422}, {32.6, 421}, {32.7, 421}, {32.8, 421}, {32.9, 421}, {33.0, 421}, {33.1, 423}, {33.2, 435}, {33.3, 450}, {33.4, 451}, {33.5, 452}, {33.6, 452}, {33.7, 452}, {33.8, 452}, {33.9, 455}, {34.0, 459}, {34.1, 465}, {34.2, 469}, {34.3, 473}, {34.4, 476}, {34.5, 480}, {34.6, 483}, {34.7, 487}, {34.8, 490}, {34.9, 494}, {35.0, 497}, {35.1, 502}, {35.2, 504}, {35.3, 507}, {35.4, 511}, {35.5, 514}, {35.6, 518}, {35.7, 521}, {35.8, 524}, {35.9, 527}, {36.0, 528}, {36.1, 525}, {36.2, 526}, {36.3, 528}, {36.4, 528}, {36.5, 528}, {36.6, 529}, {36.7, 528}, {36.8, 526}, {36.9, 525}, {37.0, 524}, {37.1, 524}, {37.2, 524}, {37.3, 525}, {37.4, 528}, {37.5, 528}, {37.6, 532}, {37.7, 534}, {37.8, 538}, {37.9, 540}, {38.0, 544}, {38.1, 546}, {38.2, 554}, {38.3, 555}, {38.4, 559}, {38.5, 566}, {38.6, 568}, {38.7, 571}, {38.8, 571}, {38.9, 570}, {39.0, 569}, {39.1, 567}, {39.2, 567}, {39.3, 566}, {39.4, 566}, {39.5, 566}, {39.6, 566}, {39.7, 566}, {39.8, 566}, {39.9, 565}, {40.0, 563}, {40.1, 562}, {40.2, 563}, {40.3, 563}, {40.4, 562}, {40.5, 562}, {40.6, 562}, {40.7, 561}, {40.8, 563}, {40.9, 561}, {41.0, 559}, {41.1, 559}, {41.2, 559}, {41.3, 558}, {41.4, 559}, {41.5, 560}, {41.6, 560}, {41.7, 560}, {41.8, 559}, {41.9, 557}, {42.0, 556}, {42.1, 555}, {42.2, 555}, {42.3, 556}, {42.4, 557}, {42.5, 557}, {42.6, 557}, {42.7, 557}, {42.8, 557}, {42.9, 557}, {43.0, 557}, {43.1, 557}, {43.2, 558}, {43.3, 559}, {43.4, 560}, {43.5, 563}, {43.6, 566}, {43.7, 570}, {43.8, 572}, {43.9, 575}, {44.0, 573}, {44.1, 576}, {44.2, 577}, {44.3, 579}, {44.4, 581}, {44.5, 584}, {44.6, 591}, {44.7, 593}, {44.8, 594}, {44.9, 596}, {45.0, 599}, {45.1, 601}, {45.2, 601}, {45.3, 604}, {45.4, 607}, {45.5, 607}, {45.6, 607}, {45.7, 607}, {45.8, 605}, {45.9, 607}, {46.0, 609}, {46.1, 612}, {46.2, 613}, {46.3, 614}, {46.4, 614}, {46.5, 614}, {46.6, 616}, {46.7, 616}, {46.8, 615}, {46.9, 615}, {47.0, 618}, {47.1, 617}, {47.2, 615}, {47.3, 614}, {47.4, 613}, {47.5, 613}, {47.6, 613}, {47.7, 613}, {47.8, 612}, {47.9, 612}, {48.0, 609}, {48.1, 610}, {48.2, 603}, {48.3, 598}, {48.4, 598}, {48.5, 596}, {48.6, 595}, {48.7, 593}, {48.8, 590}, {48.9, 587}, {49.0, 583}, {49.1, 580}, {49.2, 576}, {49.3, 569}, {49.4, 568}, {49.5, 566}, {49.6, 560}, {49.7, 559}, {49.8, 558}, {49.9, 562}, {50.0, 564}, {50.1, 563}, {50.2, 563}, {50.3, 567}, {50.4, 574}, {50.5, 577}, {50.6, 580}, {50.7, 581}, {50.8, 579}, {50.9, 579}, {51.0, 578}, {51.1, 574}, {51.2, 569}, {51.3, 564}, {51.4, 558}, {51.5, 554}, {51.6, 550}, {51.7, 543}, {51.8, 539}, {51.9, 536}, {52.0, 532}, {52.1, 530}, {52.2, 529}, {52.3, 528}, {52.4, 528}, {52.5, 528}, {52.6, 528}, {52.7, 527}, {52.8, 527}, {52.9, 528}, {53.0, 529}, {53.1, 528}, {53.2, 526}, {53.3, 526}, {53.4, 524}, {53.5, 519}, {53.6, 517}, {53.7, 517}, {53.8, 522}, {53.9, 521}, {54.0, 520}, {54.1, 518}, {54.2, 513}, {54.3, 518}, {54.4, 520}, {54.5, 523}, {54.6, 526}, {54.7, 522}, {54.8, 513}, {54.9, 512}, {55.0, 513}, {55.1, 513}, {55.2, 518}, {55.3, 522}, {55.4, 526}, {55.5, 526}, {55.6, 525}, {55.7, 522}, {55.8, 520}, {55.9, 519}, {56.0, 518}, {56.1, 518}, {56.2, 518}, {56.3, 517}, {56.4, 516}, {56.5, 517}, {56.6, 517}, {56.7, 517}, {56.8, 521}, {56.9, 522}, {57.0, 518}, {57.1, 517}, {57.2, 514}, {57.3, 515}, {57.4, 513}, {57.5, 511}, {57.6, 511}, {57.7, 511}, {57.8, 510}, {57.9, 510}, {58.0, 509}, {58.1, 509}, {58.2, 509}, {58.3, 509}, {58.4, 509}, {58.5, 509}, {58.6, 509}, {58.7, 509}, {58.8, 509}, {58.9, 510}, {59.0, 510}, {59.1, 521}, {59.2, 524}, {59.3, 528}, {59.4, 533}, {59.5, 539}, {59.6, 545}, {59.7, 551}, {59.8, 562}, {59.9, 572}, {60.0, 579}, {60.1, 585}, {60.2, 593}, {60.3, 596}, {60.4, 605}, {60.5, 617}, {60.6, 620}, {60.7, 627}, {60.8, 628}, {60.9, 627}, {61.0, 627}, {61.1, 628}, {61.2, 629}, {61.3, 632}, {61.4, 634}, {61.5, 638}, {61.6, 637}, {61.7, 638}, {61.8, 639}, {61.9, 640}, {62.0, 640}, {62.1, 639}, {62.2, 639}, {62.3, 637}, {62.4, 637}, {62.5, 636}, {62.6, 637}, {62.7, 636}, {62.8, 637}, {62.9, 635}, {63.0, 629}, {63.1, 626}, {63.2, 626}, {63.3, 623}, {63.4, 621}, {63.5, 621}, {63.6, 621}, {63.7, 622}, {63.8, 625}, {63.9, 626}, {64.0, 629}, {64.1, 631}, {64.2, 633}, {64.3, 631}, {64.4, 632}, {64.5, 634}, {64.6, 637}, {64.7, 637}, {64.8, 637}, {64.9, 637}, {65.0, 638}, {65.1, 641}, {65.2, 644}, {65.3, 646}, {65.4, 649}, {65.5, 648}, {65.6, 647}, {65.7, 647}, {65.8, 649}, {65.9, 650}, {66.0, 651}, {66.1, 654}, {66.2, 652}, {66.3, 651}, {66.4, 650}, {66.5, 650}, {66.6, 649}, {66.7, 648}, {66.8, 648}, {66.9, 648}, {67.0, 649}, {67.1, 650}, {67.2, 647}, {67.3, 642}, {67.4, 641}, {67.5, 638}, {67.6, 636}, {67.7, 635}, {67.8, 633}, {67.9, 636}, {68.0, 638}, {68.1, 639}, {68.2, 641}, {68.3, 643}, {68.4, 644}, {68.5, 645}, {68.6, 649}, {68.7, 651}, {68.8, 648}, {68.9, 645}, {69.0, 640}, {69.1, 637}, {69.2, 637}, {69.3, 637}, {69.4, 635}, {69.5, 630}, {69.6, 628}, {69.7, 625}, {69.8, 622}, {69.9, 620}, {70.0, 618}, {70.1, 613}, {70.2, 612}, {70.3, 608}, {70.4, 603}, {70.5, 599}, {70.6, 597}, {70.7, 591}, {70.8, 590}, {70.9, 587}, {71.0, 584}, {71.1, 584}, {71.2, 582}, {71.3, 574}, {71.4, 572}, {71.5, 570}, {71.6, 572}, {71.7, 573}, {71.8, 575}, {71.9, 578}, {72.0, 590}, {72.1, 595}, {72.2, 595}, {72.3, 579}, {72.4, 581}, {72.5, 583}, {72.6, 583}, {72.7, 583}, {72.8, 583}, {72.9, 580}, {73.0, 579}, {73.1, 584}, {73.2, 587}, {73.3, 594}, {73.4, 597}, {73.5, 597}, {73.6, 596}, {73.7, 593}, {73.8, 591}, {73.9, 596}, {74.0, 596}, {74.1, 598}, {74.2, 598}, {74.3, 595}, {74.4, 592}, {74.5, 592}, {74.6, 592}, {74.7, 594}, {74.8, 597}, {74.9, 600}, {75.0, 601}, {75.1, 605}, {75.2, 604}, {75.3, 604}, {75.4, 607}, {75.5, 607}, {75.6, 607}, {75.7, 604}, {75.8, 605}, {75.9, 608}, {76.0, 616}, {76.1, 618}, {76.2, 629}, {76.3, 633}, {76.4, 634}, {76.5, 637}, {76.6, 644}, {76.7, 650}, {76.8, 653}, {76.9, 653}, {77.0, 657}, {77.1, 664}, {77.2, 668}, {77.3, 668}, {77.4, 668}, {77.5, 672}, {77.6, 674}, {77.7, 679}, {77.8, 681}, {77.9, 689}, {78.0, 692}, {78.1, 704}, {78.2, 708}, {78.3, 714}, {78.4, 716}, {78.5, 719}, {78.6, 722}, {78.7, 729}, {78.8, 733}, {78.9, 735}, {79.0, 736}, {79.1, 737}, {79.2, 737}, {79.3, 737}, {79.4, 737}, {79.5, 736}, {79.6, 736}, {79.7, 736}, {79.8, 737}, {79.9, 737}, {80.0, 737}, {80.1, 737}, {80.2, 738}, {80.3, 739}, {80.4, 739}, {80.5, 739}, {80.6, 741}, {80.7, 741}, {80.8, 741}, {80.9, 741}, {81.0, 743}, {81.1, 744}, {81.2, 744}, {81.3, 744}, {81.4, 744}, {81.5, 746}, {81.6, 748}, {81.7, 757}, {81.8, 753}, {81.9, 752}, {82.0, 751}, {82.1, 748}, {82.2, 746}, {82.3, 756}, {82.4, 755}, {82.5, 748}, {82.6, 745}, {82.7, 749}, {82.8, 752}, {82.9, 753}, {83.0, 753}, {83.1, 755}, {83.2, 764}, {83.3, 766}, {83.4, 771}, {83.5, 774}, {83.6, 775}, {83.7, 777}, {83.8, 778}, {83.9, 778}, {84.0, 780}, {84.1, 780}, {84.2, 782}, {84.3, 783}, {84.4, 786}, {84.5, 791}, {84.6, 792}, {84.7, 787}, {84.8, 782}, {84.9, 780}, {85.0, 777}, {85.1, 777}, {85.2, 777}, {85.3, 777}, {85.4, 770}, {85.5, 768}, {85.6, 764}, {85.7, 763}, {85.8, 758}, {85.9, 757}, {86.0, 760}, {86.1, 759}, {86.2, 756}, {86.3, 751}, {86.4, 748}, {86.5, 748}, {86.6, 747}, {86.7, 746}, {86.8, 745}, {86.9, 746}, {87.0, 746}, {87.1, 747}, {87.2, 742}, {87.3, 738}, {87.4, 733}, {87.5, 730}, {87.6, 730}, {87.7, 727}, {87.8, 725}, {87.9, 722}, {88.0, 719}, {88.1, 718}, {88.2, 716}, {88.3, 712}, {88.4, 710}, {88.5, 708}, {88.6, 707}, {88.7, 705}, {88.8, 699}, {88.9, 695}, {89.0, 686}, {89.1, 674}, {89.2, 671}, {89.3, 670}, {89.4, 670}, {89.5, 669}, {89.6, 668}, {89.7, 669}, {89.8, 670}, {89.9, 672}, {90.0, 679}, {90.1, 681}, {90.2, 684}, {90.3, 689}, {90.4, 693}, {90.5, 697}, {90.6, 701}, {90.7, 705}, {90.8, 708}, {90.9, 709}, {91.0, 712}, {91.1, 714}, {91.2, 716}, {91.3, 706}, {91.4, 697}, {91.5, 689}, {91.6, 681}, {91.7, 677}, {91.8, 668}, {91.9, 663}, {92.0, 661}, {92.1, 653}, {92.2, 652}, {92.3, 650}, {92.4, 647}, {92.5, 646}, {92.6, 645}, {92.7, 642}, {92.8, 640}, {92.9, 640}, {93.0, 651}, {93.1, 648}, {93.2, 657}, {93.3, 660}, {93.4, 660}, {93.5, 662}, {93.6, 672}, {93.7, 675}, {93.8, 681}, {93.9, 685}, {94.0, 694}, {94.1, 700}, {94.2, 707}, {94.3, 716}, {94.4, 720}, {94.5, 723}, {94.6, 727}, {94.7, 727}, {94.8, 728}, {94.9, 727}, {95.0, 727}, {95.1, 727}, {95.2, 730}, {95.3, 735}, {95.4, 744}, {95.5, 749}, {95.6, 753}, {95.7, 759}, {95.8, 762}, {95.9, 767}, {96.0, 782}, {96.1, 781}, {96.2, 783}, {96.3, 785}, {96.4, 789}, {96.5, 796}, {96.6, 807}, {96.7, 813}, {96.8, 819}, {96.9, 822}, {97.0, 824}, {97.1, 826}, {97.2, 830}, {97.3, 832}, {97.4, 836}, {97.5, 838}, {97.6, 842}, {97.7, 847}, {97.8, 848}, {97.9, 854}, {98.0, 855}, {98.1, 858}, {98.2, 863}, {98.3, 870}, {98.4, 875}, {98.5, 883}, {98.6, 889}, {98.7, 896}, {98.8, 904}, {98.9, 910}, {99.0, 916}, {99.1, 922}, {99.2, 927}, {99.3, 931}, {99.4, 938}, {99.5, 941}, {99.6, 949}, {99.7, 954}, {99.8, 962}, {99.9, 967}, {100.0, 976}, {100.1, 983}, {100.2, 986}, {100.3, 992}, {100.4, 994}, {100.5, 999}, {100.6, 1004}, {100.7, 1006}, {100.8, 1007}, {100.9, 1009}, {101.0, 1012}, {101.1, 1016}, {101.2, 1019}, {101.3, 1021}, {101.4, 1025}, {101.5, 1025}, {101.6, 1020}, {101.7, 1017}, {101.8, 1009}, {101.9, 1003}, {102.0, 1000}, {102.1, 994}, {102.2, 989}, {102.3, 986}, {102.4, 979}, {102.5, 974}, {102.6, 972}, {102.7, 964}, {102.8, 961}, {102.9, 957}, {103.0, 952}, {103.1, 946}, {103.2, 944}, {103.3, 940}, {103.4, 936}, {103.5, 935}, {103.6, 934}, {103.7, 934}, {103.8, 934}, {103.9, 934}, {104.0, 933}, {104.1, 929}, {104.2, 922}, {104.3, 914}, {104.4, 906}, {104.5, 910}, {104.6, 906}, {104.7, 903}, {104.8, 895}, {104.9, 893}, {105.0, 891}, {105.1, 889}, {105.2, 889}, {105.3, 893}, {105.4, 899}, {105.5, 904}, {105.6, 906}, {105.7, 897}, {105.8, 883}, {105.9, 895}, {106.0, 898}, {106.1, 893}, {106.2, 895}, {106.3, 907}, {106.4, 916}, {106.5, 915}, {106.6, 920}, {106.7, 919}, {106.8, 917}, {106.9, 911}, {107.0, 904}, {107.1, 891}, {107.2, 894}, {107.3, 902}, {107.4, 900}, {107.5, 900}, {107.6, 898}, {107.7, 897}, {107.8, 897}, {107.9, 897}, {108.0, 909}, {108.1, 910}, {108.2, 906}, {108.3, 920}, {108.4, 901}, {108.5, 900}, {108.6, 895}, {108.7, 892}, {108.8, 887}, {108.9, 889}, {109.0, 904}, {109.1, 910}, {109.2, 910}, {109.3, 907}, {109.4, 906}, {109.5, 898}, {109.6, 908}, {109.7, 911}, {109.8, 920}, {109.9, 928}, {110.0, 939}, {110.1, 939}, {110.2, 935}, {110.3, 932}, {110.4, 926}, {110.5, 924}, {110.6, 919}, {110.7, 913}, {110.8, 909}, {110.9, 906}, {111.0, 901}, {111.1, 899}, {111.2, 899}, {111.3, 899}, {111.4, 898}, {111.5, 896}, {111.6, 895}, {111.7, 889}, {111.8, 887}, {111.9, 886}, {112.0, 881}, {112.1, 875}, {112.2, 872}, {112.3, 867}, {112.4, 856}, {112.5, 850}, {112.6, 842}, {112.7, 839}, {112.8, 836}, {112.9, 827}, {113.0, 822}, {113.1, 817}, {113.2, 809}, {113.3, 805}, {113.4, 802}, {113.5, 796}, {113.6, 793}, {113.7, 790}, {113.8, 786}, {113.9, 778}, {114.0, 770}, {114.1, 759}, {114.2, 754}, {114.3, 744}, {114.4, 744}, {114.5, 746}, {114.6, 741}, {114.7, 761}, {114.8, 759}, {114.9, 737}, {115.0, 722}, {115.1, 719}, {115.2, 720}, {115.3, 721}, {115.4, 722}, {115.5, 718}, {115.6, 713}, {115.7, 709}, {115.8, 706}, {115.9, 707}, {116.0, 699}, {116.1, 689}, {116.2, 685}, {116.3, 683}, {116.4, 669}, {116.5, 665}, {116.6, 661}, {116.7, 657}, {116.8, 653}, {116.9, 653}, {117.0, 647}, {117.1, 640}, {117.2, 638}, {117.3, 633}, {117.4, 628}, {117.5, 624}, {117.6, 618}, {117.7, 613}, {117.8, 607}, {117.9, 602}, {118.0, 598}, {118.1, 595}, {118.2, 595}, {118.3, 594}, {118.4, 602}, {118.5, 598}, {118.6, 598}, {118.7, 601}, {118.8, 605}, {118.9, 608}, {119.0, 612}, {119.1, 614}, {119.2, 611}, {119.3, 608}, {119.4, 611}, {119.5, 612}, {119.6, 614}, {119.7, 615}, {119.8, 613}, {119.9, 611}, {120.0, 602}, {120.1, 593}, {120.2, 588}, {120.3, 588}, {120.4, 586}, {120.5, 583}, {120.6, 579}, {120.7, 579}, {120.8, 578}, {120.9, 576}, {121.0, 575}, {121.1, 579}, {121.2, 574}, {121.3, 570}, {121.4, 565}, {121.5, 562}, {121.6, 560}, {121.7, 559}, {121.8, 556}, {121.9, 554}, {122.0, 546}, {122.1, 542}, {122.2, 536}, {122.3, 531}, {122.4, 529}, {122.5, 529}, {122.6, 518}, {122.7, 515}, {122.8, 515}, {122.9, 515}, {123.0, 514}, {123.1, 513}, {123.2, 506}, {123.3, 498}, {123.4, 496}, {123.5, 494}, {123.6, 483}, {123.7, 479}, {123.8, 476}, {123.9, 470}, {124.0, 466}, {124.1, 460}, {124.2, 457}, {124.3, 451}, {124.4, 445}, {124.5, 443}, {124.6, 435}, {124.7, 432}, {124.8, 426}, {124.9, 421}, {125.0, 418}, {125.1, 414}, {125.2, 408}, {125.3, 405}, {125.4, 403}, {125.5, 394}, {125.6, 386}, {125.7, 379}, {125.8, 361}, {125.9, 358}, {126.0, 366}, {126.1, 372}, {126.2, 372}, {126.3, 374}, {126.4, 379}, {126.5, 382}, {126.6, 385}, {126.7, 388}, {126.8, 390}, {126.9, 393}, {127.0, 394}, {127.1, 393}, {127.2, 391}, {127.3, 387}, {127.4, 382}, {127.5, 378}, {127.6, 374}, {127.7, 370}, {127.8, 367}, {127.9, 366}, {128.0, 364}, {128.1, 364}, {128.2, 362}, {128.3, 362}, {128.4, 360}, {128.5, 357}, {128.6, 354}, {128.7, 351}, {128.8, 350}, {128.9, 351}, {129.0, 350}, {129.1, 350}, {129.2, 351}, {129.3, 352}, {129.4, 352}, {129.5, 352}, {129.6, 351}, {129.7, 352}, {129.8, 352}, {129.9, 353}, {130.0, 348}, {130.1, 346}, {130.2, 344}, {130.3, 343}, {130.4, 343}, {130.5, 342}, {130.6, 342}, {130.7, 345}, {130.8, 349}, {130.9, 341}, {131.0, 345}, {131.1, 348}, {131.2, 364}, {131.3, 374}, {131.4, 388}, {131.5, 379}, {131.6, 380}, {131.7, 387}, {131.8, 394}, {131.9, 404}, {132.0, 411}, {132.1, 416}, {132.2, 426}, {132.3, 428}, {132.4, 430}, {132.5, 438}, {132.6, 447}, {132.7, 450}, {132.8, 454}, {132.9, 460}, {133.0, 468}, {133.1, 469}, {133.2, 474}, {133.3, 478}, {133.4, 485}, {133.5, 488}, {133.6, 494}, {133.7, 497}, {133.8, 502}, {133.9, 510}, {134.0, 513}, {134.1, 516}, {134.2, 523}, {134.3, 527}, {134.4, 531}, {134.5, 540}, {134.6, 544}, {134.7, 549}, {134.8, 554}, {134.9, 557}, {135.0, 564}, {135.1, 566}, {135.2, 571}, {135.3, 577}, {135.4, 581}, {135.5, 584}, {135.6, 591}, {135.7, 596}, {135.8, 600}, {135.9, 608}, {136.0, 610}, {136.1, 616}, {136.2, 621}, {136.3, 627}, {136.4, 632}, {136.5, 644}, {136.6, 649}, {136.7, 656}, {136.8, 660}, {136.9, 663}, {137.0, 668}, {137.1, 672}, {137.2, 674}, {137.3, 677}, {137.4, 680}, {137.5, 683}, {137.6, 689}, {137.7, 691}, {137.8, 697}, {137.9, 699}, {138.0, 702}, {138.1, 707}, {138.2, 712}, {138.3, 716}, {138.4, 720}, {138.5, 728}, {138.6, 731}, {138.7, 735}, {138.8, 740}, {138.9, 742}, {139.0, 746}, {139.1, 750}, {139.2, 752}, {139.3, 760}, {139.4, 760}, {139.5, 761}, {139.6, 757}, {139.7, 756}, {139.8, 755}, {139.9, 754}, {140.0, 755}, {140.1, 756}, {140.2, 753}, {140.3, 746}, {140.4, 743}, {140.5, 734}, {140.6, 740}, {140.7, 746}, {140.8, 748}, {140.9, 747}, {141.0, 743}, {141.1, 742}, {141.2, 742}, {141.3, 740}, {141.4, 739}, {141.5, 741}, {141.6, 757}, {141.7, 756}, {141.8, 751}, {141.9, 747}, {142.0, 743}, {142.1, 738}, {142.2, 739}, {142.3, 742}, {142.4, 749}, {142.5, 750}, {142.6, 756}, {142.7, 760}, {142.8, 762}, {142.9, 765}, {143.0, 771}, {143.1, 775}, {143.2, 786}, {143.3, 791}, {143.4, 797}, {143.5, 801}, {143.6, 801}, {143.7, 793}, {143.8, 786}, {143.9, 782}, {144.0, 780}, {144.1, 778}, {144.2, 776}, {144.3, 765}, {144.4, 757}, {144.5, 753}, {144.6, 750}, {144.7, 748}, {144.8, 745}, {144.9, 738}, {145.0, 735}, {145.1, 732}, {145.2, 726}, {145.3, 724}, {145.4, 720}, {145.5, 712}, {145.6, 710}, {145.7, 705}, {145.8, 697}, {145.9, 691}, {146.0, 686}, {146.1, 681}, {146.2, 679}, {146.3, 680}, {146.4, 678}, {146.5, 673}, {146.6, 665}, {146.7, 657}, {146.8, 655}, {146.9, 647}, {147.0, 640}, {147.1, 634}, {147.2, 621}, {147.3, 621}, {147.4, 613}, {147.5, 608}, {147.6, 598}, {147.7, 594}, {147.8, 588}, {147.9, 578}, {148.0, 565}, {148.1, 559}, {148.2, 558}, {148.3, 556}, {148.4, 556}, {148.5, 555}, {148.6, 556}, {148.7, 557}, {148.8, 557}, {148.9, 565}, {149.0, 570}, {149.1, 575}, {149.2, 583}, {149.3, 591}, {149.4, 599}, {149.5, 603}, {149.6, 609}, {149.7, 613}, {149.8, 618}, {149.9, 624}, {150.0, 630}, {150.1, 635}, {150.2, 643}, {150.3, 652}, {150.4, 658}, {150.5, 669}, {150.6, 680}, {150.7, 684}, {150.8, 692}, {150.9, 696}, {151.0, 698}, {151.1, 698}, {151.2, 696}, {151.3, 695}, {151.4, 696}, {151.5, 699}, {151.6, 701}, {151.7, 706}, {151.8, 707}, {151.9, 707}, {152.0, 703}, {152.1, 702}, {152.2, 700}, {152.3, 700}, {152.4, 705}, {152.5, 705}, {152.6, 715}, {152.7, 718}, {152.8, 721}, {152.9, 723}, {153.0, 725}, {153.1, 724}, {153.2, 722}, {153.3, 720}, {153.4, 716}, {153.5, 710}, {153.6, 700}, {153.7, 696}, {153.8, 691}, {153.9, 682}, {154.0, 676}, {154.1, 670}, {154.2, 664}, {154.3, 658}, {154.4, 648}, {154.5, 643}, {154.6, 645}, {154.7, 645}, {154.8, 646}, {154.9, 630}, {155.0, 625}, {155.1, 620}, {155.2, 614}, {155.3, 605}, {155.4, 600}, {155.5, 593}, {155.6, 587}, {155.7, 581}, {155.8, 576}, {155.9, 569}, {156.0, 566}, {156.1, 559}, {156.2, 557}, {156.3, 551}, {156.4, 548}, {156.5, 544}, {156.6, 542}, {156.7, 540}, {156.8, 537}, {156.9, 540}, {157.0, 542}, {157.1, 541}, {157.2, 540}, {157.3, 538}, {157.4, 536}, {157.5, 532}, {157.6, 523}, {157.7, 519}, {157.8, 515}, {157.9, 509}, {158.0, 503}, {158.1, 499}, {158.2, 491}, {158.3, 485}, {158.4, 478}, {158.5, 477}, {158.6, 474}, {158.7, 471}, {158.8, 469}, {158.9, 464}, {159.0, 462}, {159.1, 456}, {159.2, 454}, {159.3, 445}, {159.4, 424}, {159.5, 427}, {159.6, 425}, {159.7, 422}, {159.8, 419}, {159.9, 418}, {160.0, 417}, {160.1, 423}, {160.2, 436}, {160.3, 434}, {160.4, 426}, {160.5, 401}, {160.6, 417}, {160.7, 418}, {160.8, 419}, {160.9, 419}, {161.0, 412}, {161.1, 417}, {161.2, 425}, {161.3, 430}, {161.4, 432}, {161.5, 417}, {161.6, 423}, {161.7, 425}, {161.8, 409}, {161.9, 399}, {162.0, 427}, {162.1, 425}, {162.2, 414}, {162.3, 421}, {162.4, 424}, {162.5, 426}, {162.6, 417}, {162.7, 405}, {162.8, 411}, {162.9, 403}, {163.0, 405}, {163.1, 410}, {163.2, 412}, {163.3, 413}, {163.4, 415}, {163.5, 406}, {163.6, 407}, {163.7, 408}, {163.8, 412}, {163.9, 417}, {164.0, 426}, {164.1, 431}, {164.2, 482}, {164.3, 478}, {164.4, 471}, {164.5, 463}, {164.6, 457}, {164.7, 452}, {164.8, 456}, {164.9, 463}, {165.0, 471}, {165.1, 470}, {165.2, 471}, {165.3, 474}, {165.4, 494}, {165.5, 506}, {165.6, 515}, {165.7, 520}, {165.8, 534}, {165.9, 520}, {166.0, 536}, {166.1, 529}, {166.2, 524}, {166.3, 515}, {166.4, 520}, {166.5, 526}, {166.6, 531}, {166.7, 551}, {166.8, 553}, {166.9, 555}, {167.0, 559}, {167.1, 562}, {167.2, 564}, {167.3, 567}, {167.4, 571}, {167.5, 574}, {167.6, 576}, {167.7, 596}, {167.8, 607}, {167.9, 623}, {168.0, 645}, {168.1, 667}, {168.2, 685}, {168.3, 691}, {168.4, 709}, {168.5, 702}, {168.6, 692}, {168.7, 692}, {168.8, 696}, {168.9, 732}, {169.0, 746}, {169.1, 758}, {169.2, 761}, {169.3, 763}, {169.4, 765}, {169.5, 768}, {169.6, 783}, {169.7, 816}, {169.8, 815}, {169.9, 817}, {170.0, 821}, {170.1, 825}, {170.2, 827}, {170.3, 828}, {170.4, 830}, {170.5, 829}, {170.6, 827}, {170.7, 827}, {170.8, 828}, {170.9, 837}, {171.0, 845}, {171.1, 850}, {171.2, 856}, {171.3, 864}, {171.4, 867}, {171.5, 876}, {171.6, 880}, {171.7, 888}, {171.8, 900}, {171.9, 905}, {172.0, 910}, {172.1, 922}, {172.2, 925}, {172.3, 931}, {172.4, 939}, {172.5, 957}, {172.6, 966}, {172.7, 980}, {172.8, 991}, {172.9, 998}, {173.0, 1008}, {173.1, 1021}, {173.2, 1031}, {173.3, 1045}, {173.4, 1059}, {173.5, 1065}, {173.6, 1078}, {173.7, 1094}, {173.8, 1092}, {173.9, 1096}, {174.0, 1098}, {174.1, 1101}, {174.2, 1104}, {174.3, 1107}, {174.4, 1110}, {174.5, 1113}, {174.6, 1114}, {174.7, 1116}, {174.8, 1119}, {174.9, 1122}, {175.0, 1125}, {175.1, 1128}, {175.2, 1130}, {175.3, 1134}, {175.4, 1137}, {175.5, 1142}, {175.6, 1148}, {175.7, 1155}, {175.8, 1162}, {175.9, 1174}, {176.0, 1183}, {176.1, 1191}, {176.2, 1196}, {176.3, 1198}, {176.4, 1200}, {176.5, 1189}, {176.6, 1183}, {176.7, 1180}, {176.8, 1178}, {176.9, 1173}, {177.0, 1171}, {177.1, 1167}, {177.2, 1165}, {177.3, 1165}, {177.4, 1165}, {177.5, 1165}, {177.6, 1164}, {177.7, 1164}, {177.8, 1164}, {177.9, 1166}, {178.0, 1167}, {178.1, 1170}, {178.2, 1177}, {178.3, 1174}, {178.4, 1166}, {178.5, 1166}, {178.6, 1164}, {178.7, 1162}, {178.8, 1160}, {178.9, 1155}, {179.0, 1152}, {179.1, 1151}, {179.2, 1151}, {179.3, 1146}, {179.4, 1144}, {179.5, 1147}, {179.6, 1151}, {179.7, 1154}, {179.8, 1153}, {179.9, 1154}, {180.0, 1153}, {180.1, 1150}, {180.2, 1147}, {180.3, 1146}, {180.4, 1144}, {180.5, 1142}, {180.6, 1140}, {180.7, 1135}, {180.8, 1125}, {180.9, 1121}, {181.0, 1113}, {181.1, 1107}, {181.2, 1098}, {181.3, 1094}, {181.4, 1087}, {181.5, 1084}, {181.6, 1082}, {181.7, 1078}, {181.8, 1073}, {181.9, 1068}, {182.0, 1063}, {182.1, 1061}, {182.2, 1060}, {182.3, 1061}, {182.4, 1065}, {182.5, 1069}, {182.6, 1072}, {182.7, 1076}, {182.8, 1084}, {182.9, 1098}, {183.0, 1110}, {183.1, 1116}, {183.2, 1113}, {183.3, 1116}, {183.4, 1122}, {183.5, 1125}, {183.6, 1133}, {183.7, 1138}, {183.8, 1146}, {183.9, 1140}, {184.0, 1135}, {184.1, 1134}, {184.2, 1131}, {184.3, 1129}, {184.4, 1137}, {184.5, 1139}, {184.6, 1144}, {184.7, 1149}, {184.8, 1155}, {184.9, 1163}, {185.0, 1164}, {185.1, 1173}, {185.2, 1170}, {185.3, 1165}, {185.4, 1157}, {185.5, 1153}, {185.6, 1150}, {185.7, 1142}, {185.8, 1141}, {185.9, 1142}, {186.0, 1142}, {186.1, 1142}, {186.2, 1142}, {186.3, 1145}, {186.4, 1151}, {186.5, 1154}, {186.6, 1155}, {186.7, 1152}, {186.8, 1154}, {186.9, 1154}, {187.0, 1155}, {187.1, 1158}, {187.2, 1159}, {187.3, 1158}, {187.4, 1158}, {187.5, 1158}, {187.6, 1161}, {187.7, 1167}, {187.8, 1170} }; return new ArrayList<>(Arrays.asList(data)); } private void setLineChart() { HIOptions options = new HIOptions(); HITitle title = new HITitle(); title.setText("Solar Employment Growth by Sector, 2010-2016"); options.setTitle(title); HISubtitle subtitle = new HISubtitle(); subtitle.setText("Source: thesolarfoundation.com"); options.setSubtitle(subtitle); HIYAxis yaxis = new HIYAxis(); yaxis.setTitle(new HITitle()); yaxis.getTitle().setText("Number of Employees"); options.setYAxis(new ArrayList<>(Collections.singletonList(yaxis))); HILegend legend = new HILegend(); legend.setLayout("vertical"); legend.setAlign("right"); legend.setVerticalAlign("middle"); options.setLegend(legend); HIPlotOptions plotoptions = new HIPlotOptions(); plotoptions.setSeries(new HISeries()); plotoptions.getSeries().setLabel(new HILabel()); plotoptions.getSeries().getLabel().setConnectorAllowed(false); plotoptions.getSeries().setPointStart(2010); options.setPlotOptions(plotoptions); HILine line1 = new HILine(); line1.setName("Installation"); line1.setData(new ArrayList<>(Arrays.asList(43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175))); HILine line2 = new HILine(); line2.setName("Manufacturing"); line2.setData(new ArrayList<>(Arrays.asList(24916, 24064, 29742, 29851, 32490, 30282, 38121, 40434))); HILine line3 = new HILine(); line3.setName("Sales & Distribution"); line3.setData(new ArrayList<>(Arrays.asList(11744, 17722, 16005, 19771, 20185, 24377, 32147, 39387))); HILine line4 = new HILine(); line4.setName("Project Development"); line4.setData(new ArrayList<>(Arrays.asList(null, null, 7988, 12169, 15112, 22452, 34400, 34227))); HILine line5 = new HILine(); line5.setName("Other"); line5.setData(new ArrayList<>(Arrays.asList(12908, 5948, 8105, 11248, 8989, 11816, 18274, 18111))); HIResponsive responsive = new HIResponsive(); HIRules rules1 = new HIRules(); rules1.setCondition(new HICondition()); rules1.getCondition().setMaxWidth(500); HashMap<String, HashMap> chartLegend = new HashMap<>(); HashMap<String, String> legendOptions = new HashMap<>(); legendOptions.put("layout", "horizontal"); legendOptions.put("align", "center"); legendOptions.put("verticalAlign", "bottom"); chartLegend.put("legend", legendOptions); rules1.setChartOptions(chartLegend); responsive.setRules(new ArrayList<>(Collections.singletonList(rules1))); options.setResponsive(responsive); options.setSeries(new ArrayList<>(Arrays.asList(line1, line2, line3, line4, line5))); binding.line.setOptions(options); } private void setBarChart() { HIOptions options = new HIOptions(); HIChart chart = new HIChart(); chart.setType("column"); options.setChart(chart); HITitle title = new HITitle(); title.setText("Demo chart"); options.setTitle(title); HIColumn series = new HIColumn(); series.setData(new ArrayList<>(Arrays.asList(49.9, 71.5, 106.4, 129.2, 144, 176, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4))); options.setSeries(new ArrayList<HISeries>(Collections.singletonList(series))); binding.bar.setOptions(options); } @Override public void onDestroyView() { super.onDestroyView(); binding = null; } }
[ "dani@keyta.id" ]
dani@keyta.id
02151ce1b285dd6ce06eb206b9e5d2e82889137a
38c7aa1d3666bfc450a34911d6d566929440e5ae
/src/jAudioFeatureExtractor/actions/SynthesizeAction.java
efba0a2479813168ecf2022750250c9e06d6060d
[]
no_license
dmcennis/archivedj-git
0c566a20457ab659ef1182e99a1df68ad12431e4
2543b2ea04577df10c633b8010e11b4074e6dbe5
refs/heads/master
2016-09-01T18:27:59.861392
2014-06-12T18:35:32
2014-06-12T18:35:34
20,753,156
0
1
null
null
null
null
UTF-8
Java
false
false
976
java
package jAudioFeatureExtractor.actions; import jAudioFeatureExtractor.Controller; import jAudioFeatureExtractor.RecordingSelectorPanel; import jAudioFeatureExtractor.SynthesisFrame; import java.awt.event.ActionEvent; import javax.swing.AbstractAction; /** * Action that shows the SynthesizeFrame * * @author Daniel McEnnis * */ public class SynthesizeAction extends AbstractAction { static final long serialVersionUID = 1; private SynthesisFrame synthesis_frame=null; private Controller controller; /** * Constructor that sets the menu text and stores a reference to the controller. * @param c near global controller. */ public SynthesizeAction(Controller c){ super("Synthesize Audio..."); controller = c; } /** * Creates and shows the SynthesizeFrame. */ public void actionPerformed(ActionEvent e) { if (synthesis_frame == null) synthesis_frame = new SynthesisFrame(controller); else synthesis_frame.setVisible(true); } }
[ "dmcennis@gmail.com" ]
dmcennis@gmail.com
59ec249c5b46b8775879ab03fe42d4e13fa774c0
c01ce441a7218bc99fe874b125fb0f5fbd2998d6
/app/src/main/java/com/example/sampleprocess/ReadFromModbus.java
7d4b9f839fb9361074b1557854755f9eabd3970d
[]
no_license
RaimisSarka/SampleProcess
b9d416b251d3ab96a360bd7f03ca288bf3da1af5
18088fa36a32c2725b9fd48823b56f11989f7903
refs/heads/master
2020-09-20T22:49:24.433161
2019-11-28T08:55:48
2019-11-28T08:55:48
224,610,531
0
0
null
null
null
null
UTF-8
Java
false
false
1,061
java
package com.example.sampleprocess; import android.os.AsyncTask; import de.re.easymodbus.modbusclient.ModbusClient; public class ReadFromModbus extends AsyncTask<String, Void, String> { Exception e; @Override protected String doInBackground(String... params) { ModbusClient mClient = new ModbusClient(); String res = ""; try { mClient.Connect(params[0], Integer.valueOf(params[1])); int[] input = mClient.ReadHoldingRegisters(Integer.valueOf(params[2]), Integer.valueOf(params[3])); for (int i = 0; i < input.length; i++) { if (input.length>1) { res = res + String.valueOf(input[i]) + "\n"; } else { res = res + String.valueOf(input[i]); } } return res; } catch (Exception e) { this.e = e; return null; } finally { } } @Override protected void onPostExecute(String s) { super.onPostExecute(s); } }
[ "raimis.sarka@gmail.com" ]
raimis.sarka@gmail.com
9b1681047dc1f443d12c813cc6763af50023637b
afc46c6c1ea4514b32c202f154ea729fee0840a5
/Exercism/java/diamond/src/main/java/DiamondPrinter.java
186cc3f66265d5a8856d93e5ba6bbb16ef52da86
[]
no_license
Kaustubh2526/Diamond
d7419db8bc23cd5f48f575b5d8dc9dcef6135d52
2e78fa624d0d4a039fdc66740082e8449bce7dc4
refs/heads/master
2020-12-12T22:10:20.466718
2020-01-16T05:28:55
2020-01-16T05:28:55
234,242,117
0
0
null
null
null
null
UTF-8
Java
false
false
1,335
java
import java.util.ArrayList; import java.util.List; class diamPrinter { List<String> printToList(char a) { List<String> diam = new ArrayList<>(); if(a=='A'){ diam.add("A"); return diam; } else{ int length = a-'A'+1; System.out.println("hello"); String[] storage = new String[length]; String temp=""; for(int i=0;i<length-1;i++){ temp=temp+" "; } temp=temp+"A"; for(int i=0;i<length-1;i++){ temp=temp+" "; } storage[0] = temp; temp=""; for(int i=1;i<length;i++){ for(int j=0;j<2*length-1;j++){ int point = length-i-1; if(j==point||j==(2*length-1)-point-1){ temp=temp+((char)('A'+i)); } else{ temp = temp+" "; } } storage[i] = temp; temp = ""; } for(int i=0;i<length;i++){ diam.add(storage[i]); } for(int i=length-2;i>=0;i--){ diam.add(storage[i]); } return diam; } } }
[ "kasutubhbajpai@ITs-MacBook-Pro.local" ]
kasutubhbajpai@ITs-MacBook-Pro.local
c31e103290a3e388e0ea81dbd1c1de76fde06e7b
500b104bc8ed57d5daead3df2b20738059b7ef9a
/android/src/com/android/tools/idea/lint/AndroidLintAnimatorKeepInspection.java
1d70ff3a221209e9e7d1e9cfc1c1b95df41fbdfe
[]
no_license
RepoForks/android-2
a9eb30effe202ef0b1ae7ff44d1b24ffde863aff
a69a3102b8bde36f434d72bb30bfe7e7628cf4ef
refs/heads/master
2021-09-01T05:40:37.325999
2017-12-21T16:54:18
2017-12-21T16:54:18
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,587
java
/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.tools.idea.lint; import com.android.tools.lint.checks.ObjectAnimatorDetector; import com.android.tools.lint.detector.api.TextFormat; import com.intellij.codeInsight.AnnotationUtil; import com.intellij.codeInsight.FileModificationService; import com.intellij.codeInsight.intention.AddAnnotationFix; import com.intellij.openapi.project.Project; import com.intellij.psi.PsiAnnotation; import com.intellij.psi.PsiElement; import com.intellij.psi.PsiModifierList; import com.intellij.psi.PsiModifierListOwner; import com.intellij.psi.util.PsiTreeUtil; import org.jetbrains.android.inspections.lint.AndroidLintInspectionBase; import org.jetbrains.android.inspections.lint.AndroidLintQuickFix; import org.jetbrains.android.inspections.lint.AndroidQuickfixContexts; import org.jetbrains.android.util.AndroidBundle; import org.jetbrains.annotations.NotNull; import static com.android.tools.lint.checks.ObjectAnimatorDetector.KEEP_ANNOTATION; public class AndroidLintAnimatorKeepInspection extends AndroidLintInspectionBase { public AndroidLintAnimatorKeepInspection() { super(AndroidBundle.message("android.lint.inspections.animator.keep"), ObjectAnimatorDetector.MISSING_KEEP); } @NotNull @Override public AndroidLintQuickFix[] getQuickFixes(@NotNull PsiElement startElement, @NotNull PsiElement endElement, @NotNull String message) { return new AndroidLintQuickFix[]{ new AndroidLintQuickFix() { @Override public void apply(@NotNull PsiElement startElement, @NotNull PsiElement endElement, @NotNull AndroidQuickfixContexts.Context context) { if (!ObjectAnimatorDetector.isAddKeepErrorMessage(message, TextFormat.RAW)) { return; } PsiModifierListOwner container = PsiTreeUtil.getParentOfType(startElement, PsiModifierListOwner.class); if (container == null) { return; } if (!FileModificationService.getInstance().preparePsiElementForWrite(container)) { return; } final PsiModifierList modifierList = container.getModifierList(); if (modifierList != null) { PsiAnnotation annotation = AnnotationUtil.findAnnotation(container, KEEP_ANNOTATION); if (annotation == null) { Project project = startElement.getProject(); new AddAnnotationFix(KEEP_ANNOTATION, container).invoke(project, null, container.getContainingFile()); } } } @Override public boolean isApplicable(@NotNull PsiElement startElement, @NotNull PsiElement endElement, @NotNull AndroidQuickfixContexts.ContextType contextType) { return true; } @NotNull @Override public String getName() { return "Annotate with @Keep"; } } }; } }
[ "tnorbye@google.com" ]
tnorbye@google.com
2aec83de6896b2af580e61d37fd7e49918b43b8d
1fe15b5073a0465d3021f134060afa1b5963137a
/backend/src/main/java/kr/co/printingworks/printdesk/service/impl/RegisterServiceImpl.java
b93bb862aed82df53ab1c7cc776b2de91a699ef7
[]
no_license
yskim621/printdesk_boot
67cd978b6f77d91821dac52fc80065566716999d
452054e2fc5f429bc0e2dc7909d64dced9fb5042
refs/heads/master
2023-08-27T18:16:21.263262
2021-09-30T02:37:30
2021-09-30T02:37:30
411,898,337
0
0
null
null
null
null
UTF-8
Java
false
false
3,255
java
package kr.co.printingworks.printdesk.service.impl; import kr.co.printingworks.printdesk.dto.RegisterDto; import kr.co.printingworks.printdesk.entity.sys.Company; import kr.co.printingworks.printdesk.entity.sys.User; import kr.co.printingworks.printdesk.enumerate.*; import kr.co.printingworks.printdesk.mapper.UserMapper; import kr.co.printingworks.printdesk.repo.CompanyRepository; import kr.co.printingworks.printdesk.repo.UserRepository; import kr.co.printingworks.printdesk.service.RegisterService; import kr.co.printingworks.printdesk.utils.DateTimeUtil; import kr.co.printingworks.printdesk.utils.UserUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.PropertySource; import org.springframework.stereotype.Service; import javax.transaction.Transactional; import java.util.Date; import java.util.Optional; @Service @PropertySource("classpath:constants.yml") public class RegisterServiceImpl implements RegisterService { @Autowired UserRepository userRepository; @Autowired CompanyRepository companyRepository; @Value("${company-tryday-num}") Integer companyTrydayNum; @Override public void register(RegisterDto registerDto) { String plainPassword = registerDto.getPassword(); String password = UserUtils.encryptPassword(plainPassword); registerDto.setPassword(password); // TODO: 사업자 등록번호, 대표자명, 업태, 업종 컬럼 추가하면되는지 물어보기 Company company = new Company(); company.setId(Long.parseLong(UserUtils.createCompanyId())); company.setExpireTime(DateTimeUtil.addDate(new Date(), companyTrydayNum)); company.setCreateTime(new Date()); company.setState(CompanyState.ONSALING); // TODO: state에 업태 넣으면되는지 물어보고 맞으면 셀렉트박스로 바꿀지 물어보기 company.setIsFormal(BoolValue.NO); company.setStandardCurrency(CurrencyType.RMB); company.setType(CompanyType.NORMAL); company.setTel(registerDto.getTel()); company.setAddress(registerDto.getAddress()); company.setLinkName(registerDto.getManager()); company.setName(registerDto.getCompanyName()); company.setEmail(registerDto.getTaxBill()); companyRepository.save(company); User user = UserMapper.INSTANCE.toEntity(registerDto); user.setCompany(company); user.setLoginCount(0); user.setLoginErrorCount(0); user.setUserNo(UserUtils.createUserNo(company.getId() + "")); userRepository.save(user); company.setRegisterUser(user); company.setCreateName(user.getUserName()); companyRepository.save(company); } @Override public boolean checkUserName(String userName) { // User user = userRepository.findByUserName(userName); // return user == null; Optional<User> user = userRepository.findByUserName(userName); return !user.isPresent(); } @Override public boolean checkMobile(String mobile) { User user = userRepository.findByMobile(mobile); return user == null; } }
[ "brothersup@kakao.com" ]
brothersup@kakao.com
d5f6dba0cd49be8c6801d3117fa3817ffe479c27
f5da190caa872091c18e68c82eae5ad887892bc9
/src/main/java/com/ats/test/web/rest/vm/LoginVM.java
adef3270b8becc97e1c3934e861803ef81090f0e
[]
no_license
koyaja/jhipsterTest
de89f13ff8d224db9e024d334d62526201a7e112
cf1456d66cd9f0e3958a2dca7efb64b6d5e7f5a8
refs/heads/master
2020-03-14T03:39:34.457397
2018-04-28T16:12:00
2018-04-28T16:12:00
131,424,644
0
0
null
2018-04-28T19:44:21
2018-04-28T16:11:58
Java
UTF-8
Java
false
false
1,111
java
package com.ats.test.web.rest.vm; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; /** * View Model object for storing a user's credentials. */ public class LoginVM { @NotNull @Size(min = 1, max = 50) private String username; @NotNull @Size(min = ManagedUserVM.PASSWORD_MIN_LENGTH, max = ManagedUserVM.PASSWORD_MAX_LENGTH) private String password; private Boolean rememberMe; 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 Boolean isRememberMe() { return rememberMe; } public void setRememberMe(Boolean rememberMe) { this.rememberMe = rememberMe; } @Override public String toString() { return "LoginVM{" + "username='" + username + '\'' + ", rememberMe=" + rememberMe + '}'; } }
[ "jhipster-bot@users.noreply.github.com" ]
jhipster-bot@users.noreply.github.com
35b510f5b8768efa01a305d4e119f8036e594ecc
41baa741f0e26e37e3f1068e25d123f11c5f7b90
/app/src/main/java/com/example/a41587805/tpfinal/model/letra.java
0a96006cfe04de8922afb93347401bb9e0a132b3
[]
no_license
calanity/TpFinal
57f4eb94f7c2863c42bec7da06e22ba3d98433a7
978afd1f086fc01eae2ab8d2e4dace14cb2c85ef
refs/heads/master
2021-01-10T23:20:31.113595
2016-12-02T13:33:41
2016-12-02T13:33:41
69,381,641
0
0
null
null
null
null
UTF-8
Java
false
false
776
java
package com.example.a41587805.tpfinal.model; import org.cocos2d.nodes.Sprite; import org.cocos2d.opengl.Texture2D; /** * Created by 41587805 on 8/11/2016. */ public class letra { Sprite sprite; String letra; int id; public letra(String imagenPath, String letra) { this.sprite = Sprite.sprite(imagenPath); this.letra = letra; } public Sprite getSprite() { return sprite; } public String getLetra() { return letra; } public void setLetra(String letra) { this.letra = letra; } public boolean esIgual(letra l2) { return letra.equals(l2.getLetra()); } public int getId() { return id; } public void setId(int id) { this.id = id; } }
[ "calanity.gmail.com" ]
calanity.gmail.com
1982d60f6e777b0743cf9f5845ade31de3d0c0c3
2405f3ff1293fd39fae25f69cdc069ac71400de4
/MovieSearchSolution/Droid/obj/Debug/android/android/support/v7/recyclerview/R.java
63c8b619881acebd3e9e34e6296a73b4cfca9bdc
[]
no_license
oddurka/T-488-MAPP-Project1
e88220338f1a0183136717915bdfad89bc90bbdc
d5151f6e11dc17b003bf271b42da47a41b25252c
refs/heads/master
2021-08-24T07:34:22.892485
2017-12-08T17:08:05
2017-12-08T17:08:05
112,591,209
0
0
null
null
null
null
UTF-8
Java
false
false
591,207
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package android.support.v7.recyclerview; public final class R { public static final class anim { public static final int abc_fade_in=0x7f050000; public static final int abc_fade_out=0x7f050001; public static final int abc_grow_fade_in_from_bottom=0x7f050002; public static final int abc_popup_enter=0x7f050003; public static final int abc_popup_exit=0x7f050004; public static final int abc_shrink_fade_out_from_bottom=0x7f050005; public static final int abc_slide_in_bottom=0x7f050006; public static final int abc_slide_in_top=0x7f050007; public static final int abc_slide_out_bottom=0x7f050008; public static final int abc_slide_out_top=0x7f050009; public static final int design_bottom_sheet_slide_in=0x7f05000a; public static final int design_bottom_sheet_slide_out=0x7f05000b; public static final int design_fab_in=0x7f05000c; public static final int design_fab_out=0x7f05000d; public static final int design_snackbar_in=0x7f05000e; public static final int design_snackbar_out=0x7f05000f; } public static final class animator { public static final int design_appbar_state_list_animator=0x7f060000; } public static final class attr { /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarDivider=0x7f010047; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f010048; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f010041; /** <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=0x7f010046; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010043; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarStyle=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 actionBarTabBarStyle=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 actionBarTabStyle=0x7f01003c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabTextStyle=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 actionBarTheme=0x7f010044; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f010045; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionDropDownStyle=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 actionLayout=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 actionMenuTextAppearance=0x7f010049; /** <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=0x7f01004a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCopyDrawable=0x7f010051; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCutDrawable=0x7f010050; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeFindDrawable=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 actionModePasteDrawable=0x7f010052; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePopupWindowStyle=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 actionModeSelectAllDrawable=0x7f010053; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeShareDrawable=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 actionModeSplitBackground=0x7f01004e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeStyle=0x7f01004b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionOverflowButtonStyle=0x7f01003f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f010040; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionProviderClass=0x7f0100b6; /** <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=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 activityChooserViewStyle=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 alertDialogButtonGroupStyle=0x7f01008f; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010090; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogStyle=0x7f01008e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogTheme=0x7f010091; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100a4; /** <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=0x7f0100a5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100ac; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowShaftLength=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 autoCompleteTextViewStyle=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 background=0x7f010010; /** <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=0x7f010012; /** <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=0x7f010011; /** <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=0x7f0100e9; /** <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=0x7f0100ea; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100ae; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010114; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 behavior_overlapTop=0x7f01011d; /** <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=0x7f0100f0; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 borderWidth=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 borderlessButtonStyle=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 bottomSheetDialogTheme=0x7f01010c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 buttonBarButtonStyle=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 buttonBarNegativeButtonStyle=0x7f010094; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 buttonBarPositiveButtonStyle=0x7f010093; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarStyle=0x7f010063; /** <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=0x7f0100de; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonPanelSideLayout=0x7f010025; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 buttonStyleSmall=0x7f010098; /** <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=0x7f0100a6; /** <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=0x7f0100a7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkboxStyle=0x7f010099; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f01009a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeIcon=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 closeItemLayout=0x7f010022; /** <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=0x7f0100e0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100df; /** <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=0x7f0100ff; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int collapsedTitleTextAppearance=0x7f0100f9; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int color=0x7f0100a8; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorAccent=0x7f010086; /** <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=0x7f01008d; /** <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=0x7f01008a; /** <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=0x7f010088; /** <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=0x7f010089; /** <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=0x7f010087; /** <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=0x7f010084; /** <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=0x7f010085; /** <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=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 commitIcon=0x7f0100c6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 contentInsetEndWithActions=0x7f01001f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetLeft=0x7f01001c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01001d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetStart=0x7f01001a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01001e; /** <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=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 controlBackground=0x7f01008c; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010133; /** <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=0x7f010134; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010136; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010135; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int customNavigationLayout=0x7f010013; /** <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=0x7f0100c0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 dialogTheme=0x7f01005b; /** <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=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 divider=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 dividerHorizontal=0x7f010069; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 dividerVertical=0x7f010068; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100aa; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int drawerArrowStyle=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 dropDownListViewStyle=0x7f01007b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 editTextBackground=0x7f010070; /** <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=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 editTextStyle=0x7f01009b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int elevation=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 errorEnabled=0x7f010131; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int errorTextAppearance=0x7f010132; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010024; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100eb; /** <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=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 expandedTitleMargin=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 expandedTitleMarginBottom=0x7f0100f7; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100f6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100f4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginTop=0x7f0100f5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100f8; /** <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=0x7f010110; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010115; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int gapBetweenBars=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 goIcon=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 headerLayout=0x7f01011b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010005; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010019; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010137; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 hintTextAppearance=0x7f01012f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010061; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeLayout=0x7f010014; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int icon=0x7f01000d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100be; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int imageButtonStyle=0x7f010071; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f010016; /** <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=0x7f010023; /** <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=0x7f01011c; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 itemBackground=0x7f010119; /** <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=0x7f010117; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemPadding=0x7f010018; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01011a; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemTextColor=0x7f010118; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int keylines=0x7f010104; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100bd; /** <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=0x7f010107; /** <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=0x7f010109; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_behavior=0x7f010106; /** <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=0x7f010102; /** <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=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>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=0x7f01010b; /** <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=0x7f01010a; /** <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=0x7f010108; /** <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=0x7f0100ee; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout_scrollInterpolator=0x7f0100ef; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=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 listDividerAlertDialog=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 listItemLayout=0x7f010029; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listLayout=0x7f010026; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 listPopupWindowStyle=0x7f01007c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010076; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010078; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010077; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010079; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 logo=0x7f01000e; /** <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=0x7f0100e3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxActionInlineWidth=0x7f01011e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxButtonHeight=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 measureWithLargestChild=0x7f0100b0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010116; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010027; /** <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=0x7f0100e2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100e1; /** <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=0x7f010008; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100b9; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100bb; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100e7; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100e6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingTopNoTitle=0x7f0100bc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010080; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f010082; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010081; /** <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=0x7f01013a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int passwordToggleDrawable=0x7f010139; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010138; /** <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=0x7f01013b; /** <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=0x7f01013c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupMenuStyle=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 popupTheme=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 popupWindowStyle=0x7f01006e; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100b7; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010111; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010017; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 queryBackground=0x7f0100c8; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int queryHint=0x7f0100bf; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int radioButtonStyle=0x7f01009c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyle=0x7f01009d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyleIndicator=0x7f01009e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyleSmall=0x7f01009f; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01010f; /** <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=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 scrimVisibleHeightTrigger=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 searchHintIcon=0x7f0100c4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchIcon=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 searchViewStyle=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 seekBarStyle=0x7f0100a0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackground=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 selectableItemBackgroundBorderless=0x7f010066; /** <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=0x7f0100b3; /** <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=0x7f0100b1; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100d4; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01002a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f010028; /** <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=0x7f0100a9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=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 spinnerStyle=0x7f0100a1; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100d3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002b; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100ba; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 state_collapsible=0x7f0100ed; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010105; /** <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=0x7f0100fb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 submitBackground=0x7f0100c9; /** <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=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 subtitleTextAppearance=0x7f0100d6; /** <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=0x7f0100e5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextStyle=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 suggestionRowLayout=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 switchMinWidth=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 switchPadding=0x7f0100d2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchStyle=0x7f0100a2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchTextAppearance=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 tabBackground=0x7f010122; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010121; /** <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=0x7f010124; /** <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=0x7f01011f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabIndicatorHeight=0x7f010120; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabMaxWidth=0x7f010126; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabMinWidth=0x7f010125; /** <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=0x7f010123; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPadding=0x7f01012e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingBottom=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 tabPaddingEnd=0x7f01012c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01012a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01012b; /** <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=0x7f010129; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tabTextAppearance=0x7f010127; /** <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=0x7f010128; /** <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=0x7f010031; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=0x7f010058; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 textAppearanceListItemSecondary=0x7f01007e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItemSmall=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 textAppearancePopupMenuHeader=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 textAppearanceSearchResultSubtitle=0x7f010073; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=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 textAppearanceSmallPopupMenu=0x7f010059; /** <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=0x7f010092; /** <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=0x7f01010e; /** <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=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 theme=0x7f0100e8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thickness=0x7f0100af; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100cf; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thumbTint=0x7f0100ca; /** <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=0x7f0100cb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002e; /** <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=0x7f01002f; /** <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=0x7f010030; /** <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=0x7f01002c; /** <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=0x7f01002d; /** <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=0x7f010007; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010101; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100d7; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100db; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100d9; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 titleMarginTop=0x7f0100da; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargins=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 titleTextAppearance=0x7f0100d5; /** <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=0x7f0100e4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 toolbarId=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 toolbarNavigationButtonStyle=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 toolbarStyle=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 track=0x7f0100cc; /** <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=0x7f0100cd; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int trackTintMode=0x7f0100ce; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int useCompatPadding=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 voiceIcon=0x7f0100c5; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBar=0x7f010032; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010034; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010035; /** <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=0x7f010039; /** <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=0x7f010037; /** <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=0x7f010036; /** <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=0x7f010038; /** <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=0x7f01003a; /** <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=0x7f01003b; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010033; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f0b0000; public static final int abc_allow_stacked_button_bar=0x7f0b0001; public static final int abc_config_actionMenuItemAllCaps=0x7f0b0002; public static final int abc_config_closeDialogWhenTouchOutside=0x7f0b0003; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0b0004; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0c0048; public static final int abc_background_cache_hint_selector_material_light=0x7f0c0049; public static final int abc_btn_colored_borderless_text_material=0x7f0c004a; public static final int abc_btn_colored_text_material=0x7f0c004b; public static final int abc_color_highlight_material=0x7f0c004c; public static final int abc_hint_foreground_material_dark=0x7f0c004d; public static final int abc_hint_foreground_material_light=0x7f0c004e; public static final int abc_input_method_navigation_guard=0x7f0c0001; public static final int abc_primary_text_disable_only_material_dark=0x7f0c004f; public static final int abc_primary_text_disable_only_material_light=0x7f0c0050; public static final int abc_primary_text_material_dark=0x7f0c0051; public static final int abc_primary_text_material_light=0x7f0c0052; public static final int abc_search_url_text=0x7f0c0053; public static final int abc_search_url_text_normal=0x7f0c0002; public static final int abc_search_url_text_pressed=0x7f0c0003; public static final int abc_search_url_text_selected=0x7f0c0004; public static final int abc_secondary_text_material_dark=0x7f0c0054; public static final int abc_secondary_text_material_light=0x7f0c0055; public static final int abc_tint_btn_checkable=0x7f0c0056; public static final int abc_tint_default=0x7f0c0057; public static final int abc_tint_edittext=0x7f0c0058; public static final int abc_tint_seek_thumb=0x7f0c0059; public static final int abc_tint_spinner=0x7f0c005a; public static final int abc_tint_switch_thumb=0x7f0c005b; public static final int abc_tint_switch_track=0x7f0c005c; public static final int accent_material_dark=0x7f0c0005; public static final int accent_material_light=0x7f0c0006; public static final int background_floating_material_dark=0x7f0c0007; public static final int background_floating_material_light=0x7f0c0008; public static final int background_material_dark=0x7f0c0009; public static final int background_material_light=0x7f0c000a; public static final int blue=0x7f0c0046; public static final int bright_foreground_disabled_material_dark=0x7f0c000b; public static final int bright_foreground_disabled_material_light=0x7f0c000c; public static final int bright_foreground_inverse_material_dark=0x7f0c000d; public static final int bright_foreground_inverse_material_light=0x7f0c000e; public static final int bright_foreground_material_dark=0x7f0c000f; public static final int bright_foreground_material_light=0x7f0c0010; public static final int button_material_dark=0x7f0c0011; public static final int button_material_light=0x7f0c0012; public static final int design_bottom_navigation_shadow_color=0x7f0c003b; public static final int design_error=0x7f0c005d; public static final int design_fab_shadow_end_color=0x7f0c003c; public static final int design_fab_shadow_mid_color=0x7f0c003d; public static final int design_fab_shadow_start_color=0x7f0c003e; public static final int design_fab_stroke_end_inner_color=0x7f0c003f; public static final int design_fab_stroke_end_outer_color=0x7f0c0040; public static final int design_fab_stroke_top_inner_color=0x7f0c0041; public static final int design_fab_stroke_top_outer_color=0x7f0c0042; public static final int design_snackbar_background_color=0x7f0c0043; public static final int design_textinput_error_color_dark=0x7f0c0044; public static final int design_textinput_error_color_light=0x7f0c0045; public static final int design_tint_password_toggle=0x7f0c005e; public static final int dim_foreground_disabled_material_dark=0x7f0c0013; public static final int dim_foreground_disabled_material_light=0x7f0c0014; public static final int dim_foreground_material_dark=0x7f0c0015; public static final int dim_foreground_material_light=0x7f0c0016; public static final int foreground_material_dark=0x7f0c0017; public static final int foreground_material_light=0x7f0c0018; public static final int green=0x7f0c0047; public static final int highlighted_text_material_dark=0x7f0c0019; public static final int highlighted_text_material_light=0x7f0c001a; public static final int material_blue_grey_800=0x7f0c001b; public static final int material_blue_grey_900=0x7f0c001c; public static final int material_blue_grey_950=0x7f0c001d; public static final int material_deep_teal_200=0x7f0c001e; public static final int material_deep_teal_500=0x7f0c001f; public static final int material_grey_100=0x7f0c0020; public static final int material_grey_300=0x7f0c0021; public static final int material_grey_50=0x7f0c0022; public static final int material_grey_600=0x7f0c0023; public static final int material_grey_800=0x7f0c0024; public static final int material_grey_850=0x7f0c0025; public static final int material_grey_900=0x7f0c0026; public static final int notification_action_color_filter=0x7f0c0000; public static final int notification_icon_bg_color=0x7f0c0027; public static final int notification_material_background_media_default_color=0x7f0c0028; public static final int primary_dark_material_dark=0x7f0c0029; public static final int primary_dark_material_light=0x7f0c002a; public static final int primary_material_dark=0x7f0c002b; public static final int primary_material_light=0x7f0c002c; public static final int primary_text_default_material_dark=0x7f0c002d; public static final int primary_text_default_material_light=0x7f0c002e; public static final int primary_text_disabled_material_dark=0x7f0c002f; public static final int primary_text_disabled_material_light=0x7f0c0030; public static final int ripple_material_dark=0x7f0c0031; public static final int ripple_material_light=0x7f0c0032; public static final int secondary_text_default_material_dark=0x7f0c0033; public static final int secondary_text_default_material_light=0x7f0c0034; public static final int secondary_text_disabled_material_dark=0x7f0c0035; public static final int secondary_text_disabled_material_light=0x7f0c0036; public static final int switch_thumb_disabled_material_dark=0x7f0c0037; public static final int switch_thumb_disabled_material_light=0x7f0c0038; public static final int switch_thumb_material_dark=0x7f0c005f; public static final int switch_thumb_material_light=0x7f0c0060; public static final int switch_thumb_normal_material_dark=0x7f0c0039; public static final int switch_thumb_normal_material_light=0x7f0c003a; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f07000f; public static final int abc_action_bar_content_inset_with_nav=0x7f070010; public static final int abc_action_bar_default_height_material=0x7f070004; public static final int abc_action_bar_default_padding_end_material=0x7f070011; public static final int abc_action_bar_default_padding_start_material=0x7f070012; public static final int abc_action_bar_elevation_material=0x7f070018; public static final int abc_action_bar_icon_vertical_padding_material=0x7f070019; public static final int abc_action_bar_overflow_padding_end_material=0x7f07001a; public static final int abc_action_bar_overflow_padding_start_material=0x7f07001b; public static final int abc_action_bar_progress_bar_size=0x7f070005; public static final int abc_action_bar_stacked_max_height=0x7f07001c; public static final int abc_action_bar_stacked_tab_max_width=0x7f07001d; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f07001e; public static final int abc_action_bar_subtitle_top_margin_material=0x7f07001f; public static final int abc_action_button_min_height_material=0x7f070020; public static final int abc_action_button_min_width_material=0x7f070021; public static final int abc_action_button_min_width_overflow_material=0x7f070022; public static final int abc_alert_dialog_button_bar_height=0x7f070003; public static final int abc_button_inset_horizontal_material=0x7f070023; public static final int abc_button_inset_vertical_material=0x7f070024; public static final int abc_button_padding_horizontal_material=0x7f070025; public static final int abc_button_padding_vertical_material=0x7f070026; public static final int abc_cascading_menus_min_smallest_width=0x7f070027; public static final int abc_config_prefDialogWidth=0x7f070008; public static final int abc_control_corner_material=0x7f070028; public static final int abc_control_inset_material=0x7f070029; public static final int abc_control_padding_material=0x7f07002a; public static final int abc_dialog_fixed_height_major=0x7f070009; public static final int abc_dialog_fixed_height_minor=0x7f07000a; public static final int abc_dialog_fixed_width_major=0x7f07000b; public static final int abc_dialog_fixed_width_minor=0x7f07000c; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f07002b; public static final int abc_dialog_list_padding_top_no_title=0x7f07002c; public static final int abc_dialog_min_width_major=0x7f07000d; public static final int abc_dialog_min_width_minor=0x7f07000e; public static final int abc_dialog_padding_material=0x7f07002d; public static final int abc_dialog_padding_top_material=0x7f07002e; public static final int abc_dialog_title_divider_material=0x7f07002f; public static final int abc_disabled_alpha_material_dark=0x7f070030; public static final int abc_disabled_alpha_material_light=0x7f070031; public static final int abc_dropdownitem_icon_width=0x7f070032; public static final int abc_dropdownitem_text_padding_left=0x7f070033; public static final int abc_dropdownitem_text_padding_right=0x7f070034; public static final int abc_edit_text_inset_bottom_material=0x7f070035; public static final int abc_edit_text_inset_horizontal_material=0x7f070036; public static final int abc_edit_text_inset_top_material=0x7f070037; public static final int abc_floating_window_z=0x7f070038; public static final int abc_list_item_padding_horizontal_material=0x7f070039; public static final int abc_panel_menu_list_width=0x7f07003a; public static final int abc_progress_bar_height_material=0x7f07003b; public static final int abc_search_view_preferred_height=0x7f07003c; public static final int abc_search_view_preferred_width=0x7f07003d; public static final int abc_seekbar_track_background_height_material=0x7f07003e; public static final int abc_seekbar_track_progress_height_material=0x7f07003f; public static final int abc_select_dialog_padding_start_material=0x7f070040; public static final int abc_switch_padding=0x7f070014; public static final int abc_text_size_body_1_material=0x7f070041; public static final int abc_text_size_body_2_material=0x7f070042; public static final int abc_text_size_button_material=0x7f070043; public static final int abc_text_size_caption_material=0x7f070044; public static final int abc_text_size_display_1_material=0x7f070045; public static final int abc_text_size_display_2_material=0x7f070046; public static final int abc_text_size_display_3_material=0x7f070047; public static final int abc_text_size_display_4_material=0x7f070048; public static final int abc_text_size_headline_material=0x7f070049; public static final int abc_text_size_large_material=0x7f07004a; public static final int abc_text_size_medium_material=0x7f07004b; public static final int abc_text_size_menu_header_material=0x7f07004c; public static final int abc_text_size_menu_material=0x7f07004d; public static final int abc_text_size_small_material=0x7f07004e; public static final int abc_text_size_subhead_material=0x7f07004f; public static final int abc_text_size_subtitle_material_toolbar=0x7f070006; public static final int abc_text_size_title_material=0x7f070050; public static final int abc_text_size_title_material_toolbar=0x7f070007; public static final int design_appbar_elevation=0x7f07006d; public static final int design_bottom_navigation_active_item_max_width=0x7f07006e; public static final int design_bottom_navigation_active_text_size=0x7f07006f; public static final int design_bottom_navigation_elevation=0x7f070070; public static final int design_bottom_navigation_height=0x7f070071; public static final int design_bottom_navigation_item_max_width=0x7f070072; public static final int design_bottom_navigation_item_min_width=0x7f070073; public static final int design_bottom_navigation_margin=0x7f070074; public static final int design_bottom_navigation_shadow_height=0x7f070075; public static final int design_bottom_navigation_text_size=0x7f070076; public static final int design_bottom_sheet_modal_elevation=0x7f070077; public static final int design_bottom_sheet_peek_height_min=0x7f070078; public static final int design_fab_border_width=0x7f070079; public static final int design_fab_elevation=0x7f07007a; public static final int design_fab_image_size=0x7f07007b; public static final int design_fab_size_mini=0x7f07007c; public static final int design_fab_size_normal=0x7f07007d; public static final int design_fab_translation_z_pressed=0x7f07007e; public static final int design_navigation_elevation=0x7f07007f; public static final int design_navigation_icon_padding=0x7f070080; public static final int design_navigation_icon_size=0x7f070081; public static final int design_navigation_max_width=0x7f070065; public static final int design_navigation_padding_bottom=0x7f070082; public static final int design_navigation_separator_vertical_padding=0x7f070083; public static final int design_snackbar_action_inline_max_width=0x7f070066; public static final int design_snackbar_background_corner_radius=0x7f070067; public static final int design_snackbar_elevation=0x7f070084; public static final int design_snackbar_extra_spacing_horizontal=0x7f070068; public static final int design_snackbar_max_width=0x7f070069; public static final int design_snackbar_min_width=0x7f07006a; public static final int design_snackbar_padding_horizontal=0x7f070085; public static final int design_snackbar_padding_vertical=0x7f070086; public static final int design_snackbar_padding_vertical_2lines=0x7f07006b; public static final int design_snackbar_text_size=0x7f070087; public static final int design_tab_max_width=0x7f070088; public static final int design_tab_scrollable_min_width=0x7f07006c; public static final int design_tab_text_size=0x7f070089; public static final int design_tab_text_size_2line=0x7f07008a; public static final int disabled_alpha_material_dark=0x7f070051; public static final int disabled_alpha_material_light=0x7f070052; public static final int highlight_alpha_material_colored=0x7f070053; public static final int highlight_alpha_material_dark=0x7f070054; public static final int highlight_alpha_material_light=0x7f070055; public static final int hint_alpha_material_dark=0x7f070056; public static final int hint_alpha_material_light=0x7f070057; public static final int hint_pressed_alpha_material_dark=0x7f070058; public static final int hint_pressed_alpha_material_light=0x7f070059; 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 notification_action_icon_size=0x7f07005a; public static final int notification_action_text_size=0x7f07005b; public static final int notification_big_circle_margin=0x7f07005c; public static final int notification_content_margin_start=0x7f070015; public static final int notification_large_icon_height=0x7f07005d; public static final int notification_large_icon_width=0x7f07005e; public static final int notification_main_column_padding_top=0x7f070016; public static final int notification_media_narrow_margin=0x7f070017; public static final int notification_right_icon_size=0x7f07005f; public static final int notification_right_side_padding_top=0x7f070013; public static final int notification_small_icon_background_padding=0x7f070060; public static final int notification_small_icon_size_as_large=0x7f070061; public static final int notification_subtext_size=0x7f070062; public static final int notification_top_pad=0x7f070063; public static final int notification_top_pad_large_text=0x7f070064; } 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=0x7f020068; public static final int avd_hide_password_2=0x7f020069; public static final int avd_hide_password_3=0x7f02006a; public static final int avd_show_password=0x7f020054; public static final int avd_show_password_1=0x7f02006b; public static final int avd_show_password_2=0x7f02006c; public static final int avd_show_password_3=0x7f02006d; 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 navigation_empty_icon=0x7f02005b; public static final int notification_action_background=0x7f02005c; public static final int notification_bg=0x7f02005d; public static final int notification_bg_low=0x7f02005e; public static final int notification_bg_low_normal=0x7f02005f; public static final int notification_bg_low_pressed=0x7f020060; public static final int notification_bg_normal=0x7f020061; public static final int notification_bg_normal_pressed=0x7f020062; public static final int notification_icon_background=0x7f020063; public static final int notification_template_icon_bg=0x7f020066; public static final int notification_template_icon_low_bg=0x7f020067; public static final int notification_tile_bg=0x7f020064; public static final int notify_panel_notification_icon_bg=0x7f020065; } public static final class id { public static final int action0=0x7f080090; 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=0x7f08008d; public static final int action_context_bar=0x7f080065; public static final int action_divider=0x7f080094; public static final int action_image=0x7f08008e; 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=0x7f08008f; public static final int actions=0x7f08009d; public static final int activity_chooser_view_content=0x7f080044; public static final int actors=0x7f08008c; 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=0x7f080091; 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=0x7f080099; 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 description=0x7f080088; 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=0x7f0800a3; 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 getMovieButton=0x7f0800a6; public static final int home=0x7f080005; public static final int homeAsUp=0x7f080013; public static final int icon=0x7f080049; public static final int icon_group=0x7f08009e; public static final int ifRoom=0x7f080025; public static final int image=0x7f080046; public static final int info=0x7f08009a; public static final int instructionTextView=0x7f0800a4; 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=0x7f08009f; public static final int line3=0x7f0800a1; public static final int listItem=0x7f08008b; public static final int listMode=0x7f08000f; public static final int list_item=0x7f080048; public static final int main_content=0x7f080082; public static final int masked=0x7f0800aa; public static final int media_actions=0x7f080093; public static final int middle=0x7f080022; public static final int mini=0x7f08003e; public static final int movie=0x7f080089; public static final int movieDetails=0x7f080085; public static final int movieInputEditText=0x7f0800a5; public static final int movieListView=0x7f08008a; 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=0x7f08009c; public static final int notification_main_column=0x7f080096; public static final int notification_main_column_container=0x7f080095; public static final int parallax=0x7f080037; public static final int parentPanel=0x7f08004d; public static final int pin=0x7f080038; public static final int posterPath=0x7f080086; public static final int progressBar_cyclic=0x7f0800a7; 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=0x7f08009b; public static final int right_side=0x7f080097; public static final int runtimeAndGenre=0x7f080087; 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=0x7f080083; 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=0x7f080092; public static final int submenuarrow=0x7f08005e; public static final int submit_area=0x7f08006f; public static final int tabMode=0x7f080011; public static final int text=0x7f0800a2; public static final int text2=0x7f0800a0; public static final int textSpacerNoButtons=0x7f080052; public static final int textSpacerNoTitle=0x7f080051; 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=0x7f080098; public static final int title=0x7f08004a; public static final int titleDividerNoCustom=0x7f080059; public static final int title_template=0x7f080057; public static final int toolbar=0x7f080081; public static final int top=0x7f080029; public static final int topPanel=0x7f080056; public static final int topRatedListView=0x7f0800a8; 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 viewpager=0x7f080084; public static final int visible=0x7f0800a9; 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=0x7f0d0000; public static final int abc_config_activityShortDur=0x7f0d0001; public static final int app_bar_elevation_anim_duration=0x7f0d0005; public static final int bottom_sheet_slide_duration=0x7f0d0006; public static final int cancel_button_image_alpha=0x7f0d0002; public static final int design_snackbar_text_max_lines=0x7f0d0004; public static final int hide_password_duration=0x7f0d0007; public static final int show_password_duration=0x7f0d0008; public static final int status_bar_notification_info_maxnum=0x7f0d0003; } public static final class layout { public static final int abc_action_bar_title_item=0x7f040000; public static final int abc_action_bar_up_container=0x7f040001; public static final int abc_action_bar_view_list_nav_layout=0x7f040002; public static final int abc_action_menu_item_layout=0x7f040003; public static final int abc_action_menu_layout=0x7f040004; public static final int abc_action_mode_bar=0x7f040005; public static final int abc_action_mode_close_item_material=0x7f040006; public static final int abc_activity_chooser_view=0x7f040007; public static final int abc_activity_chooser_view_list_item=0x7f040008; public static final int abc_alert_dialog_button_bar_material=0x7f040009; public static final int abc_alert_dialog_material=0x7f04000a; public static final int abc_alert_dialog_title_material=0x7f04000b; public static final int abc_dialog_title_material=0x7f04000c; public static final int abc_expanded_menu_layout=0x7f04000d; public static final int abc_list_menu_item_checkbox=0x7f04000e; public static final int abc_list_menu_item_icon=0x7f04000f; public static final int abc_list_menu_item_layout=0x7f040010; public static final int abc_list_menu_item_radio=0x7f040011; public static final int abc_popup_menu_header_item_layout=0x7f040012; public static final int abc_popup_menu_item_layout=0x7f040013; public static final int abc_screen_content_include=0x7f040014; public static final int abc_screen_simple=0x7f040015; public static final int abc_screen_simple_overlay_action_mode=0x7f040016; public static final int abc_screen_toolbar=0x7f040017; public static final int abc_search_dropdown_item_icons_2line=0x7f040018; public static final int abc_search_view=0x7f040019; public static final int abc_select_dialog_material=0x7f04001a; public static final int design_bottom_navigation_item=0x7f04001b; public static final int design_bottom_sheet_dialog=0x7f04001c; public static final int design_layout_snackbar=0x7f04001d; public static final int design_layout_snackbar_include=0x7f04001e; public static final int design_layout_tab_icon=0x7f04001f; public static final int design_layout_tab_text=0x7f040020; public static final int design_menu_item_action_area=0x7f040021; public static final int design_navigation_item=0x7f040022; public static final int design_navigation_item_header=0x7f040023; public static final int design_navigation_item_separator=0x7f040024; public static final int design_navigation_item_subheader=0x7f040025; public static final int design_navigation_menu=0x7f040026; public static final int design_navigation_menu_item=0x7f040027; public static final int design_text_input_password_icon=0x7f040028; public static final int main=0x7f040029; public static final int moviedetails=0x7f04002a; public static final int movielist=0x7f04002b; public static final int movielistitem=0x7f04002c; public static final int notification_action=0x7f04002d; public static final int notification_action_tombstone=0x7f04002e; public static final int notification_media_action=0x7f04002f; public static final int notification_media_cancel_action=0x7f040030; public static final int notification_template_big_media=0x7f040031; public static final int notification_template_big_media_custom=0x7f040032; public static final int notification_template_big_media_narrow=0x7f040033; public static final int notification_template_big_media_narrow_custom=0x7f040034; public static final int notification_template_custom_big=0x7f040035; public static final int notification_template_icon_group=0x7f040036; public static final int notification_template_lines_media=0x7f040037; public static final int notification_template_media=0x7f040038; public static final int notification_template_media_custom=0x7f040039; public static final int notification_template_part_chronometer=0x7f04003a; public static final int notification_template_part_time=0x7f04003b; public static final int searchinput=0x7f04003c; public static final int select_dialog_item_material=0x7f04003d; public static final int select_dialog_multichoice_material=0x7f04003e; public static final int select_dialog_singlechoice_material=0x7f04003f; public static final int support_simple_spinner_dropdown_item=0x7f040040; public static final int toolbar=0x7f040041; public static final int toprated=0x7f040042; } public static final class mipmap { public static final int icon=0x7f030000; public static final int newicon=0x7f030001; public static final int placeholder=0x7f030002; public static final int shawshank=0x7f030003; public static final int splash=0x7f030004; } public static final class string { public static final int abc_action_bar_home_description=0x7f090000; public static final int abc_action_bar_home_description_format=0x7f090001; public static final int abc_action_bar_home_subtitle_description_format=0x7f090002; public static final int abc_action_bar_up_description=0x7f090003; public static final int abc_action_menu_overflow_description=0x7f090004; public static final int abc_action_mode_done=0x7f090005; public static final int abc_activity_chooser_view_see_all=0x7f090006; public static final int abc_activitychooserview_choose_application=0x7f090007; public static final int abc_capital_off=0x7f090008; public static final int abc_capital_on=0x7f090009; public static final int abc_font_family_body_1_material=0x7f090015; public static final int abc_font_family_body_2_material=0x7f090016; public static final int abc_font_family_button_material=0x7f090017; public static final int abc_font_family_caption_material=0x7f090018; public static final int abc_font_family_display_1_material=0x7f090019; public static final int abc_font_family_display_2_material=0x7f09001a; public static final int abc_font_family_display_3_material=0x7f09001b; public static final int abc_font_family_display_4_material=0x7f09001c; public static final int abc_font_family_headline_material=0x7f09001d; public static final int abc_font_family_menu_material=0x7f09001e; public static final int abc_font_family_subhead_material=0x7f09001f; public static final int abc_font_family_title_material=0x7f090020; public static final int abc_search_hint=0x7f09000a; public static final int abc_searchview_description_clear=0x7f09000b; public static final int abc_searchview_description_query=0x7f09000c; public static final int abc_searchview_description_search=0x7f09000d; public static final int abc_searchview_description_submit=0x7f09000e; public static final int abc_searchview_description_voice=0x7f09000f; public static final int abc_shareactionprovider_share_with=0x7f090010; public static final int abc_shareactionprovider_share_with_application=0x7f090011; public static final int abc_toolbar_collapse_description=0x7f090012; public static final int app_name=0x7f09002a; public static final int appbar_scrolling_view_behavior=0x7f090021; public static final int bottom_sheet_behavior=0x7f090022; public static final int character_counter_pattern=0x7f090023; public static final int hello=0x7f090029; public static final int password_toggle_content_description=0x7f090024; public static final int path_password_eye=0x7f090025; public static final int path_password_eye_mask_strike_through=0x7f090026; public static final int path_password_eye_mask_visible=0x7f090027; public static final int path_password_strike_through=0x7f090028; public static final int search_menu_title=0x7f090013; public static final int status_bar_notification_info_overflow=0x7f090014; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0a009f; public static final int AlertDialog_AppCompat_Light=0x7f0a00a0; public static final int Animation_AppCompat_Dialog=0x7f0a00a1; public static final int Animation_AppCompat_DropDownUp=0x7f0a00a2; public static final int Animation_Design_BottomSheetDialog=0x7f0a0161; public static final int Base_AlertDialog_AppCompat=0x7f0a00a3; public static final int Base_AlertDialog_AppCompat_Light=0x7f0a00a4; public static final int Base_Animation_AppCompat_Dialog=0x7f0a00a5; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0a00a6; public static final int Base_DialogWindowTitle_AppCompat=0x7f0a00a7; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0a00a8; public static final int Base_TextAppearance_AppCompat=0x7f0a003f; public static final int Base_TextAppearance_AppCompat_Body1=0x7f0a0040; public static final int Base_TextAppearance_AppCompat_Body2=0x7f0a0041; public static final int Base_TextAppearance_AppCompat_Button=0x7f0a0027; public static final int Base_TextAppearance_AppCompat_Caption=0x7f0a0042; public static final int Base_TextAppearance_AppCompat_Display1=0x7f0a0043; public static final int Base_TextAppearance_AppCompat_Display2=0x7f0a0044; public static final int Base_TextAppearance_AppCompat_Display3=0x7f0a0045; public static final int Base_TextAppearance_AppCompat_Display4=0x7f0a0046; public static final int Base_TextAppearance_AppCompat_Headline=0x7f0a0047; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0a000b; public static final int Base_TextAppearance_AppCompat_Large=0x7f0a0048; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0a000c; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a0049; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a004a; public static final int Base_TextAppearance_AppCompat_Medium=0x7f0a004b; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0a000d; public static final int Base_TextAppearance_AppCompat_Menu=0x7f0a004c; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0a00a9; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a004d; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0a004e; public static final int Base_TextAppearance_AppCompat_Small=0x7f0a004f; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0a000e; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0a0050; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0a000f; public static final int Base_TextAppearance_AppCompat_Title=0x7f0a0051; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0a0010; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a0094; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a0052; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a0053; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a0054; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a0055; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a0056; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a0057; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0a0058; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0a009b; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0a009c; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a0095; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00aa; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0a0059; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a005a; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a005b; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0a005c; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a005d; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00ab; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a005e; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a005f; public static final int Base_Theme_AppCompat=0x7f0a0060; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0a00ac; public static final int Base_Theme_AppCompat_Dialog=0x7f0a0011; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0a0012; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0a00ad; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0a0013; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0a0001; public static final int Base_Theme_AppCompat_Light=0x7f0a0061; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0a00ae; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0a0014; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0a0015; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0a00af; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a0016; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0002; public static final int Base_ThemeOverlay_AppCompat=0x7f0a00b0; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0a00b1; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0a00b2; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a00b3; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0a0017; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0a0018; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0a00b4; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0a0019; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0a001a; public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0a001b; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0a0023; public static final int Base_V12_Widget_AppCompat_EditText=0x7f0a0024; public static final int Base_V21_Theme_AppCompat=0x7f0a0062; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0a0063; public static final int Base_V21_Theme_AppCompat_Light=0x7f0a0064; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0a0065; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0a0066; public static final int Base_V22_Theme_AppCompat=0x7f0a0092; public static final int Base_V22_Theme_AppCompat_Light=0x7f0a0093; public static final int Base_V23_Theme_AppCompat=0x7f0a0096; public static final int Base_V23_Theme_AppCompat_Light=0x7f0a0097; public static final int Base_V7_Theme_AppCompat=0x7f0a00b5; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0a00b6; public static final int Base_V7_Theme_AppCompat_Light=0x7f0a00b7; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0a00b8; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0a00b9; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0a00ba; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0a00bb; public static final int Base_Widget_AppCompat_ActionBar=0x7f0a00bc; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0a00bd; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0a00be; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0a0067; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0a0068; public static final int Base_Widget_AppCompat_ActionButton=0x7f0a0069; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0a006a; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0a006b; public static final int Base_Widget_AppCompat_ActionMode=0x7f0a00bf; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0a00c0; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0a0025; public static final int Base_Widget_AppCompat_Button=0x7f0a006c; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0a006d; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0a006e; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a00c1; public static final int Base_Widget_AppCompat_Button_Colored=0x7f0a0098; public static final int Base_Widget_AppCompat_Button_Small=0x7f0a006f; public static final int Base_Widget_AppCompat_ButtonBar=0x7f0a0070; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a00c2; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0071; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0072; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0a00c3; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0a0000; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0a00c4; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0a0073; public static final int Base_Widget_AppCompat_EditText=0x7f0a0026; public static final int Base_Widget_AppCompat_ImageButton=0x7f0a0074; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0a00c5; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0a00c6; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a00c7; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0a0075; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0076; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0077; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0a0078; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0079; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0a00c8; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0a007a; public static final int Base_Widget_AppCompat_ListView=0x7f0a007b; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0a007c; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0a007d; public static final int Base_Widget_AppCompat_PopupMenu=0x7f0a007e; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0a007f; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0a00c9; public static final int Base_Widget_AppCompat_ProgressBar=0x7f0a001c; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0a001d; public static final int Base_Widget_AppCompat_RatingBar=0x7f0a0080; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0a0099; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0a009a; public static final int Base_Widget_AppCompat_SearchView=0x7f0a00ca; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0a00cb; public static final int Base_Widget_AppCompat_SeekBar=0x7f0a0081; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0a00cc; public static final int Base_Widget_AppCompat_Spinner=0x7f0a0082; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0a0003; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0a0083; public static final int Base_Widget_AppCompat_Toolbar=0x7f0a00cd; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a0084; public static final int Base_Widget_Design_AppBarLayout=0x7f0a0162; public static final int Base_Widget_Design_TabLayout=0x7f0a0163; public static final int MyTheme=0x7f0a017a; public static final int MyTheme_Splash=0x7f0a017b; public static final int Platform_AppCompat=0x7f0a001e; public static final int Platform_AppCompat_Light=0x7f0a001f; public static final int Platform_ThemeOverlay_AppCompat=0x7f0a0085; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0a0086; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0a0087; public static final int Platform_V11_AppCompat=0x7f0a0020; public static final int Platform_V11_AppCompat_Light=0x7f0a0021; public static final int Platform_V14_AppCompat=0x7f0a0028; public static final int Platform_V14_AppCompat_Light=0x7f0a0029; public static final int Platform_V21_AppCompat=0x7f0a0088; public static final int Platform_V21_AppCompat_Light=0x7f0a0089; public static final int Platform_V25_AppCompat=0x7f0a009d; public static final int Platform_V25_AppCompat_Light=0x7f0a009e; public static final int Platform_Widget_AppCompat_Spinner=0x7f0a0022; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0a0031; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0a0032; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0a0033; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0a0034; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0a0035; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0a0036; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0a0037; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0a0038; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0a0039; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0a003a; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0a003b; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0a003c; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0a003d; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0a003e; public static final int TextAppearance_AppCompat=0x7f0a00ce; public static final int TextAppearance_AppCompat_Body1=0x7f0a00cf; public static final int TextAppearance_AppCompat_Body2=0x7f0a00d0; public static final int TextAppearance_AppCompat_Button=0x7f0a00d1; public static final int TextAppearance_AppCompat_Caption=0x7f0a00d2; public static final int TextAppearance_AppCompat_Display1=0x7f0a00d3; public static final int TextAppearance_AppCompat_Display2=0x7f0a00d4; public static final int TextAppearance_AppCompat_Display3=0x7f0a00d5; public static final int TextAppearance_AppCompat_Display4=0x7f0a00d6; public static final int TextAppearance_AppCompat_Headline=0x7f0a00d7; public static final int TextAppearance_AppCompat_Inverse=0x7f0a00d8; public static final int TextAppearance_AppCompat_Large=0x7f0a00d9; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0a00da; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0a00db; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0a00dc; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a00dd; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a00de; public static final int TextAppearance_AppCompat_Medium=0x7f0a00df; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0a00e0; public static final int TextAppearance_AppCompat_Menu=0x7f0a00e1; public static final int TextAppearance_AppCompat_Notification=0x7f0a002a; public static final int TextAppearance_AppCompat_Notification_Info=0x7f0a008a; public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0a008b; public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0a00e2; public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0a00e3; public static final int TextAppearance_AppCompat_Notification_Media=0x7f0a008c; public static final int TextAppearance_AppCompat_Notification_Time=0x7f0a008d; public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0a008e; public static final int TextAppearance_AppCompat_Notification_Title=0x7f0a002b; public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0a008f; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a00e4; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0a00e5; public static final int TextAppearance_AppCompat_Small=0x7f0a00e6; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0a00e7; public static final int TextAppearance_AppCompat_Subhead=0x7f0a00e8; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0a00e9; public static final int TextAppearance_AppCompat_Title=0x7f0a00ea; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0a00eb; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a00ec; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a00ed; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a00ee; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a00ef; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a00f0; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a00f1; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0a00f2; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a00f3; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0a00f4; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0a00f5; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0a00f6; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0a00f7; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a00f8; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00f9; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0a00fa; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a00fb; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a00fc; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0a00fd; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a00fe; public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0a0164; public static final int TextAppearance_Design_Counter=0x7f0a0165; public static final int TextAppearance_Design_Counter_Overflow=0x7f0a0166; public static final int TextAppearance_Design_Error=0x7f0a0167; public static final int TextAppearance_Design_Hint=0x7f0a0168; public static final int TextAppearance_Design_Snackbar_Message=0x7f0a0169; public static final int TextAppearance_Design_Tab=0x7f0a016a; public static final int TextAppearance_StatusBar_EventContent=0x7f0a002c; public static final int TextAppearance_StatusBar_EventContent_Info=0x7f0a002d; public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f0a002e; public static final int TextAppearance_StatusBar_EventContent_Time=0x7f0a002f; public static final int TextAppearance_StatusBar_EventContent_Title=0x7f0a0030; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00ff; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a0100; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a0101; public static final int Theme_AppCompat=0x7f0a0102; public static final int Theme_AppCompat_CompactMenu=0x7f0a0103; public static final int Theme_AppCompat_DayNight=0x7f0a0004; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0a0005; public static final int Theme_AppCompat_DayNight_Dialog=0x7f0a0006; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0a0007; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0a0008; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0a0009; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0a000a; public static final int Theme_AppCompat_Dialog=0x7f0a0104; public static final int Theme_AppCompat_Dialog_Alert=0x7f0a0105; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0a0106; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0a0107; public static final int Theme_AppCompat_Light=0x7f0a0108; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0a0109; public static final int Theme_AppCompat_Light_Dialog=0x7f0a010a; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0a010b; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a010c; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0a010d; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0a010e; public static final int Theme_AppCompat_NoActionBar=0x7f0a010f; public static final int Theme_Design=0x7f0a016b; public static final int Theme_Design_BottomSheetDialog=0x7f0a016c; public static final int Theme_Design_Light=0x7f0a016d; public static final int Theme_Design_Light_BottomSheetDialog=0x7f0a016e; public static final int Theme_Design_Light_NoActionBar=0x7f0a016f; public static final int Theme_Design_NoActionBar=0x7f0a0170; public static final int ThemeOverlay_AppCompat=0x7f0a0110; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0a0111; public static final int ThemeOverlay_AppCompat_Dark=0x7f0a0112; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a0113; public static final int ThemeOverlay_AppCompat_Dialog=0x7f0a0114; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0a0115; public static final int ThemeOverlay_AppCompat_Light=0x7f0a0116; public static final int Widget_AppCompat_ActionBar=0x7f0a0117; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0a0118; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0a0119; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0a011a; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0a011b; public static final int Widget_AppCompat_ActionButton=0x7f0a011c; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0a011d; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0a011e; public static final int Widget_AppCompat_ActionMode=0x7f0a011f; public static final int Widget_AppCompat_ActivityChooserView=0x7f0a0120; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0a0121; public static final int Widget_AppCompat_Button=0x7f0a0122; public static final int Widget_AppCompat_Button_Borderless=0x7f0a0123; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0a0124; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a0125; public static final int Widget_AppCompat_Button_Colored=0x7f0a0126; public static final int Widget_AppCompat_Button_Small=0x7f0a0127; public static final int Widget_AppCompat_ButtonBar=0x7f0a0128; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a0129; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0a012a; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0a012b; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0a012c; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0a012d; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0a012e; public static final int Widget_AppCompat_EditText=0x7f0a012f; public static final int Widget_AppCompat_ImageButton=0x7f0a0130; public static final int Widget_AppCompat_Light_ActionBar=0x7f0a0131; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0a0132; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0a0133; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a0134; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0a0135; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0a0136; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0137; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0138; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0a0139; public static final int Widget_AppCompat_Light_ActionButton=0x7f0a013a; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0a013b; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0a013c; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0a013d; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0a013e; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0a013f; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0a0140; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0a0141; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0a0142; public static final int Widget_AppCompat_Light_PopupMenu=0x7f0a0143; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0144; public static final int Widget_AppCompat_Light_SearchView=0x7f0a0145; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0a0146; public static final int Widget_AppCompat_ListMenuView=0x7f0a0147; public static final int Widget_AppCompat_ListPopupWindow=0x7f0a0148; public static final int Widget_AppCompat_ListView=0x7f0a0149; public static final int Widget_AppCompat_ListView_DropDown=0x7f0a014a; public static final int Widget_AppCompat_ListView_Menu=0x7f0a014b; public static final int Widget_AppCompat_NotificationActionContainer=0x7f0a0090; public static final int Widget_AppCompat_NotificationActionText=0x7f0a0091; public static final int Widget_AppCompat_PopupMenu=0x7f0a014c; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0a014d; public static final int Widget_AppCompat_PopupWindow=0x7f0a014e; public static final int Widget_AppCompat_ProgressBar=0x7f0a014f; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0a0150; public static final int Widget_AppCompat_RatingBar=0x7f0a0151; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0a0152; public static final int Widget_AppCompat_RatingBar_Small=0x7f0a0153; public static final int Widget_AppCompat_SearchView=0x7f0a0154; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0a0155; public static final int Widget_AppCompat_SeekBar=0x7f0a0156; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0a0157; public static final int Widget_AppCompat_Spinner=0x7f0a0158; public static final int Widget_AppCompat_Spinner_DropDown=0x7f0a0159; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0a015a; public static final int Widget_AppCompat_Spinner_Underlined=0x7f0a015b; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0a015c; public static final int Widget_AppCompat_Toolbar=0x7f0a015d; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a015e; public static final int Widget_Design_AppBarLayout=0x7f0a0160; public static final int Widget_Design_BottomNavigationView=0x7f0a0171; public static final int Widget_Design_BottomSheet_Modal=0x7f0a0172; public static final int Widget_Design_CollapsingToolbar=0x7f0a0173; public static final int Widget_Design_CoordinatorLayout=0x7f0a0174; public static final int Widget_Design_FloatingActionButton=0x7f0a0175; public static final int Widget_Design_NavigationView=0x7f0a0176; public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0a0177; public static final int Widget_Design_Snackbar=0x7f0a0178; public static final int Widget_Design_TabLayout=0x7f0a015f; public static final int Widget_Design_TextInputLayout=0x7f0a0179; } 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 is.ru.mapp.MovieSearch:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit is.ru.mapp.MovieSearch:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked is.ru.mapp.MovieSearch:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd is.ru.mapp.MovieSearch:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEndWithActions is.ru.mapp.MovieSearch:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft is.ru.mapp.MovieSearch:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight is.ru.mapp.MovieSearch:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart is.ru.mapp.MovieSearch:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation is.ru.mapp.MovieSearch:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout is.ru.mapp.MovieSearch:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions is.ru.mapp.MovieSearch:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider is.ru.mapp.MovieSearch:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation is.ru.mapp.MovieSearch:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height is.ru.mapp.MovieSearch:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll is.ru.mapp.MovieSearch:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator is.ru.mapp.MovieSearch:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout is.ru.mapp.MovieSearch:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon is.ru.mapp.MovieSearch:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle is.ru.mapp.MovieSearch:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding is.ru.mapp.MovieSearch:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo is.ru.mapp.MovieSearch:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode is.ru.mapp.MovieSearch:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme is.ru.mapp.MovieSearch:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding is.ru.mapp.MovieSearch:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle is.ru.mapp.MovieSearch:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle is.ru.mapp.MovieSearch:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle is.ru.mapp.MovieSearch:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title is.ru.mapp.MovieSearch:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle is.ru.mapp.MovieSearch: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 = { 0x7f010005, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010061 }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions = 25; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation = 24; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:elevation */ public static final int ActionBar_elevation = 26; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 28; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:popupTheme */ public static final int ActionBar_popupTheme = 27; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit is.ru.mapp.MovieSearch:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout is.ru.mapp.MovieSearch:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height is.ru.mapp.MovieSearch:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle is.ru.mapp.MovieSearch:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle is.ru.mapp.MovieSearch: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 = { 0x7f010005, 0x7f01000b, 0x7f01000c, 0x7f010010, 0x7f010012, 0x7f010022 }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount is.ru.mapp.MovieSearch:initialActivityCount}</code></td><td></td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f010023, 0x7f010024 }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout is.ru.mapp.MovieSearch:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout is.ru.mapp.MovieSearch:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout is.ru.mapp.MovieSearch:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_showTitle is.ru.mapp.MovieSearch:showTitle}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout is.ru.mapp.MovieSearch: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, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:showTitle */ public static final int AlertDialog_showTitle = 6; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:elevation}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_expanded is.ru.mapp.MovieSearch:expanded}</code></td><td></td></tr> </table> @see #AppBarLayout_android_background @see #AppBarLayout_elevation @see #AppBarLayout_expanded */ public static final int[] AppBarLayout = { 0x010100d4, 0x7f010020, 0x7f0100eb }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:elevation */ public static final int AppBarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:state_collapsed}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsible is.ru.mapp.MovieSearch:state_collapsible}</code></td><td></td></tr> </table> @see #AppBarLayoutStates_state_collapsed @see #AppBarLayoutStates_state_collapsible */ public static final int[] AppBarLayoutStates = { 0x7f0100ec, 0x7f0100ed }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:state_collapsed */ public static final int AppBarLayoutStates_state_collapsed = 0; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:layout_scrollFlags}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator is.ru.mapp.MovieSearch:layout_scrollInterpolator}</code></td><td></td></tr> </table> @see #AppBarLayout_Layout_layout_scrollFlags @see #AppBarLayout_Layout_layout_scrollInterpolator */ public static final int[] AppBarLayout_Layout = { 0x7f0100ee, 0x7f0100ef }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:layout_scrollFlags */ public static final int AppBarLayout_Layout_layout_scrollFlags = 0; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:srcCompat}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_tint is.ru.mapp.MovieSearch:tint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_tintMode is.ru.mapp.MovieSearch: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, 0x7f01002b, 0x7f01002c, 0x7f01002d }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:srcCompat */ public static final int AppCompatImageView_srcCompat = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tint */ public static final int AppCompatImageView_tint = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:tickMark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint is.ru.mapp.MovieSearch:tickMarkTint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode is.ru.mapp.MovieSearch: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, 0x7f01002e, 0x7f01002f, 0x7f010030 }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tickMark */ public static final int AppCompatSeekBar_tickMark = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010031 }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground is.ru.mapp.MovieSearch:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme is.ru.mapp.MovieSearch:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSize is.ru.mapp.MovieSearch:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle is.ru.mapp.MovieSearch:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarStyle is.ru.mapp.MovieSearch:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle is.ru.mapp.MovieSearch:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle is.ru.mapp.MovieSearch:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle is.ru.mapp.MovieSearch:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTheme is.ru.mapp.MovieSearch:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme is.ru.mapp.MovieSearch:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionButtonStyle is.ru.mapp.MovieSearch:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle is.ru.mapp.MovieSearch:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance is.ru.mapp.MovieSearch:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor is.ru.mapp.MovieSearch:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeBackground is.ru.mapp.MovieSearch:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle is.ru.mapp.MovieSearch:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable is.ru.mapp.MovieSearch:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable is.ru.mapp.MovieSearch:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable is.ru.mapp.MovieSearch:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable is.ru.mapp.MovieSearch:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable is.ru.mapp.MovieSearch:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle is.ru.mapp.MovieSearch:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable is.ru.mapp.MovieSearch:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable is.ru.mapp.MovieSearch:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground is.ru.mapp.MovieSearch:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeStyle is.ru.mapp.MovieSearch:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable is.ru.mapp.MovieSearch:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle is.ru.mapp.MovieSearch:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle is.ru.mapp.MovieSearch:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle is.ru.mapp.MovieSearch:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle is.ru.mapp.MovieSearch:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons is.ru.mapp.MovieSearch:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogStyle is.ru.mapp.MovieSearch:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogTheme is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle is.ru.mapp.MovieSearch:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle is.ru.mapp.MovieSearch:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle is.ru.mapp.MovieSearch:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle is.ru.mapp.MovieSearch:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle is.ru.mapp.MovieSearch:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarStyle is.ru.mapp.MovieSearch:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyle is.ru.mapp.MovieSearch:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall is.ru.mapp.MovieSearch:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkboxStyle is.ru.mapp.MovieSearch:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle is.ru.mapp.MovieSearch:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorAccent is.ru.mapp.MovieSearch:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating is.ru.mapp.MovieSearch:colorBackgroundFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorButtonNormal is.ru.mapp.MovieSearch:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlActivated is.ru.mapp.MovieSearch:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlHighlight is.ru.mapp.MovieSearch:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlNormal is.ru.mapp.MovieSearch:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimary is.ru.mapp.MovieSearch:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark is.ru.mapp.MovieSearch:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal is.ru.mapp.MovieSearch:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_controlBackground is.ru.mapp.MovieSearch:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding is.ru.mapp.MovieSearch:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogTheme is.ru.mapp.MovieSearch:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerHorizontal is.ru.mapp.MovieSearch:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerVertical is.ru.mapp.MovieSearch:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle is.ru.mapp.MovieSearch:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight is.ru.mapp.MovieSearch:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextBackground is.ru.mapp.MovieSearch:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextColor is.ru.mapp.MovieSearch:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextStyle is.ru.mapp.MovieSearch:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator is.ru.mapp.MovieSearch:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_imageButtonStyle is.ru.mapp.MovieSearch:imageButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator is.ru.mapp.MovieSearch:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog is.ru.mapp.MovieSearch:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle is.ru.mapp.MovieSearch:listMenuViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle is.ru.mapp.MovieSearch:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight is.ru.mapp.MovieSearch:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge is.ru.mapp.MovieSearch:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall is.ru.mapp.MovieSearch:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft is.ru.mapp.MovieSearch:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight is.ru.mapp.MovieSearch:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelBackground is.ru.mapp.MovieSearch:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme is.ru.mapp.MovieSearch:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth is.ru.mapp.MovieSearch:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupMenuStyle is.ru.mapp.MovieSearch:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupWindowStyle is.ru.mapp.MovieSearch:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_radioButtonStyle is.ru.mapp.MovieSearch:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyle is.ru.mapp.MovieSearch:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator is.ru.mapp.MovieSearch:ratingBarStyleIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall is.ru.mapp.MovieSearch:ratingBarStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_searchViewStyle is.ru.mapp.MovieSearch:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_seekBarStyle is.ru.mapp.MovieSearch:seekBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackground is.ru.mapp.MovieSearch:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless is.ru.mapp.MovieSearch:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle is.ru.mapp.MovieSearch:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerStyle is.ru.mapp.MovieSearch:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_switchStyle is.ru.mapp.MovieSearch:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu is.ru.mapp.MovieSearch:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem is.ru.mapp.MovieSearch:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary is.ru.mapp.MovieSearch:textAppearanceListItemSecondary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall is.ru.mapp.MovieSearch:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader is.ru.mapp.MovieSearch:textAppearancePopupMenuHeader}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle is.ru.mapp.MovieSearch:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle is.ru.mapp.MovieSearch:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu is.ru.mapp.MovieSearch:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem is.ru.mapp.MovieSearch:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl is.ru.mapp.MovieSearch:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle is.ru.mapp.MovieSearch:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarStyle is.ru.mapp.MovieSearch:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBar is.ru.mapp.MovieSearch:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay is.ru.mapp.MovieSearch:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay is.ru.mapp.MovieSearch:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor is.ru.mapp.MovieSearch:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor is.ru.mapp.MovieSearch:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor is.ru.mapp.MovieSearch:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor is.ru.mapp.MovieSearch:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor is.ru.mapp.MovieSearch:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor is.ru.mapp.MovieSearch:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowNoTitle is.ru.mapp.MovieSearch: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, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 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 }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionBarSize */ public static final int AppCompatTheme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle = 50; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle = 46; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle = 58; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons = 96; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle = 94; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle = 55; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle = 52; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle = 51; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:buttonStyle */ public static final int AppCompatTheme_buttonStyle = 103; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall = 104; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle = 105; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle = 106; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:colorAccent */ public static final int AppCompatTheme_colorAccent = 86; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating = 93; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal = 90; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated = 88; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight = 89; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal = 87; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:colorPrimary */ public static final int AppCompatTheme_colorPrimary = 84; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark = 85; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal = 91; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:controlBackground */ public static final int AppCompatTheme_controlBackground = 92; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding = 44; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:dialogTheme */ public static final int AppCompatTheme_dialogTheme = 43; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal = 57; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:dividerVertical */ public static final int AppCompatTheme_dividerVertical = 56; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle = 75; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:editTextBackground */ public static final int AppCompatTheme_editTextBackground = 64; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:editTextColor */ public static final int AppCompatTheme_editTextColor = 63; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:editTextStyle */ public static final int AppCompatTheme_editTextStyle = 107; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator = 49; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle = 65; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog = 45; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle = 115; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle = 76; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight = 70; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:panelBackground */ public static final int AppCompatTheme_panelBackground = 80; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme = 82; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth = 81; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle = 61; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle = 62; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle = 108; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle = 109; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator = 110; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall = 111; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle = 69; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle = 112; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground = 53; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle = 113; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:switchStyle */ public static final int AppCompatTheme_switchStyle = 114; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem = 77; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:textAppearanceListItemSecondary */ public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall = 79; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem = 98; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl = 68; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle = 59; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:windowActionBar */ public static final int AppCompatTheme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:elevation}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemBackground is.ru.mapp.MovieSearch:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemIconTint is.ru.mapp.MovieSearch:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemTextColor is.ru.mapp.MovieSearch:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_menu is.ru.mapp.MovieSearch: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 = { 0x7f010020, 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119 }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:elevation */ public static final int BottomNavigationView_elevation = 0; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:itemBackground */ public static final int BottomNavigationView_itemBackground = 4; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:itemIconTint */ public static final int BottomNavigationView_itemIconTint = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:itemTextColor */ public static final int BottomNavigationView_itemTextColor = 3; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:behavior_hideable}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight is.ru.mapp.MovieSearch:behavior_peekHeight}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed is.ru.mapp.MovieSearch: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 = { 0x7f0100f0, 0x7f0100f1, 0x7f0100f2 }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:behavior_hideable */ public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:behavior_peekHeight */ public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:allowStacking}</code></td><td></td></tr> </table> @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout = { 0x7f0100a4 }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:allowStacking */ public static final int ButtonBarLayout_allowStacking = 0; /** Attributes that can be used with a CollapsingToolbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity is.ru.mapp.MovieSearch:collapsedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance is.ru.mapp.MovieSearch:collapsedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim is.ru.mapp.MovieSearch:contentScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity is.ru.mapp.MovieSearch:expandedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin is.ru.mapp.MovieSearch:expandedTitleMargin}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom is.ru.mapp.MovieSearch:expandedTitleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd is.ru.mapp.MovieSearch:expandedTitleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart is.ru.mapp.MovieSearch:expandedTitleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop is.ru.mapp.MovieSearch:expandedTitleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance is.ru.mapp.MovieSearch:expandedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration is.ru.mapp.MovieSearch:scrimAnimationDuration}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger is.ru.mapp.MovieSearch:scrimVisibleHeightTrigger}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim is.ru.mapp.MovieSearch:statusBarScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_title is.ru.mapp.MovieSearch:title}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled is.ru.mapp.MovieSearch:titleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId is.ru.mapp.MovieSearch: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 = { 0x7f010007, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101 }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:collapsedTitleGravity */ public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:collapsedTitleTextAppearance */ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:contentScrim */ public static final int CollapsingToolbarLayout_contentScrim = 8; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:expandedTitleGravity */ public static final int CollapsingToolbarLayout_expandedTitleGravity = 14; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:expandedTitleMargin */ public static final int CollapsingToolbarLayout_expandedTitleMargin = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:expandedTitleMarginBottom */ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:expandedTitleMarginEnd */ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:expandedTitleMarginStart */ public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:expandedTitleMarginTop */ public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:expandedTitleTextAppearance */ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:scrimAnimationDuration */ public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:scrimVisibleHeightTrigger */ public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:statusBarScrim */ public static final int CollapsingToolbarLayout_statusBarScrim = 9; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:title */ public static final int CollapsingToolbarLayout_title = 0; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:titleEnabled */ public static final int CollapsingToolbarLayout_titleEnabled = 15; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:layout_collapseMode}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier is.ru.mapp.MovieSearch:layout_collapseParallaxMultiplier}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_Layout_layout_collapseMode @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier */ public static final int[] CollapsingToolbarLayout_Layout = { 0x7f010102, 0x7f010103 }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:layout_collapseMode */ public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch: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, 0x7f0100a5 }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode is.ru.mapp.MovieSearch:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f0100a6, 0x7f0100a7 }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:keylines}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_statusBarBackground is.ru.mapp.MovieSearch:statusBarBackground}</code></td><td></td></tr> </table> @see #CoordinatorLayout_keylines @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout = { 0x7f010104, 0x7f010105 }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:keylines */ public static final int CoordinatorLayout_keylines = 0; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:layout_anchor}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity is.ru.mapp.MovieSearch:layout_anchorGravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior is.ru.mapp.MovieSearch:layout_behavior}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges is.ru.mapp.MovieSearch:layout_dodgeInsetEdges}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge is.ru.mapp.MovieSearch:layout_insetEdge}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline is.ru.mapp.MovieSearch: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, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:layout_anchor */ public static final int CoordinatorLayout_Layout_layout_anchor = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:layout_anchorGravity */ public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:layout_behavior */ public static final int CoordinatorLayout_Layout_layout_behavior = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:layout_dodgeInsetEdges */ public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:layout_insetEdge */ public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:bottomSheetDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_bottomSheetStyle is.ru.mapp.MovieSearch:bottomSheetStyle}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_textColorError is.ru.mapp.MovieSearch:textColorError}</code></td><td></td></tr> </table> @see #DesignTheme_bottomSheetDialogTheme @see #DesignTheme_bottomSheetStyle @see #DesignTheme_textColorError */ public static final int[] DesignTheme = { 0x7f01010c, 0x7f01010d, 0x7f01010e }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:bottomSheetDialogTheme */ public static final int DesignTheme_bottomSheetDialogTheme = 0; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:bottomSheetStyle */ public static final int DesignTheme_bottomSheetStyle = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength is.ru.mapp.MovieSearch:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength is.ru.mapp.MovieSearch:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color is.ru.mapp.MovieSearch:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize is.ru.mapp.MovieSearch:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars is.ru.mapp.MovieSearch:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars is.ru.mapp.MovieSearch:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness is.ru.mapp.MovieSearch: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 = { 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTintMode is.ru.mapp.MovieSearch:backgroundTintMode}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_borderWidth is.ru.mapp.MovieSearch:borderWidth}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_elevation is.ru.mapp.MovieSearch:elevation}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_fabSize is.ru.mapp.MovieSearch:fabSize}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ is.ru.mapp.MovieSearch:pressedTranslationZ}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_rippleColor is.ru.mapp.MovieSearch:rippleColor}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_useCompatPadding is.ru.mapp.MovieSearch: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 = { 0x7f010020, 0x7f0100e9, 0x7f0100ea, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113 }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:backgroundTint */ public static final int FloatingActionButton_backgroundTint = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:backgroundTintMode */ public static final int FloatingActionButton_backgroundTintMode = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:borderWidth */ public static final int FloatingActionButton_borderWidth = 6; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:elevation */ public static final int FloatingActionButton_elevation = 0; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:fabSize */ public static final int FloatingActionButton_fabSize = 4; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:pressedTranslationZ */ public static final int FloatingActionButton_pressedTranslationZ = 5; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:rippleColor */ public static final int FloatingActionButton_rippleColor = 3; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:behavior_autoHide}</code></td><td></td></tr> </table> @see #FloatingActionButton_Behavior_Layout_behavior_autoHide */ public static final int[] FloatingActionButton_Behavior_Layout = { 0x7f010114 }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch: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, 0x7f010115 }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding is.ru.mapp.MovieSearch:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild is.ru.mapp.MovieSearch:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers is.ru.mapp.MovieSearch: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, 0x7f01000f, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2 }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 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 is.ru.mapp.MovieSearch:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass is.ru.mapp.MovieSearch:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch: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, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6 }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionLayout */ public static final int MenuItem_actionLayout = 14; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:actionProviderClass */ public static final int MenuItem_actionProviderClass = 16; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:preserveIconSpacing}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_subMenuArrow is.ru.mapp.MovieSearch: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, 0x7f0100b7, 0x7f0100b8 }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:elevation}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_headerLayout is.ru.mapp.MovieSearch:headerLayout}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemBackground is.ru.mapp.MovieSearch:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemIconTint is.ru.mapp.MovieSearch:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextAppearance is.ru.mapp.MovieSearch:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextColor is.ru.mapp.MovieSearch:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_menu is.ru.mapp.MovieSearch: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, 0x7f010020, 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:elevation */ public static final int NavigationView_elevation = 3; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:headerLayout */ public static final int NavigationView_headerLayout = 9; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:itemBackground */ public static final int NavigationView_itemBackground = 7; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:itemIconTint */ public static final int NavigationView_itemIconTint = 5; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:itemTextAppearance */ public static final int NavigationView_itemTextAppearance = 8; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:itemTextColor */ public static final int NavigationView_itemTextColor = 6; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch: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, 0x7f0100b9 }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f0100ba }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor = 0; /** Attributes that can be used with a RecycleListView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #RecycleListView_paddingBottomNoButtons is.ru.mapp.MovieSearch:paddingBottomNoButtons}</code></td><td></td></tr> <tr><td><code>{@link #RecycleListView_paddingTopNoTitle is.ru.mapp.MovieSearch:paddingTopNoTitle}</code></td><td></td></tr> </table> @see #RecycleListView_paddingBottomNoButtons @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView = { 0x7f0100bb, 0x7f0100bc }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons = 0; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:layoutManager}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_reverseLayout is.ru.mapp.MovieSearch:reverseLayout}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_spanCount is.ru.mapp.MovieSearch:spanCount}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_stackFromEnd is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:layoutManager */ public static final int RecyclerView_layoutManager = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:reverseLayout */ public static final int RecyclerView_reverseLayout = 4; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:spanCount */ public static final int RecyclerView_spanCount = 3; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:insetForeground}</code></td><td></td></tr> </table> @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout = { 0x7f01011c }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:behavior_overlapTop}</code></td><td></td></tr> </table> @see #ScrollingViewBehavior_Layout_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Layout = { 0x7f01011d }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon is.ru.mapp.MovieSearch:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint is.ru.mapp.MovieSearch:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon is.ru.mapp.MovieSearch:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault is.ru.mapp.MovieSearch:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout is.ru.mapp.MovieSearch:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground is.ru.mapp.MovieSearch:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint is.ru.mapp.MovieSearch:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon is.ru.mapp.MovieSearch:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon is.ru.mapp.MovieSearch:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground is.ru.mapp.MovieSearch:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout is.ru.mapp.MovieSearch:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon is.ru.mapp.MovieSearch: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, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9 }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:goIcon */ public static final int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:elevation}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth is.ru.mapp.MovieSearch:maxActionInlineWidth}</code></td><td></td></tr> </table> @see #SnackbarLayout_android_maxWidth @see #SnackbarLayout_elevation @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout = { 0x0101011f, 0x7f010020, 0x7f01011e }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:elevation */ public static final int SnackbarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch: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, 0x7f010021 }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack is.ru.mapp.MovieSearch:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth is.ru.mapp.MovieSearch:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding is.ru.mapp.MovieSearch:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance is.ru.mapp.MovieSearch:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding is.ru.mapp.MovieSearch:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTint is.ru.mapp.MovieSearch:thumbTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTintMode is.ru.mapp.MovieSearch:thumbTintMode}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track is.ru.mapp.MovieSearch:track}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTint is.ru.mapp.MovieSearch:trackTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTintMode is.ru.mapp.MovieSearch: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, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4 }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:showText */ public static final int SwitchCompat_showText = 13; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:splitTrack */ public static final int SwitchCompat_splitTrack = 12; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 10; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:switchPadding */ public static final int SwitchCompat_switchPadding = 11; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 9; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 8; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:thumbTint */ public static final int SwitchCompat_thumbTint = 3; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:thumbTintMode */ public static final int SwitchCompat_thumbTintMode = 4; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:track */ public static final int SwitchCompat_track = 5; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:trackTint */ public static final int SwitchCompat_trackTint = 6; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:tabBackground}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabContentStart is.ru.mapp.MovieSearch:tabContentStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabGravity is.ru.mapp.MovieSearch:tabGravity}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorColor is.ru.mapp.MovieSearch:tabIndicatorColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorHeight is.ru.mapp.MovieSearch:tabIndicatorHeight}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMaxWidth is.ru.mapp.MovieSearch:tabMaxWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMinWidth is.ru.mapp.MovieSearch:tabMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMode is.ru.mapp.MovieSearch:tabMode}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPadding is.ru.mapp.MovieSearch:tabPadding}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingBottom is.ru.mapp.MovieSearch:tabPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingEnd is.ru.mapp.MovieSearch:tabPaddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingStart is.ru.mapp.MovieSearch:tabPaddingStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingTop is.ru.mapp.MovieSearch:tabPaddingTop}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabSelectedTextColor is.ru.mapp.MovieSearch:tabSelectedTextColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextAppearance is.ru.mapp.MovieSearch:tabTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextColor is.ru.mapp.MovieSearch: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 = { 0x7f01011f, 0x7f010120, 0x7f010121, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e }; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabBackground */ public static final int TabLayout_tabBackground = 3; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabContentStart */ public static final int TabLayout_tabContentStart = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabGravity */ public static final int TabLayout_tabGravity = 5; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabIndicatorColor */ public static final int TabLayout_tabIndicatorColor = 0; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabIndicatorHeight */ public static final int TabLayout_tabIndicatorHeight = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabMaxWidth */ public static final int TabLayout_tabMaxWidth = 7; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabMinWidth */ public static final int TabLayout_tabMinWidth = 6; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabMode */ public static final int TabLayout_tabMode = 4; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabPadding */ public static final int TabLayout_tabPadding = 15; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabPaddingBottom */ public static final int TabLayout_tabPaddingBottom = 14; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabPaddingEnd */ public static final int TabLayout_tabPaddingEnd = 13; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabPaddingStart */ public static final int TabLayout_tabPaddingStart = 11; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabPaddingTop */ public static final int TabLayout_tabPaddingTop = 12; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabSelectedTextColor */ public static final int TabLayout_tabSelectedTextColor = 10; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:tabTextAppearance */ public static final int TabLayout_tabTextAppearance = 8; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch: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, 0x7f010031 }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:counterEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterMaxLength is.ru.mapp.MovieSearch:counterMaxLength}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance is.ru.mapp.MovieSearch:counterOverflowTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterTextAppearance is.ru.mapp.MovieSearch:counterTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorEnabled is.ru.mapp.MovieSearch:errorEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorTextAppearance is.ru.mapp.MovieSearch:errorTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled is.ru.mapp.MovieSearch:hintAnimationEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintEnabled is.ru.mapp.MovieSearch:hintEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintTextAppearance is.ru.mapp.MovieSearch:hintTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription is.ru.mapp.MovieSearch:passwordToggleContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable is.ru.mapp.MovieSearch:passwordToggleDrawable}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled is.ru.mapp.MovieSearch:passwordToggleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTint is.ru.mapp.MovieSearch:passwordToggleTint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode is.ru.mapp.MovieSearch: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, 0x7f01012f, 0x7f010130, 0x7f010131, 0x7f010132, 0x7f010133, 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:counterEnabled */ public static final int TextInputLayout_counterEnabled = 6; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:counterMaxLength */ public static final int TextInputLayout_counterMaxLength = 7; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:counterOverflowTextAppearance */ public static final int TextInputLayout_counterOverflowTextAppearance = 9; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:counterTextAppearance */ public static final int TextInputLayout_counterTextAppearance = 8; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:errorEnabled */ public static final int TextInputLayout_errorEnabled = 4; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:errorTextAppearance */ public static final int TextInputLayout_errorTextAppearance = 5; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:hintAnimationEnabled */ public static final int TextInputLayout_hintAnimationEnabled = 10; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:hintEnabled */ public static final int TextInputLayout_hintEnabled = 3; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:hintTextAppearance */ public static final int TextInputLayout_hintTextAppearance = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:passwordToggleContentDescription */ public static final int TextInputLayout_passwordToggleContentDescription = 13; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:passwordToggleDrawable */ public static final int TextInputLayout_passwordToggleDrawable = 12; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:passwordToggleEnabled */ public static final int TextInputLayout_passwordToggleEnabled = 11; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:passwordToggleTint */ public static final int TextInputLayout_passwordToggleTint = 14; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:buttonGravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseContentDescription is.ru.mapp.MovieSearch:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon is.ru.mapp.MovieSearch:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd is.ru.mapp.MovieSearch:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEndWithActions is.ru.mapp.MovieSearch:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft is.ru.mapp.MovieSearch:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight is.ru.mapp.MovieSearch:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart is.ru.mapp.MovieSearch:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation is.ru.mapp.MovieSearch:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo is.ru.mapp.MovieSearch:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription is.ru.mapp.MovieSearch:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight is.ru.mapp.MovieSearch:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription is.ru.mapp.MovieSearch:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon is.ru.mapp.MovieSearch:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme is.ru.mapp.MovieSearch:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle is.ru.mapp.MovieSearch:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance is.ru.mapp.MovieSearch:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor is.ru.mapp.MovieSearch:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title is.ru.mapp.MovieSearch:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargin is.ru.mapp.MovieSearch:titleMargin}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom is.ru.mapp.MovieSearch:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd is.ru.mapp.MovieSearch:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart is.ru.mapp.MovieSearch:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop is.ru.mapp.MovieSearch:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins is.ru.mapp.MovieSearch:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance is.ru.mapp.MovieSearch:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor is.ru.mapp.MovieSearch: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, 0x7f010007, 0x7f01000a, 0x7f01000e, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010021, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5 }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:buttonGravity */ public static final int Toolbar_buttonGravity = 21; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 23; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:collapseIcon */ public static final int Toolbar_collapseIcon = 22; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions = 10; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation = 9; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:logo */ public static final int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:logoDescription */ public static final int Toolbar_logoDescription = 26; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 20; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 25; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:navigationIcon */ public static final int Toolbar_navigationIcon = 24; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:popupTheme */ public static final int Toolbar_popupTheme = 11; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 13; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 28; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:titleMargin */ public static final int Toolbar_titleMargin = 14; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 18; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 16; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:titleMarginStart */ public static final int Toolbar_titleMarginStart = 15; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:titleMarginTop */ public static final int Toolbar_titleMarginTop = 17; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:titleMargins */ public static final int Toolbar_titleMargins = 19; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 12; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart is.ru.mapp.MovieSearch:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme is.ru.mapp.MovieSearch: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, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8 }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:paddingEnd */ public static final int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:paddingStart */ public static final int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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 is.ru.mapp.MovieSearch:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode is.ru.mapp.MovieSearch:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100e9, 0x7f0100ea }; /** <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 is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link is.ru.mapp.MovieSearch.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 is.ru.mapp.MovieSearch: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; }; }
[ "oddurka@gmail.com" ]
oddurka@gmail.com
9393caa9cbcaa7833fa0775d64406381b5b2b1af
056c94129117d3e12e660356e3d6656a51383c59
/e-shop-shipment/src/main/java/com/solution/fromVC/shipment/web/ShippingBean.java
edc12be3e742deca2531aa3816975c4e3b53dfaf
[]
no_license
devSolutionsFromVC/e-Shop-JavaEE
c3e653a6abf1f6f675623b5c79a230c2772f808e
1e06d6803ec862fa978c812d37e9af549ddc48f5
refs/heads/master
2020-03-24T09:33:50.172862
2018-07-27T23:38:29
2018-07-27T23:38:29
142,632,102
0
0
null
null
null
null
UTF-8
Java
false
false
3,318
java
package com.solution.fromVC.shipment.web; import com.solution.fromVC.entities.CustomerOrder; import com.solution.fromVC.shipment.ejb.OrderBrowser; import javax.annotation.PostConstruct; import javax.annotation.PreDestroy; import javax.ejb.EJB; import javax.enterprise.context.RequestScoped; import javax.inject.Named; import javax.jms.JMSException; import javax.ws.rs.client.Client; import javax.ws.rs.client.ClientBuilder; import javax.ws.rs.client.Entity; import javax.ws.rs.core.GenericType; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.logging.Level; import java.util.logging.Logger; @Named @RequestScoped public class ShippingBean implements Serializable{ private static final Logger logger = Logger.getLogger(ShippingBean.class.getCanonicalName()); private static final String SERVICE_ENDPOINT = "http://localhost:8080/e-Shop/services/order"; private static final String MEDIA_TYPE = MediaType.APPLICATION_JSON; private static final long serialVersionUID = -2526289536313985021L; protected Client client; @EJB private OrderBrowser orderBrowser; @PostConstruct private void init(){ client = ClientBuilder.newClient(); } @PreDestroy private void destroy(){ client.close(); } private Map<String, CustomerOrder> orders; public Map<String, CustomerOrder> getOrders(){ return orders; } public void setOrders(Map<String, CustomerOrder> orders){ this.orders = orders; } public enum Status{ PENDING_PAYMENT(2), READY_TO_SHIP(3), SHIPPED(4), CANCELLED_PAYMENT(5), CANCELLED_MANUAL(6); private int status; private Status(final int pStatus){ status = pStatus; } public int getStatus(){ return status; } } public String getEndpoint(){ return SERVICE_ENDPOINT; } public List<CustomerOrder> listByStatus(final Status status){ List<CustomerOrder> entity = (List<CustomerOrder>) client.target(SERVICE_ENDPOINT) .queryParam("status", String.valueOf(status.getStatus())) .request(MEDIA_TYPE) .get(new GenericType<List<CustomerOrder>>(){}); return entity; } public void updateOrderStatus(final String messageID, final Status status) throws JMSException { CustomerOrder order = orderBrowser.processOrder(messageID); Response response = client.target(SERVICE_ENDPOINT) .path("/" + order.getId()) .request(MEDIA_TYPE) .put(Entity.text(String.valueOf(status))); logger.log(Level.FINEST, "PUT Status response: {0}", response.getStatus()); } public List<String> getPendingOrders() throws JMSException { Map<String, CustomerOrder> pendingOrders = orderBrowser.getOrders(); if(pendingOrders == null){ return null; } else { setOrders(pendingOrders); return new ArrayList<String>(getOrders().keySet()); } } public List<CustomerOrder> getCompletedOrders(){ return listByStatus(Status.SHIPPED); } }
[ "vlad_warden@ukr.net" ]
vlad_warden@ukr.net
7ce92e173dce47b9b5f11364198a769b0ecc2500
ae917a1b476322e614d4865c79c57152acf2115f
/src/main/java/common/model/Event.java
1684385b850419c87cbf44008cf3d30eb90b1613
[]
no_license
Phornrawin/calendar
98f979e919bb1a1b0c600354ce7001ce0fa9fe2f
001addb963956adad925b05b1b42420087adadad
refs/heads/master
2021-01-20T09:49:46.316588
2017-11-02T08:44:02
2017-11-02T08:44:02
101,608,891
0
0
null
null
null
null
UTF-8
Java
false
false
1,336
java
package common.model; import java.io.Serializable; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; /** * Created by Phornrawin on 27/8/2560. */ public class Event implements Serializable{ private String topic, detail; private Date date; private SimpleDateFormat format; private String type; public String getType() { return type; } public Event(String topic, String detail, Date date, String type) { this.topic = topic; this.detail = detail; this.date = date; this.format = new SimpleDateFormat("E dd MMM yyyy HH:mm", Locale.ENGLISH); this.type = type; } public String getTopic() { return topic; } public void setTopic(String topic) { this.topic = topic; } public String getDetail() { return detail; } public void setDetail(String detail) { this.detail = detail; } public Date getDate() { return date; } public void setDate(Date date) { this.date = date; } public String getDateToString(){ return format.format(date); } public String toString(){ return String.format("Date: %s\n" + "Topic: %s\n" + "Detail: %s\n" + "Type: %s\n", format.format(date), topic, detail, type); } }
[ "phornrawin.c@ku.th" ]
phornrawin.c@ku.th
7cf97f57e588d751f99857e80b420f73c3553950
d599a5e012b74eac02b97003f8923f64a210510a
/src/main/java/cn/nnnight/util/JsonDateTimeSerializer.java
5f53e7d26255947a1c51226a523cdde01b79ccde
[]
no_license
fbicewind/nnnight
c66ca512bafc2e0ceffcabfc7110bf72459e105c
732c5013f2f015f3bba823e2ef2c57d64a893c82
refs/heads/master
2021-01-09T23:41:42.756654
2018-01-31T03:54:08
2018-01-31T03:54:08
101,277,976
0
0
null
null
null
null
UTF-8
Java
false
false
692
java
package cn.nnnight.util; import com.fasterxml.jackson.core.JsonGenerator; import com.fasterxml.jackson.databind.JsonSerializer; import com.fasterxml.jackson.databind.SerializerProvider; import org.springframework.stereotype.Component; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Date; @Component public class JsonDateTimeSerializer extends JsonSerializer<Date> { @Override public void serialize(Date date, JsonGenerator jsonGenerator, SerializerProvider serializerProvider) throws IOException { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); jsonGenerator.writeString(sdf.format(date)); } }
[ "939228292@qq.com" ]
939228292@qq.com
038cfa2d7d141de8e7f0fe78a13030a1404ad6d8
1007184b040bd69e37bb0998a379500c1fda7bad
/RequerimientoBPM/src/main/java/com/cajasullana/bpmprojects/requerimientobpm/Requerimiento.java
fd24b621f6f3b26c6e1572201d038098bc901656
[]
no_license
earauco/jbpmRequerimientoCajaSullana
6a0973361e16929d1bdb9cd762054904eb92bfac
53997e96fbf42de7873cb36a1fa3094bfa3f4c13
refs/heads/master
2021-01-02T22:30:22.850961
2015-10-07T20:27:50
2015-10-07T20:27:50
42,281,991
0
0
null
null
null
null
UTF-8
Java
false
false
2,150
java
package com.cajasullana.bpmprojects.requerimientobpm; /** * This class was automatically generated by the data modeler tool. */ public class Requerimiento implements java.io.Serializable { static final long serialVersionUID = 1L; @org.kie.api.definition.type.Label("Fecha") private java.util.Date fecha; @org.kie.api.definition.type.Label("Cliente") private com.cajasullana.bpmprojects.requerimientobpm.Cliente cliente; @org.kie.api.definition.type.Label("Detalle") private java.lang.String detalle; @org.kie.api.definition.type.Label("Canal de Respuesta") private java.lang.String canalRpta; @org.kie.api.definition.type.Label("Plazo M\u00E1ximo de Atenci\u00F3n") private java.lang.String plazoAtencion; public Requerimiento() { } public java.util.Date getFecha() { return this.fecha; } public void setFecha(java.util.Date fecha) { this.fecha = fecha; } public com.cajasullana.bpmprojects.requerimientobpm.Cliente getCliente() { return this.cliente; } public void setCliente( com.cajasullana.bpmprojects.requerimientobpm.Cliente cliente) { this.cliente = cliente; } public java.lang.String getDetalle() { return this.detalle; } public void setDetalle(java.lang.String detalle) { this.detalle = detalle; } public java.lang.String getCanalRpta() { return this.canalRpta; } public void setCanalRpta(java.lang.String canalRpta) { this.canalRpta = canalRpta; } public java.lang.String getPlazoAtencion() { return this.plazoAtencion; } public void setPlazoAtencion(java.lang.String plazoAtencion) { this.plazoAtencion = plazoAtencion; } public Requerimiento(java.util.Date fecha, com.cajasullana.bpmprojects.requerimientobpm.Cliente cliente, java.lang.String detalle, java.lang.String canalRpta, java.lang.String plazoAtencion) { this.fecha = fecha; this.cliente = cliente; this.detalle = detalle; this.canalRpta = canalRpta; this.plazoAtencion = plazoAtencion; } }
[ "" ]
0f366b3fd510e20584ade0eafd21ad22c4e97762
50406919a471b52e081dcb916e3be62a4eb139bd
/src/main/java/edu/clemson/cs/rsrg/statushandling/exception/SourceErrorException.java
5beccf7b6a8697857240931e6061acaf2c1f94d9
[ "BSD-3-Clause" ]
permissive
sp2020jarvan/RESOLVE
db01d179c19a2e5e988d1f36849bddf1c46c085e
0ce6b918f4ce62c124237a0e2e3eb5b4edf0709f
refs/heads/master
2023-02-26T23:14:27.600142
2021-02-10T20:04:31
2021-02-10T20:04:31
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,963
java
/* * SourceErrorException.java * --------------------------------- * Copyright (c) 2020 * RESOLVE Software Research Group * School of Computing * Clemson University * All rights reserved. * --------------------------------- * This file is subject to the terms and conditions defined in * file 'LICENSE.txt', which is part of this source code package. */ package edu.clemson.cs.rsrg.statushandling.exception; import edu.clemson.cs.rsrg.parsing.data.Location; import edu.clemson.cs.rsrg.parsing.data.PosSymbol; /** * <p> * The default source error exception for the compiler. * </p> * * @author Yu-Shan Sun * @version 2.0 */ public class SourceErrorException extends CompilerException { // =========================================================== // Member Fields // =========================================================== /** * <p> * Serial version for Serializable objects * </p> */ private static final long serialVersionUID = 1L; // ========================================================== // Constructors // ========================================================== /** * <p> * This constructor takes in a throwable cause and a message for the symbol * that caused an source * exception to be thrown. * </p> * * @param message Message to be displayed when the exception is thrown. * @param symbol Offending symbol * @param cause Cause of the exception. */ public SourceErrorException(String message, PosSymbol symbol, Throwable cause) { super(message, symbol, cause); } /** * <p> * This constructor takes in a message for the symbol that caused an source * exception to be * thrown. * </p> * * @param message Message to be displayed when the exception is thrown. * @param symbol Offending symbol */ public SourceErrorException(String message, PosSymbol symbol) { super(message, symbol, null); } /** * <p> * This constructor takes in a message for the location that caused an * source exception to be * thrown. * </p> * * @param message Message to be displayed when the exception is thrown. * @param location Location where the error occurred. */ public SourceErrorException(String message, Location location) { super(message, location, null); } /** * <p> * This constructor takes in a throwable cause and a message for the * location that caused an * source exception to be thrown. * </p> * * @param message Message to be displayed when the exception is thrown. * @param location Location where the error occurred. * @param cause Cause of the exception. */ public SourceErrorException(String message, Location location, Throwable cause) { super(message, location, cause); } }
[ "yushans@g.clemson.edu" ]
yushans@g.clemson.edu
a79e9c3ef7be549ec23b75eebf79bf8156d72b4a
b6229db276ac9c351c6bb8a9bdca88f4e666e466
/src/main/java/com/shipping/config/WebSecurityConfig.java
1e9535d61b4d5c3b3c3dcf7525df94fbc338d260
[]
no_license
david-enli/shipping-service
4decb178374b1851b0f0724a75855701668e806b
e099f7934164b9c114b46f65789ba211c8342987
refs/heads/master
2022-06-26T16:28:24.493361
2020-03-01T22:23:08
2020-03-01T22:23:08
244,233,061
0
0
null
2020-10-13T19:58:52
2020-03-01T22:22:26
Java
UTF-8
Java
false
false
576
java
package com.shipping.config; import org.springframework.context.annotation.Configuration; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; @EnableWebSecurity @Configuration public class WebSecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { http.csrf().disable(); } }
[ "enli@umich.edu" ]
enli@umich.edu
150d52c6bf7ca6c13f0e221b929c3c895fa1742f
6b89b2be6f2fa709d6697cbcded07d7548761420
/src/com/ipartek/Principal.java
a10b18c5c23487fa7bc7e8214e3808b1c42bbe1f
[]
no_license
fpm92/Java-UF2404
3ee7f434e193b8d7c14b7489fd4acc7d0e714419
ec95bab1a8c66bdbf0fb239cd4100d674286a401
refs/heads/master
2022-04-09T20:35:23.070296
2020-01-30T12:02:22
2020-01-30T12:02:22
null
0
0
null
null
null
null
UTF-8
Java
false
false
99
java
package com.ipartek; public class Principal { public static void main(String[] args) { } }
[ "franperezmena92@gmail.com" ]
franperezmena92@gmail.com
919fd3c2337c38fc9d49de7da4adfe424a0feb61
e9affefd4e89b3c7e2064fee8833d7838c0e0abc
/aws-java-sdk-connect/src/main/java/com/amazonaws/services/connect/model/transform/EvaluationFormQuestionTypePropertiesMarshaller.java
178249ea8c6bd69915e023d3c839a96bc31a8608
[ "Apache-2.0" ]
permissive
aws/aws-sdk-java
2c6199b12b47345b5d3c50e425dabba56e279190
bab987ab604575f41a76864f755f49386e3264b4
refs/heads/master
2023-08-29T10:49:07.379135
2023-08-28T21:05:55
2023-08-28T21:05:55
574,877
3,695
3,092
Apache-2.0
2023-09-13T23:35:28
2010-03-22T23:34:58
null
UTF-8
Java
false
false
2,502
java
/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.connect.model.transform; import javax.annotation.Generated; import com.amazonaws.SdkClientException; import com.amazonaws.services.connect.model.*; import com.amazonaws.protocol.*; import com.amazonaws.annotation.SdkInternalApi; /** * EvaluationFormQuestionTypePropertiesMarshaller */ @Generated("com.amazonaws:aws-java-sdk-code-generator") @SdkInternalApi public class EvaluationFormQuestionTypePropertiesMarshaller { private static final MarshallingInfo<StructuredPojo> NUMERIC_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("Numeric").build(); private static final MarshallingInfo<StructuredPojo> SINGLESELECT_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("SingleSelect").build(); private static final EvaluationFormQuestionTypePropertiesMarshaller instance = new EvaluationFormQuestionTypePropertiesMarshaller(); public static EvaluationFormQuestionTypePropertiesMarshaller getInstance() { return instance; } /** * Marshall the given parameter object. */ public void marshall(EvaluationFormQuestionTypeProperties evaluationFormQuestionTypeProperties, ProtocolMarshaller protocolMarshaller) { if (evaluationFormQuestionTypeProperties == null) { throw new SdkClientException("Invalid argument passed to marshall(...)"); } try { protocolMarshaller.marshall(evaluationFormQuestionTypeProperties.getNumeric(), NUMERIC_BINDING); protocolMarshaller.marshall(evaluationFormQuestionTypeProperties.getSingleSelect(), SINGLESELECT_BINDING); } catch (Exception e) { throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e); } } }
[ "" ]