blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
410
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
51
| license_type
stringclasses 2
values | repo_name
stringlengths 5
132
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
80
| visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 5.85k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 131
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
9.45M
| extension
stringclasses 32
values | content
stringlengths 3
9.45M
| authors
sequencelengths 1
1
| author_id
stringlengths 0
313
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
18245f4c31a98571c5ae0e3cb0cc50bc1a6ccd7b | c08d42122b0e3bf038e7af31e302d20589c86e32 | /src/main/java/com/xiaxinyu/java/clazz/layout/ClassLayoutTest.java | e2540ec3e6f6df77ce7f5f44c5f26040478ad266 | [
"Apache-2.0"
] | permissive | xiaxinyu/java-core | 6540f015108ae89207b7963b8780c99781ab9f5f | 8980ee6df818c27884026a8737754b35a092f1db | refs/heads/master | 2023-03-31T22:41:08.319295 | 2020-09-29T03:41:31 | 2020-09-29T03:41:31 | 281,342,827 | 1 | 0 | Apache-2.0 | 2021-03-31T22:11:29 | 2020-07-21T08:38:56 | Java | UTF-8 | Java | false | false | 893 | java | package com.xiaxinyu.java.clazz.layout;
import lombok.extern.slf4j.Slf4j;
import org.openjdk.jol.info.ClassLayout;
//import org.openjdk.jol.info.ClassLayout;
/**
* Java 对象布局工具类
*
* @author XIAXINYU3
* @date 2019.12.28
*/
@Slf4j
public class ClassLayoutTest {
//开启(-XX:+UseCompressedOops) 可以压缩指针。
//关闭(-XX:-UseCompressedOops) 可以关闭压缩指针。
public static void print(Object object) {
log.info("HasCode Hex: {}", Integer.toHexString(object.hashCode()));
String layout = ClassLayout.parseInstance(object).toPrintable();
log.info(layout);
}
public static void main(String[] args) {
Object obj = new Object();
print(obj);
System.out.println("******************************************************");
synchronized (obj) {
print(obj);
}
}
}
| [
"[email protected]"
] | |
a43793b9630e0b8fd2687eea42cb67fd761cdc54 | 041e2ceaf45fefe0236a0bf4454991d49da2a5de | /sms-server-api/src/main/java/by/bsu/rfe/smsservice/service/StatisticsService.java | 87929765347ecf916cd89f730137eea3999ff198 | [] | no_license | pavel-luhin/rfe-sms-server | 8465f3aae52ed21d5fe8539f416d001211164631 | ad5f778ac7c3187d590555a0489854182afd4392 | refs/heads/master | 2021-03-30T17:37:56.656786 | 2019-11-04T19:19:56 | 2019-11-04T19:19:56 | 55,432,342 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,096 | java | package by.bsu.rfe.smsservice.service;
import by.bsu.rfe.smsservice.common.dto.StatisticsDTO;
import by.bsu.rfe.smsservice.common.dto.page.PageRequestDTO;
import by.bsu.rfe.smsservice.common.dto.page.PageResponseDTO;
import by.bsu.rfe.smsservice.common.dto.sms.BulkSmsRequestDTO;
import by.bsu.rfe.smsservice.common.dto.sms.CustomSmsRequestDTO;
import by.bsu.rfe.smsservice.common.dto.sms.SmsQueueRequestDTO;
import by.bsu.rfe.smsservice.common.dto.sms.TemplateSmsRequestDTO;
import by.bsu.rfe.smsservice.common.response.SendSmsResponse;
import java.util.List;
/**
* Created by pluhin on 3/20/16.
*/
public interface StatisticsService {
List<StatisticsDTO> getFullStatistics();
PageResponseDTO getStatisticsPage(PageRequestDTO requestDTO);
Long count();
void saveStatistics(BulkSmsRequestDTO requestDTO, SendSmsResponse response);
void saveStatistics(CustomSmsRequestDTO requestDTO, SendSmsResponse response);
void saveStatistics(TemplateSmsRequestDTO requestDTO, SendSmsResponse response);
void saveStatistics(SmsQueueRequestDTO requestDTO, SendSmsResponse response);
}
| [
"[email protected]"
] | |
a7b4409c12c7904f5452a55fdda3c697c3afaa40 | b7b71f62abef0fa54485bac0b8c5dc0e96e4eb4e | /src/dataBase/Connector.java | 44c45f0e2fb5c6483e5e84b0bcce665cbbd48ce7 | [] | no_license | floibach/KBHH_Finances | f91202e6ce5e56e50df6b1c7661c3a4d605236b1 | a46cde7f0c980f60516fac8636d29b78bd48acc1 | refs/heads/master | 2016-09-06T15:06:30.917652 | 2013-06-22T22:27:46 | 2013-06-22T22:27:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 529 | java | package dataBase;
public class Connector
{
public Connector()
{
_amount = 20;
}
private double _amount;
public double getAmount()
{
return _amount;
}
public double booking(Boolean isCredit,double value,String applicator, String reason)
{
int multiplicator = 1;
if(!isCredit)
{
multiplicator = multiplicator * (-1);
}
_amount = _amount + (multiplicator * value);
return _amount;
}
// SELECT *
// FROM KBHH_Amount a
// WHERE (
//
// SELECT MAX( ID )
// FROM `KBHH_Amount`
// ) = a.ID
}
| [
"[email protected]"
] | |
afc800b69a53d91959b2c9fe35b21d163f099cdf | 1669803613ee427e1d4d9e5de94d2444fedfab36 | /part06-Part06_02.Stack/src/main/java/Stack.java | c3d6300ad1eafa1e47e0078514b15f89d233df98 | [] | no_license | benbasty/Java-MOOC.Fi-1 | f80da9277692d9e0c925d8330df8c6e67b5d9887 | ad788e328f5bee21c2de18a061a09c1bc65e6b7c | refs/heads/master | 2023-06-07T06:26:38.649804 | 2021-06-28T16:29:41 | 2021-06-28T16:29:41 | 377,943,692 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 922 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author benbasty
*/
import java.util.ArrayList;
public class Stack {
private ArrayList<String> stack;
public Stack() {
this.stack = new ArrayList<>();
}
public boolean isEmpty(){
if(stack.isEmpty()){
return true;
} else {
return false;
}
}
public void add(String value){
if(stack.contains(value)){
this.stack = stack;
} else {
this.stack.add(value);
}
}
public ArrayList<String> values(){
return stack;
}
public String take() {
String topmost = stack.get(stack.size()-1);
this.stack.remove(topmost);
return topmost;
}
}
| [
"[email protected]"
] | |
3fa3c8f2091ae99cb87445b8594811bb8d2b7fad | 3e198db790ff0bf26988cfec218b5b91343ca581 | /src/main/java/com/mahe/hitt/utils/IPUtils.java | 9b90c8fc3eca86097eeab94b66bfabdc5c5f741a | [] | no_license | mahe504/EMSGDE | bc4e8190a99c5a386a6f60cd400212d776e48ea0 | 69d6361634f752be2e2d9f22e5641abe9d990ac6 | refs/heads/master | 2022-12-24T04:11:04.735317 | 2019-08-29T08:52:48 | 2019-08-29T08:52:48 | 205,113,430 | 0 | 0 | null | 2022-12-16T11:54:10 | 2019-08-29T08:08:51 | JavaScript | UTF-8 | Java | false | false | 1,640 | java | package com.mahe.hitt.utils;
import javax.servlet.http.HttpServletRequest;
/**
* @Author 马鹤
* @Date 2019/7/9--16:36
* @Description
**/
public class IPUtils {
public static String getIPAddress(HttpServletRequest request) {
String ip = null;
// X-Forwarded-For:Squid 服务代理
String ipAddresses = request.getHeader("X-Forwarded-For");
if (ipAddresses == null || ipAddresses.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) {
// Proxy-Client-IP:apache 服务代理
ipAddresses = request.getHeader("Proxy-Client-IP");
}
if (ipAddresses == null || ipAddresses.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) {
// WL-Proxy-Client-IP:weblogic 服务代理
ipAddresses = request.getHeader("WL-Proxy-Client-IP");
}
if (ipAddresses == null || ipAddresses.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) {
// HTTP_CLIENT_IP:有些代理服务器
ipAddresses = request.getHeader("HTTP_CLIENT_IP");
}
if (ipAddresses == null || ipAddresses.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) {
// X-Real-IP:nginx服务代理
ipAddresses = request.getHeader("X-Real-IP");
}
// 有些网络通过多层代理,那么获取到的ip就会有多个,一般都是通过逗号(,)分割开来,并且第一个ip为客户端的真实IP
if (ipAddresses != null && ipAddresses.length() != 0) {
ip = ipAddresses.split(",")[0];
}
// 还是不能获取到,最后再通过request.getRemoteAddr();获取
if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ipAddresses)) {
ip = request.getRemoteAddr();
}
return ip;
}
}
| [
"[email protected]"
] | |
e37642bf4f5c1cc2c04ee13c2e43d593b6f65bc2 | e592b548172d801101373676eef1d5c7496608df | /app/src/main/java/com/doitua/doittest/activity/signup/di/SignUpActivityModule.java | cf9a104c0dc12cc03363188f8c58b34badbe85bc | [] | no_license | VBatynchuk/DoIt-Test | 27b8a5cd93270aa29b4f08f1ab58c532eb6772a9 | c21e67b574887a335d4341ca5b895382dfe6449f | refs/heads/master | 2021-09-05T06:11:00.861558 | 2018-01-24T16:31:55 | 2018-01-24T16:31:55 | 104,754,961 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,126 | java | package com.doitua.doittest.activity.signup.di;
import android.content.ContentResolver;
import android.content.Context;
import com.doitua.doittest.activity.signup.SignUpActivity;
import com.doitua.doittest.activity.signup.SignUpActivityPresenter;
import com.doitua.doittest.activity.signup.SignUpActivityView;
import com.doitua.doittest.activity.signup.SignUpActivityPresenterImpl;
import com.doitua.doittest.injection.ActivityContext;
import com.doitua.doittest.injection.ActivityScope;
import com.doitua.doittest.injection.ImageDir;
import com.doitua.doittest.model.PrefHelper;
import com.doitua.doittest.retrofit.RetrofitService;
import com.doitua.doittest.util.PermissionChecker;
import java.io.File;
import dagger.Module;
import dagger.Provides;
/**
* Created by batynchuk on 9/21/17.
*/
@Module
public class SignUpActivityModule {
private final SignUpActivity signUpActivity;
private final SignUpActivityView signUpActivityView;
public SignUpActivityModule(SignUpActivity activity) {
signUpActivity = activity;
signUpActivityView = activity;
}
@ActivityContext
@Provides
Context provideContext() {
return signUpActivity;
}
@ActivityScope
@Provides
SignUpActivityView provideLoginActivityView() {
return signUpActivityView;
}
@ActivityScope
@Provides
PermissionChecker providePermissionChecker(@ActivityContext Context context) {
return new PermissionChecker(context);
}
@ActivityScope
@Provides
SignUpActivityPresenter provideSignUpActivityPresenter(SignUpActivityView signUpActivityView,
RetrofitService retrofitService,
ContentResolver contentResolver,
@ImageDir File imageDir,
PrefHelper prefHelper) {
return new SignUpActivityPresenterImpl(signUpActivityView, retrofitService,
contentResolver, imageDir, prefHelper);
}
}
| [
"[email protected]"
] | |
81e2e46270d05fe561460912dad0f1cda4b0639d | c9e6c4a18e7f668fc5ff53fdc8f8086912ba2ab2 | /src/main/java/com/rafaelkohler/mc/resources/exception/ResourceExceptionHandler.java | c7f04c7aeb893dca5670e0b0f49cb472df69f89e | [] | no_license | rafaelkohler/Spring-Modelagem-Conceitual | 17b979967021ca29d92c8d52db93ad5b82913191 | ee96f50e41416ad568a4d7e598e49d3575c5e859 | refs/heads/master | 2020-05-20T18:42:06.087172 | 2019-05-18T19:07:43 | 2019-05-18T19:07:43 | 185,710,639 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 797 | java | package com.rafaelkohler.mc.resources.exception;
import javax.servlet.http.HttpServletRequest;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import com.rafaelkohler.mc.services.exception.ObjectNotFoundException;
@ControllerAdvice
public class ResourceExceptionHandler {
@ExceptionHandler(ObjectNotFoundException.class)
public ResponseEntity<StandardError> objectNotFound(ObjectNotFoundException e, HttpServletRequest request) {
StandardError err = new StandardError(HttpStatus.NOT_FOUND.value(), e.getMessage(), System.currentTimeMillis());
return ResponseEntity.status(HttpStatus.NOT_FOUND).body(err);
}
}
| [
"[email protected]"
] | |
d90c80d2219c829651eb318d0b5835f0d487de95 | 943bb4b63609d31783c3c06a42e0ae98e40b8e47 | /modules/catalog-management/src/test/java/com/ibm/cloud/platform_services/catalog_management/v1/model/CopyVersionOptionsTest.java | 2de1112bdd2a1d79eb77c965b29bfc3f90993eb2 | [
"Apache-2.0"
] | permissive | KRuelY/platform-services-java-sdk | 3e676479a338b2772f5ae3ff62d95245033bf5ab | 50918578a66ba1adaf201eba7ef9d686b3361586 | refs/heads/main | 2023-06-29T08:25:57.348184 | 2021-07-27T19:37:40 | 2021-07-27T19:37:40 | 390,105,413 | 0 | 0 | Apache-2.0 | 2021-07-27T19:36:50 | 2021-07-27T19:36:50 | null | UTF-8 | Java | false | false | 2,344 | java | /*
* (C) Copyright IBM Corp. 2021.
*
* 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.ibm.cloud.platform_services.catalog_management.v1.model;
import com.ibm.cloud.platform_services.catalog_management.v1.utils.TestUtilities;
import com.ibm.cloud.sdk.core.service.model.FileWithMetadata;
import org.testng.annotations.Test;
import java.io.InputStream;
import java.util.HashMap;
import java.util.List;
import static org.testng.Assert.assertEquals;
/**
* Unit test class for the CopyVersionOptions model.
*/
public class CopyVersionOptionsTest {
final HashMap<String, InputStream> mockStreamMap = TestUtilities.createMockStreamMap();
final List<FileWithMetadata> mockListFileWithMetadata = TestUtilities.creatMockListFileWithMetadata();
@Test
public void testCopyVersionOptions() throws Throwable {
CopyVersionOptions copyVersionOptionsModel = new CopyVersionOptions.Builder()
.versionLocId("testString")
.tags(new java.util.ArrayList<String>(java.util.Arrays.asList("testString")))
.targetKinds(new java.util.ArrayList<String>(java.util.Arrays.asList("testString")))
.content(TestUtilities.createMockByteArray("This is a mock byte array value."))
.build();
assertEquals(copyVersionOptionsModel.versionLocId(), "testString");
assertEquals(copyVersionOptionsModel.tags(), new java.util.ArrayList<String>(java.util.Arrays.asList("testString")));
assertEquals(copyVersionOptionsModel.targetKinds(), new java.util.ArrayList<String>(java.util.Arrays.asList("testString")));
assertEquals(copyVersionOptionsModel.content(), TestUtilities.createMockByteArray("This is a mock byte array value."));
}
@Test(expectedExceptions = IllegalArgumentException.class)
public void testCopyVersionOptionsError() throws Throwable {
new CopyVersionOptions.Builder().build();
}
} | [
"[email protected]"
] | |
25a62eb858276733d550e25c17a65a74e8eed710 | e31f0396e565e1d06d65a87a83b82e273981167b | /src/kr/or/dgit/Coffee_Project/view/AbstractListView.java | 8e4869f809a26e7dfbfa86d099e7a5ff687c89b7 | [] | no_license | Mosquito06/Coffee_Project | 3b032f04692b24a176b399fff9f4dce194a21211 | c3688754ba11c2c39bb7c165dc2613847f535392 | refs/heads/master | 2021-07-16T18:27:03.454632 | 2017-10-23T06:48:19 | 2017-10-23T06:48:19 | 106,914,482 | 0 | 0 | null | null | null | null | UHC | Java | false | false | 1,286 | java | package kr.or.dgit.Coffee_Project.view;
import java.awt.BorderLayout;
import java.awt.Image;
import java.awt.Toolkit;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import kr.or.dgit.Coffee_Project.list.AbstractList;
import kr.or.dgit.Coffee_Project.list.SpriceList;
import kr.or.dgit.Coffee_Project.service.CoffeeAndIncomeService;
public abstract class AbstractListView extends JFrame {
private JPanel contentPane;
private AbstractList abstractlist;
public AbstractListView(String title) {
setTitle(title);
setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
setBounds(100, 100, 725, 275);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(new BorderLayout(0, 0));
// 윈도우 창 이미지 변경
Toolkit tk = Toolkit.getDefaultToolkit();
Image img = tk.getImage(System.getProperty("user.dir") + "\\images\\CoffeeIcon.png");
setIconImage(img);
setLocationRelativeTo(null);
abstractlist = CreatList();
contentPane.add(abstractlist, BorderLayout.CENTER);
}
protected abstract AbstractList CreatList();
public void loadData(){
abstractlist.loadData();
}
}
| [
"[email protected]"
] | |
c894536d48af8272219d014178d4a59395141fe1 | dc0876a9483239cc5f57d06f0b2104264b81c0fc | /src/main/java/com/evgeniy/web/crud/hibernate/util/HibernateUtil.java | 1315f01dd8d220f1890a18870a8d53a38a23e731 | [] | no_license | EvgenyLeshevich/WebAppWithHibernateCrud | b8e9172f03f664347fd3aaeccf2a0accba1dd9d9 | d3f963995a78f83129b7b31fb1c82d0812ef4c14 | refs/heads/master | 2023-08-07T13:11:58.324227 | 2021-09-23T11:45:03 | 2021-09-23T11:45:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 929 | java | package com.evgeniy.web.crud.hibernate.util;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public class HibernateUtil {
private static final SessionFactory sessionFactory = buildSessionFactory();
private static SessionFactory buildSessionFactory() {
try {
// Create the SessionFactory from hibernate.cfg.xml
return new Configuration().configure().buildSessionFactory();
}
catch (Throwable ex) {
// Make sure you log the exception, as it might be swallowed
System.err.println("Initial SessionFactory creation failed." + ex);
throw new ExceptionInInitializerError(ex);
}
}
public static SessionFactory getSessionFactory() {
return sessionFactory;
}
public static void shutdown() {
// Close caches and connection pools
getSessionFactory().close();
}
}
| [
"[email protected]"
] | |
dba7fb4916fec27a236d99ea1f10fd1f37d954f8 | 94138ba86d0dbf80b387064064d1d86269e927a1 | /group20/925290009/第三次作业/com/coderising/download/api/ConnectionException.java | 17373399090c1b3606418ee3a90709c2c91642bc | [] | no_license | DonaldY/coding2017 | 2aa69b8a2c2990b0c0e02c04f50eef6cbeb60d42 | 0e0c386007ef710cfc90340cbbc4e901e660f01c | refs/heads/master | 2021-01-17T20:14:47.101234 | 2017-06-01T00:19:19 | 2017-06-01T00:19:19 | 84,141,024 | 2 | 28 | null | 2017-06-01T00:19:20 | 2017-03-07T01:45:12 | Java | UTF-8 | Java | false | false | 239 | java | package com.coderising.download.api;
public class ConnectionException extends Exception {
/**
*
*/
private static final long serialVersionUID = 4776347926322882920L;
/**
*
*/
public ConnectionException(){
super();
}
}
| [
"[email protected]"
] | |
6954555895a0819eca871a1155051a861132d5db | cbe78ab7c9d6bae97944e654ebbbe492693c2b5c | /src/team/antelope/fg/entity/PersonNeed.java | a128e06152aecc39faf54cd7249206cc192858d2 | [] | no_license | wencaiHua/fragment_server | daaf528952bf204bba6f41a82af560267944bc5d | 9eb309f652e80403e974b5b7ce7d8d0e530d4c8f | refs/heads/master | 2021-09-16T17:19:56.055219 | 2018-06-22T10:25:41 | 2018-06-22T10:25:41 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,229 | java | package team.antelope.fg.entity;
import java.sql.Timestamp;
/**
* @author uniquelry
* @Description
*/
public class PersonNeed {
private long id;
private long uid;
private String title;
private String content;
private String needtype;
private Timestamp customdate;
private Timestamp requestdate;
private boolean iscomplete;
private boolean isonline;
private String addressdesc;
private String name;
private String email;
private String headimg;
private Float starnum;
private String phonenum;
private int dealnum;
private int fansnum;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public long getUid() {
return uid;
}
public void setUid(long uid) {
this.uid = uid;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getNeedtype() {
return needtype;
}
public void setNeedtype(String needtype) {
this.needtype = needtype;
}
public Timestamp getCustomdate() {
return customdate;
}
public void setCustomdate(Timestamp customdate) {
this.customdate = customdate;
}
public Timestamp getRequestdate() {
return requestdate;
}
public void setRequestdate(Timestamp requestdate) {
this.requestdate = requestdate;
}
public boolean isIscomplete() {
return iscomplete;
}
public void setIscomplete(boolean iscomplete) {
this.iscomplete = iscomplete;
}
public boolean isIsonline() {
return isonline;
}
public void setIsonline(boolean isonline) {
this.isonline = isonline;
}
public String getAddressdesc() {
return addressdesc;
}
public void setAddressdesc(String addressdesc) {
this.addressdesc = addressdesc;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getHeadimg() {
return headimg;
}
public void setHeadimg(String headimg) {
this.headimg = headimg;
}
public Float getStarnum() {
return starnum;
}
public void setStarnum(Float starnum) {
this.starnum = starnum;
}
public String getPhonenum() {
return phonenum;
}
public void setPhonenum(String phonenum) {
this.phonenum = phonenum;
}
public int getDealnum() {
return dealnum;
}
public void setDealnum(int dealnum) {
this.dealnum = dealnum;
}
public int getFansnum() {
return fansnum;
}
public void setFansnum(int fansnum) {
this.fansnum = fansnum;
}
@Override
public String toString() {
return "PersonNeed [id=" + id + ", uid=" + uid + ", title=" + title + ", content=" + content + ", needtype="
+ needtype + ", customdate=" + customdate + ", requestdate=" + requestdate + ", iscomplete="
+ iscomplete + ", isonline=" + isonline + ", addressdesc=" + addressdesc + ", name=" + name + ", email="
+ email + ", headimg=" + headimg + ", starnum=" + starnum + ", phonenum=" + phonenum + ", dealnum="
+ dealnum + ", fansnum=" + fansnum + "]";
}
}
| [
"[email protected]"
] | |
775e48dd63cddabe8380b4d7b25d1b8934f4e294 | 684f50dd1ae58a766ce441d460214a4f7e693101 | /modules/account/account-console-service/src/main/java/com/dimeng/p2p/modules/account/console/service/EnterpriseManage.java | 6ee539699c7a2bd52acb7149158bf3991aff5272 | [] | no_license | wang-shun/rainiee-core | a0361255e3957dd58f653ae922088219738e0d25 | 80a96b2ed36e3460282e9e21d4f031cfbd198e69 | refs/heads/master | 2020-03-29T16:40:18.372561 | 2018-09-22T10:05:17 | 2018-09-22T10:05:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,903 | java | /**
*
*/
package com.dimeng.p2p.modules.account.console.service;
import java.io.OutputStream;
import java.sql.Connection;
import com.dimeng.framework.service.Service;
import com.dimeng.framework.service.query.Paging;
import com.dimeng.framework.service.query.PagingResult;
import com.dimeng.p2p.S61.entities.T6112;
import com.dimeng.p2p.S61.entities.T6113;
import com.dimeng.p2p.S61.entities.T6161;
import com.dimeng.p2p.S61.entities.T6162;
import com.dimeng.p2p.S61.entities.T6163;
import com.dimeng.p2p.S61.entities.T6164;
import com.dimeng.p2p.S61.entities.T6180;
import com.dimeng.p2p.modules.account.console.service.entity.AT6161;
import com.dimeng.p2p.modules.account.console.service.entity.Enterprise;
import com.dimeng.p2p.modules.account.console.service.entity.Jg;
import com.dimeng.p2p.modules.account.console.service.query.EnterpriseQuery;
/**
* 企业用户信息
*
* @author guopeng
*
*/
public abstract interface EnterpriseManage extends Service {
/**
*
* <dt>
* <dl>
* 描述:添加企业信息
* </dl>
*
* @param user
* 添加信息
* @throws Throwable
*/
public abstract int add(Enterprise enterprise) throws Throwable;
/**
*
* <dt>
* <dl>
* 描述:修改企业信息
* </dl>
*
* @param user
* 修改信息
* @throws Throwable
*/
public abstract void update(Enterprise enterprise) throws Throwable;
/**
*
* <dt>
* <dl>
* 描述:查询所企业人用户列表.
* </dl>
*
* @param userQuery
* @param paging
* @return
* @throws Throwable
*/
public abstract PagingResult<Enterprise> enterpriseSearch(
EnterpriseQuery enterpriseQuery, Paging paging) throws Throwable;
/**
* <dt>
* <dl>
* 描述:导出企业用户信息
* </dl>
*
* @param users
* 用户信息列表
* @param outputStream
* 输出流
* @param charset
* 字符编码
* @throws Throwable
*/
public abstract void export(Enterprise[] enterprises,
OutputStream outputStream, String charset) throws Throwable;
/**
*
* <dl>
* 描述:查询所有机构.
* </dl>
*
*
* @return
* @throws Throwable
*/
public abstract Jg[] searchJg() throws Throwable;
/**
*
* <dl>
* 描述:查询已通过第三方审核的机构
* </dl>
*
*
* @return
* @throws Throwable
*/
public abstract Jg[] searchTgJg() throws Throwable;
/**
* 根据机构ID查询机构描述信息
*/
public abstract String getJgDes(int id) throws Throwable;
/**
* 根据机构ID查询机构描述信息
*/
public abstract T6180 getJgInfo(int id) throws Throwable;
/**
* 查询企业基础信息
*/
public abstract AT6161 getEnterprise(int userId) throws Throwable;
/**
* 根据企业编号查询企业基础信息
*/
public abstract T6161 getEnterpriseByBH(String bhId) throws Throwable;
/**
* 查询企业财务状况
*/
public abstract T6163[] getEnterpriseCw(int userId) throws Throwable;
/**
* 查询企业介绍信息
*/
public abstract T6162 getEnterpriseJs(int userId) throws Throwable;
/**
* 查询企业联系人
*/
public abstract T6164 getEnterpriseLxr(int userId) throws Throwable;
/**
* 修改企业基础资料
*/
public abstract String updateEnterpriseBase(AT6161 t6161) throws Throwable;
/**
* 修改企业信息
*/
public abstract void updateEnterpriseOtherInfos(T6161 t6161, T6162 t6162,
T6163[] t6163, T6164 t6164) throws Throwable;
/**
* 插入或更新房产信息
* @throws Throwable
*/
public abstract int addOrupdateHourse(T6112 entity) throws Throwable;
/**
* 插入或更新车产信息
* @throws Throwable
*/
public abstract int addOrupdateCar(T6113 entity) throws Throwable;
public abstract T6112[] getHourseInfo(int userId) throws Throwable;
public abstract T6113[] getCarInfo(int userId) throws Throwable;
}
| [
"[email protected]"
] | |
aa67db36837cf0b2b0325293697bac9f51e1a2a4 | 594ff30fdeec6d29125d175a7fdfbdb4c6a9807e | /ice/src/main/java/com/ice/library/constant/AppConfig.java | 349fedd09851f60e6d513ebf6154d65c62743e01 | [] | no_license | StillSad/iceAtlas | 8870b1754abc733b9e67c6438257988e4eaffcf9 | ca496d420a16413e1dc9e8a96e7a8ddbc7b2ec00 | refs/heads/master | 2021-04-03T01:52:23.040864 | 2018-03-18T13:21:11 | 2018-03-18T13:21:11 | 124,823,471 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 825 | java | package com.ice.library.constant;
/**
* Created by ICE on 2017/6/27.
*/
public class AppConfig {
//==================Base============//
public static final int PAGE_COUNT = 10;
public static final int FLAG_MULTI_VH = 0x000001;
public static final String OPEN_TYPE = "公开";
public static final String APP_NAME = "gsgj";
//==================API============//
public static final String BASE_URL = "https://api.igeshui.com/";
public static final String APP_TOKEN = "c90461c64bd2d008d88ba268ebdeded4";
public static final String _CREATED_AT = "-createdAt";
public static final String INCLUDE = "include";
public static final String CREATER = "creater";
public static final String UID = "uId";
public static final String PAGE = "page";
}
| [
"[email protected]"
] | |
dab6c04622f0b535a8479178276416517b122af1 | 279066abb675479557d55d2dc5564bb0909fdcd9 | /kafka-producer/src/main/java/com/smaz/ms/controller/KafkaProducerController.java | 78f679d95438cb4fc7eed21483d15cc435db7cdc | [] | no_license | SMaZ-git/spring-ms | 7cebb1cdd8c0c7d84483074855b93fa629f0c082 | 28ca99bb75dd4dd9c427efbc8f2a3afd45d3c56b | refs/heads/master | 2021-03-02T23:18:19.714797 | 2020-03-10T01:43:05 | 2020-03-10T01:43:34 | 245,914,257 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,526 | java | package com.smaz.ms.controller;
import com.smaz.ms.model.ResponseModel;
import com.smaz.ms.model.User;
import com.smaz.ms.service.ProducerService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import reactor.core.publisher.Mono;
import reactor.core.scheduler.Schedulers;
@RestController
@RequestMapping(value = "/kafka")
public class KafkaProducerController {
Logger logger = LoggerFactory.getLogger(KafkaProducerController.class);
@Autowired
ProducerService producerService;
@GetMapping("/send")
public Mono<ResponseModel> sendMessage(@RequestParam(value = "name") String name, @RequestParam(value = "age") int age) {
long start = System.currentTimeMillis();
logger.info(String.format(Thread.currentThread().getName()));
logger.info("name is :" + name + " and age of :" + age);
Mono.just(new User(name, age))
.log()
.subscribeOn(Schedulers.parallel())
.subscribe(user -> producerService.sendMessage(user));
logger.info(String.format(" time taken %s", (System.currentTimeMillis() - start)));
return Mono.just(new ResponseModel("Success", "Request submitted successfully"));
}
}
| [
"[email protected]"
] | |
d53aa77e3ad2fa5916699b352ba73b38ee956e01 | e2a6ca6c033ea35c098f9ca0b52f445e99e5d1db | /ble/src/main/java/no/nordicsemi/android/ble/callback/ReadProgressCallback.java | c3b37a674d20975dcd5e84214c17ae93576c4ac3 | [] | permissive | NordicSemiconductor/Android-BLE-Library | bf1db1a8fd4b34a44a83cb10cee78bc1ea1983b4 | 004e6645dfb391c253c13a8b75d38a86b0aeacc2 | refs/heads/main | 2023-08-25T03:45:49.585534 | 2023-04-04T13:28:20 | 2023-04-04T13:28:20 | 114,649,434 | 1,798 | 429 | BSD-3-Clause | 2023-05-22T09:56:21 | 2017-12-18T14:17:43 | Java | UTF-8 | Java | false | false | 2,312 | java | /*
* Copyright (c) 2018, Nordic Semiconductor
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package no.nordicsemi.android.ble.callback;
import android.bluetooth.BluetoothDevice;
import androidx.annotation.IntRange;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import no.nordicsemi.android.ble.data.DataMerger;
@FunctionalInterface
public interface ReadProgressCallback {
/**
* Callback received each time the value was read or has changed using notifications or
* indications when {@link DataMerger} was used.
*
* @param device the target device.
* @param data the last packet received.
* @param index the index of a packet that will be merged into a single Data.
*/
void onPacketReceived(@NonNull final BluetoothDevice device,
@Nullable final byte[] data, @IntRange(from = 0) final int index);
}
| [
"[email protected]"
] | |
4f44ae6a19afd795a1402514ac50162a61611083 | 16c8ff95dee93a5444d9b425613b79c0e8107597 | /app/src/main/java/com/novel/read/widget/RefreshLayout.java | d5511d5946c860a09b46e6eb4f00e942b78ed48a | [
"Apache-2.0"
] | permissive | zhaoxianjin/reader | 258e77a140b5ba4e1bdc654c78b50fd94687b5d2 | 2dcbad56a14625925253941509753f8051efcbf7 | refs/heads/master | 2020-09-15T01:42:16.866484 | 2019-11-19T05:47:19 | 2019-11-19T05:47:19 | 223,318,213 | 1 | 0 | null | 2019-11-22T03:45:20 | 2019-11-22T03:45:19 | null | UTF-8 | Java | false | false | 7,551 | java | package com.novel.read.widget;
import android.content.Context;
import android.content.res.TypedArray;
import android.os.Parcel;
import android.os.Parcelable;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import com.novel.read.R;
public class RefreshLayout extends FrameLayout {
private static final String TAG = "RefreshLayout";
protected static final int STATUS_LOADING = 0;
protected static final int STATUS_FINISH = 1;
protected static final int STATUS_ERROR = 2;
protected static final int STATUS_EMPTY = 3;
private Context mContext;
private int mEmptyViewId;
private int mErrorViewId;
private int mLoadingViewId;
private View mEmptyView;
private View mErrorView;
private View mLoadingView;
private View mContentView;
private OnReloadingListener mListener;
private int mStatus = 0;
public RefreshLayout(Context context) {
this(context, null);
}
public RefreshLayout(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public RefreshLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
mContext = context;
initAttrs(attrs);
initView();
}
private void initAttrs(AttributeSet attrs) {
TypedArray typedArray = mContext.obtainStyledAttributes(attrs, R.styleable.RefreshLayout);
mEmptyViewId = typedArray.getResourceId(R.styleable.RefreshLayout_layout_refresh_empty, R.layout.view_empty);
mErrorViewId = typedArray.getResourceId(R.styleable.RefreshLayout_layout_refresh_error, R.layout.view_net_error);
mLoadingViewId = typedArray.getResourceId(R.styleable.RefreshLayout_layout_refresh_loading, R.layout.view_loading);
typedArray.recycle();
}
private void initView() {
//添加在empty、error、loading 情况下的布局
mEmptyView = inflateView(mEmptyViewId);
mErrorView = inflateView(mErrorViewId);
mLoadingView = inflateView(mLoadingViewId);
addView(mEmptyView);
addView(mErrorView);
addView(mLoadingView);
//设置监听器
mErrorView.setOnClickListener(
(view) -> {
if (mListener != null) {
toggleStatus(STATUS_LOADING);
mListener.onReload();
}
}
);
}
@Override
protected void onFinishInflate() {
super.onFinishInflate();
toggleStatus(STATUS_LOADING);
}
@Override
public void onViewAdded(View child) {
super.onViewAdded(child);
if (getChildCount() == 4) {
mContentView = child;
}
}
//除了自带的数据,保证子类只能够添加一个子View
@Override
public void addView(View child) {
if (getChildCount() > 4) {
throw new IllegalStateException("RefreshLayout can host only one direct child");
}
super.addView(child);
}
@Override
public void addView(View child, int index) {
if (getChildCount() > 4) {
throw new IllegalStateException("RefreshLayout can host only one direct child");
}
super.addView(child, index);
}
@Override
public void addView(View child, ViewGroup.LayoutParams params) {
if (getChildCount() > 4) {
throw new IllegalStateException("RefreshLayout can host only one direct child");
}
super.addView(child, params);
}
@Override
public void addView(View child, int index, ViewGroup.LayoutParams params) {
if (getChildCount() > 4) {
throw new IllegalStateException("RefreshLayout can host only one direct child");
}
super.addView(child, index, params);
}
public void showLoading() {
if (mStatus != STATUS_LOADING) {
toggleStatus(STATUS_LOADING);
}
}
public void showFinish() {
if (mStatus == STATUS_LOADING) {
toggleStatus(STATUS_FINISH);
}
}
public void showError() {
if (mStatus != STATUS_ERROR) {
toggleStatus(STATUS_ERROR);
}
}
public void showEmpty() {
if (mStatus != STATUS_EMPTY) {
toggleStatus(STATUS_EMPTY);
}
}
//视图根据状态切换
private void toggleStatus(int status) {
switch (status) {
case STATUS_LOADING:
mLoadingView.setVisibility(VISIBLE);
mEmptyView.setVisibility(GONE);
mErrorView.setVisibility(GONE);
if (mContentView != null) {
mContentView.setVisibility(GONE);
}
break;
case STATUS_FINISH:
if (mContentView != null) {
mContentView.setVisibility(VISIBLE);
}
mLoadingView.setVisibility(GONE);
mEmptyView.setVisibility(GONE);
mErrorView.setVisibility(GONE);
break;
case STATUS_ERROR:
mErrorView.setVisibility(VISIBLE);
mLoadingView.setVisibility(GONE);
mEmptyView.setVisibility(GONE);
if (mContentView != null) {
mContentView.setVisibility(GONE);
}
break;
case STATUS_EMPTY:
mEmptyView.setVisibility(VISIBLE);
mErrorView.setVisibility(GONE);
mLoadingView.setVisibility(GONE);
if (mContentView != null) {
mContentView.setVisibility(GONE);
}
break;
}
mStatus = status;
}
public void setOnReloadingListener(OnReloadingListener listener) {
mListener = listener;
}
private View inflateView(int id) {
return LayoutInflater.from(mContext).inflate(id, this, false);
}
//数据存储
@Override
protected Parcelable onSaveInstanceState() {
Parcelable superParcel = super.onSaveInstanceState();
SavedState savedState = new SavedState(superParcel);
savedState.status = mStatus;
return savedState;
}
@Override
protected void onRestoreInstanceState(Parcelable state) {
SavedState savedState = (SavedState) state;
super.onRestoreInstanceState(savedState.getSuperState());
//刷新状态
toggleStatus(savedState.status);
}
static class SavedState extends BaseSavedState {
int status;
SavedState(Parcelable superState) {
super(superState);
}
private SavedState(Parcel in) {
super(in);
status = in.readInt();
}
@Override
public void writeToParcel(Parcel out, int flags) {
super.writeToParcel(out, flags);
out.writeInt(status);
}
public static final Creator<SavedState> CREATOR
= new Creator<SavedState>() {
public SavedState createFromParcel(Parcel in) {
return new SavedState(in);
}
public SavedState[] newArray(int size) {
return new SavedState[size];
}
};
}
//添加错误重新加载的监听
public interface OnReloadingListener {
void onReload();
}
}
| [
"[email protected]"
] | |
6dd404cc4483a6bdbf7ada23c5157f01ca99c070 | 0258393c58330a12703883de05aaaad1df5f1af7 | /src/main/java/com/entity/Code.java | ee858b4a6a0b75dda2f8ba5d84c9c25af5a3bd95 | [
"MIT"
] | permissive | flyboss/codesearch-web | 7a2fe479fec06055d55996482337099dd1963c65 | f2cbbbc7dd8a46d950d1ebd26b8f820512d0fb80 | refs/heads/master | 2020-03-14T02:01:20.529528 | 2018-05-13T03:41:01 | 2018-05-13T03:41:01 | 131,390,478 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,073 | java | package com.entity;
import com.util.StringUtil;
import javax.persistence.*;
import java.util.HashSet;
import java.util.Set;
/**
* Created by flyboss on 2018/4/4.
*/
@Entity
@Table(name = "code")
public class Code {
@Column(name = "code_id", unique = true, nullable = false)
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
@Column(name = "fullname")
private String fullName;
@Column(name = "package")
private String codePackage;
@Column(name = "class")
private String codeClass;
@Column(name = "origin_name")
private String originName;
@Column(name = "startline")
private Integer startline;
@Column(name = "endline")
private Integer endline;
@Column(name = "origin_body")
private String originBody;
@Column(name = "filepath")
private String filepath;
@Column(name = "url")
private String url;
@Column(name = "search_Name")
private String searchName;
@Column(name = "search_body")
private String searchBody;
@Column(name = "doc")
private String doc;
@ManyToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER)
@JoinTable(name = "code_doc",
joinColumns = {@JoinColumn(name = "code_id")},
inverseJoinColumns = {@JoinColumn(name = "doc_id")})
private Set<Doc> docs = new HashSet<Doc>();
public Code() {
}
public Code(String codePackage, String codeClass, String originName, Integer startline, Integer endline, String originBody, String filepath, String doc, Set<Doc> docs,String url) {
this.codePackage = codePackage;
this.codeClass = codeClass;
this.originName = originName;
this.startline = startline;
this.endline = endline;
this.originBody = originBody;
this.filepath = filepath;
this.doc = doc;
this.docs = docs;
this.fullName=codePackage+"."+codeClass+"."+originName;
this.searchName =StringUtil.preDispose(this.fullName);
this.searchBody = StringUtil.preDispose(this.doc+" "+this.originBody);
this.url=url;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
public String getCodePackage() {
return codePackage;
}
public void setCodePackage(String codePackage) {
this.codePackage = codePackage;
}
public String getCodeClass() {
return codeClass;
}
public void setCodeClass(String codeClass) {
this.codeClass = codeClass;
}
public String getOriginName() {
return originName;
}
public void setOriginName(String name) {
this.originName = name;
}
public Integer getStartline() {
return startline;
}
public void setStartline(Integer startline) {
this.startline = startline;
}
public Integer getEndline() {
return endline;
}
public void setEndline(Integer span) {
this.endline = span;
}
public String getOriginBody() {
return originBody;
}
public void setOriginBody(String codeText) {
this.originBody = codeText;
}
public String getFilepath() {
return filepath;
}
public void setFilepath(String filepath) {
this.filepath = filepath;
}
public Set<Doc> getDocs() {
return docs;
}
public void setDocs(Set<Doc> docs) {
this.docs = docs;
}
public String getSearchName() {
return searchName;
}
public void setSearchName(String searchName) {
this.searchName = searchName;
}
public String getSearchBody() {
return searchBody;
}
public void setSearchBody(String searchBody) {
this.searchBody = searchBody;
}
public String getDoc() {
return doc;
}
public void setDoc(String doc) {
this.doc = doc;
}
public String getUrl() {
return url;
}
public void setUrl(String webpath) {
this.url = webpath;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Code)) return false;
Code code = (Code) o;
return getId().equals(code.getId());
}
@Override
public int hashCode() {
return getId().hashCode();
}
@Override
public String toString() {
return "Code{" +
"id=" + id +
", fullName='" + fullName + '\'' +
", codePackage='" + codePackage + '\'' +
", codeClass='" + codeClass + '\'' +
", searchName='" + originName + '\'' +
", startSpan=" + startline +
", length=" + endline +
", codeText='" + originBody + '\'' +
", filepath='" + filepath + '\'' +
'}';
}
}
| [
"[email protected]"
] | |
6ac70aa28ccaa3aeb94fe3c3a27dab3a68355f4e | f06a06429530e28fd3f31e46c0bbab559b0c7d74 | /src/main/java/org/heavywater/engine/CollisionResolver.java | 23689382fce6037d9c70615d509c0b305955eb3a | [] | no_license | bucketsize-contrib/heavywater | 1dc7e594557ce600535659db27fcdd5c6d97276d | f46fd91437d4715c4fb2e2c67d5288e043e66891 | refs/heads/master | 2021-07-03T12:03:30.344900 | 2014-05-17T12:50:21 | 2014-05-17T12:50:21 | 2,420,999 | 0 | 0 | null | 2020-10-12T17:59:54 | 2011-09-20T07:43:53 | Java | UTF-8 | Java | false | false | 202 | java | package org.heavywater.engine;
import java.util.List;
import org.heavywater.core.Entity;
public class CollisionResolver extends Resolver {
public void resolve(List<Entity> entities){
// TODO
}
}
| [
"[email protected]"
] | |
b427559c35a2733eb8ce81c314588832c7e7820c | b646fecb7b2524f1a7ef912a9958ae8320651dae | /Today/src/com/nsep/servlet/BankServlet.java | 639144c48352bc11bee86fa9a75714d3b23d222b | [] | no_license | nuggus/Java-WebApplication-Using-Servlets | e41b311bfac0cf19aebf4044c47399851a24097e | c717dc5865831ea337598f5b58f140e3020e1447 | refs/heads/master | 2016-09-12T06:14:17.264165 | 2016-05-24T16:20:57 | 2016-05-24T16:20:57 | 51,269,581 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,354 | java | package com.nsep.servlet;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.nsep.dao.BankDao;
import com.nsep.dom.BankDtls;
/**
* Servlet implementation class BankServlet
*/
public class BankServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
/**
* @see HttpServlet#HttpServlet()
*/
public BankServlet() {
super();
// TODO Auto-generated constructor stub
}
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
}
/**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
String bankName = request.getParameter("Bname");
String city = request.getParameter("city");
String disablebox = request.getParameter("disablebox");
String sname = request.getParameter("Sname");
String bcode=request.getParameter("bcode");
String scontact = request.getParameter("Scontact");
String[] actype = request.getParameterValues("actype");
String actTypes = "";
for(int i=0;i<actype.length;i++)
{
actTypes = actTypes + actype[i] + ",";
}
//System.out.println("actype:"+actype);
String national = request.getParameter("national");
System.out.println("national:"+national);
BankDtls bankDtls = new BankDtls();
bankDtls.setBankLocation(city);
bankDtls.setBankName(bankName);
bankDtls.setSpocName(sname);
bankDtls.setMobileNo(Long.parseLong(scontact));
bankDtls.setTypeOfAccounts(actTypes);
bankDtls.setBankType(national);
bankDtls.setBcode(bcode);
BankDao dao = new BankDao();
PrintWriter out = response.getWriter();
int flag=dao.verifybank(bankDtls);
if(flag!=0)
{
dao.createBankDtls(bankDtls);
out.println("data entered successfully");
}
else
out.println(" BANK is Registered Already!");
}
}
| [
"[email protected]"
] | |
c83e30f3c3b191824ec98752429eabc882b49fdc | c188408c9ec0425666250b45734f8b4c9644a946 | /open-sphere-base/core/src/main/java/io/opensphere/core/StatisticsManager.java | 46ea511d1a20e41b1de041e1ba96ab787d699074 | [
"LicenseRef-scancode-free-unknown",
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] | permissive | rkausch/opensphere-desktop | ef8067eb03197c758e3af40ebe49e182a450cc02 | c871c4364b3456685411fddd22414fd40ce65699 | refs/heads/snapshot_5.2.7 | 2023-04-13T21:00:00.575303 | 2020-07-29T17:56:10 | 2020-07-29T17:56:10 | 360,594,280 | 0 | 0 | Apache-2.0 | 2021-04-22T17:40:38 | 2021-04-22T16:58:41 | null | UTF-8 | Java | false | false | 1,673 | java | package io.opensphere.core;
import io.opensphere.core.orwell.ApplicationStatistics;
import io.opensphere.core.orwell.GraphicsStatistics;
import io.opensphere.core.orwell.SessionStatistics;
import io.opensphere.core.orwell.SystemStatistics;
import io.opensphere.core.orwell.UserStatistics;
/**
* A simple manager interface in which the various objects used to gather and maintain statistics.
*/
public interface StatisticsManager
{
/**
* Gets the container in which the statistics describing the operating system are stored.
*
* @return the container in which the statistics describing the operating system are stored.
*/
SystemStatistics getSystemStatistics();
/**
* Gets the container in which the statistics describing the graphics system are stored.
*
* @return the container in which the statistics describing the graphics system are stored.
*/
GraphicsStatistics getGraphicsStatistics();
/**
* Gets the container in which the statistics describing the application are stored.
*
* @return the container in which the statistics describing the application are stored.
*/
ApplicationStatistics getApplicationStatistics();
/**
* Gets the container describing the user currently executing the application.
*
* @return the container describing the user currently executing the application.
*/
UserStatistics getUserStatistics();
/**
* Gets the statistics container describing the user's current session.
*
* @return the statistics container describing the user's current session.
*/
SessionStatistics getSessionStatistics();
}
| [
"[email protected]"
] | |
283d99feed8665a8ca434ebb85314e3b17c27042 | e49f9a9b3be34ebfdc38e391acbf8519c8eb70e1 | /core/src/main/java/com/zhancheng/dao/CaseLikeMapper.java | bc6cc7e065dcb8598894e3010ca1ae6190e43c70 | [] | no_license | qunniao/jinting_api | 88d69594429a73bfe05437425d0f91efa8886c92 | d8063f05b210cf0e5ff2c1601217cfcdc47f8be1 | refs/heads/master | 2022-04-23T15:45:16.100029 | 2020-04-24T19:50:25 | 2020-04-24T19:50:25 | 258,608,772 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 510 | java | package com.zhancheng.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.zhancheng.vo.CaseLikeVo;
import com.zhancheng.entity.CaseLike;
import java.util.List;
/**
* <p>
* 案例浏览点赞收藏 Mapper 接口
* </p>
*
* @author tangchao
* @since 2019-08-15
*/
public interface CaseLikeMapper extends BaseMapper<CaseLike> {
/**
* 查询案例收藏列表
* @param uid
* @return
*/
List<CaseLikeVo> queryList(Long uid);
}
| [
"[email protected]"
] | |
2b0a46f1585efae760af99f93aae38a597d0b55d | 64abe43ac9ac7e152e20faac30d908f45a9ced5c | /src/com/tys/generics/BasePage.java | a34e3d4b3507dd1749c7c4b4baa5ce4e925b6f9d | [] | no_license | RatnakarShetty/demo10 | 6b1f2787e14a114c8e1352fb6bb924f252d19278 | 27d36fa3b6de54b8df19557b1c7ac53455c4462d | refs/heads/master | 2021-08-07T23:55:58.666485 | 2017-11-09T06:17:50 | 2017-11-09T06:17:50 | 110,074,761 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,849 | java | package com.tys.generics;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.PageFactory;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.testng.Assert;
import org.testng.Reporter;
public class BasePage {
public static WebDriver driver;
public BasePage(WebDriver driver) {
this.driver = driver;
PageFactory.initElements(driver, this);
}
public void verifyTitle(String eTitle) {
WebDriverWait wait = new WebDriverWait(driver, 21);
try {
wait.until(ExpectedConditions.titleIs(eTitle));
Reporter.log("Title is matching ---" + eTitle, true);
} catch (Exception e) {
Reporter.log("Title is not matching ---" + eTitle, true);
Assert.fail();
}
}
public void verifyElementIsPresent(WebElement element) {
WebDriverWait wait = new WebDriverWait(driver, 21);
try {
wait.until(ExpectedConditions.visibilityOf(element));
Reporter.log("Element is visible ---" + element, true);
} catch (Exception e) {
Reporter.log("Element is not visible ---" + element, true);
Assert.fail();
}
}
public boolean verifyElementIsPresentnew(WebElement element) {
WebDriverWait wait = new WebDriverWait(driver, 21);
try {
wait.until(ExpectedConditions.visibilityOf(element));
if (element.getText().equalsIgnoreCase("You have already subscribed to our newsletter")
|| element.getText().equalsIgnoreCase("Thank you for subscribing to our newsletter.")) {
// Reporter.log("Element is visible ---" + element, true);
return true;
} else {
// Reporter.log("Element is not visible ---" + element, true);
return true;
}
} catch (Exception e) {
Reporter.log("Element is not visible ---" + element, true);
Assert.fail();
return false;
}
}
}
| [
"[email protected]"
] | |
9eb34113dc8516bfa733968d8038f3591b496c66 | 486b6932931dfda418cfb79cf0ea229d5b72ad1e | /test/testclasses/src/main/java/jvm/ex/UncaughtTest.java | 78ef4b41579e52347eaa3a70288d5cde2915523a | [
"MIT"
] | permissive | jiweigang1/jvm.go | 2e2a1b589ab4d1e6e796109d0412d54747226547 | a0e1f8854887ae97f6a11e310cc062445c8d6205 | refs/heads/master | 2021-04-09T22:47:43.618983 | 2020-11-15T14:52:07 | 2020-11-15T14:52:07 | 248,888,705 | 0 | 1 | MIT | 2020-08-31T07:50:08 | 2020-03-21T01:57:58 | Go | UTF-8 | Java | false | false | 326 | java | package jvm.ex;
public class UncaughtTest {
public static void main(String[] args) {
foo();
}
private static void foo() {
bar();
}
private static void bar() {
bad();
}
private static void bad() {
throw new RuntimeException("BAD!");
}
}
| [
"[email protected]"
] | |
0e64e5747e713d6e4b6976e4c7d4662a1bc9b8ff | e16d6a78fc5fa5c5d87637c17c82780a48b79a09 | /bms/src/pers/yijin/bms/web/action/StationAction.java | a0c941ee747b25607209718d5fe2839999fa2d67 | [] | no_license | facebesidewyj/Bus-Management | ef2207819be6d5e32ce89e37009ae2dbc3262076 | 42295922d830132f3465414b6756e8f541d91360 | refs/heads/master | 2021-01-19T21:00:58.716631 | 2017-12-14T09:59:12 | 2017-12-14T09:59:12 | 88,591,716 | 3 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,556 | java | package pers.yijin.bms.web.action;
import org.apache.struts2.ServletActionContext;
import pers.yijin.bms.base.BaseAction;
import pers.yijin.bms.domain.Station;
import pers.yijin.bms.page.PageBean;
@SuppressWarnings("serial")
public class StationAction extends BaseAction<Station> {
public String showInfo(){
PageBean<Station> pageBean = this.getStationService().findAllByPageWithNoCondition(this.getPageNum(), this.getPageSize());
this.push(pageBean);
return "showInfo";
}
public String toAddStation(){
return "toAddStation";
}
public String addStation(){
this.getStationService().addStation(this.getModel());
return "addStation";
}
public String deleteStationById(){
this.getStationService().deleteStationById(this.getModel());
return "deleteStationById";
}
public String updateStationByIdForUI(){
Station station = this.getStationService().findStationById(this.getModel());
this.push(station);
return "updateStationByIdForUI";
}
public String updateStation(){
this.getStationService().updateStationById(this.getModel());
return "updateStation";
}
public String findStationByName() throws Exception{
Station station = this.getStationService().findStationByName(this.getModel().getStationName());
ServletActionContext.getResponse().setContentType("text/html;charset=UTF-8");
if(station != null)
{
ServletActionContext.getResponse().getWriter().write("站点已被添加过");
}else{
ServletActionContext.getResponse().getWriter().print("站点可以使用");
}
return "none";
}
}
| [
"[email protected]"
] | |
3a77a958cf5be0def9f76d40122eb5ba1be5b303 | f0bc975731520f3dbdf98cc6453c69b9c3218549 | /javaProject/src/javaProject/s_signup.java | f8997addf44ab8585e36bd76850dc880d30a921b | [] | no_license | preeti2898/java_project | 4e51660be0b24947ce69b38d36150d9179301a22 | 451e788b02cfb526ab73b0cd75cc93b3ae62824a | refs/heads/master | 2020-11-24T00:11:05.511610 | 2019-12-13T16:20:49 | 2019-12-13T16:20:49 | 227,877,236 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,385 | java | package javaProject;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.text.SimpleDateFormat;
import java.time.chrono.JapaneseDate;
import javax.swing.DefaultComboBoxModel;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
import javax.swing.text.JTextComponent;
import com.mysql.jdbc.exceptions.MySQLIntegrityConstraintViolationException;
public class s_signup extends JFrame
{
JFrame frame;
private static JLabel label;
private static JLabel label1;
private static JLabel sname;
private static JLabel year;
private static JLabel email;
private static JLabel course;
private static JLabel all;
private static JLabel branch;
private static JLabel mob;
private static JLabel date;
private static JTextField sname1;
//private static JTextField year1;
private static JComboBox year2;
private static JTextField email1;
private static JTextField course1;
//private static JTextField branch1;
private static JComboBox branch2;
private static JTextField mob1;
private static JTextField date1;
private static JButton btn,btn4;
///////////////////sign up///////////////////
private static JFrame frame1;
private static JLabel label2;
private static JLabel label3;
private static JLabel label4;
private static JLabel label5;
private static JTextField field2;
private static JPasswordField field3;
private static JPasswordField field4;
private static JButton btn2,btn3;
public s_signup()
{
frame1=new JFrame();
frame1.setResizable(false);
frame1.setTitle("Create new Account");
ImageIcon img=new ImageIcon("C:\\Users\\HP\\Desktop\\image2.jpg");
all=new JLabel("",img,JLabel.CENTER);
all.setBounds(0,0,800,800);
label5=new JLabel("Sign_up into Account");
label5.setBounds(200,100,400,50);
Font labelFont888=label5.getFont();
String labelText888=label5.getText();
label5.setFont(new Font(labelFont888.getName(),Font.PLAIN,30));
label2=new JLabel("Email_id");
label2.setBounds(50,200,200,25);
Font labelFont111=label2.getFont();
String labelText111=label2.getText();
label2.setFont(new Font(labelFont111.getName(),Font.PLAIN,20));
label3=new JLabel("Password");
label3.setBounds(50,300,200,25);
Font labelFont222=label3.getFont();
String labelText222=label3.getText();
label3.setFont(new Font(labelFont222.getName(),Font.PLAIN,20));
label4=new JLabel("Confirm Password");
label4.setBounds(50,400,200,25);
Font labelFont333=label4.getFont();
String labelText333=label4.getText();
label4.setFont(new Font(labelFont333.getName(),Font.PLAIN,20));
field2=new JTextField("");
field2.setBounds(450,200,300,25);
Font labelFont444=field2.getFont();
String labelText444=field2.getText();
field2.setFont(new Font(labelFont444.getName(),Font.PLAIN,12));
field3=new JPasswordField("");
field3.setBounds(450,300,300,25);
Font labelFont555=field3.getFont();
String labelText555=field3.getText();
field3.setFont(new Font(labelFont555.getName(),Font.PLAIN,12));
field4=new JPasswordField("");
field4.setBounds(450,400,300,25);
Font labelFont666=field4.getFont();
String labelText666=field4.getText();
field4.setFont(new Font(labelFont666.getName(),Font.PLAIN,12));
btn3=new JButton("Back");
btn3.setBounds(50,700,100,40);
Font labelFontt1=btn3.getFont();
String labelTextt1=btn3.getText();
btn3.setFont(new Font(labelFontt1.getName(),Font.PLAIN,10));
btn3.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
new student_page();
frame1.dispose();
}
});
btn2=new JButton("Next");
btn2.setBounds(600,700,100,40);
Font labelFont777=btn2.getFont();
String labelText777=btn2.getText();
btn2.setFont(new Font(labelFont777.getName(),Font.PLAIN,10));
btn2.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
try
{
boolean status=Validation.email_Validation(field2.getText());
if(status)
{
Class.forName("com.mysql.jdbc.Driver");
Connection conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/javaproject","root","");
String sql9="Select ss_email,ss_pass from student_signup where ss_email='"+field2.getText()+"'";
PreparedStatement pst9=conn.prepareStatement(sql9);
ResultSet rst9=pst9.executeQuery();
String pass1=field3.getText();
String pass2=field4.getText();
final String pass3=field3.getText();
int l=pass3.length();
if(l>=4)
{
if(pass1.equals(pass2))
{
if(!rst9.next())
{
String sql8="insert into student_signup"+"(ss_email,ss_pass)"+"values(?,?)";
PreparedStatement pst8=conn.prepareStatement(sql8);
pst8.setString(1,field2.getText());
pst8.setString(2,field3.getText());
pst8.executeUpdate();
System.out.println("Successfully signed up!!");
JOptionPane.showMessageDialog(null,"Successfully signed-up!!", "MESSAGE",JOptionPane.INFORMATION_MESSAGE);
//frame.dispose();
reg();
frame1.dispose();
}
else
{
System.out.println("account already exists from this email");
dispose();
}
}else
{
JOptionPane.showMessageDialog(null,"Password Mismatched", "ERROR",JOptionPane.ERROR_MESSAGE);
}
}else if(l<4)
{
JOptionPane.showMessageDialog(null,"Minimum 4 char required for password", "ERROR",JOptionPane.ERROR_MESSAGE);
}
}else
{
JOptionPane.showMessageDialog(null,"Invalid Email", "Error",JOptionPane.ERROR_MESSAGE);
}
//new stud_register();
}catch(Exception ev1)
{
System.out.println(ev1);
}
}
});
frame1.add(label2);
frame1.add(label3);
frame1.add(label4);
frame1.add(label5);
frame1.add(field2);
frame1.add(field3);
frame1.add(field4);
frame1.add(btn2);
frame1.add(btn3);
frame1.add(all);
frame1.setSize(800,800);
frame1.setLayout(null);
frame1.setVisible(true);
}
public void reg()
{
frame=new JFrame();
frame.setTitle("student sign_up");
ImageIcon img=new ImageIcon("C:\\Users\\HP\\Desktop\\image2.jpg");
all=new JLabel("",img,JLabel.CENTER);
all.setBounds(0,0,800,800);
frame.setResizable(false);
btn=new JButton("Sign Up");
btn.setBounds(650,710,100,30);
Font labelFont12=btn.getFont();
String labelText12=btn.getText();
btn.setFont(new Font(labelFont12.getName(),Font.PLAIN,10));
btn4=new JButton("Back");
btn4.setBounds(50,710,100,30);
Font labelFontt1=btn4.getFont();
String labelTextt1=btn4.getText();
btn4.setFont(new Font(labelFontt1.getName(),Font.PLAIN,10));
btn4.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
new s_signup();
frame.dispose();
}
});
year2=new JComboBox();
year2.setBounds(300,180,350,25);
DefaultComboBoxModel empModel=new DefaultComboBoxModel();
empModel.addElement("--SELECT--");
empModel.addElement("First year");
empModel.addElement("Second year");
empModel.addElement("Third year");
empModel.addElement("Fourth year");
year2.setModel(empModel);
year2.setSelectedIndex(0);
year2.setEditable(true);
mob1=new JTextField(300);
mob1.setBounds(300,500,350,25);
Font labelFont11=mob1.getFont();
String labelText11=mob1.getText();
mob1.setFont(new Font(labelFont11.getName(),Font.PLAIN,13));
mob1.addKeyListener((KeyListener) new KeyListener()
{
public void keyPressed(java.awt.event.KeyEvent evt)
{
date1.setEditable(true);
final String phoneNumber=mob1.getText();
int length=phoneNumber.length();
char c=evt.getKeyChar();
if(evt.getKeyChar()>='0' && evt.getKeyChar()<='9')
{
if(length<10)
{
mob1.setEditable(true);
}
else
{
mob1.setEditable(false);
}
}
else
{
if(evt.getExtendedKeyCode()==KeyEvent.VK_BACK_SPACE || evt.getExtendedKeyCode()==KeyEvent.VK_DELETE)
{
mob1.setEditable(true);
}
else
{
mob1.setEditable(false);
}
}
}
public void keyTyped(KeyEvent e)
{ }
public void keyReleased(KeyEvent e)
{
}
});
btn.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
/* public void actionPerformed(ActionEvent e)
{
String pass=password2.getText();
try
{
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/javaproject","root","");
String sql="Select a_name,a_password from admin_table where a_password='"+password2.getText()+"'";
PreparedStatement pst=con.prepareStatement(sql);
ResultSet rs=pst.executeQuery();
// rs.beforeFirst();
rs.next();
if(pass.equals(rs.getString("a_password")))
{
new menuForm();
System.out.println("login successfully");
}
else
{
System.out.println("wrong password");
}
}catch(Exception ev)
{
System.out.println(ev);
}
}*/
String emaill=email1.getText();
try
{
String s1=sname1.getText();int i11=s1.length();
String s2=email1.getText();int i22=s2.length();
String s3=course1.getText();int i33=s3.length();
String s4=date1.getText();int i44=s4.length();
String s5=mob1.getText();int i55=s5.length();
String value1=branch2.getSelectedItem().toString();
String valuee=year2.getSelectedItem().toString();
if(i11!=0 && i22!=0 && i33!=0 && i44!=0 && i55!=0)
{
if(value1.equals("CS/IT") || value1.equals("MECH") || value1.equals("ELECTRICAL") || value1.equals("ELECTRONICS") || value1.equals("CIVIL"))
{
if(valuee.equals("First year") || valuee.equals("Second year") || valuee.equals("Third year") || valuee.equals("Fourth year"))
{
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/javaproject","root","");
String sql="Select s_name,s_year,s_email,s_course,s_branch,s_mob,s_date from student_table where s_email='"+email1.getText()+"'";
PreparedStatement pst=con.prepareStatement(sql);
ResultSet rst=pst.executeQuery();
/*rst.next();
rs.beforeFirst();
if(rst.next())
if(emaill.equals(rst.getString("s_email")))
if(rst==null)
if(rst.getString("s_email")==null)
if(emaill.equals(rst.getString("s_email")))*/
if(!rst.next())
{
String sqll="insert into student_table"+"(s_name,s_year,s_email,s_course,s_branch,s_mob,s_date)"+"values(?,?,?,?,?,?,?)";
PreparedStatement pstt=con.prepareStatement(sqll);
pstt.setString(1,sname1.getText());
String value=year2.getSelectedItem().toString();
pstt.setString(2,value);
pstt.setString(3,email1.getText());
pstt.setString(4,course1.getText());
String value2=branch2.getSelectedItem().toString();
pstt.setString(5,value2);
pstt.setString(6,mob1.getText());
pstt.setString(7,date1.getText());
pstt.executeUpdate();
System.out.println("account created");
//frame.dispose();
JOptionPane.showMessageDialog(null,"Student Registered", "MESSAGE",JOptionPane.INFORMATION_MESSAGE);
//frame.dispose();
//new stud_register();
JOptionPane.showMessageDialog(null,"Your Email_id will be your user_name for login", "MESSAGE",JOptionPane.INFORMATION_MESSAGE);
new student_page();
frame.dispose();
}
else
{
JOptionPane.showMessageDialog(null,"Account already exists from this email", "ERROR",JOptionPane.ERROR_MESSAGE);
System.out.println("account already exists from this email");
dispose();
}
}else
{
JOptionPane.showMessageDialog(null,"Please select proper year", "ERROR",JOptionPane.ERROR_MESSAGE);
}
}else
{
JOptionPane.showMessageDialog(null,"Please select proper branch", "ERROR",JOptionPane.ERROR_MESSAGE);
}
}
else
{
JOptionPane.showMessageDialog(null,"Can't take null values", "ERROR",JOptionPane.ERROR_MESSAGE);
}
//new stud_register();
}catch(Exception ev1)
{
System.out.println(ev1);
JOptionPane.showMessageDialog(null,"Check Details OR check 'Date'", "ERROR",JOptionPane.ERROR_MESSAGE);
}
}
});
label1=new JLabel("Student Registration Form");
label1.setBounds(180,20,550,50);
Font labelFontt1111=label1.getFont();
String labelTextt1111=label1.getText();
label1.setFont(new Font(labelFontt1111.getName(),Font.PLAIN,30));
label=new JLabel("Enter your details for sign_in into app");
label.setBounds(5,5,300,15);
Font labelFontt=label.getFont();
String labelTextt=label.getText();
label.setFont(new Font(labelFontt.getName(),Font.PLAIN,10));
sname=new JLabel("Student Name:");
sname.setBounds(50,100,200,25);
Font labelFont=sname.getFont();
String labelText=sname.getText();
sname.setFont(new Font(labelFont.getName(),Font.PLAIN,20));
year=new JLabel("Year:");
year.setBounds(50,180,200,25);
Font labelFont1=year.getFont();
String labelText1=year.getText();
year.setFont(new Font(labelFont1.getName(),Font.PLAIN,20));
email=new JLabel("Email Id:");
email.setBounds(50,260,200,25);
Font labelFont2=email.getFont();
String labelText2=email.getText();
email.setFont(new Font(labelFont2.getName(),Font.PLAIN,20));
course=new JLabel("Course:");
course.setBounds(50,340,200,25);
Font labelFont3=course.getFont();
String labelText3=course.getText();
course.setFont(new Font(labelFont3.getName(),Font.PLAIN,20));
branch=new JLabel("Branch:");
branch.setBounds(50,420,200,25);
Font labelFont4=branch.getFont();
String labelText4=branch.getText();
branch.setFont(new Font(labelFont4.getName(),Font.PLAIN,20));
mob=new JLabel("Mobile No:");
mob.setBounds(50,500,200,25);
Font labelFont5=mob.getFont();
String labelText5=mob.getText();
mob.setFont(new Font(labelFont5.getName(),Font.PLAIN,20));
date=new JLabel("Date:");
date.setBounds(50,580,200,25);
Font labelFonttt=date.getFont();
String labelTexttt=date.getText();
date.setFont(new Font(labelFonttt.getName(),Font.PLAIN,20));
sname1=new JTextField(300);
sname1.setBounds(300,100,350,25);
Font labelFont6=sname1.getFont();
String labelText6=sname1.getText();
sname1.setFont(new Font(labelFont6.getName(),Font.PLAIN,13));
/*year1=new JTextField(300);
year1.setBounds(300,180,350,25);
Font labelFont7=year1.getFont();
String labelText7=year1.getText();
year1.setFont(new Font(labelFont7.getName(),Font.PLAIN,13));*/
email1=new JTextField(field2.getText());
email1.setBounds(300,260,350,25);
Font labelFont8=email1.getFont();
String labelText8=email1.getText();
email1.setFont(new Font(labelFont8.getName(),Font.PLAIN,13));
course1=new JTextField("Btech");
course1.setBounds(300,340,350,25);
Font labelFont9=course1.getFont();
String labelText9=course1.getText();
course1.setFont(new Font(labelFont9.getName(),Font.PLAIN,13));
branch2=new JComboBox();
branch2.setBounds(300,420,350,25);
DefaultComboBoxModel empModel1=new DefaultComboBoxModel();
empModel1.addElement("--SELECT--");
empModel1.addElement("CS/IT");
empModel1.addElement("MECH");
empModel1.addElement("ELECTRICAL");
empModel1.addElement("ELECTRONICS");
empModel1.addElement("CIVIL");
branch2.setModel(empModel1);
branch2.setSelectedIndex(0);
branch2.setEditable(true);
/*branch1=new JTextField(300);
branch1.setBounds(300,420,350,25);
Font labelFont10=branch1.getFont();
String labelText10=branch1.getText();
branch1.setFont(new Font(labelFont10.getName(),Font.PLAIN,13));*/
date1=new JTextField("year-month-date");
date1.setBounds(300,580,350,25);
Font labelFont111=date1.getFont();
String labelText111=date1.getText();
date1.setFont(new Font(labelFont111.getName(),Font.PLAIN,13));
date1.addKeyListener((KeyListener) new KeyListener()
{
public void keyPressed(java.awt.event.KeyEvent evt)
{
String phoneNumber=mob1.getText();
if(phoneNumber.length()<10)
{
JOptionPane.showMessageDialog(null, "Invalid Mobile Number","ERROR",
JOptionPane.INFORMATION_MESSAGE);
date1.setEditable(false);
}
}
public void keyTyped(KeyEvent e) {}
public void keyReleased(KeyEvent e) {
}
});
frame.setSize(800,800);
frame.setLayout(null);
frame.setVisible(true);
//frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
frame.add(label);
frame.add(label1);
frame.add(sname);
frame.add(sname1);
frame.add(year);
//frame.add(year1);
frame.add(year2);
frame.add(email);
frame.add(email1);
frame.add(course);
frame.add(course1);
frame.add(branch);
//frame.add(branch1);
frame.add(branch2);
frame.add(mob);
frame.add(mob1);
frame.add(date);
frame.add(date1);
frame.add(btn);
frame.add(btn4);
frame.add(all);
}
public static void main(String args[])
{
s_signup s1=new s_signup();
}
}
| [
"[email protected]"
] | |
be329dae957e6ec90d4222bd97af87d883a90082 | 32e8412863f95f8f373f4d42943ad396bc8b173d | /src/test/java/_22_Generate_Parentheses/SolutionTest.java | 349dd6b585a4040cd98c6e3c28ae65a314d0481d | [] | no_license | elhaouari/LeetCode-Solutions | ed4f3e1e38a5710fcc8d02c6dc00f6666f9e8e1e | 17014cae330cda51d6f79279768858377bbb3af8 | refs/heads/master | 2023-06-19T13:14:56.572629 | 2021-07-18T15:21:26 | 2021-07-18T15:21:26 | 295,203,729 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 344 | java | package _22_Generate_Parentheses;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class SolutionTest {
@Test
public void testGenerateParenthesis(){
Solution s = new Solution();
assertEquals("[((())), (()()), (())(), ()(()), ()()()]",s.generateParenthesis(3).toString());
}
} | [
"[email protected]"
] | |
6936fbda3025ed9d3d6fa509983575ecdf0f83ce | 0f2dce883abf83a3de61d26dcf39b3d2d8553d21 | /preprocess/Lithology.java | 31067ccd34563bd8583cd5e383e761609a66079d | [] | no_license | mcc12357/decision_tree_modeling | fb6c64ac17aa163848d7f3e57360b21c02455611 | a302713303fb65a9ad839e7c6427f97a49ab72b2 | refs/heads/master | 2020-04-03T17:40:21.199859 | 2019-01-05T08:58:11 | 2019-01-05T08:58:11 | 155,455,042 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,107 | java | package gtl.modeling.src.preprocess;
public class Lithology {
private String sedtype;//沉积类型
private double underheight;//层底埋深
private double heigh;//厚度
private String lithotype;//岩性
public Lithology() {
}
public Lithology(String sedtype, double underheight, double heigh, String lithotype) {
this.sedtype = sedtype;
this.underheight = underheight;
this.heigh = heigh;
this.lithotype = lithotype;
}
public void setHeigh(double heigh) {
this.heigh = heigh;
}
public void setLithotype(String lithotype) {
this.lithotype = lithotype;
}
public void setSedtype(String sedtype) {
this.sedtype = sedtype;
}
public void setUnderheight(double underheight) {
this.underheight = underheight;
}
public double getHeigh() {
return heigh;
}
public double getUnderheight() {
return underheight;
}
public String getLithotype() {
return lithotype;
}
public String getSedtype() {
return sedtype;
}
}
| [
"[email protected]"
] | |
dd8af85bd7e5dd0ce8c28dc7423d5942538763c2 | f515ea53699e50a32d680f838617d8e5711468de | /Basic.java | 57062f5828bc7dff4d13d1b353a0dd9794b2751d | [] | no_license | srujannarmala/java-codes | 41476071c42ee1ddad3671c1ffd8785a47fb6a27 | b994bb083d5cb30b0714d814b0a4fe5b4bb236b7 | refs/heads/master | 2020-05-26T15:48:41.602435 | 2017-05-26T02:55:36 | 2017-05-26T02:55:36 | 85,011,982 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 672 | java | package AddSub;
public class Basic {
public static void main(String arg[]) {
int n1=30;
int n2=20;
int max=car(n1, n2);
System.out.println(max);
int n3=Add(n1, n2);
System.out.println(n3);
int n4 = n1-n2;
System.out.println(n4);
int n5 = n1*n2;
System.out.println(n5);
}
public static int car(int n1, int n2) {
int max;
if (n1 < n2)
max = n1;
else
max = n2;
return max;
}
public static int Add(int n1, int n2){
int n3=n1+n2;
return n3;
}
void div(int n1, int n2){
double n6 = n1/n2;
System.out.println(n6);
}
}
| [
"[email protected]"
] | |
b8c0dc0093ae5d94256a41e1785fb043312aff8e | 3669aecf125e1ef2c7be9deccd8f6c13d32afca4 | /src/cn/way/wandroid/graphics/TagCoverView.java | e3d520d68c63a1e5665afe0f319f28bfe4cc6ead | [] | no_license | w5ea/WAndroid | 8476b6ebbc5e5d41fbaa6f151af527ddead5d1a9 | 79d83f655412eb14f68e4525a00f42817e341476 | refs/heads/master | 2022-10-09T06:08:08.358036 | 2020-06-08T19:59:43 | 2020-06-08T19:59:43 | 20,047,487 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,546 | java | package cn.way.wandroid.graphics;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Bitmap.Config;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Paint.Style;
import android.graphics.PorterDuff.Mode;
import android.graphics.PorterDuffXfermode;
import android.graphics.Rect;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.view.View;
import android.widget.FrameLayout;
public class TagCoverView extends FrameLayout {
private Bitmap mBitmap;//the bitmap hold the draw result
private Canvas mCanvas;//the canvas to draw things on;
private RectF clearRect;//the area for drawing
private Paint mPaint = new Paint();
private OnClickListener onClickTargetListener;
private View targetView;
public TagCoverView(Context context) {
super(context);
//set a background, why no this no work?
setBackgroundColor(Color.argb(0, 0, 0, 0));
}
public TagCoverView(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onLayout(boolean changed, int left, int top, int right,
int bottom) {
super.onLayout(changed, left, top, right, bottom);
init();
}
/**
*
* @param rect use x,y,width,height;
*/
public void setTagRect(Rect rect,boolean addTargetView){
clearRect = new RectF(new Rect(rect.left, rect.top, rect.right+rect.left, rect.bottom+rect.top));
if (addTargetView) {
if (targetView==null) {
targetView = new View(getContext());
// targetView.setBackgroundColor(Color.argb(100, 0, 255, 0));
setupTargetView(rect);
addView(targetView);
}else{
setupTargetView(rect);
}
}
}
private void setupTargetView(Rect rect){
FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(
rect.right, rect.bottom);
params.leftMargin = rect.left;
params.topMargin = rect.top;
targetView.setLayoutParams(params);
}
private void init(){
if (mCanvas==null) {
int width = getWidth(),height = getHeight();
mBitmap = Bitmap.createBitmap(width, height,
Config.ARGB_8888);
mCanvas = new Canvas(mBitmap);
mCanvas.drawColor(Color.argb(100, 0, 0, 0));
if (clearRect==null) {
float density = getResources().getDisplayMetrics().density;
float rectSize = 150*density;
float posX = 0*density;
float posY = 0*density;
clearRect = new RectF(posX, posY, posX+rectSize, posY+rectSize);//the area for drawing
}
mPaint.setFlags(Paint.ANTI_ALIAS_FLAG);
mPaint.setStyle(Style.FILL);
mPaint.setAntiAlias(true);
mPaint.setDither(true);
mPaint.setXfermode(new PorterDuffXfermode(Mode.CLEAR));
// paint.setXfermode(new PorterDuffXfermode(Mode.DST_IN));
mPaint.setColor(Color.argb(255, 0, 0, 255));
// setBackground(new BitmapDrawable(getResources(), mBitmap));
}
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
// init();
// canvas.drawColor(Color.argb(100, 0, 0, 0));
// canvas.drawColor(Color.RED);
mCanvas.drawOval(clearRect, mPaint);
// mCanvas.drawCircle(150, 150, 100, mPaint);
// mCanvas.clipRect(clearRect);
// canvas.drawRoundRect(clearRect, 10, 10, paint);
canvas.drawBitmap(mBitmap, 0, 0, null);
}
public OnClickListener getOnClickTargetListener() {
return onClickTargetListener;
}
public void setOnClickTargetListener(OnClickListener onClickTargetListener) {
this.onClickTargetListener = onClickTargetListener;
if (targetView!=null) {
targetView.setOnClickListener(onClickTargetListener);
}
}
}
| [
"[email protected]"
] | |
b75dadc695d8291a10857b055235ef267bd89743 | 84fa6cf5078802729c5cb8585de3571a75dcadc4 | /Labo/Labo1/firstSpringProject/src/main/java/com/spring/henallux/firstSpringProject/model/Product.java | a7dd4b1f8082af8570106c54dd7a77685f6b7c42 | [] | no_license | AtomicCircus/JavaWebLabo | 76ef21951c33b49553dfcb401ae19b7638848263 | aeb64ccd4a19ba1a0e5170b29c217e65ad5dc5e9 | refs/heads/master | 2021-08-08T13:23:53.939829 | 2017-11-10T11:14:17 | 2017-11-10T11:14:17 | 110,238,584 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,079 | java | package com.spring.henallux.firstSpringProject.model;
import java.awt.*;
public class Product {
private int id;
private String nom;
private int prix;
private String description;
private String image;
public Product(int id,String nom, int prix, String description) {
this.id=id;
this.nom = nom;
this.prix = prix;
this.description = description;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getNom() {
return nom;
}
public void setNom(String nom) {
this.nom = nom;
}
public int getPrix() {
return prix;
}
public void setPrix(int prix) {
this.prix = prix;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
}
| [
"[email protected]"
] | |
23196879a81fd461adfd4e775b4d791786b38e07 | c53ee32324d283c5b652d0db764af1a298dd988d | /189.rotate-array.113341428.ac.java | 93a271e59e5e97cd563ec87adbe11feba1362dd8 | [] | no_license | zhuolikevin/leetcode-java | f5f984e3db99359e2e5df621f1896dfd57030a93 | 712c93bade63829ca13bd88a4ef0600f3439be6d | refs/heads/master | 2020-12-29T00:59:04.999430 | 2017-08-15T17:58:12 | 2017-08-15T17:58:12 | 94,374,971 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 806 | java | /*
* [189] Rotate Array
*
* https://leetcode.com/problems/rotate-array
*
* Easy (24.37%)
* Total Accepted:
* Total Submissions:
* Testcase Example: '[1]\n0'
*
* Can you solve this problem? 🤔
*/
public class Solution {
public void rotate(int[] nums, int k) {
if (nums == null || nums.length == 0) {
return;
}
k = k % nums.length;
reverse(nums, 0, nums.length - 1);
reverse(nums, 0, k - 1);
reverse(nums, k, nums.length - 1);
}
private void reverse(int[] nums, int left, int right) {
while (left < right) {
int temp = nums[left];
nums[left] = nums[right];
nums[right] = temp;
left++;
right--;
}
}
}
| [
"[email protected]"
] | |
4096c9da48b4c50752f595f68d97a3fb13eac0f8 | e51ae3204ebbf4f83c75e10819bf2f9412623ff3 | /app/src/main/java/com/example/adminstrator/login/InitBmob.java | 0073988e0e27ac90a0b5f8531c3f1b3b58c03378 | [] | no_license | Lakers-twenty-four/NoteDemo | ef2bc5bafd2db61cbcbd36298ad41062edd81b5b | e602cc1ba3cdc4638233709bc52897a39925d7c3 | refs/heads/master | 2020-12-30T16:28:35.037653 | 2017-05-11T15:33:18 | 2017-05-11T15:33:18 | 90,995,220 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 376 | java | package com.example.adminstrator.login;
import android.app.Application;
import cn.bmob.v3.Bmob;
/**
* Created by Administrator on 2017/5/11 0011.
*/
public class InitBmob extends Application{
@Override
public void onCreate() {
super.onCreate();
//第一:默认初始化
Bmob.initialize(this,"c2cf3280eabb60e2866b348dbaddff5e");
}
}
| [
"[email protected]"
] | |
2d5b1cd45e74cdadece2fa7f066007a0d4307058 | f8ac584137885dc9f6b894cc83ac477ac351df01 | /src/main/java/com/panyu/annotation/AnnotationDemo.java | d9a2c590224d7d31472533c5e8c560617a433e4e | [] | no_license | PanYubug/gradledemo | a849b37f981759e18e68d3225a69a26c880f3704 | 88c119836b461abeab544e647bab3d1331cacf7f | refs/heads/master | 2023-03-28T04:27:32.689743 | 2021-03-16T17:13:52 | 2021-03-16T17:13:52 | 266,404,899 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,171 | java | package com.panyu.annotation;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
@MyTestAnnotation(getName = "class", getValue = "Annotation")
public class AnnotationDemo {
@MyTestAnnotation(getName = "parameter", getValue = "demoParameter")
private String demoParameter;
@MyTestAnnotation(getName = "method", getValue = "hello")
public void hello() {
System.out.println("hello world");
}
public static void main(String[] args) {
/**
* 获取类注解属性
*/
Class<AnnotationDemo> annotationDemoClass = AnnotationDemo.class;
if (annotationDemoClass.isAnnotationPresent(MyTestAnnotation.class)) {
MyTestAnnotation annotation = annotationDemoClass.getAnnotation(MyTestAnnotation.class);
System.out.println("\"类\"上的注解值获取到第一个 :"
+ annotation.getName() + ",第二个:" + annotation.getValue());
}
/**
* 获取属性、方法的注解属性
*/
try {
Field demoParameterField = annotationDemoClass.getDeclaredField("demoParameter");
if (demoParameterField.isAnnotationPresent(MyTestAnnotation.class)) {
MyTestAnnotation annotation = demoParameterField.getAnnotation(MyTestAnnotation.class);
System.out.println("\"属性\"上的注解值获取到第一个 :"
+ annotation.getName() + ",第二个:" + annotation.getValue());
}
Method helloMethod = annotationDemoClass.getDeclaredMethod("hello");
if (helloMethod != null && helloMethod.isAnnotationPresent(MyTestAnnotation.class)) {
MyTestAnnotation annotation2 = helloMethod.getAnnotation(MyTestAnnotation.class);
System.out.println("\"方法\"上的注解值获取到第一个 :"
+ annotation2.getName() + ",第二个:" + annotation2.getValue());
}
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
}
}
} | [
"[email protected]"
] | |
f557eefc607a5c78cff4f90bb02cd3b454879008 | 80167a7a934050bb57e203348c58374b8f88a334 | /java-io/src/nio/netty/ChannelInitial.java | bff636abf7e0bf9c15cab3f03fcaa734b2a153ae | [] | no_license | zhangwei95/java-learn | 85cee3febd8c77cb308167436df7e0970623f152 | 2914d2f1ca9938caa0c5ba80943a9ed53ead9aa1 | refs/heads/master | 2021-07-07T12:38:35.274740 | 2020-08-08T03:34:34 | 2020-08-08T03:34:34 | 199,953,061 | 0 | 0 | null | 2020-10-13T23:32:54 | 2019-08-01T01:20:46 | Java | UTF-8 | Java | false | false | 499 | java | package nio.netty;
import io.netty.channel.*;
/**
* @Description: 描述
* @Author: zhangwei
* @Date: 2020/7/14 09:57
*/
@ChannelHandler.Sharable
public abstract class ChannelInitial<C extends Channel> extends ChannelInboundHandlerAdapter {
protected abstract void initChannel(C channel) throws Exception;
@Override
public void channelRegistered(ChannelHandlerContext ctx) throws Exception {
initChannel((C)ctx.channel());
ctx.pipeline().remove(this);
}
}
| [
"[email protected]"
] | |
c0eef638ce60aa506f48ff93482ef44e6d6dd03b | 0d1a34b6b12ad48248cb0ff4a939f36e71748f38 | /httpandpicture/src/main/java/utils/ImageUtils.java | 62c1dd8ab393ccf6507b7eec43e1d53f3a47bf6f | [] | no_license | zgyanglinjie/MyCommonApp | fba878b06049b54f432de4af3fff9530bddd397f | c9932c51fd38ad741729bd7a7e0766e4088a97c3 | refs/heads/master | 2021-01-09T21:55:11.982691 | 2016-01-18T03:29:29 | 2016-01-18T03:29:29 | 49,243,292 | 4 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,478 | java | package utils;
import android.graphics.BitmapFactory;
import android.util.DisplayMetrics;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import java.io.InputStream;
import java.lang.reflect.Field;
/**
* Created by yanglinjie on 2016/1/15.
*/
public class ImageUtils {
/**
* 根据InputStream获取图片实际的宽度和高度
*
* @param imageStream
* @return
*/
public static ImageSize getImageSize(InputStream imageStream){
BitmapFactory.Options options=new BitmapFactory.Options();
options.inJustDecodeBounds=true;
BitmapFactory.decodeStream(imageStream,null,options);
return new ImageSize(options.outWidth,options.outHeight);
}
public static int calculateInSampleSize(ImageSize srcSize,ImageSize targetSize){
int width=srcSize.width;
int heigth=srcSize.heigth;
int inSampleSize=1;
int reqWidth=targetSize.width;
int reqHeigth=targetSize.heigth;
if (width>reqWidth&&heigth>reqHeigth){
int widthRatio=Math.round((float)width/(float)reqWidth);
int heigthRatio=Math.round((float)heigth/(float)reqHeigth);
inSampleSize=Math.max(widthRatio,heigthRatio);
}
return inSampleSize;
}
/**
* 根据ImageView获适当的压缩的宽和高
*
* @param view
* @return
*/
public static ImageSize getImageViewSize(View view){
ImageSize imageSize=new ImageSize();
imageSize.width=getExpectWidth(view);
imageSize.heigth=getExpectHeigth(view);
return imageSize;
}
/**
* 根据view获得期望的高度
*
* @param view
* @return
*/
private static int getExpectHeigth(View view){
int heigth=0;
if (view==null){
return 0;
}
final ViewGroup.LayoutParams params=view.getLayoutParams();
//如果是WRAP_CONTENT,此时图片还没加载,getWidth根本无效
if (params!=null&¶ms.width!=ViewGroup.LayoutParams.WRAP_CONTENT){
heigth=view.getHeight();
}
if (heigth<=0&¶ms!=null){
heigth=params.height;
}
if (heigth<=0){
heigth=getImageViewFieldValue(view,"mMaxHeight");//获取设置的最大宽度
}
//如果宽度还是没有获取到,憋大招,使用屏幕的宽度
if (heigth<=0){
DisplayMetrics displayMetrics=view.getContext().getResources().getDisplayMetrics();
heigth=displayMetrics.heightPixels;
}
return heigth;
}
/**
* 根据view获得期望的宽度
*
* @param view
* @return
*/
private static int getExpectWidth(View view){
int width=0;
if (view==null){
return 0;
}
ViewGroup.LayoutParams params=view.getLayoutParams();
if (params!=null&¶ms.width!=ViewGroup.LayoutParams.WRAP_CONTENT){
width=view.getWidth();
}
if (width<=0&¶ms!=null){
width=params.width;
}
if (width<=0){
width=getImageViewFieldValue(view,"mMaxWidth");
}
if (width<=0){
DisplayMetrics displayMetrics=view.getContext().getResources().getDisplayMetrics();
width=displayMetrics.widthPixels;
}
return width;
}
/**
* 通过反射获取imageview的某个属性值
*
* @param object
* @param fieldName
* @return
*/
private static int getImageViewFieldValue(Object object,String fieldName){
int value=0;
try {
Field field=ImageView.class.getDeclaredField(fieldName);
field.setAccessible(true);
int fieldValue=field.getInt(object);
if (fieldValue>0&&fieldValue<Integer.MAX_VALUE){
value=fieldValue;
}
} catch (Exception e) {
e.printStackTrace();
}
return value;
}
public static class ImageSize{
int width;
int heigth;
ImageSize(){
}
ImageSize(int width,int heigth){
this.width=width;
this.heigth=heigth;
}
@Override
public String toString() {
return "ImageSize{" +
"width=" + width +
", heigth=" + heigth +
'}';
}
}
}
| [
"[email protected]"
] | |
de5f3e3aa479e7dff8e36653a4364c5435f4173a | 72a4eed4ccc8b5a29d4976677f70574871c43dca | /addressbook-selenium-tests/src/com/example/fw/WebDriverHelperBase.java | 7116de6d1e189a07b250266961065a9e230e941f | [
"Apache-2.0"
] | permissive | helenii/JavaForTesters | 8ff22d3ad6775321c48f15863ba5620b253ed002 | 09cfee773d133cc740edc3cf24d2d308c47c310a | refs/heads/master | 2020-05-31T03:15:28.732085 | 2015-08-30T15:40:21 | 2015-08-30T15:40:21 | 37,814,404 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,530 | java | package com.example.fw;
import org.openqa.selenium.Alert;
import org.openqa.selenium.By;
import org.openqa.selenium.NoAlertPresentException;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.support.ui.Select;
public abstract class WebDriverHelperBase extends HelperBase {
protected WebDriver driver;
public boolean acceptNextAlert = true;
public WebDriverHelperBase(ApplicationManager manager) {
super(manager);
this.driver = manager.getDriver();
}
public boolean isElementPresent(By by) {
try {
driver.findElement(by);
return true;
} catch (NoSuchElementException e) {
return false;
}
}
public boolean isAlertPresent() {
try {
driver.switchTo().alert();
return true;
} catch (NoAlertPresentException e) {
return false;
}
}
public String closeAlertAndGetItsText() {
try {
Alert alert = driver.switchTo().alert();
String alertText = alert.getText();
if (acceptNextAlert) {
alert.accept();
} else {
alert.dismiss();
}
return alertText;
} finally {
acceptNextAlert = true;
}
}
protected void type(By locator, String text) {
if (text != null) {
driver.findElement(locator).clear();
driver.findElement(locator).sendKeys(text);
}
}
protected void click(By locator) {
driver.findElement(locator).click();
}
protected void selectByText(By locator, String text) {
if (text != null) {
new Select(driver.findElement(locator)).selectByVisibleText(text);
}
}
}
| [
"[email protected]"
] | |
a0daef97358241b6a9d0e5256c4cc019bc7d20d1 | 49a5924ebb63d225279de8c178e6225fb51cb2e4 | /code/Copy of Core_Framework_TestNG/src/com/qtpselenium/suiteB/TestSuiteBase.java | e5343469fb8290d455ddbab5485cd166ba5b796a | [] | no_license | amitdhar15/SeleniumCode | 2499ff00cd255e425023fe8fe6946baf3a64ac34 | 76cd2f39d857a3cd924522293b63074b6c2b157c | refs/heads/master | 2020-03-27T02:30:48.311367 | 2018-08-23T03:52:28 | 2018-08-23T03:52:28 | 145,795,721 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 120 | java | package com.qtpselenium.suiteB;
import com.qtpselenium.base.TestBase;
public class TestSuiteBase extends TestBase{
}
| [
"[email protected]@gmail.com"
] | [email protected]@gmail.com |
674eeb9155b19202ad8cc8531bfadb05081d4411 | 40ba1e621bbbb79ac9b489d37387c857bb98b27b | /src/main/java/org/matrixstudio/boot/repository/jpa/ClientRepository.java | 5eea17e70ad983d33fcc1054ef3976899e4efdff | [] | no_license | yvanme/spring-boot | b8234ae6db0fef508479ece9f3a947aa1def0c41 | 47f0b40c3e2f69de613dedb0319d125ebb1fec5f | refs/heads/master | 2021-09-24T14:20:24.935944 | 2018-10-10T09:46:38 | 2018-10-10T09:46:38 | 113,301,107 | 0 | 0 | null | 2017-12-10T09:02:37 | 2017-12-06T10:15:23 | Java | UTF-8 | Java | false | false | 246 | java | package org.matrixstudio.boot.repository.jpa;
import org.matrixstudio.boot.model.entity.Client;
import org.springframework.data.jpa.repository.JpaRepository;
public interface ClientRepository extends JpaRepository<Client, java.lang.String> {
}
| [
"[email protected]"
] | |
d93abaf64603f6c611ae305cf0245d9b25e88246 | fe3624388c3da24366ad05814cd9b65479601006 | /src/advanced_03/RedBlackTree.java | 8cff3b9e4c542af6caf28c91bc0bb4d1bae2311a | [] | no_license | binboywen/leftgod-algorithm | 1b734523dcf6721b17473021893dbfca5296e716 | f8650e48d8a8d93f17b455d1f98fed64c8426057 | refs/heads/master | 2022-12-08T02:40:39.964428 | 2020-08-30T07:46:54 | 2020-08-30T07:46:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,522 | java | package advanced_03;
/**
* Not implemented by zuochengyun
*
* Red-Black tree implementation. From Introduction to Algorithms 3rd edition.
*
* @author Ignas Lelys
* @created May 6, 2011
*
*/
public class RedBlackTree extends AbstractSelfBalancingBinarySearchTree {
protected enum ColorEnum {
RED,
BLACK
};
protected static final RedBlackNode nilNode = new RedBlackNode(null, null, null, null, ColorEnum.BLACK);
/**
* @see trees.AbstractBinarySearchTree#insert(int)
*/
@Override
public Node insert(int element) {
Node newNode = super.insert(element);
newNode.left = nilNode;
newNode.right = nilNode;
root.parent = nilNode;
insertRBFixup((RedBlackNode) newNode);
return newNode;
}
/**
* Slightly modified delete routine for red-black tree.
*
* {@inheritDoc}
*/
@Override
protected Node delete(Node deleteNode) {
Node replaceNode = null; // track node that replaces removedOrMovedNode
if (deleteNode != null && deleteNode != nilNode) {
Node removedOrMovedNode = deleteNode; // same as deleteNode if it has only one child, and otherwise it replaces deleteNode
ColorEnum removedOrMovedNodeColor = ((RedBlackNode)removedOrMovedNode).color;
if (deleteNode.left == nilNode) {
replaceNode = deleteNode.right;
rbTreeTransplant(deleteNode, deleteNode.right);
} else if (deleteNode.right == nilNode) {
replaceNode = deleteNode.left;
rbTreeTransplant(deleteNode, deleteNode.left);
} else {
removedOrMovedNode = getMinimum(deleteNode.right);
removedOrMovedNodeColor = ((RedBlackNode)removedOrMovedNode).color;
replaceNode = removedOrMovedNode.right;
if (removedOrMovedNode.parent == deleteNode) {
replaceNode.parent = removedOrMovedNode;
} else {
rbTreeTransplant(removedOrMovedNode, removedOrMovedNode.right);
removedOrMovedNode.right = deleteNode.right;
removedOrMovedNode.right.parent = removedOrMovedNode;
}
rbTreeTransplant(deleteNode, removedOrMovedNode);
removedOrMovedNode.left = deleteNode.left;
removedOrMovedNode.left.parent = removedOrMovedNode;
((RedBlackNode)removedOrMovedNode).color = ((RedBlackNode)deleteNode).color;
}
size--;
if (removedOrMovedNodeColor == ColorEnum.BLACK) {
deleteRBFixup((RedBlackNode)replaceNode);
}
}
return replaceNode;
}
/**
* @see trees.AbstractBinarySearchTree#createNode(int, trees.AbstractBinarySearchTree.Node, trees.AbstractBinarySearchTree.Node, trees.AbstractBinarySearchTree.Node)
*/
@Override
protected Node createNode(int value, Node parent, Node left, Node right) {
return new RedBlackNode(value, parent, left, right, ColorEnum.RED);
}
/**
* {@inheritDoc}
*/
@Override
protected Node getMinimum(Node node) {
while (node.left != nilNode) {
node = node.left;
}
return node;
}
/**
* {@inheritDoc}
*/
@Override
protected Node getMaximum(Node node) {
while (node.right != nilNode) {
node = node.right;
}
return node;
}
/**
* {@inheritDoc}
*/
@Override
protected Node rotateLeft(Node node) {
Node temp = node.right;
temp.parent = node.parent;
node.right = temp.left;
if (node.right != nilNode) {
node.right.parent = node;
}
temp.left = node;
node.parent = temp;
// temp took over node's place so now its parent should point to temp
if (temp.parent != nilNode) {
if (node == temp.parent.left) {
temp.parent.left = temp;
} else {
temp.parent.right = temp;
}
} else {
root = temp;
}
return temp;
}
/**
* {@inheritDoc}
*/
@Override
protected Node rotateRight(Node node) {
Node temp = node.left;
temp.parent = node.parent;
node.left = temp.right;
if (node.left != nilNode) {
node.left.parent = node;
}
temp.right = node;
node.parent = temp;
// temp took over node's place so now its parent should point to temp
if (temp.parent != nilNode) {
if (node == temp.parent.left) {
temp.parent.left = temp;
} else {
temp.parent.right = temp;
}
} else {
root = temp;
}
return temp;
}
/**
* Similar to original transplant() method in BST but uses nilNode instead of null.
*/
private Node rbTreeTransplant(Node nodeToReplace, Node newNode) {
if (nodeToReplace.parent == nilNode) {
this.root = newNode;
} else if (nodeToReplace == nodeToReplace.parent.left) {
nodeToReplace.parent.left = newNode;
} else {
nodeToReplace.parent.right = newNode;
}
newNode.parent = nodeToReplace.parent;
return newNode;
}
/**
* Restores Red-Black tree properties after delete if needed.
*/
private void deleteRBFixup(RedBlackNode x) {
while (x != root && isBlack(x)) {
if (x == x.parent.left) {
RedBlackNode w = (RedBlackNode)x.parent.right;
if (isRed(w)) { // case 1 - sibling is red
w.color = ColorEnum.BLACK;
((RedBlackNode)x.parent).color = ColorEnum.RED;
rotateLeft(x.parent);
w = (RedBlackNode)x.parent.right; // converted to case 2, 3 or 4
}
// case 2 sibling is black and both of its children are black
if (isBlack(w.left) && isBlack(w.right)) {
w.color = ColorEnum.RED;
x = (RedBlackNode)x.parent;
} else if (w != nilNode) {
if (isBlack(w.right)) { // case 3 sibling is black and its left child is red and right child is black
((RedBlackNode)w.left).color = ColorEnum.BLACK;
w.color = ColorEnum.RED;
rotateRight(w);
w = (RedBlackNode)x.parent.right;
}
w.color = ((RedBlackNode)x.parent).color; // case 4 sibling is black and right child is red
((RedBlackNode)x.parent).color = ColorEnum.BLACK;
((RedBlackNode)w.right).color = ColorEnum.BLACK;
rotateLeft(x.parent);
x = (RedBlackNode)root;
} else {
x.color = ColorEnum.BLACK;
x = (RedBlackNode)x.parent;
}
} else {
RedBlackNode w = (RedBlackNode)x.parent.left;
if (isRed(w)) { // case 1 - sibling is red
w.color = ColorEnum.BLACK;
((RedBlackNode)x.parent).color = ColorEnum.RED;
rotateRight(x.parent);
w = (RedBlackNode)x.parent.left; // converted to case 2, 3 or 4
}
// case 2 sibling is black and both of its children are black
if (isBlack(w.left) && isBlack(w.right)) {
w.color = ColorEnum.RED;
x = (RedBlackNode)x.parent;
} else if (w != nilNode) {
if (isBlack(w.left)) { // case 3 sibling is black and its right child is red and left child is black
((RedBlackNode)w.right).color = ColorEnum.BLACK;
w.color = ColorEnum.RED;
rotateLeft(w);
w = (RedBlackNode)x.parent.left;
}
w.color = ((RedBlackNode)x.parent).color; // case 4 sibling is black and left child is red
((RedBlackNode)x.parent).color = ColorEnum.BLACK;
((RedBlackNode)w.left).color = ColorEnum.BLACK;
rotateRight(x.parent);
x = (RedBlackNode)root;
} else {
x.color = ColorEnum.BLACK;
x = (RedBlackNode)x.parent;
}
}
}
}
private boolean isBlack(Node node) {
return node != null ? ((RedBlackNode)node).color == ColorEnum.BLACK : false;
}
private boolean isRed(Node node) {
return node != null ? ((RedBlackNode)node).color == ColorEnum.RED : false;
}
/**
* Restores Red-Black tree properties after insert if needed. Insert can
* break only 2 properties: root is red or if node is red then children must
* be black.
*/
private void insertRBFixup(RedBlackNode currentNode) {
// current node is always RED, so if its parent is red it breaks
// Red-Black property, otherwise no fixup needed and loop can terminate
while (currentNode.parent != root && ((RedBlackNode) currentNode.parent).color == ColorEnum.RED) {
RedBlackNode parent = (RedBlackNode) currentNode.parent;
RedBlackNode grandParent = (RedBlackNode) parent.parent;
if (parent == grandParent.left) {
RedBlackNode uncle = (RedBlackNode) grandParent.right;
// case1 - uncle and parent are both red
// re color both of them to black
if (((RedBlackNode) uncle).color == ColorEnum.RED) {
parent.color = ColorEnum.BLACK;
uncle.color = ColorEnum.BLACK;
grandParent.color = ColorEnum.RED;
// grandparent was recolored to red, so in next iteration we
// check if it does not break Red-Black property
currentNode = grandParent;
}
// case 2/3 uncle is black - then we perform rotations
else {
if (currentNode == parent.right) { // case 2, first rotate left
currentNode = parent;
rotateLeft(currentNode);
}
// do not use parent
parent.color = ColorEnum.BLACK; // case 3
grandParent.color = ColorEnum.RED;
rotateRight(grandParent);
}
} else if (parent == grandParent.right) {
RedBlackNode uncle = (RedBlackNode) grandParent.left;
// case1 - uncle and parent are both red
// re color both of them to black
if (((RedBlackNode) uncle).color == ColorEnum.RED) {
parent.color = ColorEnum.BLACK;
uncle.color = ColorEnum.BLACK;
grandParent.color = ColorEnum.RED;
// grandparent was recolored to red, so in next iteration we
// check if it does not break Red-Black property
currentNode = grandParent;
}
// case 2/3 uncle is black - then we perform rotations
else {
if (currentNode == parent.left) { // case 2, first rotate right
currentNode = parent;
rotateRight(currentNode);
}
// do not use parent
parent.color = ColorEnum.BLACK; // case 3
grandParent.color = ColorEnum.RED;
rotateLeft(grandParent);
}
}
}
// ensure root is black in case it was colored red in fixup
((RedBlackNode) root).color = ColorEnum.BLACK;
}
protected static class RedBlackNode extends Node {
public ColorEnum color;
public RedBlackNode(Integer value, Node parent, Node left, Node right, ColorEnum color) {
super(value, parent, left, right);
this.color = color;
}
}
}
| [
"[email protected]"
] | |
ebe90c5563680e9b0b783a32c8d6ebbe738d958c | 5a52cb9775be5de8c1f0e6e03cdbb76ea466eea9 | /src/main/java/com/ec/spider/proxy/WwwXicidailiCom/Parse.java | 09e74d9f08c5a97e2cd1300430d71d4bd5808aa5 | [] | no_license | 001466/spider | 4def9efb91ca0cb132f0992e05b584c62786a009 | ac5c7cef8904adcb0faa2d3914e604137d9c7a90 | refs/heads/master | 2018-12-03T20:15:55.418808 | 2018-03-07T09:37:47 | 2018-03-07T09:37:47 | 119,039,352 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,308 | java | package com.ec.spider.proxy.WwwXicidailiCom;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import org.springframework.stereotype.Component;
import com.ec.common.spider.model.ProxyEntity;
import com.ec.common.spider.model.ProxyType;
import com.ec.common.util.Ping;
@Component
class Parse {
public static List<ProxyEntity> parse(Document doc){
int i=0;
Elements trs = doc.select("#ip_list tr");
List<ProxyEntity> list=new ArrayList<>();
for (Element tr : trs) {
if(i==0){i=1;continue;}
Element hostN=tr.child(1);
Element portN=tr.child(2);
Element anonymousN=tr.child(4);
Element protlN=tr.child(5);
String host=hostN.text();
String port=portN.text();
String protl=protlN.text();
String anonymous=anonymousN.text();
anonymous=anonymous.equals("透明")?"0":"1";
ProxyEntity pe=new ProxyEntity(host, Integer.parseInt(port), ProxyType.valueOf(protl.toLowerCase()), Short.parseShort(anonymous));
pe.setCreateby(doc.baseUri());
pe.setCreatetime(new Date());
try {
if(Ping.ping(pe.getHost()))
list.add(pe);
} catch (Exception e) {
System.err.println(e.getMessage());
}
}
return list;
}
}
| [
"[email protected]"
] | |
65bb488e80259a04c611f6c7c418a0a1ef662b01 | 5b75f289a484b6c64fceda9c4519fd89b7bc262b | /src/com/Arrays/ArrayOrderFIFO.java | 5cdae6376db06e00e53cf1fe1c212096648c1f19 | [] | no_license | CodingKrishna/basic-java-programs | 0fc1e354ff2125fd94072072011b4b60b3299879 | e3cbfced30b76f44dcb6aa48e2184927acdf8f69 | refs/heads/master | 2023-06-23T00:07:22.887087 | 2023-06-09T09:28:26 | 2023-06-09T09:28:26 | 193,179,538 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,168 | java | package com.Arrays;
public class ArrayOrderFIFO {
int arr[] = new int[5];
int cursor = -1;
public int add(int a) {
if (cursor < arr.length - 1) {
cursor++;
arr[cursor] = a;
}
return a;
}
public int[] remove() {
int r = 0;
int[] f = new int[arr.length];
if (cursor >= 0) {
r = arr[0];
cursor++;
f = copyArr(arr, cursor);
}
return f;
}
public static int[] copyArr(int[] arr, int cursor) {
for (int i = 0; i < arr.length; i++) {
arr[i] = arr[i + 1];
System.out.println(arr[i]);
}
return arr;
}
public static void main(String[] args) {
ArrayOrderFIFO ao1 = new ArrayOrderFIFO();
int a1 = ao1.add(10);
int a2 = ao1.add(30);
int a3 = ao1.add(60);
int a4 = ao1.add(80);
int a5 = ao1.add(90);
int[] r1 = ao1.remove();
// System.out.println(a1);
// System.out.println(a2);
// System.out.println(a3);
// for(int r: r1){
// System.out.println(r);
// }
}
}
| [
"[email protected]"
] | |
5c93df2902cec0d517aa92c0479862c40efa31ce | 4668ecdf752124259f254df921c65ae79557fd9d | /src/ds/AbsClass.java | 4e06aa7a996b659479f64565550d7101996e3b4a | [] | no_license | sachinkaushik/java-learning | eef7c70f95be6d995b3092b26f5b673a72ae5703 | 2c29372fdb812a0f5e1e2b90a991f83c9e4c4f0f | refs/heads/main | 2023-02-03T16:56:40.386500 | 2020-12-23T15:26:33 | 2020-12-23T15:26:33 | 323,935,849 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 117 | java | package ds;
public abstract class AbsClass {
AbsClass(){
}
}
class A extends AbsClass{
public A(int a)
{
}
} | [
"[email protected]"
] | |
c3d2d70f2059cf888bb3a1bce205495844c949e8 | f8097a3e3dd6235e9d72f6b13ad1b69a250a4258 | /session2-ex2/src/com/daniela/relantionships/Example2.java | 0821af6efbeb50d35da546c053fbe67b9c7c660c | [] | no_license | danielaciuperca/java_fundamentals_july_2021 | 513d7044cb7caa072647f43724de4fb93bd67d85 | 3d46785b496d8e8e16da0c87f212ce3349b0fac2 | refs/heads/main | 2023-06-27T21:00:11.970308 | 2021-07-30T14:50:56 | 2021-07-30T14:50:56 | 389,511,920 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 421 | java | package com.daniela.relantionships;
public class Example2 {
public static void main(String[] args) {
Vehicle vehicle = new Vehicle();
vehicle.setSpeed(100);
vehicle.setSeats(2);
Bicycle bicycle = new Bicycle();
bicycle.setWeight(20);
bicycle.setType("Mountain bike");
bicycle.setSpeed(25);
bicycle.setSeats(1);
bicycle.printDetails();
}
}
| [
"[email protected]"
] | |
20b1ff174af0d30ffe37964a67b30086f33e37d9 | e85e8acb741db3dd6012cad65628f5eacf2e30f0 | /src/Main.java | 276e2bfd9b12e13a220b28af9598f00447d9ad0b | [] | no_license | peachblacky/httpServer | 79c6960b5b3e1df30b631dcfcf0d931edb4ee53a | 46d56206c590af71ff933229887cc098c7e288d1 | refs/heads/master | 2023-04-11T04:44:03.062962 | 2021-04-22T01:00:26 | 2021-04-22T01:00:26 | 347,938,993 | 0 | 1 | null | 2021-03-15T14:33:42 | 2021-03-15T11:15:35 | Java | UTF-8 | Java | false | false | 135 | java | public class Main {
public static void main(String[] args) {
Server server = new Server();
server.start();
}
}
| [
"[email protected]"
] | |
a27d9ca401d2afeeb532b8a8663f901e34a963a2 | cfca23f0fe48cbd9986e89122ea4af3ac06deb76 | /src/main/java/com/kpatil/jwdnd/cloudstorage/model/Credential.java | b7b23e62850020fb4397000c900ced4710bc42cf | [] | no_license | knpatil/MySuperDuperDrive | 5b5806dbdf099a97f3e60f5878b14c4d22741d89 | bed52795fffd041f8229e0b5b6b4fb6cda96f28d | refs/heads/master | 2022-11-21T14:25:08.006564 | 2020-07-16T16:50:55 | 2020-07-16T16:50:55 | 278,966,952 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,614 | java | package com.kpatil.jwdnd.cloudstorage.model;
public class Credential {
private Integer credentialId;
private String url;
private String username;
private String key;
private String password;
private Integer userId;
private String textPwd;
public Credential(Integer credentialId, String url, String username, String key, String password, Integer userId) {
this.credentialId = credentialId;
this.url = url;
this.username = username;
this.key = key;
this.password = password;
this.userId = userId;
}
public Integer getCredentialId() {
return credentialId;
}
public void setCredentialId(Integer credentialId) {
this.credentialId = credentialId;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public String getTextPwd() {
return textPwd;
}
public void setTextPwd(String textPwd) {
this.textPwd = textPwd;
}
}
| [
"[email protected]"
] | |
1ff77df1046eca5204f0c2ea04c5d8899b36ea8f | 2e33486c5cf9aa121f4bf920448f260e160dd763 | /src/main/java/it/consoft/budget/web/rest/BudgetTemporaneoResource.java | 944d6d087b3eef42acf0c4dea8cd7cf54990fab5 | [] | no_license | EmaBachi/BudgetJhipster | 573524cdd43c1dbbf6fbb869ea8e4422f7327903 | 804c23c692772315a93fd3c4c99d8aabc8f0e891 | refs/heads/master | 2022-03-02T22:51:20.167079 | 2017-06-30T14:58:46 | 2017-06-30T14:58:46 | 95,873,206 | 0 | 0 | null | 2022-03-02T04:33:54 | 2017-06-30T09:34:36 | Java | UTF-8 | Java | false | false | 5,721 | java | package it.consoft.budget.web.rest;
import com.codahale.metrics.annotation.Timed;
import it.consoft.budget.domain.BudgetTemporaneo;
import it.consoft.budget.service.BudgetTemporaneoService;
import it.consoft.budget.web.rest.util.HeaderUtil;
import it.consoft.budget.web.rest.util.PaginationUtil;
import io.swagger.annotations.ApiParam;
import io.github.jhipster.web.util.ResponseUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.List;
import java.util.Optional;
/**
* REST controller for managing BudgetTemporaneo.
*/
@RestController
@RequestMapping("/api")
public class BudgetTemporaneoResource {
private final Logger log = LoggerFactory.getLogger(BudgetTemporaneoResource.class);
private static final String ENTITY_NAME = "budgetTemporaneo";
private final BudgetTemporaneoService budgetTemporaneoService;
public BudgetTemporaneoResource(BudgetTemporaneoService budgetTemporaneoService) {
this.budgetTemporaneoService = budgetTemporaneoService;
}
/**
* POST /budget-temporaneos : Create a new budgetTemporaneo.
*
* @param budgetTemporaneo the budgetTemporaneo to create
* @return the ResponseEntity with status 201 (Created) and with body the new budgetTemporaneo, or with status 400 (Bad Request) if the budgetTemporaneo has already an ID
* @throws URISyntaxException if the Location URI syntax is incorrect
*/
@PostMapping("/budget-temporaneos")
@Timed
public ResponseEntity<BudgetTemporaneo> createBudgetTemporaneo(@RequestBody BudgetTemporaneo budgetTemporaneo) throws URISyntaxException {
log.debug("REST request to save BudgetTemporaneo : {}", budgetTemporaneo);
if (budgetTemporaneo.getId() != null) {
return ResponseEntity.badRequest().headers(HeaderUtil.createFailureAlert(ENTITY_NAME, "idexists", "A new budgetTemporaneo cannot already have an ID")).body(null);
}
BudgetTemporaneo result = budgetTemporaneoService.save(budgetTemporaneo);
return ResponseEntity.created(new URI("/api/budget-temporaneos/" + result.getId()))
.headers(HeaderUtil.createEntityCreationAlert(ENTITY_NAME, result.getId().toString()))
.body(result);
}
/**
* PUT /budget-temporaneos : Updates an existing budgetTemporaneo.
*
* @param budgetTemporaneo the budgetTemporaneo to update
* @return the ResponseEntity with status 200 (OK) and with body the updated budgetTemporaneo,
* or with status 400 (Bad Request) if the budgetTemporaneo is not valid,
* or with status 500 (Internal Server Error) if the budgetTemporaneo couldnt be updated
* @throws URISyntaxException if the Location URI syntax is incorrect
*/
@PutMapping("/budget-temporaneos")
@Timed
public ResponseEntity<BudgetTemporaneo> updateBudgetTemporaneo(@RequestBody BudgetTemporaneo budgetTemporaneo) throws URISyntaxException {
log.debug("REST request to update BudgetTemporaneo : {}", budgetTemporaneo);
if (budgetTemporaneo.getId() == null) {
return createBudgetTemporaneo(budgetTemporaneo);
}
BudgetTemporaneo result = budgetTemporaneoService.save(budgetTemporaneo);
return ResponseEntity.ok()
.headers(HeaderUtil.createEntityUpdateAlert(ENTITY_NAME, budgetTemporaneo.getId().toString()))
.body(result);
}
/**
* GET /budget-temporaneos : get all the budgetTemporaneos.
*
* @param pageable the pagination information
* @return the ResponseEntity with status 200 (OK) and the list of budgetTemporaneos in body
*/
@GetMapping("/budget-temporaneos")
@Timed
public ResponseEntity<List<BudgetTemporaneo>> getAllBudgetTemporaneos(@ApiParam Pageable pageable) {
log.debug("REST request to get a page of BudgetTemporaneos");
Page<BudgetTemporaneo> page = budgetTemporaneoService.findAll(pageable);
HttpHeaders headers = PaginationUtil.generatePaginationHttpHeaders(page, "/api/budget-temporaneos");
return new ResponseEntity<>(page.getContent(), headers, HttpStatus.OK);
}
/**
* GET /budget-temporaneos/:id : get the "id" budgetTemporaneo.
*
* @param id the id of the budgetTemporaneo to retrieve
* @return the ResponseEntity with status 200 (OK) and with body the budgetTemporaneo, or with status 404 (Not Found)
*/
@GetMapping("/budget-temporaneos/{id}")
@Timed
public ResponseEntity<BudgetTemporaneo> getBudgetTemporaneo(@PathVariable Long id) {
log.debug("REST request to get BudgetTemporaneo : {}", id);
BudgetTemporaneo budgetTemporaneo = budgetTemporaneoService.findOne(id);
return ResponseUtil.wrapOrNotFound(Optional.ofNullable(budgetTemporaneo));
}
/**
* DELETE /budget-temporaneos/:id : delete the "id" budgetTemporaneo.
*
* @param id the id of the budgetTemporaneo to delete
* @return the ResponseEntity with status 200 (OK)
*/
@DeleteMapping("/budget-temporaneos/{id}")
@Timed
public ResponseEntity<Void> deleteBudgetTemporaneo(@PathVariable Long id) {
log.debug("REST request to delete BudgetTemporaneo : {}", id);
budgetTemporaneoService.delete(id);
return ResponseEntity.ok().headers(HeaderUtil.createEntityDeletionAlert(ENTITY_NAME, id.toString())).build();
}
}
| [
"="
] | = |
4ee7dda2df856b6f1de6b49f36b49dd50a0b6ab2 | 9a0c5fe198eec7858442c8c65242f1fcb40d477c | /book/src/main/java/com/dragontalker/filter/ManagerFilter.java | 88cd633717934be84b714457b7669258fdd4105b | [
"MIT"
] | permissive | Dragontalker/JavaWeb-study-notes | 512e86fa8a2c402f17bbc081049ec54532c80235 | 25acf971fc92d18235170454e26b3b30c79f5f20 | refs/heads/main | 2023-06-20T16:21:21.542684 | 2021-07-06T19:12:40 | 2021-07-06T19:12:40 | 378,425,450 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 887 | java | package com.dragontalker.filter;
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
public class ManagerFilter implements Filter {
@Override
public void doFilter(ServletRequest servletRequest,
ServletResponse servletResponse,
FilterChain filterChain)
throws IOException, ServletException {
HttpServletRequest httpServletRequest = (HttpServletRequest) servletRequest;
Object user = httpServletRequest.getSession().getAttribute("user");
if (user == null) {
httpServletRequest.getRequestDispatcher("/pages/user/login.jsp")
.forward(httpServletRequest, servletResponse);
} else {
filterChain.doFilter(httpServletRequest, servletResponse);
}
}
}
| [
"[email protected]"
] | |
026b87f3cfa8c51b83d56186a968023eba350362 | 329ebbaffe52fe37b18b17b213c7e2b5422f96ea | /src/CLASE2/estructuras.java | 88b1e16197f4ee1851d978562f08d88fe01792ef | [] | no_license | walpizar/INA-2021 | 7aea4d2ba0cd29ba9256d32db74fab938be6c09d | 843219da18f0bf1911479bcb0b813fa89ec5b4bc | refs/heads/main | 2023-07-07T22:14:21.932973 | 2021-08-16T18:14:12 | 2021-08-16T18:14:12 | 390,760,425 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 3,760 | java | package CLASE2;
import java.util.Scanner;
public class estructuras {
public static void main(String[] args) {
//estructuras
// if- switch- for- while- do while
Scanner scan= new Scanner(System.in);
/*
System.out.print("Digite una edad: ");
int edad= scan.nextInt();
//booleanbo como resultado
// condicionales > < >= <= == != !(NEGACION) ||(O) && (Y)
//opcional ELSE
//indentacion
if((edad>=18)){
System.out.println("MAYOR DE EDAD");
}else{
System.out.println("ES MENOR DE EDAD");
}
//1 UNA SENTECIA
if(edad>=18)
System.out.println("fffff");
else{
}
String valor = edad>=18 ? "MAYOR DE EDAD": "MENOR DE EDAD";
System.out.println(valor);
System.out.print("1. Multiplicar 2.Sumar 3.Dividir 4. Restar");
short opc= scan.nextShort();
System.out.print("Numero 1: ");
float numero1= scan.nextFloat();
System.out.print("Numero 2: ");
float numero2= scan.nextFloat();
//break detiene ejecuion del bloque
//cada caso termina con un break
switch(opc){
case 1:
System.out.println("EL RESULTADO ES: " + (numero1*numero2));
break;
case 2:
System.out.println("EL RESULTADO ES: " + (numero1+numero2));
break;
case 3:
System.out.println("EL RESULTADO ES: " + (numero1/numero2));
break;
case 4:
System.out.println("EL RESULTADO ES: " + (numero1-numero2));
break;
default:
System.out.println("no existe la opcion dentro del menu");
}
//casteo o parseo == CUANDO QUIERO CONVERTIR DE UN TIPO A OTRO TIPO DE DATO
//IMPICITOS -- EXPLICITOS
short var1=5;
int var2=455555555;
double ddd=9;
float ddds=3;
String numero3="4";
// implicito
var2= var1;
//explicita tipos diferentes o maneja rangos diferentes
var1= (short)var2;
//explicito casteo de un string
var1= Short.parseShort(numero3);
//ir a su clase de tipo. la que comienza en MAYUSCULA, no el tipo primitivo
ddd= Double.parseDouble(numero3);
System.out.println("valor: "+ var1);
*/
//CICLOS
//for
//i=i+1 == i++
//i=i-1 i--
/* if(true){
if(true){
}else if(true){
}
}else if(false){
}else if(true){
}else if(true){
}else{
}*/
for (int i=0; i< 10; i++ ){
System.out.println(i);
caminar();
}
//AUMENTOS Y DECREMENTO
// x=x+1;
int x=0;
System.out.println("incremento x++: "+ x++);
System.out.println("incremento x++: "+ x);
int y=0;
System.out.println("incremento ++y: "+ ++y);
System.out.println("incremento ++y: "+ y);
System.out.println(y);
//while repite condicion verdadera
while(y>=1 && y<=10){
System.out.println(y);
y++;
}
//do while repite condicion verdadera
System.out.println("do while");
do{
y--;
System.out.println(y);
}while(y>=1);
//comentario alfonso
}
public static void caminar(){
System.out.println("estoy caminando...");
}
}
| [
"[email protected]"
] | |
db99ed9f6a3e9f9c30e64c79ca2484e82a90a8f4 | cf6a2dd9d33935b89c7153346e757c933a4501e2 | /src/main/java/com/lun/designpattern/templatemethod/example1/Tea.java | c90b94c9166bd6d1b98b32f01aa5205008eb3859 | [] | no_license | JallenKwong/LearnDesignPattern | 8ae49aaaaea41f07b28c385be8d00651ad48c2d9 | 5a39e0ed527b8441fa873bc08d83676fa5e616cc | refs/heads/master | 2020-03-24T21:24:08.994402 | 2019-01-04T17:40:13 | 2019-01-04T17:40:13 | 143,030,412 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 241 | java | package com.lun.designpattern.templatemethod.example1;
public class Tea extends CaffeineBeverage {
public void brew() {
System.out.println("Steeping the tea");
}
public void addCondiments() {
System.out.println("Adding Lemon");
}
}
| [
"[email protected]"
] | |
f888511cbca91139cdc5611d22fed17e32bc3370 | e17546ab64c20adb1dea42c3d1df2197740219ab | /cap-security/src/main/java/cn/kilog/cap/securityOAuth2/dao/OauthClientDetailsEntity.java | 2c21c9a2149db4be82e389ccc3927d954cd36099 | [] | no_license | JOJO0527/cap-springcloud | 3768c565ad70373dad633b73b994dd75fdc2fa9c | 6adebf04ffe9de60e1b7a5049a2e213d6f74c457 | refs/heads/master | 2023-01-08T03:32:58.933167 | 2022-12-29T06:37:55 | 2022-12-29T06:37:55 | 249,305,558 | 1 | 0 | null | 2022-12-29T06:37:56 | 2020-03-23T01:12:22 | Java | UTF-8 | Java | false | false | 4,394 | java | package cn.kilog.cap.securityOAuth2.dao;
import javax.persistence.*;
import java.util.Objects;
@Entity
@Table(name = "oauth_client_details", schema = "cap_springcloud", catalog = "")
public class OauthClientDetailsEntity {
private String clientId;
private String resourceIds;
private String clientSecret;
private String scope;
private String authorizedGrantTypes;
private String webServerRedirectUri;
private String authorities;
private Integer accessTokenValidity;
private Integer refreshTokenValidity;
private String additionalInformation;
private String autoapprove;
@Id
@Column(name = "client_id")
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
@Basic
@Column(name = "resource_ids")
public String getResourceIds() {
return resourceIds;
}
public void setResourceIds(String resourceIds) {
this.resourceIds = resourceIds;
}
@Basic
@Column(name = "client_secret")
public String getClientSecret() {
return clientSecret;
}
public void setClientSecret(String clientSecret) {
this.clientSecret = clientSecret;
}
@Basic
@Column(name = "scope")
public String getScope() {
return scope;
}
public void setScope(String scope) {
this.scope = scope;
}
@Basic
@Column(name = "authorized_grant_types")
public String getAuthorizedGrantTypes() {
return authorizedGrantTypes;
}
public void setAuthorizedGrantTypes(String authorizedGrantTypes) {
this.authorizedGrantTypes = authorizedGrantTypes;
}
@Basic
@Column(name = "web_server_redirect_uri")
public String getWebServerRedirectUri() {
return webServerRedirectUri;
}
public void setWebServerRedirectUri(String webServerRedirectUri) {
this.webServerRedirectUri = webServerRedirectUri;
}
@Basic
@Column(name = "authorities")
public String getAuthorities() {
return authorities;
}
public void setAuthorities(String authorities) {
this.authorities = authorities;
}
@Basic
@Column(name = "access_token_validity")
public Integer getAccessTokenValidity() {
return accessTokenValidity;
}
public void setAccessTokenValidity(Integer accessTokenValidity) {
this.accessTokenValidity = accessTokenValidity;
}
@Basic
@Column(name = "refresh_token_validity")
public Integer getRefreshTokenValidity() {
return refreshTokenValidity;
}
public void setRefreshTokenValidity(Integer refreshTokenValidity) {
this.refreshTokenValidity = refreshTokenValidity;
}
@Basic
@Column(name = "additional_information")
public String getAdditionalInformation() {
return additionalInformation;
}
public void setAdditionalInformation(String additionalInformation) {
this.additionalInformation = additionalInformation;
}
@Basic
@Column(name = "autoapprove")
public String getAutoapprove() {
return autoapprove;
}
public void setAutoapprove(String autoapprove) {
this.autoapprove = autoapprove;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
OauthClientDetailsEntity that = (OauthClientDetailsEntity) o;
return Objects.equals(clientId, that.clientId) && Objects.equals(resourceIds, that.resourceIds) && Objects.equals(clientSecret, that.clientSecret) && Objects.equals(scope, that.scope) && Objects.equals(authorizedGrantTypes, that.authorizedGrantTypes) && Objects.equals(webServerRedirectUri, that.webServerRedirectUri) && Objects.equals(authorities, that.authorities) && Objects.equals(accessTokenValidity, that.accessTokenValidity) && Objects.equals(refreshTokenValidity, that.refreshTokenValidity) && Objects.equals(additionalInformation, that.additionalInformation) && Objects.equals(autoapprove, that.autoapprove);
}
@Override
public int hashCode() {
return Objects.hash(clientId, resourceIds, clientSecret, scope, authorizedGrantTypes, webServerRedirectUri, authorities, accessTokenValidity, refreshTokenValidity, additionalInformation, autoapprove);
}
}
| [
"[email protected]"
] | |
1bd5cf0a2d38d9b119672e2b5cc4288f6da22e6d | d9167be8485ef94adb71666aba08b145fdddafb7 | /1.JavaSyntax/task04/task0432/Solution.java | 85a5255b0fe15096000d74d477cfec31c5aff8df | [] | no_license | ValeriKondaurov/JavaRush | e66c0fb38b565700e1b6b0b6a248827e3360c5c5 | 24abc98bf6ec7605695a0377d651845199928aea | refs/heads/master | 2020-03-29T15:16:15.305488 | 2019-06-05T07:25:46 | 2019-06-05T07:25:46 | 150,053,668 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 513 | java | package com.javarush.task.task04.task0432;
/*
Хорошего много не бывает
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader r = new BufferedReader(new InputStreamReader(System.in));
String s = r.readLine();
String sNum = r.readLine();
int num = Integer.parseInt(sNum);
int i = 0;
while (i < num) {
System.out.println(s);
i++;
}
}
}
| [
"[email protected]"
] | |
0df0b5a0342f08eb03b644c46026e65d92b52a15 | 769dae7ca183be6d069d781843a2bdef6cdc7b5b | /src/test/java/SampleGraph.java | e9ed3ec9f10519945ee8dac3fe1b01f29c198fb1 | [] | no_license | stevenmcateer/HospitalPathfinder | dc62ddf19c9a1bb119ab55c503ca05a74bcf692a | d8843ec7485d095114214985260cd49c1c0bbe31 | refs/heads/master | 2020-04-03T23:16:16.081736 | 2017-05-02T19:23:28 | 2017-05-02T19:23:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,169 | java | import entities.Directory;
import entities.Node;
/**
* This class creates a sample graph for testing.
*/
// Feel free to modify the coordinates; juts leave the edges in place.
class SampleGraph
{
Node[] nodes;
Node a;
Node b;
Node c;
Node d;
Node e;
Node f;
Node g;
/* (All lines have length 1)
-22 0 10 28 55
g------a------b-----e------f
|\ /|
| \ / |
| \/ |
| /\ |
| / \ |
|/ \|
24 c d
d is at integer distance from all other edges
a=26, b=24, c=10, e=30, f=51, g=40
*/
SampleGraph() {
Directory dir = new Directory();
this.a = dir.addNewNode(0, 0, 0);
this.b = dir.addNewNode(10, 0, 0);
this.c = dir.addNewNode(0, 24, 0);
this.d = dir.addNewNode(10, 24, 0);
this.e = dir.addNewNode(28, 0, 0);
this.f = dir.addNewNode(55, 0, 0);
this.g = dir.addNewNode(-15, 0, 0);
dir.connectNodes(this.a, this.b);
dir.connectNodes(this.a, this.c);
dir.connectNodes(this.b, this.a); // no duplicates should occur
dir.connectNodes(this.b, this.c);
dir.connectNodes(this.a, this.d);
dir.connectNodes(this.b, this.d);
dir.connectNodes(this.a, this.g);
dir.connectNodes(this.f, this.e);
dir.connectNodes(this.b, this.e);
this.nodes = new Node[] {
dir.addNewNode(0, 0, 0),
dir.addNewNode(0, 9, 0),
dir.addNewNode(2.5, 4, 0),
dir.addNewNode(3, 17, 0),
dir.addNewNode(4, 19, 0),
dir.addNewNode(5, 8, 0),
dir.addNewNode(5, 13, 0),
dir.addNewNode(5, 23, 0),
dir.addNewNode(6.3, 21, 0),
dir.addNewNode(7, 0, 0),
dir.addNewNode(7, 2, 0),
dir.addNewNode(7, 4, 0),
dir.addNewNode(7, 6, 0),
dir.addNewNode(7, 23, 0),
dir.addNewNode(8, 3, 0),
dir.addNewNode(8, 19, 0),
dir.addNewNode(9, 6, 0),
dir.addNewNode(10, 9, 0),
dir.addNewNode(10, 14.5, 0),
dir.addNewNode(11, 12, 0),
dir.addNewNode(12, 15, 0),
dir.addNewNode(12, 19.5, 0),
dir.addNewNode(13, 18, 0),
dir.addNewNode(14, 12, 0),
dir.addNewNode(14, 18., 0)
};
Node[] n = this.nodes;
dir.connectNodes(n[1], n[3]);
dir.connectNodes(n[2], n[5]);
dir.connectNodes(n[2], n[9]);
dir.connectNodes(n[3], n[4]);
dir.connectNodes(n[3], n[6]);
dir.connectNodes(n[4], n[8]);
dir.connectNodes(n[5], n[6]);
dir.connectNodes(n[5], n[12]);
dir.connectNodes(n[5], n[18]);
dir.connectNodes(n[6], n[15]);
dir.connectNodes(n[7], n[9]);
dir.connectNodes(n[8], n[13]);
dir.connectNodes(n[8], n[15]);
dir.connectNodes(n[9], n[10]);
dir.connectNodes(n[9], n[14]);
dir.connectNodes(n[10], n[11]);
dir.connectNodes(n[11], n[12]);
dir.connectNodes(n[13], n[15]);
dir.connectNodes(n[14], n[16]);
dir.connectNodes(n[16], n[17]);
dir.connectNodes(n[17], n[19]);
dir.connectNodes(n[17], n[23]);
dir.connectNodes(n[18], n[21]);
dir.connectNodes(n[18], n[23]);
dir.connectNodes(n[19], n[20]);
dir.connectNodes(n[21], n[24]);
dir.connectNodes(n[22], n[24]);
}
/*
Paths of potential interest:
n[9] -> n[13]: 9, 10, 11, 12, 5, 6, 15, 13
n[9] -> n[22]: 9, 10, 11, 12, 5, 18, 21, 24, 22
n[19] -> n[22]: 19, 17, 23, 18, 21, 24, 22
n[1] -> n[13]: 1, 3, 4, 8, 13
n[7] -> n[23]: 7, 9, 14, 16, 17, 23
*/
}
| [
"[email protected]"
] | |
68ea987321211db5e5ae7aaba1a62bb97eac6bfa | 79482e1cbe68b3a6e85401b339e9d1d0d3649a36 | /VcentrySeleniumJava/src/com/vcentry/arraylist/Main.java | 870cd665f0e6f4c0c28bc59d88049f451c6190f6 | [] | no_license | avinashdj1979/VcentrySeleniumJava | 4289456be9b7c7b2d1f53554b41a9ac274f04fcf | 3440f69706cb7c64daf5a17be9ae7428abcfdb41 | refs/heads/main | 2023-03-22T07:52:05.692715 | 2021-03-13T03:23:21 | 2021-03-13T03:23:21 | 335,956,830 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 334 | java | package com.vcentry.arraylist;
import java.util.ArrayList;
public class Main {
public static void main(String[] args) {
GroceryList gl = new GroceryList();
gl.addItemsToList();
gl.printGroceryList();
}
}
/*ArrayList<String> myGl = gl.getMyGroceryList();
for(String item : myGl) {
System.out.println(item);
}*/ | [
"[email protected]"
] | |
3201d4c63b444d76757bf2771a063192a961e5d2 | 624f10694c6fb658242d28e06d42fae756bcad10 | /Part1/SpaceShipsGame.java | 06ad6f50cd158609bd1113b4b16162169a5cf13b | [] | no_license | rikimarou2016/DSP-game | a46d1ac8f9757281b16471b1742514e99eabdd0b | 254e0a482e04371a7086da07dfee3964494777a3 | refs/heads/master | 2020-04-18T05:10:30.685102 | 2019-01-23T23:10:44 | 2019-01-23T23:10:44 | 167,268,117 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 598 | java | import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class SpaceShipsGame extends JFrame
{
public SpaceShipsGame()
{
this.setSize(1000,800);
this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
Container cp = this.getContentPane();
spaceShipAnimation game = new spaceShipAnimation();
cp.add(game);
}
public static void main(String args[])
{
SpaceShipsGame myFrame = new SpaceShipsGame();
myFrame.setVisible(true);
}
}
| [
"[email protected]"
] | |
056d53f0581bfcd71b51c64af645435eb5afcb2b | c5969e495398bc8ceff15ed4d24ae1106daff6b1 | /src/av1rus/arduinoconnect/adk/background/ADKService.java | 8952ec59a6c4ccb54202baf9375b84e76d973c42 | [] | no_license | andrecurvello/arduino_connect_android_usb | 7fcf0a7e60aae559eea8345007026f1f61d67495 | 27eea284b85489d57062af5e3d2914f121cd6f4c | refs/heads/master | 2020-12-25T06:22:34.956680 | 2013-07-08T13:24:42 | 2013-07-08T13:24:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,959 | java | package av1rus.arduinoconnect.adk.background;
/*
* Created by Nick Maiello (aV1rus)
* January 2, 2013
*
*/
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import av1rus.arduinoconnect.adk.R;
import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.Handler;
import android.os.IBinder;
import android.speech.tts.TextToSpeech;
import android.util.Log;
import av1rus.arduinoconnect.adk.server.AbstractServerListener;
import av1rus.arduinoconnect.adk.server.Server;
import av1rus.arduinoconnect.adk.utils.Utils;
import static av1rus.arduinoconnect.adk.utils.Uses.*;
public class ADKService extends Service {
private final static String TAG = "ADKService";
private final IBinder mBinder = new MyBinder();
private static ArrayList<String> list = new ArrayList<String>();
private static String currentConnectionState = "Thinking";
private static Handler _handler = new Handler();
private int MAX = 250;
Utils utils;
private int RPM = 0;
private int RunTime = 0;
private int Speed = 0;
static Server server = null;
int sensorValue;
private TextToSpeech tts;
public static final String BROADCAST_ACTION = "av1rus.arduinoconnect";
Intent intent;
@Override
public void onCreate() {
super.onCreate();
Log.d(TAG, "onCreate");
intent = new Intent(BROADCAST_ACTION);
utils = (Utils) this.getApplicationContext();
// start();
start();
tts = new TextToSpeech(getApplicationContext(), null);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d(TAG, "onStartCommand");
// handler.removeCallbacks(sendUpdatesToUI);
// handler.postDelayed(sendUpdatesToUI, 1000); // 1 second
//start();
return Service.START_STICKY;
}
public class MyBinder extends Binder {
public ADKService getService() {
return ADKService.this;
}
}
@Override
public IBinder onBind(Intent arg0) {
return mBinder;
}
public void start(){
// Create TCP server
if(server == null){
try{
server = new Server(4567);
server.start();
setupServer();
currentConnectionState = "Connected";
}catch (IOException e){
Log.e("microbridge", "Unable to start TCP server", e);
currentConnectionState = "Error.";
System.exit(-1);
}
}
}
public void setupServer(){
if(server != null){
list.add("TCP: Successfully created");
server.addListener(new AbstractServerListener() {
@Override
public void onReceive(av1rus.arduinoconnect.adk.server.Client client, byte[] data){
if (data.length<2) return;
sensorValue = (data[0] & 0xff) | ((data[1] & 0xff) << 8);
handleReceived(data);
//list.add("<<_"+sensorValue);
};
@Override
public void onServerStarted(Server serve){
currentConnectionState = "Connected";
DisplayLoggingInfo(CONNECTION_STATE_CHANGE);
};
@Override
public void onServerStopped(Server server){
currentConnectionState = "Disconnected";
DisplayLoggingInfo(CONNECTION_STATE_CHANGE);
};
});
}
}
public void handleReceived(byte[] data){
String workingWith = "";
for(int i=0; i<data.length;i++) workingWith+=(char)data[i];
list.add("received: "+workingWith);
try {
final String split[] = workingWith.split(":");
if (split.length > 1) {
if (!split[0].trim().equals("PM"))
if (split[0].trim().equals("RPM")) {
if (Integer.parseInt(split[1]) != RPM) {
RPM = Integer.parseInt(split[1]);
DisplayLoggingInfo(RPM_CHANGE);
}
} else if (split[0].trim().equals("RunTime")) {
if (Integer.parseInt(split[1]) != RunTime) {
RunTime = Integer.parseInt(split[1]);
DisplayLoggingInfo(RUNTIME_CHANGE);
}
} else if (split[0].trim().equals("Speed")) {
if (Integer.parseInt(split[1]) != Speed) {
Speed = Integer.parseInt(split[1]);
DisplayLoggingInfo(SPEED_CHANGE);
}
} else if (split[0].trim().equals("$")) {
try{
handleVoiceData(Integer.parseInt(split[1]));
}catch(Exception e){
list.add("Speak" + workingWith);
}
}else {
if (list.size() > MAX) list.remove(0);
list.add("<--" + workingWith);
DisplayLoggingInfo(LOG_CHANGE);
if (split[0].trim().equals("DT")) {
_handler.post(new Runnable() {
public void run() {
try {
//list.add("^^Light data");
Log.d(TAG, "Handling Light data");
handleLightData(split);
} catch (Exception e) {
Log.d(TAG, "Error handling light data" + e);
}
}
});
}
}
} else {
if (list.size() > MAX) list.remove(0);
list.add("<--" + workingWith);
if(workingWith.toLowerCase().equals("off")) vehicleisOn = false;
else if(workingWith.toLowerCase().equals("on")) vehicleisOn = true;
DisplayLoggingInfo(LOG_CHANGE);
}
} catch (Exception e) {
e.printStackTrace();
list.add("<Error Handling" + workingWith);
}
}
private void handleLightData(String[] data) {
if (data.length >= 4 && data[0].trim().equals("DT")) {
boolean areON = false;
int Brightness = 0;
if (data[1].trim().equals("S")) { // / 'S' for Switch
try {
if (1 == Integer.parseInt(data[3].trim())) {
areON = true;
}
if (data[2].trim().equals("HB")) { // Handling Heads Both
if (Head_Halo_Both_On != areON) { // Current Data is different
Head_Halo_Both_On = areON;
Head_Halo_White_On = !areON;
Head_Halo_Red_On = !areON;
DisplayLoggingInfo(HEAD_HALO_CHANGE);
}
} else if (data[2].trim().equals("HW")) {// Handling Heads
// White
if (Head_Halo_White_On != areON) { // Current Data is
// different
Head_Halo_White_On = areON;
Head_Halo_Red_On = !areON;
Head_Halo_Both_On = false;
DisplayLoggingInfo(HEAD_HALO_CHANGE);
}
} else if (data[2].trim().equals("HR")) {// Handling Heads
// Red
if (Head_Halo_Red_On != areON) { // Current Data is
// different
Head_Halo_Red_On = areON;
Head_Halo_White_On = !areON;
Head_Halo_Both_On = false;
DisplayLoggingInfo(HEAD_HALO_CHANGE);
}
}
if (data[2].trim().equals("FB")) { // Handling Fogs Both
if (Fog_Halo_Both_On != areON) { // Current Data is different
Fog_Halo_Both_On = areON;
Fog_Halo_White_On = !areON;
Fog_Halo_Red_On = !areON;
DisplayLoggingInfo(FOG_HALO_CHANGE);
}
} else if (data[2].trim().equals("FW")) {// Handling Fogs White
if (Fog_Halo_White_On != areON) { // Current Data is different
Fog_Halo_White_On = areON;
Fog_Halo_Both_On = false;
Fog_Halo_Red_On = !areON;
DisplayLoggingInfo(FOG_HALO_CHANGE);
}
} else if (data[2].trim().equals("FR")) {// Handling Fogs
// Red
if (Fog_Halo_Red_On != areON) { // Current Data is
// different
Fog_Halo_Red_On = areON;
Fog_Halo_White_On = !areON;
Fog_Halo_Both_On = false;
DisplayLoggingInfo(FOG_HALO_CHANGE);
}
}
if (data[2].trim().equals("IN")) {// Handling Fogs Red
if (Interior_On != areON) { // Current Data is different
Interior_On = areON;
DisplayLoggingInfo(INTERIOR_CHANGE);
}
}
if (data[2].trim().equals("FS")) {// Handling Fogs Red
if (Fog_On != areON) { // Current Data is different
Fog_On = areON;
DisplayLoggingInfo(FOG_CHANGE);
}
}
} catch (Exception e) {
}
} else if (data[1].trim().equals("B")) { // / 'B' for Brightness
try {
Brightness = Integer.parseInt(data[3].trim());
if (Brightness >= 0 || Brightness <= 255) {
if (data[2].trim().equals("HB")) {
if (Halo_Brightness != Brightness) {
Halo_Brightness = Brightness;
DisplayLoggingInfo(BRIGHTNESS_HALO_CHANGE);
}
} else if (data[2].trim().equals("IB")) {
if (Interior_Brightness != Brightness) {
Interior_Brightness = Brightness;
DisplayLoggingInfo(BRIGHTNESS_INTERIOR_CHANGE);
}
} else if (data[2].trim().equals("FB")) {
if (Fog_Brightness != Brightness) {
Fog_Brightness = Brightness;
DisplayLoggingInfo(BRIGHTNESS_FOG_CHANGE);
}
}
}
} catch (Exception e) {
}
}
}
}
public static void sendADB(String send){
try{
server.send(send);
list.add("-->" + send);
}catch (IOException e){
list.add("**>" + send);
Log.e("microbridge", "problem sending TCP message", e);
}
}
private void DisplayLoggingInfo(int bTAG) {
// Log.d(TAG, "entered DisplayLoggingInfo");
intent.putExtra("tag", bTAG);
String data = null;
if (bTAG == CONNECTION_STATE_CHANGE) {
data = currentConnectionState;
} else if (bTAG == LOG_CHANGE) {
for (int i = 0; i < list.size(); i++) {
data += list.get(i) + "\n";
}
} else if (bTAG == RPM_CHANGE) {
data = RPM+"";
} else if (bTAG == RUNTIME_CHANGE) {
data = RunTime + " sec";
} else if (bTAG == SPEED_CHANGE) {
data = Speed + " K/H";
}
intent.putExtra("data", data);
sendBroadcast(intent);
}
int[] stringArrays = {
R.array.said_shakira,
R.array.said_no,
R.array.said_bad,
R.array.said_good,
R.array.prepare_battle,
R.array.power_down,
R.array.cancel,
R.array.error_not_connected,
R.array.error_got_nothing,
R.array.error_vehicle_off,
R.array.error_no_power_command,
R.array.all_halos_activated,
R.array.red_halos_activated,
R.array.white_halos_activated,
R.array.head_all_halos_activated,
R.array.head_red_halos_activated,
R.array.head_white_halos_activated,
R.array.all_halos_activated,
R.array.fog_all_halos_activated,
R.array.fog_red_halos_activated,
R.array.fog_white_halos_activated,
R.array.all_halos_deactivated,
R.array.red_halos_deactivated,
R.array.white_halos_deactivated,
R.array.head_all_halos_deactivated,
R.array.head_red_halos_deactivated,
R.array.head_white_halos_deactivated,
R.array.fog_all_halos_deactivated,
R.array.fog_red_halos_deactivated,
R.array.fog_white_halos_deactivated,
R.array.follow_rpm_both,
R.array.follow_rpm_red,
R.array.follow_rpm_white
};
public void handleVoiceData(int arrayIndex){
if(arrayIndex >= stringArrays.length || arrayIndex < 0) return;
String[] arrayUsed = getResources().getStringArray(stringArrays[arrayIndex]);
String SAY = arrayUsed[(int) Math.ceil(Math.random()* arrayUsed.length - 1)];
list.add("Going to say" + SAY);
tts.speak(SAY, TextToSpeech.QUEUE_ADD, null);
}
@Override
public void onDestroy() {
super.onDestroy();
server.stop();
server = null;
}
public static String getConnectionState() {
return currentConnectionState;
}
public static List<String> getWordList() {
return list;
}
}
| [
"[email protected]"
] | |
333a0b81ceb3df3f57ee77551db8750807a6855d | d0ffe6e340045ba46e399f38c4baff8a57a867a5 | /iBase4J-Web/src/test/java/org/ibase4j/core/MQTest.java | 27f5986dbebe633150d055ed8cbbc7a043ee37e6 | [] | no_license | bys-ray-xie/iBase4J | e61cdf6f96cb50ff2711ca0c8584534f9c849e45 | e9d24d33c5547dd26b3cdae6f6471b1cd98cd268 | refs/heads/master | 2020-12-25T12:57:10.796481 | 2016-05-25T15:52:23 | 2016-05-25T15:52:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 805 | java | package org.ibase4j.core;
import org.ibase4j.core.support.mq.QueueSender;
import org.ibase4j.core.support.mq.TopicSender;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@ComponentScan
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:Spring-config.xml" })
public class MQTest {
@Autowired
private QueueSender queueSender;
@Autowired
private TopicSender topicSender;
@Test
public void test() {
/*queueSender.send("ibase4j.queue", "test");
topicSender.send("ibase4j.topic", "test");*/
}
}
| [
"[email protected]"
] | |
32de3b103149ac36e449691acced4593d4d3a2c5 | e034eadd636b4a43f6c7b97627af7d718dec58ff | /ngpm/com.sap.trex.client/src/com/sap/trex/client/Property.java | 874ebcbf391272541b7e72be2414c7a9b9c8bc9e | [] | no_license | FURCAS-dev/FURCAS | ed89b3152a56466fee04285fa02b09d3124adf8f | 1f5651283f45666792b4747c5ce97128807761f1 | refs/heads/master | 2020-06-03T21:46:35.150521 | 2017-08-09T10:20:45 | 2017-08-09T10:20:45 | 1,083,639 | 2 | 3 | null | null | null | null | UTF-8 | Java | false | false | 1,186 | java | //
// TrexClient - (c) Copyright 2008-2009 SAP AG
//
// created from Property.xsd/wsdl. ! do not edit !
//
package com.sap.trex.client;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
public class Property
{
private String itsName;
private String itsValue;
public Property ()
{
itsName = "";
itsValue = "";
}
public void clear()
{
itsName = "";
itsValue = "";
}
public void read(InputStream theStream) throws IOException, TrexException
{
throw new TrexException(Error.TDBC_WRITE_ONLY,"Property");
}
public void write(OutputStream theStream) throws IOException, TrexException
{
theStream.writeString(itsName);
theStream.writeString(itsValue);
}
/**
* \class Property
*
* \var name -
* \var value -
*/
public String getName()
{
return itsName;
}
public void setName(String theName)
{
itsName = theName;
}
public String getValue()
{
return itsValue;
}
public void setValue(String theValue)
{
itsValue = theValue;
}
} | [
"[email protected]"
] | |
4dbdf8fd9136b7163b92db61858955bbb888a0aa | 784cf1f8db85a458a168c1b449a33a21517527f3 | /src/main/java/stecamSP1802/schedulers/WatchDog.java | f52c6d930304bad2379be8a527a438cd96d2759b | [] | no_license | CodeVicious/StecamPiantaggioBoccoleSP1802 | 178168f33e98f69061b7d0e9071430bccf6837ac | 10382bb4579beeb0eaa7198801803a368c961988 | refs/heads/master | 2022-01-01T00:00:22.355874 | 2019-10-21T16:38:14 | 2019-10-21T16:38:14 | 170,508,081 | 0 | 0 | null | 2021-12-14T21:17:21 | 2019-02-13T12:56:16 | Java | UTF-8 | Java | false | false | 1,285 | java | package stecamSP1802.schedulers;
import com.google.common.base.Preconditions;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import stecamSP1802.ConfigurationManager;
import stecamSP1802.controllers.MainController;
import java.util.Timer;
import java.util.TimerTask;
public class WatchDog {
private static Logger Logger = LogManager.getLogger(WatchDog.class);
private final MainController mainController;
ConfigurationManager conf = ConfigurationManager.getInstance();
public Timer logoutTimer;
public WatchDog(final MainController mainController) {
Preconditions.checkNotNull(mainController); //It has to be instatiated
this.mainController = mainController;
}
public void scheduleTimer() {
logoutTimer = new Timer();
TimerTask timerTask = new TimerTask() {
@Override
public void run() {
Logger.info("TRY TO LOGOUT");
mainController.resetLoggedUser();
}
};
logoutTimer.schedule(timerTask, conf.getLogoffTimeout() * 1000);
}
public void resetSchedule() {
logoutTimer.cancel();
scheduleTimer();
}
public void stopSchedule() {
logoutTimer.cancel();
}
} | [
"[email protected]"
] | |
cbbe3affa6ae5b72336b31d6c944019eee720045 | 31b7a2a14964dc37c40646d1215ee73b747f7311 | /contentcenter/src/main/java/com/soft/content/config/UserCenterRibbonConfig.java | 77f27297198633933dc9f9b2addbfc3dc68e75d4 | [] | no_license | valleytrees/high-concurrency | 2716329f539312214c1e8fea2e5dd381e6039915 | a892e5aaadc471f5047089291c2efbda8eb00c72 | refs/heads/master | 2023-05-27T04:45:02.101631 | 2021-06-08T05:22:40 | 2021-06-08T05:22:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 466 | java | package com.soft.content.config;
import org.springframework.context.annotation.Configuration;
/**
* @author 倪涛涛
* @version 1.0.0
* @ClassName UserCenterRibbonConfig.java
* @Description TODO
* @createTime 2020年09月25日 11:11:00
*/
@Configuration
//@RibbonClient(name = "user-center",configuration = RibbonConfiguration.class)
//@RibbonClients(defaultConfiguration = RibbonConfiguration.class)
public class UserCenterRibbonConfig {
}
| [
"[email protected]"
] | |
d71b87add648235392186231718d7bb070fbd561 | 6ef4e62a5ca91ab1455d2f020f3c64e1aadbc35c | /app/src/main/java/com/example/mahmoud/architectureexample/adapter/SourceAdapter.java | 209ea655571854a38ae1f986fa101479b9c8d904 | [
"Apache-2.0"
] | permissive | mmahmoudothman/RssApp | 70434e354406a62790ace1c114f579624e9138d7 | d25ffd8e3b70222442e89175e78e68d2c0207ab5 | refs/heads/master | 2020-04-20T08:30:30.585601 | 2019-02-02T00:25:34 | 2019-02-02T00:25:34 | 168,740,653 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,825 | java | package com.example.mahmoud.architectureexample.adapter;
import android.support.annotation.NonNull;
import android.support.v7.recyclerview.extensions.ListAdapter;
import android.support.v7.util.DiffUtil;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import com.example.mahmoud.architectureexample.R;
import com.example.mahmoud.architectureexample.model.Source;
public class SourceAdapter extends ListAdapter<Source, SourceAdapter.SourceHolder> {
private OnItemClickListener listener;
public SourceAdapter() {
super(DIFF_CALLBACK);
}
private static final DiffUtil.ItemCallback<Source> DIFF_CALLBACK = new DiffUtil.ItemCallback<Source>() {
@Override
public boolean areItemsTheSame(Source oldItem, Source newItem) {
return oldItem.getId() == newItem.getId();
}
@Override
public boolean areContentsTheSame(Source oldItem, Source newItem) {
return oldItem.getTitle().equals(newItem.getTitle()) &&
oldItem.getUrl().equals(newItem.getUrl());
}
};
@NonNull
@Override
public SourceHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
View itemView = LayoutInflater.from(parent.getContext())
.inflate(R.layout.source_item, parent, false);
return new SourceHolder(itemView);
}
@Override
public void onBindViewHolder(@NonNull SourceHolder holder, int position) {
Source currentSource = getItem(position);
holder.textViewTitle.setText(currentSource.getTitle());
holder.textViewLink.setText(currentSource.getUrl());
}
public Source getSourceAt(int position) {
return getItem(position);
}
class SourceHolder extends RecyclerView.ViewHolder {
private TextView textViewTitle;
private TextView textViewLink;
public SourceHolder(View itemView) {
super(itemView);
textViewTitle = itemView.findViewById(R.id.text_view_title);
textViewLink = itemView.findViewById(R.id.text_view_link);
itemView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
int position = getAdapterPosition();
if (listener != null && position != RecyclerView.NO_POSITION) {
listener.onItemClick(getItem(position));
}
}
});
}
}
public interface OnItemClickListener {
void onItemClick(Source source);
}
public void setOnItemClickListener(OnItemClickListener listener) {
this.listener = listener;
}
} | [
"[email protected]"
] | |
f4d3db57bc531e6e78bb3e314194af41e69a246e | 19dabcafc51a11dbe3ea29f7165fee71146a8771 | /ContactManager/app/src/main/java/com/example/contactmanager/MainActivity.java | cc85e03bbc43b2a0ad7bf03a024fc97f7a1a86cc | [] | no_license | sakusakori/Android-App-Projects | 1492d551528a71f3828e2a08523f91aaaaeaddef | 861b2e46a856f6b4ceedf94d9d2d8a34f87fe806 | refs/heads/master | 2023-01-10T23:14:48.238290 | 2020-10-31T04:04:27 | 2020-10-31T04:04:27 | 308,798,823 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,098 | java | package com.example.contactmanager;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import com.example.contactmanager.data.DatabaseHandler;
import com.example.contactmanager.model.Contact;
import java.util.List;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
DatabaseHandler db = new DatabaseHandler(MainActivity.this);
Contact saksham = new Contact();
saksham.setName("Saksham Sachdeva");
saksham.setPhoneNumber("98268378");
Contact saksham2 = new Contact();
saksham2.setName("saksham2 Sachdeva 2");
saksham2.setPhoneNumber("987654321");
db.addContact(saksham2);
Log.d("RR", "onCreate: "+saksham2.getId());
// List<Contact> contactList = db.getAllContacts();
// for(Contact contact: contactList){
// Log.d("MAINACT", "onCreate: "+contact.getName());
// }
}
}
| [
"[email protected]"
] | |
57799674b4f144ffaf7ab7fa53ec7e759cdf3732 | 2a80c8f3004960d07f3461ab7f32072095fd3a67 | /src/main/java/com/tencentcloudapi/vod/v20180717/models/MediaAiAnalysisCoverItem.java | 5580584ff5a1d667a5dbdb0aea2b6a46f234a256 | [
"Apache-2.0"
] | permissive | kennyshittu/tencentcloud-sdk-java-intl-en | 495a6e9cf3936406a0d95974aee666ded6632118 | 2ed6e287c3f451e3709791a3c7ac4b5316205670 | refs/heads/master | 2022-04-15T06:59:48.967043 | 2020-04-02T14:13:10 | 2020-04-02T14:13:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,487 | java | /*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.vod.v20180717.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class MediaAiAnalysisCoverItem extends AbstractModel{
/**
* Address of intelligently generated cover.
*/
@SerializedName("CoverUrl")
@Expose
private String CoverUrl;
/**
* Confidence of intelligently generated cover between 0 and 100.
*/
@SerializedName("Confidence")
@Expose
private Float Confidence;
/**
* Get Address of intelligently generated cover.
* @return CoverUrl Address of intelligently generated cover.
*/
public String getCoverUrl() {
return this.CoverUrl;
}
/**
* Set Address of intelligently generated cover.
* @param CoverUrl Address of intelligently generated cover.
*/
public void setCoverUrl(String CoverUrl) {
this.CoverUrl = CoverUrl;
}
/**
* Get Confidence of intelligently generated cover between 0 and 100.
* @return Confidence Confidence of intelligently generated cover between 0 and 100.
*/
public Float getConfidence() {
return this.Confidence;
}
/**
* Set Confidence of intelligently generated cover between 0 and 100.
* @param Confidence Confidence of intelligently generated cover between 0 and 100.
*/
public void setConfidence(Float Confidence) {
this.Confidence = Confidence;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap<String, String> map, String prefix) {
this.setParamSimple(map, prefix + "CoverUrl", this.CoverUrl);
this.setParamSimple(map, prefix + "Confidence", this.Confidence);
}
}
| [
"[email protected]"
] | |
d865412553bdd54b4f8e1a63b412deab69a189f1 | f67fb0f6bda0f9990df54ebba38059aa5b269f37 | /app/src/androidTest/java/com/yds/printwx/ApplicationTest.java | 29e209755337cddd869a5ed0463fee90aa8021e7 | [] | no_license | liuqicong/PrintWX | 6bd82f13ca85687077b463d4b27b98898f009dce | c4db4a22da93b0a5e07e2427395c327fe13f9388 | refs/heads/master | 2021-01-20T08:25:36.660464 | 2017-05-03T12:32:34 | 2017-05-03T12:32:34 | 90,144,529 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 346 | java | package com.yds.printwx;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
} | [
"[email protected]"
] | |
ade398d078580cdd664f26d80ffe88f408399061 | 3319763cbc68d7c1748395213ad8a14194bb76f1 | /services/core/java/com/android/server/FontService.java | 968cec574dc71e14ea63321b5f0973029af3b194 | [
"LicenseRef-scancode-unicode",
"Apache-2.0"
] | permissive | Evolution-X-Legacy/frameworks_base | 4ce0b639e0c74923d9550a7b987ed3d780e8b652 | 5e92f2f085d96617033bcc1de2b4f7aabb0ee898 | refs/heads/pie | 2022-03-21T15:01:06.440679 | 2019-10-19T09:00:27 | 2019-10-19T09:00:27 | 206,363,081 | 1 | 4 | NOASSERTION | 2020-01-12T18:03:03 | 2019-09-04T16:22:45 | Java | UTF-8 | Java | false | false | 28,636 | java | /*
* Copyright (C) 2018 The Dirty Unicorns 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.server;
import static android.content.Intent.ACTION_PACKAGE_ADDED;
import static android.content.Intent.ACTION_PACKAGE_CHANGED;
import static android.content.Intent.ACTION_PACKAGE_REMOVED;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlPullParserFactory;
import android.annotation.NonNull;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.IFontService;
import android.content.FontInfo;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.content.pm.PackageManager.NameNotFoundException;
import android.content.res.AssetManager;
import android.graphics.FontListParser;
import android.graphics.Typeface;
import android.net.Uri;
import android.os.Binder;
import android.os.Environment;
import android.os.FileUtils;
import android.os.Handler;
import android.os.HandlerThread;
import android.os.Looper;
import android.os.Message;
import android.os.Process;
import android.os.SELinux;
import android.os.SystemProperties;
import android.os.UserHandle;
import android.provider.Settings;
import android.text.FontConfig;
import android.text.TextUtils;
import android.util.Log;
import android.util.Slog;
import android.util.Xml;
import android.widget.Toast;
public class FontService extends IFontService.Stub {
private static final String TAG = "FontService";
private static final File SYSTEM_THEME_DIR = new File(Environment.getDataSystemDirectory(),
"theme");
private static final File SYSTEM_THEME_FONT_DIR = new File(SYSTEM_THEME_DIR, "fonts");
private static final File SYSTEM_THEME_CACHE_DIR = new File(SYSTEM_THEME_DIR, "cache");
private static final File SYSTEM_THEME_PREVIEW_CACHE_DIR = new File(SYSTEM_THEME_DIR,
"font_previews");
private static final String FONTS_XML = "fonts.xml";
private static final String FONT_IDENTIFIER = "custom_rom_font_provider";
private static final String SUBSTRATUM_INTENT = "projekt.substratum.THEME";
private Context mContext;
private FontHandler mFontHandler;
private HandlerThread mFontWorker;
private final Map<String, List<FontInfo>> mFontMap = new HashMap<>();
private final FontInfo mFontInfo = new FontInfo();
public static class Lifecycle extends SystemService {
FontService mService;
public Lifecycle(Context context) {
super(context);
}
@Override
public void onStart() {
mService = new FontService(getContext());
publishBinderService("dufont", mService);
}
@Override
public void onBootPhase(int phase) {
if (phase == PHASE_SYSTEM_SERVICES_READY) {
String cryptState = SystemProperties.get("vold.decrypt");
// wait until decrypted if we use FDE or just go one if not (cryptState will be empty then)
if (TextUtils.isEmpty(cryptState) || cryptState.equals("trigger_restart_framework")) {
if (makeDir(SYSTEM_THEME_DIR)) {
makeDir(SYSTEM_THEME_PREVIEW_CACHE_DIR);
restoreconThemeDir();
}
mService.sendInitializeFontMapMessage();
}
}
}
}
private class FontHandler extends Handler {
private static final int MESSAGE_INITIALIZE_MAP = 1;
private static final int MESSAGE_CHANGE_FONT = 2;
private static final int MESSAGE_PACKAGE_ADDED_OR_UPDATED = 3;
private static final int MESSAGE_PACKAGE_REMOVED = 4;
public FontHandler(Looper looper) {
super(looper);
}
@Override
public void handleMessage(Message msg) {
String packageName;
switch (msg.what) {
case MESSAGE_INITIALIZE_MAP:
initializeFontMap();
break;
case MESSAGE_CHANGE_FONT:
final FontInfo info = (FontInfo) msg.obj;
applyFontsPriv(info);
break;
case MESSAGE_PACKAGE_ADDED_OR_UPDATED:
packageName = (String) msg.obj;
boolean isFontProvider = isPackageFontProvider(packageName);
if (isFontProvider) {
Log.v(TAG, packageName + " was added or updated. Adding or updating fonts");
synchronized (mFontMap) {
processFontPackage(packageName);
}
break;
}
// Fall through to MESSAGE_PACKAGE_REMOVED if the package
// is not a font provider, in case it needs cleanup
case MESSAGE_PACKAGE_REMOVED:
packageName = (String) msg.obj;
boolean hadFonts = mFontMap.containsKey(packageName);
if (hadFonts) {
synchronized (mFontMap) {
Log.v(TAG,
packageName + " was removed. Clearing fonts from provider map");
removeFontPackage(packageName);
}
// if removed package provided current font, reset to system
if (TextUtils.equals(packageName, mFontInfo.packageName)) {
Log.v(TAG, packageName
+ " provided the current font. Restoring to system font");
applyFontsPriv(FontInfo.getDefaultFontInfo());
}
}
break;
default:
Log.w(TAG, "Unknown message " + msg.what);
break;
}
}
}
private class PackageReceiver extends BroadcastReceiver {
@Override
public void onReceive(@NonNull
final Context context, @NonNull
final Intent intent) {
final Uri data = intent.getData();
if (data == null) {
Slog.e(TAG, "Cannot handle package broadcast with null data");
return;
}
final String packageName = data.getSchemeSpecificPart();
Message msg;
switch (intent.getAction()) {
case ACTION_PACKAGE_ADDED:
case ACTION_PACKAGE_CHANGED:
msg = mFontHandler.obtainMessage(
FontHandler.MESSAGE_PACKAGE_ADDED_OR_UPDATED);
msg.obj = packageName;
mFontHandler.sendMessage(msg);
break;
case ACTION_PACKAGE_REMOVED:
msg = mFontHandler.obtainMessage(
FontHandler.MESSAGE_PACKAGE_REMOVED);
msg.obj = packageName;
mFontHandler.sendMessage(msg);
break;
default:
break;
}
}
}
public FontService(Context context) {
mContext = context;
mFontWorker = new HandlerThread("FontServiceWorker", Process.THREAD_PRIORITY_BACKGROUND);
mFontWorker.start();
mFontHandler = new FontHandler(mFontWorker.getLooper());
mFontInfo.updateFrom(getCurrentFontInfoFromProvider());
IntentFilter packageFilter = new IntentFilter();
packageFilter.addAction(ACTION_PACKAGE_ADDED);
packageFilter.addAction(ACTION_PACKAGE_CHANGED);
packageFilter.addAction(ACTION_PACKAGE_REMOVED);
packageFilter.addDataScheme("package");
mContext.registerReceiverAsUser(new PackageReceiver(), UserHandle.ALL,
packageFilter, null, null);
}
@Override
public void applyFont(FontInfo info) {
enforceFontService();
if (info.packageName == null
|| info.fontName == null
|| info.previewPath == null) {
info.updateFrom(FontInfo.getDefaultFontInfo());
}
Log.v(TAG, "applyFonts() packageName = " + info.toString());
Message msg = mFontHandler.obtainMessage(
FontHandler.MESSAGE_CHANGE_FONT);
msg.obj = info;
mFontHandler.sendMessage(msg);
}
@Override
public FontInfo getFontInfo() {
enforceFontService();
FontInfo info = new FontInfo(mFontInfo);
return info;
}
@Override
public Map<String, List<FontInfo>> getAllFonts() {
enforceFontService();
return mFontMap;
}
private void sendInitializeFontMapMessage() {
Message msg = mFontHandler.obtainMessage(
FontHandler.MESSAGE_INITIALIZE_MAP);
mFontHandler.sendMessage(msg);
}
private void initializeFontMap() {
List<String> packageList = getInstalledFontPackagesFromProvider();
for (String pkg : packageList) {
processFontPackage(pkg);
}
Log.v(TAG, " Font map initialized- " + mFontMap.toString());
}
private void processFontPackage(String packageName) {
List<FontInfo> infoList = new ArrayList<FontInfo>();
Context appContext = getAppContext(packageName);
if (appContext == null) {
removeFontPackage(packageName);
Slog.e(TAG, "Removed " + packageName + " from Font list");
return;
}
AssetManager am = appContext.getAssets();
List<String> fontZips = getFontsFromPackage(packageName);
File packageFontPreviewDir = new File(SYSTEM_THEME_PREVIEW_CACHE_DIR, packageName);
if (packageFontPreviewDir.exists() && packageFontPreviewDir.isDirectory()) {
FileUtils.deleteContentsAndDir(packageFontPreviewDir);
}
makeDir(packageFontPreviewDir);
// iterate list of fonts package provides
for (String fontZip : fontZips) {
// create preview directory for this font
// for now, just delete and do it again
// TODO: clean this up
String sanitizedZipName = sanitizeZipName(fontZip);
File currentFontPreviewDir = new File(packageFontPreviewDir, sanitizedZipName);
makeDir(currentFontPreviewDir);
Log.v(TAG, "CurrentFontPreviewDir absolute path = "
+ currentFontPreviewDir.getAbsolutePath());
// copy zip to preview cache
File fontZipFile = new File(currentFontPreviewDir, fontZip);
try (InputStream inputStream = am.open("fonts/" + fontZip)) {
FileUtils.copyToFileOrThrow(inputStream, fontZipFile);
} catch (IOException e) {
Log.e(TAG, "There is an exception when trying to copy themed fonts", e);
}
// get fonts.xml from zip
File fontXmlFile = new File(currentFontPreviewDir, FONTS_XML);
unzipFile(fontZipFile, fontXmlFile, FONTS_XML);
// TODO: find a appropiate method to use a fallback xml and avoid this
if (!fontXmlFile.exists()) {
Toast.makeText(mContext,mContext.getResources()
.getString(com.android.internal.R.string.fontservice_incompatible_font),Toast.LENGTH_LONG).show();
return;
}
// parse fonts.xml for name of preview typeface
String fontFileName = getPreviewFontNameFromXml(fontXmlFile,
currentFontPreviewDir.getAbsolutePath());
// extract tff file from zip
File fontFile = new File(fontFileName);
unzipFile(fontZipFile, fontFile, fontFile.getName());
// clean up workspace
if (fontXmlFile.exists()) {
fontXmlFile.delete();
}
if (fontZipFile.exists()) {
fontZipFile.delete();
}
// create FontInfo and add to list
FontInfo fontInfo = new FontInfo();
fontInfo.fontName = sanitizedZipName;
fontInfo.packageName = packageName;
fontInfo.previewPath = fontFile.getAbsolutePath();
infoList.add(fontInfo);
}
// add or replace font list
if (mFontMap.containsKey(packageName)) {
mFontMap.replace(packageName, infoList);
} else {
mFontMap.put(packageName, infoList);
}
// update package list in provider
List<String> packageList = getInstalledFontPackagesFromProvider();
if (!packageList.contains(packageName)) {
packageList.add(packageName);
putFontPackagesIntoProvider(packageList);
}
Log.v(TAG, "The new FontInfo map: " + mFontMap.toString());
}
private void removeFontPackage(String packageName) {
if (!mFontMap.containsKey(packageName)) {
return;
}
File packageFontPreviewDir = new File(SYSTEM_THEME_PREVIEW_CACHE_DIR, packageName);
if (packageFontPreviewDir.exists() && packageFontPreviewDir.isDirectory()) {
FileUtils.deleteContentsAndDir(packageFontPreviewDir);
}
mFontMap.remove(packageName, mFontMap.get(packageName));
// update package list in provider
List<String> packageList = getInstalledFontPackagesFromProvider();
if (packageList.contains(packageName)) {
packageList.remove(packageName);
putFontPackagesIntoProvider(packageList);
}
}
private static String getPreviewFontNameFromXml(File xmlFile, String path) {
FontConfig fontConfig = null;
try {
fontConfig = FontListParser.parse(xmlFile, path);
} catch (Exception e) {
Log.e(TAG, "Exception thrown parsing fonts.xml! " + e.toString());
return null;
}
if (fontConfig != null) {
List<FontConfig.Family> families = fontConfig.getFamilies();
if (families != null) {
FontConfig.Family family = families.get(0);
if (family != null) {
FontConfig.Font[] fonts = family.getFonts();
if (fonts != null && fonts.length > 0) {
FontConfig.Font font = fonts[0];
if (font != null) {
Log.v(TAG, "Font found from parsing fonts.xml! " + font.getFontName());
return font.getFontName();
}
}
}
}
}
return null;
}
private boolean isPackageFontProvider(String packageName) {
// check if the package res bool is set first
Context appContext = getAppContext(packageName);
if (appContext == null) return false;
int id = appContext.getResources().getIdentifier(FONT_IDENTIFIER,
"bool",
appContext.getPackageName());
if (id != 0) {
return true;
}
// now check for Substratum package
// TODO: why resolve for ALL packages? Just analyze this package
List<ResolveInfo> subsPackages = new ArrayList<ResolveInfo>();
PackageManager pm = mContext.getPackageManager();
Intent i = new Intent(SUBSTRATUM_INTENT);
i.addCategory(Intent.CATEGORY_DEFAULT);
subsPackages.addAll(pm.queryIntentActivities(i,
PackageManager.GET_META_DATA));
for (ResolveInfo info : subsPackages) {
if (TextUtils.equals(info.activityInfo.packageName, packageName)) {
return true;
}
}
// bail out
return false;
}
private List<String> getFontsFromPackage(String packageName) {
Context appContext = getAppContext(packageName);
AssetManager am = appContext.getAssets();
List<String> list = new ArrayList<String>();
try {
list.addAll(Arrays.asList(am.list("fonts")));
} catch (Exception e) {
Log.e(TAG, appContext.getPackageName() + "did not have a fonts folder!");
}
// remove Substratum preview files, only grap zips
List<String> previews = new ArrayList<String>();
for (String font : list) {
if (font.contains("preview") || !font.endsWith(".zip")) {
previews.add(font);
}
}
list.removeAll(previews);
Log.v(TAG, packageName + " has the following fonts - " + list.toString());
return list;
}
private void putFontPackagesIntoProvider(List<String> packages) {
StringBuilder builder = new StringBuilder();
for (int i = 0; i < packages.size(); i++) {
builder.append(packages.get(i));
builder.append("|");
}
Settings.System.putStringForUser(mContext.getContentResolver(),
Settings.System.FONT_PACKAGES,
builder.toString(), UserHandle.USER_CURRENT);
}
private List<String> getInstalledFontPackagesFromProvider() {
String packages = Settings.System.getStringForUser(mContext.getContentResolver(),
Settings.System.FONT_PACKAGES, UserHandle.USER_CURRENT);
List<String> packageList = new ArrayList<>();
if (TextUtils.isEmpty(packages)) {
packageList.addAll(Arrays.asList(mContext.getResources()
.getStringArray(com.android.internal.R.array.config_fontPackages)));
} else {
packageList.addAll(Arrays.asList(packages.split("\\|")));
}
return packageList;
}
private void putCurrentFontInfoInProvider(FontInfo fontInfo) {
Settings.System.putStringForUser(mContext.getContentResolver(), Settings.System.FONT_INFO,
fontInfo.toDelimitedString(), UserHandle.USER_CURRENT);
}
// index 0 is package name, index 1 is font name, index 2 is previewPath
private FontInfo getCurrentFontInfoFromProvider() {
String info = Settings.System.getStringForUser(mContext.getContentResolver(),
Settings.System.FONT_INFO, UserHandle.USER_CURRENT);
FontInfo fontInfo = new FontInfo();
if (TextUtils.isEmpty(info)) {
fontInfo.updateFrom(FontInfo.getDefaultFontInfo());
} else {
List<String> infoList = Arrays.asList(info.split("\\|"));
fontInfo.packageName = infoList.get(0);
fontInfo.fontName = infoList.get(1);
fontInfo.previewPath = infoList.get(2);
}
return fontInfo;
}
private Context getAppContext(String packageName) {
Context ctx = null;
try {
ctx = mContext.createPackageContext(packageName,
Context.CONTEXT_IGNORE_SECURITY);
} catch (NameNotFoundException e) {
Log.e(TAG, "Failed to get " + packageName + " context");
}
return ctx;
}
private void applyFontsPriv(FontInfo info) {
Log.v(TAG, "applyFontsPriv() packageName = " + info.toString());
final long ident = Binder.clearCallingIdentity();
try {
if (info.equals(FontInfo.getDefaultFontInfo())) {
clearFonts();
} else {
copyFonts(info);
}
Intent intent = new Intent("com.android.server.ACTION_FONT_CHANGED");
intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY
| Intent.FLAG_RECEIVER_FOREGROUND);
mContext.sendBroadcastAsUser(intent, UserHandle.CURRENT);
} finally {
Binder.restoreCallingIdentity(ident);
}
}
private void copyFonts(FontInfo info) {
// Prepare local cache dir for font package assembly
File cacheDir = new File(SYSTEM_THEME_CACHE_DIR, "FontCache");
if (cacheDir.exists()) {
FileUtils.deleteContentsAndDir(cacheDir);
}
boolean created = cacheDir.mkdirs();
if (!created) {
Log.e(TAG, "Could not create cache directory...");
}
// Append zip to filename since it is probably removed
// for list presentation
String zipFileName = info.fontName;
if (!zipFileName.endsWith(".zip")) {
zipFileName = zipFileName + ".zip";
}
// Copy target themed fonts zip to our cache dir
Context themeContext = getAppContext(info.packageName);
AssetManager am = themeContext.getAssets();
File fontZip = new File(cacheDir, zipFileName);
try (InputStream inputStream = am.open("fonts/" + zipFileName)) {
FileUtils.copyToFileOrThrow(inputStream, fontZip);
} catch (IOException e) {
Log.e(TAG, "There is an exception when trying to copy themed fonts", e);
}
// Unzip new fonts and delete zip file, overwriting any system fonts
unzip(fontZip.getAbsolutePath(), cacheDir.getAbsolutePath());
boolean deleted = fontZip.delete();
if (!deleted) {
Log.e(TAG, "Could not delete ZIP file");
}
// Prepare system theme fonts folder and copy new fonts folder from our cache
FileUtils.deleteContentsAndDir(SYSTEM_THEME_FONT_DIR);
makeDir(SYSTEM_THEME_FONT_DIR);
copyDir(cacheDir.getAbsolutePath(), SYSTEM_THEME_FONT_DIR.getAbsolutePath());
// Let system know it's time for a font change
FileUtils.deleteContentsAndDir(cacheDir);
refreshFonts();
mFontInfo.updateFrom(info);
putCurrentFontInfoInProvider(mFontInfo);
}
private static String sanitizeZipName(String zipFile) {
return zipFile.substring(0, zipFile.length() - 4);
}
private void refreshFonts() {
// Set permissions on font files and config xml
if (SYSTEM_THEME_FONT_DIR.exists()) {
// Set permissions
setPermissionsRecursive(SYSTEM_THEME_FONT_DIR,
FileUtils.S_IRWXU | FileUtils.S_IRGRP | FileUtils.S_IRWXO,
FileUtils.S_IRWXU | FileUtils.S_IRWXG | FileUtils.S_IROTH | FileUtils.S_IXOTH);
restoreconThemeDir();
}
// Notify zygote that themes need a refresh
SystemProperties.set("sys.refresh_theme", "1");
float fontSize = Settings.System.getFloatForUser(mContext.getContentResolver(),
Settings.System.FONT_SCALE, 1.0f, UserHandle.USER_CURRENT);
Settings.System.putFloatForUser(mContext.getContentResolver(),
Settings.System.FONT_SCALE, (fontSize + 0.0000001f), UserHandle.USER_CURRENT);
}
private void clearFonts() {
FileUtils.deleteContentsAndDir(SYSTEM_THEME_FONT_DIR);
refreshFonts();
mFontInfo.updateFrom(FontInfo.getDefaultFontInfo());
putCurrentFontInfoInProvider(mFontInfo);
}
private void enforceFontService() {
mContext.enforceCallingOrSelfPermission(android.Manifest.permission.ACCESS_FONT_MANAGER,
"FontService");
}
private static void setPermissions(File path, int permissions) {
FileUtils.setPermissions(path, permissions, -1, -1);
}
private static void setPermissionsRecursive(File dir, int file, int folder) {
if (!dir.isDirectory()) {
setPermissions(dir, file);
return;
}
for (File child : dir.listFiles()) {
if (child.isDirectory()) {
setPermissionsRecursive(child, file, folder);
setPermissions(child, folder);
} else {
setPermissions(child, file);
}
}
setPermissions(dir, folder);
}
private static boolean restoreconThemeDir() {
return SELinux.restoreconRecursive(SYSTEM_THEME_DIR);
}
private static boolean makeDir(File dir) {
if (dir.exists()) {
return dir.isDirectory();
}
if (dir.mkdirs()) {
int permissions = FileUtils.S_IRWXU | FileUtils.S_IRWXG |
FileUtils.S_IRWXO;
SELinux.restorecon(dir);
return FileUtils.setPermissions(dir, permissions, -1, -1) == 0;
}
return false;
}
private static boolean copyDir(String src, String dst) {
File[] files = new File(src).listFiles();
boolean success = true;
if (files != null) {
for (File file : files) {
File newFile = new File(dst + File.separator +
file.getName());
if (file.isDirectory()) {
success &= copyDir(file.getAbsolutePath(),
newFile.getAbsolutePath());
} else {
success &= FileUtils.copyFile(file, newFile);
}
}
} else {
// not a directory
success = false;
}
return success;
}
private static void unzipFile(File zipFile, File destFile, String fileName) {
try {
ZipInputStream zis = new ZipInputStream(
new BufferedInputStream(new FileInputStream(zipFile)));
ZipEntry ze;
int count;
byte[] buffer = new byte[8192];
boolean isDone = false;
while (!isDone && (ze = zis.getNextEntry()) != null) {
if (ze.isDirectory() || !ze.getName().equals(fileName)) {
continue;
}
if (ze.getName().equals(fileName)) {
Log.v(TAG, "iterating " + zipFile.getName() + "Found " + fileName
+ ", trying to extract");
FileOutputStream fout = new FileOutputStream(destFile);
try {
while ((count = zis.read(buffer)) != -1)
fout.write(buffer, 0, count);
} finally {
fout.close();
}
isDone = true;
}
}
zis.close();
} catch (IOException e) {
Log.e(TAG, "There is an exception when trying to unzip", e);
}
}
private static void unzip(String source, String destination) {
try (ZipInputStream inputStream = new ZipInputStream(
new BufferedInputStream(new FileInputStream(source)))) {
ZipEntry zipEntry;
int count;
byte[] buffer = new byte[8192];
while ((zipEntry = inputStream.getNextEntry()) != null) {
File file = new File(destination, zipEntry.getName());
File dir = zipEntry.isDirectory() ? file : file.getParentFile();
if (!dir.isDirectory() && !dir.mkdirs()) {
throw new FileNotFoundException("Failed to ensure directory: " +
dir.getAbsolutePath());
}
if (zipEntry.isDirectory()) {
continue;
}
try (FileOutputStream outputStream = new FileOutputStream(file)) {
while ((count = inputStream.read(buffer)) != -1) {
outputStream.write(buffer, 0, count);
}
}
}
} catch (IOException e) {
Log.e(TAG, "There is an exception when trying to unzip", e);
}
}
}
| [
"[email protected]"
] | |
6cfa8b2752711fa8a3f7e02d93d415622c30cee9 | 54c1dcb9a6fb9e257c6ebe7745d5008d29b0d6b6 | /app/src/main/java/com/vivo/push/PushClient.java | 546f3e19ed818f00a861f0e687d1aaba9bd89263 | [] | no_license | rcoolboy/guilvN | 3817397da465c34fcee82c0ca8c39f7292bcc7e1 | c779a8e2e5fd458d62503dc1344aa2185101f0f0 | refs/heads/master | 2023-05-31T10:04:41.992499 | 2021-07-07T09:58:05 | 2021-07-07T09:58:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,715 | java | package com.vivo.push;
import android.content.Context;
import com.vivo.push.util.VivoPushException;
import java.util.ArrayList;
import java.util.List;
public class PushClient {
public static final String DEFAULT_REQUEST_ID = "1";
public static final Object SLOCK = new Object();
public static volatile PushClient sPushClient;
public PushClient(Context context) {
C4121p.m11080a().mo41093a(context);
}
private void checkParam(String str) {
if (str == null) {
throw new IllegalArgumentException("PushManager String param should not be " + str);
}
}
public static PushClient getInstance(Context context) {
if (sPushClient == null) {
synchronized (SLOCK) {
if (sPushClient == null) {
sPushClient = new PushClient(context.getApplicationContext());
}
}
}
return sPushClient;
}
public void bindAlias(String str, IPushActionListener iPushActionListener) {
checkParam(str);
C4121p.m11080a().mo41100a(str, iPushActionListener);
}
public void checkManifest() throws VivoPushException {
C4121p.m11080a().mo41106b();
}
public void delTopic(String str, IPushActionListener iPushActionListener) {
ArrayList<String> arrayList = new ArrayList<>(1);
arrayList.add(str);
C4121p.m11080a().mo41113b(arrayList, iPushActionListener);
}
public String getAlias() {
return C4121p.m11080a().mo41127l();
}
public String getRegId() {
return C4121p.m11080a().mo41121f();
}
public List<String> getTopics() {
return C4121p.m11080a().mo41116c();
}
public String getVersion() {
return "2.5.3";
}
public void initialize() {
C4121p.m11080a().mo41124i();
}
public boolean isSupport() {
return C4121p.m11080a().mo41119d();
}
public void setSystemModel(boolean z) {
C4121p.m11080a().mo41105a(z);
}
public void setTopic(String str, IPushActionListener iPushActionListener) {
ArrayList<String> arrayList = new ArrayList<>(1);
arrayList.add(str);
C4121p.m11080a().mo41103a(arrayList, iPushActionListener);
}
public void turnOffPush(IPushActionListener iPushActionListener) {
C4121p.m11080a().mo41108b(iPushActionListener);
}
public void turnOnPush(IPushActionListener iPushActionListener) {
C4121p.m11080a().mo41095a(iPushActionListener);
}
public void unBindAlias(String str, IPushActionListener iPushActionListener) {
checkParam(str);
C4121p.m11080a().mo41110b(str, iPushActionListener);
}
}
| [
"[email protected]"
] | |
86fd295dec02b0a92f324e6f1fb4eb3b4572cd86 | 85647ed994ad6d49803e47045bbc14eb42ea742c | /app/build/gen/android/support/mediacompat/R.java | de9a40aea229a1d0e4101d737176b6b2381c86c7 | [] | no_license | MansiNibe/CalculatorMN | 7544f173d6789d0c06079aca200f1ccc1199efd7 | 3ef48885678da8a533218fdd1c17729c74318c65 | refs/heads/master | 2023-04-20T09:03:53.724078 | 2021-05-07T08:01:56 | 2021-05-07T08:01:56 | 356,619,407 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 634,288 | 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.mediacompat;
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 abc_tooltip_enter=0x7f05000a;
public static final int abc_tooltip_exit=0x7f05000b;
public static final int design_bottom_sheet_slide_in=0x7f05000c;
public static final int design_bottom_sheet_slide_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=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 actionBarItemBackground=0x7f0100b1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarPopupTheme=0x7f0100aa;
/** <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=0x7f0100af;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarSplitStyle=0x7f0100ac;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarStyle=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 actionBarTabBarStyle=0x7f0100a6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabStyle=0x7f0100a5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=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 actionBarTheme=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 actionBarWidgetTheme=0x7f0100ae;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionButtonStyle=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 actionDropDownStyle=0x7f0100c7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionLayout=0x7f010123;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b2;
/** <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=0x7f0100b3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=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 actionModeCloseDrawable=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 actionModeCopyDrawable=0x7f0100ba;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCutDrawable=0x7f0100b9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeFindDrawable=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 actionModePasteDrawable=0x7f0100bb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePopupWindowStyle=0x7f0100c0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=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 actionModeShareDrawable=0x7f0100bd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSplitBackground=0x7f0100b7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeStyle=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 actionModeWebSearchDrawable=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 actionOverflowButtonStyle=0x7f0100a8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowMenuStyle=0x7f0100a9;
/** <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=0x7f010125;
/** <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=0x7f010124;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int activityChooserViewStyle=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 alertDialogButtonGroupStyle=0x7f0100f8;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100f9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100f7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100fa;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int allowStacking=0x7f010111;
/** <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=0x7f010112;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static final int alphabeticModifiers=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 arrowHeadLength=0x7f010119;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowShaftLength=0x7f01011a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=0x7f0100ff;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int autoSizeMaxTextSize=0x7f010099;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int autoSizeMinTextSize=0x7f010098;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoSizePresetSizes=0x7f010097;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int autoSizeStepGranularity=0x7f010096;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int autoSizeTextType=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 background=0x7f010072;
/** <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=0x7f010074;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundStacked=0x7f010073;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01015c;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int backgroundTintMode=0x7f01015d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01011b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_autoHide=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 behavior_hideable=0x7f01000f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_overlapTop=0x7f010034;
/** <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=0x7f01000e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010010;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int borderWidth=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 borderlessButtonStyle=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 bottomSheetDialogTheme=0x7f010022;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetStyle=0x7f010023;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarButtonStyle=0x7f0100cd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNegativeButtonStyle=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 buttonBarNeutralButtonStyle=0x7f0100fe;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 buttonBarStyle=0x7f0100cc;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>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=0x7f010151;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int buttonIconDimen=0x7f01008d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonPanelSideLayout=0x7f010087;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyle=0x7f010100;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyleSmall=0x7f010101;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010113;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int buttonTintMode=0x7f010114;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkboxStyle=0x7f010102;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkedTextViewStyle=0x7f010103;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeIcon=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 closeItemLayout=0x7f010084;
/** <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=0x7f010153;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010152;
/** <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=0x7f01001d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010017;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010115;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100ef;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100f6;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100f3;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100f1;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlHighlight=0x7f0100f2;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100f0;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorError=0x7f01010f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100ed;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimaryDark=0x7f0100ee;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorSwitchThumbNormal=0x7f0100f4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int commitIcon=0x7f010139;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentDescription=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 contentInsetEnd=0x7f01007d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010081;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetLeft=0x7f01007e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01007f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 contentInsetStartWithNavigation=0x7f010080;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 controlBackground=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 coordinatorLayoutStyle=0x7f010054;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterEnabled=0x7f01004a;
/** <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=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 counterOverflowTextAppearance=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 counterTextAppearance=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 customNavigationLayout=0x7f010075;
/** <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=0x7f010133;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dialogPreferredPadding=0x7f0100c5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dialogTheme=0x7f0100c4;
/** <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=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 divider=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 dividerHorizontal=0x7f0100d2;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dividerPadding=0x7f01011f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerVertical=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 drawableSize=0x7f010117;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int drawerArrowStyle=0x7f010066;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dropDownListViewStyle=0x7f0100e4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dropdownListPreferredItemHeight=0x7f0100c8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextBackground=0x7f0100d9;
/** <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=0x7f0100d8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010104;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int elevation=0x7f010082;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 errorTextAppearance=0x7f010049;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f010086;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expanded=0x7f010009;
/** <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=0x7f01001e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMargin=0x7f010011;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginBottom=0x7f010015;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010014;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010012;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginTop=0x7f010013;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandedTitleTextAppearance=0x7f010016;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fabCustomSize=0x7f010027;
/** <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=0x7f010026;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fastScrollEnabled=0x7f010004;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollHorizontalThumbDrawable=0x7f010007;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollHorizontalTrackDrawable=0x7f010008;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollVerticalThumbDrawable=0x7f010005;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollVerticalTrackDrawable=0x7f010006;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int font=0x7f010064;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontFamily=0x7f01009a;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontProviderAuthority=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 fontProviderCerts=0x7f010060;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fontProviderFetchStrategy=0x7f010061;
/** <p>May be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
*/
public static final int fontProviderFetchTimeout=0x7f010062;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontProviderPackage=0x7f01005e;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontProviderQuery=0x7f01005f;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fontStyle=0x7f010063;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int fontWeight=0x7f010065;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01002c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int gapBetweenBars=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 goIcon=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 headerLayout=0x7f010032;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int height=0x7f010067;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01007b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01004e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 hintTextAppearance=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 homeAsUpIndicator=0x7f0100ca;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeLayout=0x7f010076;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int icon=0x7f01006f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int iconTint=0x7f010128;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int iconTintMode=0x7f010129;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 imageButtonStyle=0x7f0100da;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int indeterminateProgressStyle=0x7f010078;
/** <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=0x7f010085;
/** <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=0x7f010033;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010068;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemBackground=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 itemIconTint=0x7f01002e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 itemTextAppearance=0x7f010031;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01002f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int keylines=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 layout=0x7f010130;
/** <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=0x7f010058;
/** <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=0x7f01005a;
/** <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=0x7f010057;
/** <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=0x7f010020;
/** <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=0x7f010021;
/** <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>0x05</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=0x7f01005c;
/** <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>0x05</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=0x7f01005b;
/** <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=0x7f010059;
/** <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=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 layout_scrollInterpolator=0x7f01000d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listChoiceBackgroundIndicator=0x7f0100ec;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listDividerAlertDialog=0x7f0100c6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listItemLayout=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 listLayout=0x7f010088;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listMenuViewStyle=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 listPopupWindowStyle=0x7f0100e5;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100df;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x7f0100e1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100e0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingLeft=0x7f0100e2;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100e3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int logo=0x7f010070;
/** <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=0x7f010156;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxActionInlineWidth=0x7f010035;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxButtonHeight=0x7f010150;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01011d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int menu=0x7f01002d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int multiChoiceItemLayout=0x7f010089;
/** <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=0x7f010155;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int navigationIcon=0x7f010154;
/** <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=0x7f01006a;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static final int numericModifiers=0x7f010121;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int overlapAnchor=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 paddingBottomNoButtons=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 paddingEnd=0x7f01015a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingStart=0x7f010159;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingTopNoTitle=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 panelBackground=0x7f0100e9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelMenuListTheme=0x7f0100eb;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100ea;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleContentDescription=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 passwordToggleDrawable=0x7f010050;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01004f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010052;
/** <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=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 popupMenuStyle=0x7f0100d6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupTheme=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 popupWindowStyle=0x7f0100d7;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 pressedTranslationZ=0x7f010028;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int progressBarPadding=0x7f010079;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int progressBarStyle=0x7f010077;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int queryBackground=0x7f01013b;
/** <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=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 radioButtonStyle=0x7f010105;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyle=0x7f010106;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleIndicator=0x7f010107;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleSmall=0x7f010108;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int 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=0x7f010025;
/** <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=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 scrimVisibleHeightTrigger=0x7f01001b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchHintIcon=0x7f010137;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 searchViewStyle=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 seekBarStyle=0x7f010109;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackground=0x7f0100ce;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100cf;
/** <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=0x7f010122;
/** <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=0x7f01011e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showText=0x7f010147;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01008c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f01008a;
/** <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=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 spinnerDropDownItemStyle=0x7f0100c9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerStyle=0x7f01010a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int splitTrack=0x7f010146;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01008e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01012d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01000a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01000b;
/** <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 statusBarBackground=0x7f010056;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010019;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01012b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int submitBackground=0x7f01013c;
/** <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=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 subtitleTextAppearance=0x7f010149;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010158;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int suggestionRowLayout=0x7f01013a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchMinWidth=0x7f010144;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchPadding=0x7f010145;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchStyle=0x7f01010b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f010143;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabBackground=0x7f010039;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabContentStart=0x7f010038;
/** <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=0x7f01003b;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010036;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorHeight=0x7f010037;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMaxWidth=0x7f01003d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMinWidth=0x7f01003c;
/** <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=0x7f01003a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPadding=0x7f010045;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingBottom=0x7f010044;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingEnd=0x7f010043;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingStart=0x7f010041;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010042;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010040;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabTextAppearance=0x7f01003e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01003f;
/** <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=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 textAppearanceLargePopupMenu=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 textAppearanceListItem=0x7f0100e6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSecondary=0x7f0100e7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100e8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearancePopupMenuHeader=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 textAppearanceSearchResultSubtitle=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 textAppearanceSearchResultTitle=0x7f0100db;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSmallPopupMenu=0x7f0100c2;
/** <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=0x7f0100fb;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorError=0x7f010024;
/** <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=0x7f0100dd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int theme=0x7f01015b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thickness=0x7f01011c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010142;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01013d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>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=0x7f01013e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010091;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010092;
/** <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=0x7f010093;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01008f;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int tintMode=0x7f010090;
/** <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=0x7f010069;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 titleMargin=0x7f01014a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginBottom=0x7f01014e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginEnd=0x7f01014c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginStart=0x7f01014b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginTop=0x7f01014d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargins=0x7f01014f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f010148;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010157;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextStyle=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 toolbarId=0x7f01001a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100d5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100d4;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int tooltipForegroundColor=0x7f01010e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tooltipFrameBackground=0x7f01010d;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tooltipText=0x7f010127;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int track=0x7f01013f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int trackTint=0x7f010140;
/** <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=0x7f010141;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int useCompatPadding=0x7f01002a;
/** <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 viewInflaterClass=0x7f010110;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int voiceIcon=0x7f010138;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBar=0x7f01009b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01009d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01009e;
/** <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=0x7f0100a2;
/** <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=0x7f0100a0;
/** <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=0x7f01009f;
/** <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=0x7f0100a1;
/** <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=0x7f0100a3;
/** <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=0x7f0100a4;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowNoTitle=0x7f01009c;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f0d0000;
public static final int abc_allow_stacked_button_bar=0x7f0d0001;
public static final int abc_config_actionMenuItemAllCaps=0x7f0d0002;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0d0003;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f0a004c;
public static final int abc_background_cache_hint_selector_material_light=0x7f0a004d;
public static final int abc_btn_colored_borderless_text_material=0x7f0a004e;
public static final int abc_btn_colored_text_material=0x7f0a004f;
public static final int abc_color_highlight_material=0x7f0a0050;
public static final int abc_hint_foreground_material_dark=0x7f0a0051;
public static final int abc_hint_foreground_material_light=0x7f0a0052;
public static final int abc_input_method_navigation_guard=0x7f0a0010;
public static final int abc_primary_text_disable_only_material_dark=0x7f0a0053;
public static final int abc_primary_text_disable_only_material_light=0x7f0a0054;
public static final int abc_primary_text_material_dark=0x7f0a0055;
public static final int abc_primary_text_material_light=0x7f0a0056;
public static final int abc_search_url_text=0x7f0a0057;
public static final int abc_search_url_text_normal=0x7f0a0011;
public static final int abc_search_url_text_pressed=0x7f0a0012;
public static final int abc_search_url_text_selected=0x7f0a0013;
public static final int abc_secondary_text_material_dark=0x7f0a0058;
public static final int abc_secondary_text_material_light=0x7f0a0059;
public static final int abc_tint_btn_checkable=0x7f0a005a;
public static final int abc_tint_default=0x7f0a005b;
public static final int abc_tint_edittext=0x7f0a005c;
public static final int abc_tint_seek_thumb=0x7f0a005d;
public static final int abc_tint_spinner=0x7f0a005e;
public static final int abc_tint_switch_track=0x7f0a005f;
public static final int accent_material_dark=0x7f0a0014;
public static final int accent_material_light=0x7f0a0015;
public static final int background_floating_material_dark=0x7f0a0016;
public static final int background_floating_material_light=0x7f0a0017;
public static final int background_material_dark=0x7f0a0018;
public static final int background_material_light=0x7f0a0019;
public static final int bright_foreground_disabled_material_dark=0x7f0a001a;
public static final int bright_foreground_disabled_material_light=0x7f0a001b;
public static final int bright_foreground_inverse_material_dark=0x7f0a001c;
public static final int bright_foreground_inverse_material_light=0x7f0a001d;
public static final int bright_foreground_material_dark=0x7f0a001e;
public static final int bright_foreground_material_light=0x7f0a001f;
public static final int button_material_dark=0x7f0a0020;
public static final int button_material_light=0x7f0a0021;
public static final int colorAccent=0x7f0a0049;
public static final int colorControlHighlight=0x7f0a004a;
public static final int colorControlNormal=0x7f0a004b;
public static final int colorPrimary=0x7f0a0047;
public static final int colorPrimaryDark=0x7f0a0048;
public static final int design_bottom_navigation_shadow_color=0x7f0a0003;
public static final int design_error=0x7f0a0060;
public static final int design_fab_shadow_end_color=0x7f0a0004;
public static final int design_fab_shadow_mid_color=0x7f0a0005;
public static final int design_fab_shadow_start_color=0x7f0a0006;
public static final int design_fab_stroke_end_inner_color=0x7f0a0007;
public static final int design_fab_stroke_end_outer_color=0x7f0a0008;
public static final int design_fab_stroke_top_inner_color=0x7f0a0009;
public static final int design_fab_stroke_top_outer_color=0x7f0a000a;
public static final int design_snackbar_background_color=0x7f0a000b;
public static final int design_tint_password_toggle=0x7f0a0061;
public static final int dim_foreground_disabled_material_dark=0x7f0a0022;
public static final int dim_foreground_disabled_material_light=0x7f0a0023;
public static final int dim_foreground_material_dark=0x7f0a0024;
public static final int dim_foreground_material_light=0x7f0a0025;
public static final int error_color_material=0x7f0a0026;
public static final int foreground_material_dark=0x7f0a0027;
public static final int foreground_material_light=0x7f0a0028;
public static final int highlighted_text_material_dark=0x7f0a0029;
public static final int highlighted_text_material_light=0x7f0a002a;
public static final int material_blue_grey_800=0x7f0a002b;
public static final int material_blue_grey_900=0x7f0a002c;
public static final int material_blue_grey_950=0x7f0a002d;
public static final int material_deep_teal_200=0x7f0a002e;
public static final int material_deep_teal_500=0x7f0a002f;
public static final int material_grey_100=0x7f0a0030;
public static final int material_grey_300=0x7f0a0031;
public static final int material_grey_50=0x7f0a0032;
public static final int material_grey_600=0x7f0a0033;
public static final int material_grey_800=0x7f0a0034;
public static final int material_grey_850=0x7f0a0035;
public static final int material_grey_900=0x7f0a0036;
public static final int notification_action_color_filter=0x7f0a000c;
public static final int notification_icon_bg_color=0x7f0a000d;
public static final int notification_material_background_media_default_color=0x7f0a0000;
public static final int primary_dark_material_dark=0x7f0a0037;
public static final int primary_dark_material_light=0x7f0a0038;
public static final int primary_material_dark=0x7f0a0039;
public static final int primary_material_light=0x7f0a003a;
public static final int primary_text_default_material_dark=0x7f0a0001;
public static final int primary_text_default_material_light=0x7f0a003b;
public static final int primary_text_disabled_material_dark=0x7f0a003c;
public static final int primary_text_disabled_material_light=0x7f0a003d;
public static final int ripple_material_dark=0x7f0a003e;
public static final int ripple_material_light=0x7f0a000e;
public static final int secondary_text_default_material_dark=0x7f0a0002;
public static final int secondary_text_default_material_light=0x7f0a000f;
public static final int secondary_text_disabled_material_dark=0x7f0a003f;
public static final int secondary_text_disabled_material_light=0x7f0a0040;
public static final int switch_thumb_disabled_material_dark=0x7f0a0041;
public static final int switch_thumb_disabled_material_light=0x7f0a0042;
public static final int switch_thumb_material_dark=0x7f0a0062;
public static final int switch_thumb_material_light=0x7f0a0063;
public static final int switch_thumb_normal_material_dark=0x7f0a0043;
public static final int switch_thumb_normal_material_light=0x7f0a0044;
public static final int tooltip_background_dark=0x7f0a0045;
public static final int tooltip_background_light=0x7f0a0046;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f08004c;
public static final int abc_action_bar_content_inset_with_nav=0x7f08004d;
public static final int abc_action_bar_default_height_material=0x7f080041;
public static final int abc_action_bar_default_padding_end_material=0x7f08004e;
public static final int abc_action_bar_default_padding_start_material=0x7f08004f;
public static final int abc_action_bar_elevation_material=0x7f080051;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f080052;
public static final int abc_action_bar_overflow_padding_end_material=0x7f080053;
public static final int abc_action_bar_overflow_padding_start_material=0x7f080054;
public static final int abc_action_bar_progress_bar_size=0x7f080042;
public static final int abc_action_bar_stacked_max_height=0x7f080055;
public static final int abc_action_bar_stacked_tab_max_width=0x7f080056;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f080057;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f080058;
public static final int abc_action_button_min_height_material=0x7f080059;
public static final int abc_action_button_min_width_material=0x7f08005a;
public static final int abc_action_button_min_width_overflow_material=0x7f08005b;
public static final int abc_alert_dialog_button_bar_height=0x7f080040;
public static final int abc_alert_dialog_button_dimen=0x7f08005c;
public static final int abc_button_inset_horizontal_material=0x7f08005d;
public static final int abc_button_inset_vertical_material=0x7f08005e;
public static final int abc_button_padding_horizontal_material=0x7f08005f;
public static final int abc_button_padding_vertical_material=0x7f080060;
public static final int abc_cascading_menus_min_smallest_width=0x7f080061;
public static final int abc_config_prefDialogWidth=0x7f080045;
public static final int abc_control_corner_material=0x7f080062;
public static final int abc_control_inset_material=0x7f080063;
public static final int abc_control_padding_material=0x7f080064;
public static final int abc_dialog_fixed_height_major=0x7f080046;
public static final int abc_dialog_fixed_height_minor=0x7f080047;
public static final int abc_dialog_fixed_width_major=0x7f080048;
public static final int abc_dialog_fixed_width_minor=0x7f080049;
public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f080065;
public static final int abc_dialog_list_padding_top_no_title=0x7f080066;
public static final int abc_dialog_min_width_major=0x7f08004a;
public static final int abc_dialog_min_width_minor=0x7f08004b;
public static final int abc_dialog_padding_material=0x7f080067;
public static final int abc_dialog_padding_top_material=0x7f080068;
public static final int abc_dialog_title_divider_material=0x7f080069;
public static final int abc_disabled_alpha_material_dark=0x7f08006a;
public static final int abc_disabled_alpha_material_light=0x7f08006b;
public static final int abc_dropdownitem_icon_width=0x7f08006c;
public static final int abc_dropdownitem_text_padding_left=0x7f08006d;
public static final int abc_dropdownitem_text_padding_right=0x7f08006e;
public static final int abc_edit_text_inset_bottom_material=0x7f08006f;
public static final int abc_edit_text_inset_horizontal_material=0x7f080070;
public static final int abc_edit_text_inset_top_material=0x7f080071;
public static final int abc_floating_window_z=0x7f080072;
public static final int abc_list_item_padding_horizontal_material=0x7f080073;
public static final int abc_panel_menu_list_width=0x7f080074;
public static final int abc_progress_bar_height_material=0x7f080075;
public static final int abc_search_view_preferred_height=0x7f080076;
public static final int abc_search_view_preferred_width=0x7f080077;
public static final int abc_seekbar_track_background_height_material=0x7f080078;
public static final int abc_seekbar_track_progress_height_material=0x7f080079;
public static final int abc_select_dialog_padding_start_material=0x7f08007a;
public static final int abc_switch_padding=0x7f080050;
public static final int abc_text_size_body_1_material=0x7f08007b;
public static final int abc_text_size_body_2_material=0x7f08007c;
public static final int abc_text_size_button_material=0x7f08007d;
public static final int abc_text_size_caption_material=0x7f08007e;
public static final int abc_text_size_display_1_material=0x7f08007f;
public static final int abc_text_size_display_2_material=0x7f080080;
public static final int abc_text_size_display_3_material=0x7f080081;
public static final int abc_text_size_display_4_material=0x7f080082;
public static final int abc_text_size_headline_material=0x7f080083;
public static final int abc_text_size_large_material=0x7f080084;
public static final int abc_text_size_medium_material=0x7f080085;
public static final int abc_text_size_menu_header_material=0x7f080086;
public static final int abc_text_size_menu_material=0x7f080087;
public static final int abc_text_size_small_material=0x7f080088;
public static final int abc_text_size_subhead_material=0x7f080089;
public static final int abc_text_size_subtitle_material_toolbar=0x7f080043;
public static final int abc_text_size_title_material=0x7f08008a;
public static final int abc_text_size_title_material_toolbar=0x7f080044;
public static final int compat_button_inset_horizontal_material=0x7f080030;
public static final int compat_button_inset_vertical_material=0x7f080031;
public static final int compat_button_padding_horizontal_material=0x7f080032;
public static final int compat_button_padding_vertical_material=0x7f080033;
public static final int compat_control_corner_material=0x7f080034;
public static final int design_appbar_elevation=0x7f08000e;
public static final int design_bottom_navigation_active_item_max_width=0x7f08000f;
public static final int design_bottom_navigation_active_text_size=0x7f080010;
public static final int design_bottom_navigation_elevation=0x7f080011;
public static final int design_bottom_navigation_height=0x7f080012;
public static final int design_bottom_navigation_item_max_width=0x7f080013;
public static final int design_bottom_navigation_item_min_width=0x7f080014;
public static final int design_bottom_navigation_margin=0x7f080015;
public static final int design_bottom_navigation_shadow_height=0x7f080016;
public static final int design_bottom_navigation_text_size=0x7f080017;
public static final int design_bottom_sheet_modal_elevation=0x7f080018;
public static final int design_bottom_sheet_peek_height_min=0x7f080019;
public static final int design_fab_border_width=0x7f08001a;
public static final int design_fab_elevation=0x7f08001b;
public static final int design_fab_image_size=0x7f08001c;
public static final int design_fab_size_mini=0x7f08001d;
public static final int design_fab_size_normal=0x7f08001e;
public static final int design_fab_translation_z_pressed=0x7f08001f;
public static final int design_navigation_elevation=0x7f080020;
public static final int design_navigation_icon_padding=0x7f080021;
public static final int design_navigation_icon_size=0x7f080022;
public static final int design_navigation_max_width=0x7f080006;
public static final int design_navigation_padding_bottom=0x7f080023;
public static final int design_navigation_separator_vertical_padding=0x7f080024;
public static final int design_snackbar_action_inline_max_width=0x7f080007;
public static final int design_snackbar_background_corner_radius=0x7f080008;
public static final int design_snackbar_elevation=0x7f080025;
public static final int design_snackbar_extra_spacing_horizontal=0x7f080009;
public static final int design_snackbar_max_width=0x7f08000a;
public static final int design_snackbar_min_width=0x7f08000b;
public static final int design_snackbar_padding_horizontal=0x7f080026;
public static final int design_snackbar_padding_vertical=0x7f080027;
public static final int design_snackbar_padding_vertical_2lines=0x7f08000c;
public static final int design_snackbar_text_size=0x7f080028;
public static final int design_tab_max_width=0x7f080029;
public static final int design_tab_scrollable_min_width=0x7f08000d;
public static final int design_tab_text_size=0x7f08002a;
public static final int design_tab_text_size_2line=0x7f08002b;
public static final int disabled_alpha_material_dark=0x7f08008b;
public static final int disabled_alpha_material_light=0x7f08008c;
public static final int fastscroll_default_thickness=0x7f080000;
public static final int fastscroll_margin=0x7f080001;
public static final int fastscroll_minimum_range=0x7f080002;
public static final int highlight_alpha_material_colored=0x7f08008d;
public static final int highlight_alpha_material_dark=0x7f08008e;
public static final int highlight_alpha_material_light=0x7f08008f;
public static final int hint_alpha_material_dark=0x7f080090;
public static final int hint_alpha_material_light=0x7f080091;
public static final int hint_pressed_alpha_material_dark=0x7f080092;
public static final int hint_pressed_alpha_material_light=0x7f080093;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f080003;
public static final int item_touch_helper_swipe_escape_max_velocity=0x7f080004;
public static final int item_touch_helper_swipe_escape_velocity=0x7f080005;
public static final int notification_action_icon_size=0x7f080035;
public static final int notification_action_text_size=0x7f080036;
public static final int notification_big_circle_margin=0x7f080037;
public static final int notification_content_margin_start=0x7f08002d;
public static final int notification_large_icon_height=0x7f080038;
public static final int notification_large_icon_width=0x7f080039;
public static final int notification_main_column_padding_top=0x7f08002e;
public static final int notification_media_narrow_margin=0x7f08002f;
public static final int notification_right_icon_size=0x7f08003a;
public static final int notification_right_side_padding_top=0x7f08002c;
public static final int notification_small_icon_background_padding=0x7f08003b;
public static final int notification_small_icon_size_as_large=0x7f08003c;
public static final int notification_subtext_size=0x7f08003d;
public static final int notification_top_pad=0x7f08003e;
public static final int notification_top_pad_large_text=0x7f08003f;
public static final int tooltip_corner_radius=0x7f080094;
public static final int tooltip_horizontal_padding=0x7f080095;
public static final int tooltip_margin=0x7f080096;
public static final int tooltip_precise_anchor_extra_offset=0x7f080097;
public static final int tooltip_precise_anchor_threshold=0x7f080098;
public static final int tooltip_vertical_padding=0x7f080099;
public static final int tooltip_y_offset_non_touch=0x7f08009a;
public static final int tooltip_y_offset_touch=0x7f08009b;
}
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=0x7f02006d;
public static final int avd_hide_password_2=0x7f02006e;
public static final int avd_hide_password_3=0x7f02006f;
public static final int avd_show_password=0x7f020054;
public static final int avd_show_password_1=0x7f020070;
public static final int avd_show_password_2=0x7f020071;
public static final int avd_show_password_3=0x7f020072;
public static final int design_bottom_navigation_item_background=0x7f020055;
public static final int design_fab_background=0x7f020056;
public static final int design_ic_visibility=0x7f020057;
public static final int design_ic_visibility_off=0x7f020058;
public static final int design_password_eye=0x7f020059;
public static final int design_snackbar_background=0x7f02005a;
public static final int ic_launcher_background=0x7f02005b;
public static final int ic_launcher_foreground=0x7f02005c;
public static final int ic_launcher_foreground_1=0x7f020073;
public static final int ic_logo=0x7f02005d;
public static final int navigation_empty_icon=0x7f02005e;
public static final int notification_action_background=0x7f02005f;
public static final int notification_bg=0x7f020060;
public static final int notification_bg_low=0x7f020061;
public static final int notification_bg_low_normal=0x7f020062;
public static final int notification_bg_low_pressed=0x7f020063;
public static final int notification_bg_normal=0x7f020064;
public static final int notification_bg_normal_pressed=0x7f020065;
public static final int notification_icon_background=0x7f020066;
public static final int notification_template_icon_bg=0x7f02006b;
public static final int notification_template_icon_low_bg=0x7f02006c;
public static final int notification_tile_bg=0x7f020067;
public static final int notify_panel_notification_icon_bg=0x7f020068;
public static final int tooltip_frame_dark=0x7f020069;
public static final int tooltip_frame_light=0x7f02006a;
}
public static final class id {
public static final int ALT=0x7f07004f;
public static final int CTRL=0x7f070050;
public static final int FUNCTION=0x7f070051;
public static final int META=0x7f070052;
public static final int SHIFT=0x7f070053;
public static final int SYM=0x7f070054;
public static final int action0=0x7f07009f;
public static final int action_bar=0x7f07007c;
public static final int action_bar_activity_content=0x7f070014;
public static final int action_bar_container=0x7f07007b;
public static final int action_bar_root=0x7f070077;
public static final int action_bar_spinner=0x7f070015;
public static final int action_bar_subtitle=0x7f07005b;
public static final int action_bar_title=0x7f07005a;
public static final int action_container=0x7f07009c;
public static final int action_context_bar=0x7f07007d;
public static final int action_divider=0x7f0700a3;
public static final int action_image=0x7f07009d;
public static final int action_menu_divider=0x7f070016;
public static final int action_menu_presenter=0x7f070017;
public static final int action_mode_bar=0x7f070079;
public static final int action_mode_bar_stub=0x7f070078;
public static final int action_mode_close_button=0x7f07005c;
public static final int action_text=0x7f07009e;
public static final int actions=0x7f0700ac;
public static final int activity_chooser_view_content=0x7f07005d;
public static final int add=0x7f07004a;
public static final int alertTitle=0x7f070070;
public static final int all=0x7f07003d;
public static final int always=0x7f070055;
public static final int async=0x7f07003e;
public static final int auto=0x7f070022;
public static final int beginning=0x7f07004d;
public static final int blocking=0x7f07003f;
public static final int bottom=0x7f070023;
public static final int buttonPanel=0x7f070063;
public static final int cancel_action=0x7f0700a0;
public static final int center=0x7f070024;
public static final int center_horizontal=0x7f070025;
public static final int center_vertical=0x7f070026;
public static final int checkbox=0x7f070073;
public static final int chronometer=0x7f0700a8;
public static final int clip_horizontal=0x7f07003a;
public static final int clip_vertical=0x7f07003b;
public static final int collapseActionView=0x7f070056;
public static final int container=0x7f070090;
public static final int contentPanel=0x7f070066;
public static final int coordinator=0x7f070091;
public static final int custom=0x7f07006d;
public static final int customPanel=0x7f07006c;
public static final int decor_content_parent=0x7f07007a;
public static final int default_activity_button=0x7f070060;
public static final int design_bottom_sheet=0x7f070093;
public static final int design_menu_item_action_area=0x7f07009a;
public static final int design_menu_item_action_area_stub=0x7f070099;
public static final int design_menu_item_text=0x7f070098;
public static final int design_navigation_view=0x7f070097;
public static final int disableHome=0x7f070044;
public static final int edit_query=0x7f07007e;
public static final int end=0x7f070027;
public static final int end_padder=0x7f0700ae;
public static final int enterAlways=0x7f07001d;
public static final int enterAlwaysCollapsed=0x7f07001e;
public static final int exitUntilCollapsed=0x7f07001f;
public static final int expand_activities_button=0x7f07005e;
public static final int expanded_menu=0x7f070072;
public static final int fill=0x7f070034;
public static final int fill_horizontal=0x7f07003c;
public static final int fill_vertical=0x7f070028;
public static final int fixed=0x7f070032;
public static final int forever=0x7f070040;
public static final int full=0x7f07008c;
public static final int ghost_view=0x7f070000;
public static final int home=0x7f070018;
public static final int homeAsUp=0x7f070045;
public static final int icon=0x7f070062;
public static final int icon_group=0x7f0700ad;
public static final int ifRoom=0x7f070057;
public static final int image=0x7f07005f;
public static final int info=0x7f0700a9;
public static final int italic=0x7f070041;
public static final int item_touch_helper_previous_elevation=0x7f07000a;
public static final int largeLabel=0x7f07008f;
public static final int left=0x7f070029;
public static final int line1=0x7f07000e;
public static final int line3=0x7f07000f;
public static final int listMode=0x7f070042;
public static final int list_item=0x7f070061;
public static final int masked=0x7f0700b0;
public static final int media_actions=0x7f0700a2;
public static final int message=0x7f07008b;
public static final int middle=0x7f07004e;
public static final int mini=0x7f070030;
public static final int multiply=0x7f070035;
public static final int navigation_header_container=0x7f070096;
public static final int never=0x7f070058;
public static final int none=0x7f07002d;
public static final int normal=0x7f070031;
public static final int notification_background=0x7f0700ab;
public static final int notification_main_column=0x7f0700a5;
public static final int notification_main_column_container=0x7f0700a4;
public static final int parallax=0x7f07002e;
public static final int parentPanel=0x7f070065;
public static final int parent_matrix=0x7f070001;
public static final int pin=0x7f07002f;
public static final int progress_circular=0x7f070019;
public static final int progress_horizontal=0x7f07001a;
public static final int radio=0x7f070075;
public static final int res=0x7f07008d;
public static final int right=0x7f07002a;
public static final int right_icon=0x7f0700aa;
public static final int right_side=0x7f0700a6;
public static final int save_image_matrix=0x7f070002;
public static final int save_non_transition_alpha=0x7f070003;
public static final int save_scale_type=0x7f070004;
public static final int screen=0x7f070036;
public static final int scroll=0x7f070020;
public static final int scrollIndicatorDown=0x7f07006b;
public static final int scrollIndicatorUp=0x7f070067;
public static final int scrollView=0x7f070068;
public static final int scrollable=0x7f070033;
public static final int search_badge=0x7f070080;
public static final int search_bar=0x7f07007f;
public static final int search_button=0x7f070081;
public static final int search_close_btn=0x7f070086;
public static final int search_edit_frame=0x7f070082;
public static final int search_go_btn=0x7f070088;
public static final int search_mag_icon=0x7f070083;
public static final int search_plate=0x7f070084;
public static final int search_src_text=0x7f070085;
public static final int search_voice_btn=0x7f070089;
public static final int select_dialog_listview=0x7f07008a;
public static final int shortcut=0x7f070074;
public static final int showCustom=0x7f070046;
public static final int showHome=0x7f070047;
public static final int showTitle=0x7f070048;
public static final int smallLabel=0x7f07008e;
public static final int snackbar_action=0x7f070095;
public static final int snackbar_text=0x7f070094;
public static final int snap=0x7f070021;
public static final int spacer=0x7f070064;
public static final int split_action_bar=0x7f07001b;
public static final int src_atop=0x7f070037;
public static final int src_in=0x7f070038;
public static final int src_over=0x7f070039;
public static final int start=0x7f07002b;
public static final int status_bar_latest_event_content=0x7f0700a1;
public static final int submenuarrow=0x7f070076;
public static final int submit_area=0x7f070087;
public static final int tabMode=0x7f070043;
public static final int tag_transition_group=0x7f070010;
public static final int text=0x7f070011;
public static final int text2=0x7f070012;
public static final int textSpacerNoButtons=0x7f07006a;
public static final int textSpacerNoTitle=0x7f070069;
public static final int text_input_password_toggle=0x7f07009b;
public static final int textinput_counter=0x7f07000b;
public static final int textinput_error=0x7f07000c;
public static final int time=0x7f0700a7;
public static final int title=0x7f070013;
public static final int titleDividerNoCustom=0x7f070071;
public static final int title_template=0x7f07006f;
public static final int top=0x7f07002c;
public static final int topPanel=0x7f07006e;
public static final int touch_outside=0x7f070092;
public static final int transition_current_scene=0x7f070005;
public static final int transition_layout_save=0x7f070006;
public static final int transition_position=0x7f070007;
public static final int transition_scene_layoutid_cache=0x7f070008;
public static final int transition_transform=0x7f070009;
public static final int uniform=0x7f07004b;
public static final int up=0x7f07001c;
public static final int useLogo=0x7f070049;
public static final int view_offset_helper=0x7f07000d;
public static final int visible=0x7f0700af;
public static final int withText=0x7f070059;
public static final int wrap_content=0x7f07004c;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f0b0007;
public static final int abc_config_activityShortDur=0x7f0b0008;
public static final int app_bar_elevation_anim_duration=0x7f0b0002;
public static final int bottom_sheet_slide_duration=0x7f0b0003;
public static final int cancel_button_image_alpha=0x7f0b0000;
public static final int config_tooltipAnimTime=0x7f0b0009;
public static final int design_snackbar_text_max_lines=0x7f0b0001;
public static final int hide_password_duration=0x7f0b0004;
public static final int show_password_duration=0x7f0b0005;
public static final int status_bar_notification_info_maxnum=0x7f0b0006;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f040000;
public static final int abc_action_bar_up_container=0x7f040001;
public static final int abc_action_menu_item_layout=0x7f040002;
public static final int abc_action_menu_layout=0x7f040003;
public static final int abc_action_mode_bar=0x7f040004;
public static final int abc_action_mode_close_item_material=0x7f040005;
public static final int abc_activity_chooser_view=0x7f040006;
public static final int abc_activity_chooser_view_list_item=0x7f040007;
public static final int abc_alert_dialog_button_bar_material=0x7f040008;
public static final int abc_alert_dialog_material=0x7f040009;
public static final int abc_alert_dialog_title_material=0x7f04000a;
public static final int abc_dialog_title_material=0x7f04000b;
public static final int abc_expanded_menu_layout=0x7f04000c;
public static final int abc_list_menu_item_checkbox=0x7f04000d;
public static final int abc_list_menu_item_icon=0x7f04000e;
public static final int abc_list_menu_item_layout=0x7f04000f;
public static final int abc_list_menu_item_radio=0x7f040010;
public static final int abc_popup_menu_header_item_layout=0x7f040011;
public static final int abc_popup_menu_item_layout=0x7f040012;
public static final int abc_screen_content_include=0x7f040013;
public static final int abc_screen_simple=0x7f040014;
public static final int abc_screen_simple_overlay_action_mode=0x7f040015;
public static final int abc_screen_toolbar=0x7f040016;
public static final int abc_search_dropdown_item_icons_2line=0x7f040017;
public static final int abc_search_view=0x7f040018;
public static final int abc_select_dialog_material=0x7f040019;
public static final int abc_tooltip=0x7f04001a;
public static final int activity_main=0x7f04001b;
public static final int design_bottom_navigation_item=0x7f04001c;
public static final int design_bottom_sheet_dialog=0x7f04001d;
public static final int design_layout_snackbar=0x7f04001e;
public static final int design_layout_snackbar_include=0x7f04001f;
public static final int design_layout_tab_icon=0x7f040020;
public static final int design_layout_tab_text=0x7f040021;
public static final int design_menu_item_action_area=0x7f040022;
public static final int design_navigation_item=0x7f040023;
public static final int design_navigation_item_header=0x7f040024;
public static final int design_navigation_item_separator=0x7f040025;
public static final int design_navigation_item_subheader=0x7f040026;
public static final int design_navigation_menu=0x7f040027;
public static final int design_navigation_menu_item=0x7f040028;
public static final int design_text_input_password_icon=0x7f040029;
public static final int notification_action=0x7f04002a;
public static final int notification_action_tombstone=0x7f04002b;
public static final int notification_media_action=0x7f04002c;
public static final int notification_media_cancel_action=0x7f04002d;
public static final int notification_template_big_media=0x7f04002e;
public static final int notification_template_big_media_custom=0x7f04002f;
public static final int notification_template_big_media_narrow=0x7f040030;
public static final int notification_template_big_media_narrow_custom=0x7f040031;
public static final int notification_template_custom_big=0x7f040032;
public static final int notification_template_icon_group=0x7f040033;
public static final int notification_template_lines_media=0x7f040034;
public static final int notification_template_media=0x7f040035;
public static final int notification_template_media_custom=0x7f040036;
public static final int notification_template_part_chronometer=0x7f040037;
public static final int notification_template_part_time=0x7f040038;
public static final int select_dialog_item_material=0x7f040039;
public static final int select_dialog_multichoice_material=0x7f04003a;
public static final int select_dialog_singlechoice_material=0x7f04003b;
public static final int support_simple_spinner_dropdown_item=0x7f04003c;
}
public static final class mipmap {
public static final int ic_launcher=0x7f030000;
public static final int ic_launcher_round=0x7f030001;
}
public static final class string {
public static final int abc_action_bar_home_description=0x7f0c0009;
public static final int abc_action_bar_up_description=0x7f0c000a;
public static final int abc_action_menu_overflow_description=0x7f0c000b;
public static final int abc_action_mode_done=0x7f0c000c;
public static final int abc_activity_chooser_view_see_all=0x7f0c000d;
public static final int abc_activitychooserview_choose_application=0x7f0c000e;
public static final int abc_capital_off=0x7f0c000f;
public static final int abc_capital_on=0x7f0c0010;
public static final int abc_font_family_body_1_material=0x7f0c001b;
public static final int abc_font_family_body_2_material=0x7f0c001c;
public static final int abc_font_family_button_material=0x7f0c001d;
public static final int abc_font_family_caption_material=0x7f0c001e;
public static final int abc_font_family_display_1_material=0x7f0c001f;
public static final int abc_font_family_display_2_material=0x7f0c0020;
public static final int abc_font_family_display_3_material=0x7f0c0021;
public static final int abc_font_family_display_4_material=0x7f0c0022;
public static final int abc_font_family_headline_material=0x7f0c0023;
public static final int abc_font_family_menu_material=0x7f0c0024;
public static final int abc_font_family_subhead_material=0x7f0c0025;
public static final int abc_font_family_title_material=0x7f0c0026;
public static final int abc_search_hint=0x7f0c0011;
public static final int abc_searchview_description_clear=0x7f0c0012;
public static final int abc_searchview_description_query=0x7f0c0013;
public static final int abc_searchview_description_search=0x7f0c0014;
public static final int abc_searchview_description_submit=0x7f0c0015;
public static final int abc_searchview_description_voice=0x7f0c0016;
public static final int abc_shareactionprovider_share_with=0x7f0c0017;
public static final int abc_shareactionprovider_share_with_application=0x7f0c0018;
public static final int abc_toolbar_collapse_description=0x7f0c0019;
public static final int app_name=0x7f0c0027;
public static final int appbar_scrolling_view_behavior=0x7f0c0000;
public static final int bottom_sheet_behavior=0x7f0c0001;
public static final int character_counter_pattern=0x7f0c0002;
public static final int password_toggle_content_description=0x7f0c0003;
public static final int path_password_eye=0x7f0c0004;
public static final int path_password_eye_mask_strike_through=0x7f0c0005;
public static final int path_password_eye_mask_visible=0x7f0c0006;
public static final int path_password_strike_through=0x7f0c0007;
public static final int search_menu_title=0x7f0c001a;
public static final int status_bar_notification_info_overflow=0x7f0c0008;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f0900af;
public static final int AlertDialog_AppCompat_Light=0x7f0900b0;
public static final int Animation_AppCompat_Dialog=0x7f0900b1;
public static final int Animation_AppCompat_DropDownUp=0x7f0900b2;
public static final int Animation_AppCompat_Tooltip=0x7f0900b3;
public static final int Animation_Design_BottomSheetDialog=0x7f090009;
/** Base application theme.
*/
public static final int AppTheme=0x7f090178;
public static final int Base_AlertDialog_AppCompat=0x7f0900b4;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0900b5;
public static final int Base_Animation_AppCompat_Dialog=0x7f0900b6;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0900b7;
public static final int Base_Animation_AppCompat_Tooltip=0x7f0900b8;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0900b9;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0900ba;
public static final int Base_TextAppearance_AppCompat=0x7f090045;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f090046;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f090047;
public static final int Base_TextAppearance_AppCompat_Button=0x7f090048;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f090049;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f09004a;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f09004b;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f09004c;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f09004d;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f09004e;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f09004f;
public static final int Base_TextAppearance_AppCompat_Large=0x7f090050;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f090051;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f090052;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f090053;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f090054;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f090055;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f090056;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0900bb;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f090057;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f090058;
public static final int Base_TextAppearance_AppCompat_Small=0x7f090059;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f09005a;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f09005b;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0900bc;
public static final int Base_TextAppearance_AppCompat_Title=0x7f09005c;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0900bd;
public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0900be;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900a0;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f09005d;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f09005e;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f09005f;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090060;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090061;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f090062;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f090063;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0900a7;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0900a8;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0900a1;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900bf;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f090064;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090065;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090066;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f090067;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f090068;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900c0;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f090069;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f09006a;
public static final int Base_Theme_AppCompat=0x7f09006b;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0900c1;
public static final int Base_Theme_AppCompat_Dialog=0x7f09006c;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0900c2;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0900c3;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0900c4;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f09002c;
public static final int Base_Theme_AppCompat_Light=0x7f09006d;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0900c5;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f09006e;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0900c6;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0900c7;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0900c8;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f09002d;
public static final int Base_ThemeOverlay_AppCompat=0x7f0900c9;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0900ca;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0900cb;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900cc;
public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f09006f;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0900cd;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0900ce;
public static final int Base_V14_Widget_Design_AppBarLayout=0x7f09000a;
public static final int Base_V21_Theme_AppCompat=0x7f090070;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f090071;
public static final int Base_V21_Theme_AppCompat_Light=0x7f090072;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f090073;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f090074;
public static final int Base_V21_Widget_Design_AppBarLayout=0x7f090006;
public static final int Base_V22_Theme_AppCompat=0x7f09009e;
public static final int Base_V22_Theme_AppCompat_Light=0x7f09009f;
public static final int Base_V23_Theme_AppCompat=0x7f0900a2;
public static final int Base_V23_Theme_AppCompat_Light=0x7f0900a3;
public static final int Base_V26_Theme_AppCompat=0x7f0900ab;
public static final int Base_V26_Theme_AppCompat_Light=0x7f0900ac;
public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0900ad;
public static final int Base_V26_Widget_Design_AppBarLayout=0x7f090008;
public static final int Base_V7_Theme_AppCompat=0x7f0900cf;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0900d0;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0900d1;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0900d2;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0900d3;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0900d4;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0900d5;
public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0900d6;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0900d7;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0900d8;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0900d9;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f090075;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f090076;
public static final int Base_Widget_AppCompat_ActionButton=0x7f090077;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f090078;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f090079;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0900da;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900db;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f09007a;
public static final int Base_Widget_AppCompat_Button=0x7f09007b;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f09007c;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f09007d;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900dc;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f0900a4;
public static final int Base_Widget_AppCompat_Button_Small=0x7f09007e;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f09007f;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900dd;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f090080;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f090081;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900de;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f09002b;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900df;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090082;
public static final int Base_Widget_AppCompat_EditText=0x7f090083;
public static final int Base_Widget_AppCompat_ImageButton=0x7f090084;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900e0;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900e1;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900e2;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f090085;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090086;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f090087;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f090088;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090089;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0900e3;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f09008a;
public static final int Base_Widget_AppCompat_ListView=0x7f09008b;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f09008c;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f09008d;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f09008e;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f09008f;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900e4;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f090090;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f090091;
public static final int Base_Widget_AppCompat_RatingBar=0x7f090092;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0900a5;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0900a6;
public static final int Base_Widget_AppCompat_SearchView=0x7f0900e5;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900e6;
public static final int Base_Widget_AppCompat_SeekBar=0x7f090093;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0900e7;
public static final int Base_Widget_AppCompat_Spinner=0x7f090094;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f09002e;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f090095;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0900ae;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f090096;
public static final int Base_Widget_Design_AppBarLayout=0x7f090007;
public static final int Base_Widget_Design_TabLayout=0x7f09000b;
public static final int Platform_AppCompat=0x7f090097;
public static final int Platform_AppCompat_Light=0x7f090098;
public static final int Platform_ThemeOverlay_AppCompat=0x7f090099;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f09009a;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f09009b;
public static final int Platform_V21_AppCompat=0x7f09009c;
public static final int Platform_V21_AppCompat_Light=0x7f09009d;
public static final int Platform_V25_AppCompat=0x7f0900a9;
public static final int Platform_V25_AppCompat_Light=0x7f0900aa;
public static final int Platform_Widget_AppCompat_Spinner=0x7f0900e8;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f090037;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f090038;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f090039;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f09003a;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f09003b;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f09003c;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f09003d;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f09003e;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f09003f;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f090040;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f090041;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f090042;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f090043;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f090044;
public static final int TextAppearance_AppCompat=0x7f0900e9;
public static final int TextAppearance_AppCompat_Body1=0x7f0900ea;
public static final int TextAppearance_AppCompat_Body2=0x7f0900eb;
public static final int TextAppearance_AppCompat_Button=0x7f0900ec;
public static final int TextAppearance_AppCompat_Caption=0x7f0900ed;
public static final int TextAppearance_AppCompat_Display1=0x7f0900ee;
public static final int TextAppearance_AppCompat_Display2=0x7f0900ef;
public static final int TextAppearance_AppCompat_Display3=0x7f0900f0;
public static final int TextAppearance_AppCompat_Display4=0x7f0900f1;
public static final int TextAppearance_AppCompat_Headline=0x7f0900f2;
public static final int TextAppearance_AppCompat_Inverse=0x7f0900f3;
public static final int TextAppearance_AppCompat_Large=0x7f0900f4;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900f5;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900f6;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900f7;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900f8;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900f9;
public static final int TextAppearance_AppCompat_Medium=0x7f0900fa;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900fb;
public static final int TextAppearance_AppCompat_Menu=0x7f0900fc;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900fd;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900fe;
public static final int TextAppearance_AppCompat_Small=0x7f0900ff;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f090100;
public static final int TextAppearance_AppCompat_Subhead=0x7f090101;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f090102;
public static final int TextAppearance_AppCompat_Title=0x7f090103;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f090104;
public static final int TextAppearance_AppCompat_Tooltip=0x7f090036;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090105;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f090106;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f090107;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f090108;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090109;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f09010a;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f09010b;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f09010c;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f09010d;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f09010e;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f09010f;
public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f090110;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090111;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f090112;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f090113;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090114;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090115;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f090116;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f090117;
public static final int TextAppearance_Compat_Notification=0x7f090024;
public static final int TextAppearance_Compat_Notification_Info=0x7f090025;
public static final int TextAppearance_Compat_Notification_Info_Media=0x7f090000;
public static final int TextAppearance_Compat_Notification_Line2=0x7f09002a;
public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f090004;
public static final int TextAppearance_Compat_Notification_Media=0x7f090001;
public static final int TextAppearance_Compat_Notification_Time=0x7f090026;
public static final int TextAppearance_Compat_Notification_Time_Media=0x7f090002;
public static final int TextAppearance_Compat_Notification_Title=0x7f090027;
public static final int TextAppearance_Compat_Notification_Title_Media=0x7f090003;
public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f09000c;
public static final int TextAppearance_Design_Counter=0x7f09000d;
public static final int TextAppearance_Design_Counter_Overflow=0x7f09000e;
public static final int TextAppearance_Design_Error=0x7f09000f;
public static final int TextAppearance_Design_Hint=0x7f090010;
public static final int TextAppearance_Design_Snackbar_Message=0x7f090011;
public static final int TextAppearance_Design_Tab=0x7f090012;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f090118;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f090119;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f09011a;
public static final int Theme_AppCompat=0x7f09011b;
public static final int Theme_AppCompat_CompactMenu=0x7f09011c;
public static final int Theme_AppCompat_DayNight=0x7f09002f;
public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f090030;
public static final int Theme_AppCompat_DayNight_Dialog=0x7f090031;
public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f090032;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f090033;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f090034;
public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f090035;
public static final int Theme_AppCompat_Dialog=0x7f09011d;
public static final int Theme_AppCompat_Dialog_Alert=0x7f09011e;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f09011f;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f090120;
public static final int Theme_AppCompat_Light=0x7f090121;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f090122;
public static final int Theme_AppCompat_Light_Dialog=0x7f090123;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f090124;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f090125;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f090126;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f090127;
public static final int Theme_AppCompat_NoActionBar=0x7f090128;
public static final int Theme_Design=0x7f090013;
public static final int Theme_Design_BottomSheetDialog=0x7f090014;
public static final int Theme_Design_Light=0x7f090015;
public static final int Theme_Design_Light_BottomSheetDialog=0x7f090016;
public static final int Theme_Design_Light_NoActionBar=0x7f090017;
public static final int Theme_Design_NoActionBar=0x7f090018;
public static final int ThemeOverlay_AppCompat=0x7f090129;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f09012a;
public static final int ThemeOverlay_AppCompat_Dark=0x7f09012b;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f09012c;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f09012d;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f09012e;
public static final int ThemeOverlay_AppCompat_Light=0x7f09012f;
public static final int Widget_AppCompat_ActionBar=0x7f090130;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f090131;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f090132;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f090133;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f090134;
public static final int Widget_AppCompat_ActionButton=0x7f090135;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f090136;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f090137;
public static final int Widget_AppCompat_ActionMode=0x7f090138;
public static final int Widget_AppCompat_ActivityChooserView=0x7f090139;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f09013a;
public static final int Widget_AppCompat_Button=0x7f09013b;
public static final int Widget_AppCompat_Button_Borderless=0x7f09013c;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f09013d;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f09013e;
public static final int Widget_AppCompat_Button_Colored=0x7f09013f;
public static final int Widget_AppCompat_Button_Small=0x7f090140;
public static final int Widget_AppCompat_ButtonBar=0x7f090141;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f090142;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f090143;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f090144;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f090145;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f090146;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f090147;
public static final int Widget_AppCompat_EditText=0x7f090148;
public static final int Widget_AppCompat_ImageButton=0x7f090149;
public static final int Widget_AppCompat_Light_ActionBar=0x7f09014a;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f09014b;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f09014c;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f09014d;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f09014e;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f09014f;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090150;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f090151;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f090152;
public static final int Widget_AppCompat_Light_ActionButton=0x7f090153;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f090154;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f090155;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f090156;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f090157;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f090158;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f090159;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f09015a;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f09015b;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f09015c;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09015d;
public static final int Widget_AppCompat_Light_SearchView=0x7f09015e;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f09015f;
public static final int Widget_AppCompat_ListMenuView=0x7f090160;
public static final int Widget_AppCompat_ListPopupWindow=0x7f090161;
public static final int Widget_AppCompat_ListView=0x7f090162;
public static final int Widget_AppCompat_ListView_DropDown=0x7f090163;
public static final int Widget_AppCompat_ListView_Menu=0x7f090164;
public static final int Widget_AppCompat_PopupMenu=0x7f090165;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f090166;
public static final int Widget_AppCompat_PopupWindow=0x7f090167;
public static final int Widget_AppCompat_ProgressBar=0x7f090168;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f090169;
public static final int Widget_AppCompat_RatingBar=0x7f09016a;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f09016b;
public static final int Widget_AppCompat_RatingBar_Small=0x7f09016c;
public static final int Widget_AppCompat_SearchView=0x7f09016d;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f09016e;
public static final int Widget_AppCompat_SeekBar=0x7f09016f;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f090170;
public static final int Widget_AppCompat_Spinner=0x7f090171;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f090172;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f090173;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f090174;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f090175;
public static final int Widget_AppCompat_Toolbar=0x7f090176;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f090177;
public static final int Widget_Compat_NotificationActionContainer=0x7f090028;
public static final int Widget_Compat_NotificationActionText=0x7f090029;
public static final int Widget_Design_AppBarLayout=0x7f090019;
public static final int Widget_Design_BottomNavigationView=0x7f09001a;
public static final int Widget_Design_BottomSheet_Modal=0x7f09001b;
public static final int Widget_Design_CollapsingToolbar=0x7f09001c;
public static final int Widget_Design_CoordinatorLayout=0x7f09001d;
public static final int Widget_Design_FloatingActionButton=0x7f09001e;
public static final int Widget_Design_NavigationView=0x7f09001f;
public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f090020;
public static final int Widget_Design_Snackbar=0x7f090021;
public static final int Widget_Design_TabLayout=0x7f090005;
public static final int Widget_Design_TextInputLayout=0x7f090022;
public static final int Widget_Support_CoordinatorLayout=0x7f090023;
}
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 MN.CalculatorMN:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit MN.CalculatorMN:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked MN.CalculatorMN:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd MN.CalculatorMN:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions MN.CalculatorMN:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft MN.CalculatorMN:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight MN.CalculatorMN:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart MN.CalculatorMN:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation MN.CalculatorMN:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout MN.CalculatorMN:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions MN.CalculatorMN:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider MN.CalculatorMN:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation MN.CalculatorMN:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height MN.CalculatorMN:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll MN.CalculatorMN:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator MN.CalculatorMN:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout MN.CalculatorMN:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon MN.CalculatorMN:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle MN.CalculatorMN:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding MN.CalculatorMN:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo MN.CalculatorMN:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode MN.CalculatorMN:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme MN.CalculatorMN:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding MN.CalculatorMN:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle MN.CalculatorMN:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle MN.CalculatorMN:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle MN.CalculatorMN:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title MN.CalculatorMN:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle MN.CalculatorMN: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 = {
0x7f010067, 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,
0x7f0100ca
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:elevation
*/
public static final int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:popupTheme
*/
public static final int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit MN.CalculatorMN:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout MN.CalculatorMN:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height MN.CalculatorMN:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle MN.CalculatorMN:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle MN.CalculatorMN: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 = {
0x7f010067, 0x7f01006d, 0x7f01006e, 0x7f010072,
0x7f010074, 0x7f010084
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount MN.CalculatorMN:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f010085, 0x7f010086
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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_buttonIconDimen MN.CalculatorMN:buttonIconDimen}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonPanelSideLayout MN.CalculatorMN:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout MN.CalculatorMN:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout MN.CalculatorMN:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout MN.CalculatorMN:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle MN.CalculatorMN:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout MN.CalculatorMN:singleChoiceItemLayout}</code></td><td></td></tr>
</table>
@see #AlertDialog_android_layout
@see #AlertDialog_buttonIconDimen
@see #AlertDialog_buttonPanelSideLayout
@see #AlertDialog_listItemLayout
@see #AlertDialog_listLayout
@see #AlertDialog_multiChoiceItemLayout
@see #AlertDialog_showTitle
@see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog = {
0x010100f2, 0x7f010087, 0x7f010088, 0x7f010089,
0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d
};
/**
<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 MN.CalculatorMN.R.attr#buttonIconDimen}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name MN.CalculatorMN:buttonIconDimen
*/
public static final int AlertDialog_buttonIconDimen = 7;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:showTitle
*/
public static final int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_elevation MN.CalculatorMN:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded MN.CalculatorMN:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_android_keyboardNavigationCluster
@see #AppBarLayout_android_touchscreenBlocksFocus
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x0101048f, 0x01010540, 0x7f010009,
0x7f010082
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:background
*/
public static final int AppBarLayout_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:keyboardNavigationCluster
*/
public static final int AppBarLayout_android_keyboardNavigationCluster = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:touchscreenBlocksFocus
*/
public static final int AppBarLayout_android_touchscreenBlocksFocus = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:elevation
*/
public static final int AppBarLayout_elevation = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:expanded
*/
public static final int AppBarLayout_expanded = 3;
/** 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 MN.CalculatorMN:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible MN.CalculatorMN:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f01000a, 0x7f01000b
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:state_collapsed
*/
public static final int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator MN.CalculatorMN:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f01000c, 0x7f01000d
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:layout_scrollFlags
*/
public static final int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:srcCompat}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tint MN.CalculatorMN:tint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tintMode MN.CalculatorMN: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, 0x7f01008e, 0x7f01008f, 0x7f010090
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN:srcCompat
*/
public static final int AppCompatImageView_srcCompat = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tint
*/
public static final int AppCompatImageView_tint = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#tintMode}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name MN.CalculatorMN: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 MN.CalculatorMN:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint MN.CalculatorMN:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode MN.CalculatorMN: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, 0x7f010091, 0x7f010092, 0x7f010093
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN:tickMark
*/
public static final int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tickMarkTintMode
*/
public static final int AppCompatSeekBar_tickMarkTintMode = 3;
/** Attributes that can be used with a AppCompatTextHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
</table>
@see #AppCompatTextHelper_android_drawableBottom
@see #AppCompatTextHelper_android_drawableEnd
@see #AppCompatTextHelper_android_drawableLeft
@see #AppCompatTextHelper_android_drawableRight
@see #AppCompatTextHelper_android_drawableStart
@see #AppCompatTextHelper_android_drawableTop
@see #AppCompatTextHelper_android_textAppearance
*/
public static final int[] AppCompatTextHelper = {
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableBottom
*/
public static final int AppCompatTextHelper_android_drawableBottom = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableEnd
*/
public static final int AppCompatTextHelper_android_drawableEnd = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableLeft
*/
public static final int AppCompatTextHelper_android_drawableLeft = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableRight}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableRight
*/
public static final int AppCompatTextHelper_android_drawableRight = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableStart}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableStart
*/
public static final int AppCompatTextHelper_android_drawableStart = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableTop}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableTop
*/
public static final int AppCompatTextHelper_android_drawableTop = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextHelper_android_textAppearance = 0;
/** Attributes that can be used with a AppCompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize MN.CalculatorMN:autoSizeMaxTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize MN.CalculatorMN:autoSizeMinTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes MN.CalculatorMN:autoSizePresetSizes}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity MN.CalculatorMN:autoSizeStepGranularity}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeTextType MN.CalculatorMN:autoSizeTextType}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_fontFamily MN.CalculatorMN:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps MN.CalculatorMN:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_autoSizeMaxTextSize
@see #AppCompatTextView_autoSizeMinTextSize
@see #AppCompatTextView_autoSizePresetSizes
@see #AppCompatTextView_autoSizeStepGranularity
@see #AppCompatTextView_autoSizeTextType
@see #AppCompatTextView_fontFamily
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f010094, 0x7f010095, 0x7f010096,
0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a
};
/**
<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 MN.CalculatorMN.R.attr#autoSizeMaxTextSize}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name MN.CalculatorMN:autoSizeMaxTextSize
*/
public static final int AppCompatTextView_autoSizeMaxTextSize = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#autoSizeMinTextSize}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name MN.CalculatorMN:autoSizeMinTextSize
*/
public static final int AppCompatTextView_autoSizeMinTextSize = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#autoSizePresetSizes}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name MN.CalculatorMN:autoSizePresetSizes
*/
public static final int AppCompatTextView_autoSizePresetSizes = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#autoSizeStepGranularity}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name MN.CalculatorMN:autoSizeStepGranularity
*/
public static final int AppCompatTextView_autoSizeStepGranularity = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#autoSizeTextType}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
@attr name MN.CalculatorMN:autoSizeTextType
*/
public static final int AppCompatTextView_autoSizeTextType = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fontFamily}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name MN.CalculatorMN:fontFamily
*/
public static final int AppCompatTextView_fontFamily = 7;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground MN.CalculatorMN:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme MN.CalculatorMN:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize MN.CalculatorMN:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle MN.CalculatorMN:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle MN.CalculatorMN:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle MN.CalculatorMN:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle MN.CalculatorMN:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle MN.CalculatorMN:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme MN.CalculatorMN:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme MN.CalculatorMN:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle MN.CalculatorMN:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle MN.CalculatorMN:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance MN.CalculatorMN:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor MN.CalculatorMN:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground MN.CalculatorMN:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle MN.CalculatorMN:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable MN.CalculatorMN:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable MN.CalculatorMN:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable MN.CalculatorMN:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable MN.CalculatorMN:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable MN.CalculatorMN:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle MN.CalculatorMN:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable MN.CalculatorMN:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable MN.CalculatorMN:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground MN.CalculatorMN:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle MN.CalculatorMN:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable MN.CalculatorMN:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle MN.CalculatorMN:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle MN.CalculatorMN:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle MN.CalculatorMN:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle MN.CalculatorMN:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons MN.CalculatorMN:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle MN.CalculatorMN:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme MN.CalculatorMN: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 MN.CalculatorMN:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle MN.CalculatorMN:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle MN.CalculatorMN:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle MN.CalculatorMN:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle MN.CalculatorMN:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle MN.CalculatorMN:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle MN.CalculatorMN:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle MN.CalculatorMN:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall MN.CalculatorMN:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle MN.CalculatorMN:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle MN.CalculatorMN:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent MN.CalculatorMN:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating MN.CalculatorMN:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal MN.CalculatorMN:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated MN.CalculatorMN:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight MN.CalculatorMN:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal MN.CalculatorMN:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorError MN.CalculatorMN:colorError}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary MN.CalculatorMN:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark MN.CalculatorMN:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal MN.CalculatorMN:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground MN.CalculatorMN:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding MN.CalculatorMN:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme MN.CalculatorMN:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal MN.CalculatorMN:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical MN.CalculatorMN:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle MN.CalculatorMN:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight MN.CalculatorMN:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground MN.CalculatorMN:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor MN.CalculatorMN:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle MN.CalculatorMN:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator MN.CalculatorMN:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle MN.CalculatorMN:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator MN.CalculatorMN:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog MN.CalculatorMN:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle MN.CalculatorMN:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle MN.CalculatorMN:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight MN.CalculatorMN:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge MN.CalculatorMN:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall MN.CalculatorMN:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft MN.CalculatorMN:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight MN.CalculatorMN:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground MN.CalculatorMN:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme MN.CalculatorMN:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth MN.CalculatorMN:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle MN.CalculatorMN:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle MN.CalculatorMN:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle MN.CalculatorMN:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle MN.CalculatorMN:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator MN.CalculatorMN:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall MN.CalculatorMN:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle MN.CalculatorMN:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle MN.CalculatorMN:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground MN.CalculatorMN:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless MN.CalculatorMN:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle MN.CalculatorMN:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle MN.CalculatorMN:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle MN.CalculatorMN:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu MN.CalculatorMN:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem MN.CalculatorMN:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary MN.CalculatorMN:textAppearanceListItemSecondary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall MN.CalculatorMN:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader MN.CalculatorMN:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle MN.CalculatorMN:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle MN.CalculatorMN:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu MN.CalculatorMN:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem MN.CalculatorMN:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl MN.CalculatorMN:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle MN.CalculatorMN:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle MN.CalculatorMN:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor MN.CalculatorMN:tooltipForegroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground MN.CalculatorMN:tooltipFrameBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_viewInflaterClass MN.CalculatorMN:viewInflaterClass}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar MN.CalculatorMN:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay MN.CalculatorMN:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay MN.CalculatorMN:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor MN.CalculatorMN:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor MN.CalculatorMN:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor MN.CalculatorMN:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor MN.CalculatorMN:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor MN.CalculatorMN:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor MN.CalculatorMN:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle MN.CalculatorMN:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorBackgroundFloating
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_colorError
@see #AppCompatTheme_colorPrimary
@see #AppCompatTheme_colorPrimaryDark
@see #AppCompatTheme_colorSwitchThumbNormal
@see #AppCompatTheme_controlBackground
@see #AppCompatTheme_dialogPreferredPadding
@see #AppCompatTheme_dialogTheme
@see #AppCompatTheme_dividerHorizontal
@see #AppCompatTheme_dividerVertical
@see #AppCompatTheme_dropDownListViewStyle
@see #AppCompatTheme_dropdownListPreferredItemHeight
@see #AppCompatTheme_editTextBackground
@see #AppCompatTheme_editTextColor
@see #AppCompatTheme_editTextStyle
@see #AppCompatTheme_homeAsUpIndicator
@see #AppCompatTheme_imageButtonStyle
@see #AppCompatTheme_listChoiceBackgroundIndicator
@see #AppCompatTheme_listDividerAlertDialog
@see #AppCompatTheme_listMenuViewStyle
@see #AppCompatTheme_listPopupWindowStyle
@see #AppCompatTheme_listPreferredItemHeight
@see #AppCompatTheme_listPreferredItemHeightLarge
@see #AppCompatTheme_listPreferredItemHeightSmall
@see #AppCompatTheme_listPreferredItemPaddingLeft
@see #AppCompatTheme_listPreferredItemPaddingRight
@see #AppCompatTheme_panelBackground
@see #AppCompatTheme_panelMenuListTheme
@see #AppCompatTheme_panelMenuListWidth
@see #AppCompatTheme_popupMenuStyle
@see #AppCompatTheme_popupWindowStyle
@see #AppCompatTheme_radioButtonStyle
@see #AppCompatTheme_ratingBarStyle
@see #AppCompatTheme_ratingBarStyleIndicator
@see #AppCompatTheme_ratingBarStyleSmall
@see #AppCompatTheme_searchViewStyle
@see #AppCompatTheme_seekBarStyle
@see #AppCompatTheme_selectableItemBackground
@see #AppCompatTheme_selectableItemBackgroundBorderless
@see #AppCompatTheme_spinnerDropDownItemStyle
@see #AppCompatTheme_spinnerStyle
@see #AppCompatTheme_switchStyle
@see #AppCompatTheme_textAppearanceLargePopupMenu
@see #AppCompatTheme_textAppearanceListItem
@see #AppCompatTheme_textAppearanceListItemSecondary
@see #AppCompatTheme_textAppearanceListItemSmall
@see #AppCompatTheme_textAppearancePopupMenuHeader
@see #AppCompatTheme_textAppearanceSearchResultSubtitle
@see #AppCompatTheme_textAppearanceSearchResultTitle
@see #AppCompatTheme_textAppearanceSmallPopupMenu
@see #AppCompatTheme_textColorAlertDialogListItem
@see #AppCompatTheme_textColorSearchUrl
@see #AppCompatTheme_toolbarNavigationButtonStyle
@see #AppCompatTheme_toolbarStyle
@see #AppCompatTheme_tooltipForegroundColor
@see #AppCompatTheme_tooltipFrameBackground
@see #AppCompatTheme_viewInflaterClass
@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, 0x7f01009b, 0x7f01009c,
0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0,
0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4,
0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8,
0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac,
0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0,
0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4,
0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8,
0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc,
0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0,
0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4,
0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8,
0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc,
0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0,
0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4,
0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8,
0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc,
0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0,
0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4,
0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8,
0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec,
0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0,
0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4,
0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8,
0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc,
0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100,
0x7f010101, 0x7f010102, 0x7f010103, 0x7f010104,
0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108,
0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c,
0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons = 96;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle = 94;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN.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 MN.CalculatorMN:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle = 103;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall = 104;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle = 105;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle = 106;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:colorAccent
*/
public static final int AppCompatTheme_colorAccent = 86;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating = 93;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal = 90;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated = 88;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight = 89;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal = 87;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#colorError}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name MN.CalculatorMN:colorError
*/
public static final int AppCompatTheme_colorError = 118;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary = 84;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark = 85;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal = 91;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:controlBackground
*/
public static final int AppCompatTheme_controlBackground = 92;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:editTextColor
*/
public static final int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle = 107;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle = 115;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:panelBackground
*/
public static final int AppCompatTheme_panelBackground = 80;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme = 82;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth = 81;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle = 108;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle = 109;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator = 110;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall = 111;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle = 112;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle = 113;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:switchStyle
*/
public static final int AppCompatTheme_switchStyle = 114;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:textAppearanceListItemSecondary
*/
public static final int AppCompatTheme_textAppearanceListItemSecondary = 78;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall = 79;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem = 98;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#tooltipForegroundColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name MN.CalculatorMN:tooltipForegroundColor
*/
public static final int AppCompatTheme_tooltipForegroundColor = 117;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#tooltipFrameBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name MN.CalculatorMN:tooltipFrameBackground
*/
public static final int AppCompatTheme_tooltipFrameBackground = 116;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#viewInflaterClass}
attribute's value can be found in the {@link #AppCompatTheme} 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 MN.CalculatorMN:viewInflaterClass
*/
public static final int AppCompatTheme_viewInflaterClass = 119;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemBackground MN.CalculatorMN:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemIconTint MN.CalculatorMN:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemTextColor MN.CalculatorMN:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_menu MN.CalculatorMN: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 = {
0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030,
0x7f010082
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:elevation
*/
public static final int BottomNavigationView_elevation = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:itemBackground
*/
public static final int BottomNavigationView_itemBackground = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:itemIconTint
*/
public static final int BottomNavigationView_itemIconTint = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:itemTextColor
*/
public static final int BottomNavigationView_itemTextColor = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:menu
*/
public static final int BottomNavigationView_menu = 0;
/** 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 MN.CalculatorMN:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight MN.CalculatorMN:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed MN.CalculatorMN: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 = {
0x7f01000e, 0x7f01000f, 0x7f010010
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:behavior_hideable
*/
public static final int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:behavior_peekHeight
*/
public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f010111
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance MN.CalculatorMN:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim MN.CalculatorMN:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity MN.CalculatorMN:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin MN.CalculatorMN:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom MN.CalculatorMN:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd MN.CalculatorMN:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart MN.CalculatorMN:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop MN.CalculatorMN:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance MN.CalculatorMN:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration MN.CalculatorMN:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger MN.CalculatorMN:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim MN.CalculatorMN:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title MN.CalculatorMN:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled MN.CalculatorMN:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId MN.CalculatorMN: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 = {
0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014,
0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018,
0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c,
0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010069
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:collapsedTitleGravity
*/
public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:collapsedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:contentScrim
*/
public static final int CollapsingToolbarLayout_contentScrim = 7;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:expandedTitleGravity
*/
public static final int CollapsingToolbarLayout_expandedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:expandedTitleMargin
*/
public static final int CollapsingToolbarLayout_expandedTitleMargin = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:expandedTitleMarginBottom
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:expandedTitleMarginEnd
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:expandedTitleMarginStart
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:expandedTitleMarginTop
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:expandedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:scrimAnimationDuration
*/
public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:scrimVisibleHeightTrigger
*/
public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:statusBarScrim
*/
public static final int CollapsingToolbarLayout_statusBarScrim = 8;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:title
*/
public static final int CollapsingToolbarLayout_title = 15;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:titleEnabled
*/
public static final int CollapsingToolbarLayout_titleEnabled = 14;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:toolbarId
*/
public static final int CollapsingToolbarLayout_toolbarId = 9;
/** 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 MN.CalculatorMN:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier MN.CalculatorMN:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f010020, 0x7f010021
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:layout_collapseMode
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN: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, 0x7f010112
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode MN.CalculatorMN:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f010113, 0x7f010114
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#buttonTintMode}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name MN.CalculatorMN: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 MN.CalculatorMN:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground MN.CalculatorMN:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f010055, 0x7f010056
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:keylines
*/
public static final int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#statusBarBackground}
attribute's value can be found in the {@link #CoordinatorLayout} 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 MN.CalculatorMN: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 MN.CalculatorMN:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity MN.CalculatorMN:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior MN.CalculatorMN:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges MN.CalculatorMN:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge MN.CalculatorMN:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline MN.CalculatorMN: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, 0x7f010057, 0x7f010058, 0x7f010059,
0x7f01005a, 0x7f01005b, 0x7f01005c
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN:layout_anchor
*/
public static final int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:layout_anchorGravity
*/
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:layout_behavior
*/
public static final int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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>0x05</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 MN.CalculatorMN:layout_dodgeInsetEdges
*/
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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>0x05</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 MN.CalculatorMN:layout_insetEdge
*/
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle MN.CalculatorMN:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError MN.CalculatorMN:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f010022, 0x7f010023, 0x7f010024
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:bottomSheetDialogTheme
*/
public static final int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:bottomSheetStyle
*/
public static final int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#textColorError}
attribute's value can be found in the {@link #DesignTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name MN.CalculatorMN: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 MN.CalculatorMN:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength MN.CalculatorMN:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength MN.CalculatorMN:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color MN.CalculatorMN:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize MN.CalculatorMN:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars MN.CalculatorMN:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars MN.CalculatorMN:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness MN.CalculatorMN: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 = {
0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118,
0x7f010119, 0x7f01011a, 0x7f01011b, 0x7f01011c
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode MN.CalculatorMN:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth MN.CalculatorMN:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation MN.CalculatorMN:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabCustomSize MN.CalculatorMN:fabCustomSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize MN.CalculatorMN:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ MN.CalculatorMN:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor MN.CalculatorMN:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding MN.CalculatorMN:useCompatPadding}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_backgroundTint
@see #FloatingActionButton_backgroundTintMode
@see #FloatingActionButton_borderWidth
@see #FloatingActionButton_elevation
@see #FloatingActionButton_fabCustomSize
@see #FloatingActionButton_fabSize
@see #FloatingActionButton_pressedTranslationZ
@see #FloatingActionButton_rippleColor
@see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton = {
0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028,
0x7f010029, 0x7f01002a, 0x7f010082, 0x7f01015c,
0x7f01015d
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:backgroundTint
*/
public static final int FloatingActionButton_backgroundTint = 7;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name MN.CalculatorMN:backgroundTintMode
*/
public static final int FloatingActionButton_backgroundTintMode = 8;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:borderWidth
*/
public static final int FloatingActionButton_borderWidth = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:elevation
*/
public static final int FloatingActionButton_elevation = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fabCustomSize}
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 MN.CalculatorMN:fabCustomSize
*/
public static final int FloatingActionButton_fabCustomSize = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:fabSize
*/
public static final int FloatingActionButton_fabSize = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:pressedTranslationZ
*/
public static final int FloatingActionButton_pressedTranslationZ = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:rippleColor
*/
public static final int FloatingActionButton_rippleColor = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:useCompatPadding
*/
public static final int FloatingActionButton_useCompatPadding = 5;
/** Attributes that can be used with a FloatingActionButton_Behavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide MN.CalculatorMN:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f01002b
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:behavior_autoHide
*/
public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0;
/** Attributes that can be used with a FontFamily.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FontFamily_fontProviderAuthority MN.CalculatorMN:fontProviderAuthority}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderCerts MN.CalculatorMN:fontProviderCerts}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchStrategy MN.CalculatorMN:fontProviderFetchStrategy}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchTimeout MN.CalculatorMN:fontProviderFetchTimeout}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderPackage MN.CalculatorMN:fontProviderPackage}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderQuery MN.CalculatorMN:fontProviderQuery}</code></td><td></td></tr>
</table>
@see #FontFamily_fontProviderAuthority
@see #FontFamily_fontProviderCerts
@see #FontFamily_fontProviderFetchStrategy
@see #FontFamily_fontProviderFetchTimeout
@see #FontFamily_fontProviderPackage
@see #FontFamily_fontProviderQuery
*/
public static final int[] FontFamily = {
0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060,
0x7f010061, 0x7f010062
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fontProviderAuthority}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name MN.CalculatorMN:fontProviderAuthority
*/
public static final int FontFamily_fontProviderAuthority = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fontProviderCerts}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name MN.CalculatorMN:fontProviderCerts
*/
public static final int FontFamily_fontProviderCerts = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fontProviderFetchStrategy}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
@attr name MN.CalculatorMN:fontProviderFetchStrategy
*/
public static final int FontFamily_fontProviderFetchStrategy = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fontProviderFetchTimeout}
attribute's value can be found in the {@link #FontFamily} array.
<p>May be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
@attr name MN.CalculatorMN:fontProviderFetchTimeout
*/
public static final int FontFamily_fontProviderFetchTimeout = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fontProviderPackage}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name MN.CalculatorMN:fontProviderPackage
*/
public static final int FontFamily_fontProviderPackage = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fontProviderQuery}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name MN.CalculatorMN:fontProviderQuery
*/
public static final int FontFamily_fontProviderQuery = 2;
/** Attributes that can be used with a FontFamilyFont.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_font MN.CalculatorMN:font}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontStyle MN.CalculatorMN:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontWeight MN.CalculatorMN:fontWeight}</code></td><td></td></tr>
</table>
@see #FontFamilyFont_android_font
@see #FontFamilyFont_android_fontStyle
@see #FontFamilyFont_android_fontWeight
@see #FontFamilyFont_font
@see #FontFamilyFont_fontStyle
@see #FontFamilyFont_fontWeight
*/
public static final int[] FontFamilyFont = {
0x01010532, 0x01010533, 0x0101053f, 0x7f010063,
0x7f010064, 0x7f010065
};
/**
<p>This symbol is the offset where the {@link android.R.attr#font}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:font
*/
public static final int FontFamilyFont_android_font = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fontStyle}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:fontStyle
*/
public static final int FontFamilyFont_android_fontStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#fontWeight}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:fontWeight
*/
public static final int FontFamilyFont_android_fontWeight = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#font}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name MN.CalculatorMN:font
*/
public static final int FontFamilyFont_font = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fontStyle}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
@attr name MN.CalculatorMN:fontStyle
*/
public static final int FontFamilyFont_fontStyle = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fontWeight}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name MN.CalculatorMN:fontWeight
*/
public static final int FontFamilyFont_fontWeight = 5;
/** Attributes that can be used with a ForegroundLinearLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding MN.CalculatorMN: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, 0x7f01002c
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding MN.CalculatorMN:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild MN.CalculatorMN:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers MN.CalculatorMN: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, 0x7f010071, 0x7f01011d, 0x7f01011e,
0x7f01011f
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass MN.CalculatorMN:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass MN.CalculatorMN:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_alphabeticModifiers MN.CalculatorMN:alphabeticModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_contentDescription MN.CalculatorMN:contentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTint MN.CalculatorMN:iconTint}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTintMode MN.CalculatorMN:iconTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_numericModifiers MN.CalculatorMN:numericModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction MN.CalculatorMN:showAsAction}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_tooltipText MN.CalculatorMN:tooltipText}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_alphabeticModifiers
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_contentDescription
@see #MenuItem_iconTint
@see #MenuItem_iconTintMode
@see #MenuItem_numericModifiers
@see #MenuItem_showAsAction
@see #MenuItem_tooltipText
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f010120, 0x7f010121, 0x7f010122,
0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126,
0x7f010127, 0x7f010128, 0x7f010129
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionLayout
*/
public static final int MenuItem_actionLayout = 16;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 18;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:actionViewClass
*/
public static final int MenuItem_actionViewClass = 17;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#alphabeticModifiers}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
@attr name MN.CalculatorMN:alphabeticModifiers
*/
public static final int MenuItem_alphabeticModifiers = 13;
/**
<p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#checkable}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checkable
*/
public static final int MenuItem_android_checkable = 11;
/**
<p>This symbol is the offset where the {@link android.R.attr#checked}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checked
*/
public static final int MenuItem_android_checked = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:enabled
*/
public static final int MenuItem_android_enabled = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:icon
*/
public static final int MenuItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:id
*/
public static final int MenuItem_android_id = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#onClick}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:onClick
*/
public static final int MenuItem_android_onClick = 12;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#title}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:title
*/
public static final int MenuItem_android_title = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:visible
*/
public static final int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#contentDescription}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name MN.CalculatorMN:contentDescription
*/
public static final int MenuItem_contentDescription = 19;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#iconTint}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name MN.CalculatorMN:iconTint
*/
public static final int MenuItem_iconTint = 21;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#iconTintMode}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name MN.CalculatorMN:iconTintMode
*/
public static final int MenuItem_iconTintMode = 22;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#numericModifiers}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
@attr name MN.CalculatorMN:numericModifiers
*/
public static final int MenuItem_numericModifiers = 14;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:showAsAction
*/
public static final int MenuItem_showAsAction = 15;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#tooltipText}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name MN.CalculatorMN:tooltipText
*/
public static final int MenuItem_tooltipText = 20;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing MN.CalculatorMN:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow MN.CalculatorMN: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, 0x7f01012a,
0x7f01012b
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout MN.CalculatorMN:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground MN.CalculatorMN:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint MN.CalculatorMN:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance MN.CalculatorMN:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor MN.CalculatorMN:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu MN.CalculatorMN: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, 0x7f01002d,
0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031,
0x7f010032, 0x7f010082
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN:elevation
*/
public static final int NavigationView_elevation = 9;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:headerLayout
*/
public static final int NavigationView_headerLayout = 8;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:itemBackground
*/
public static final int NavigationView_itemBackground = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:itemIconTint
*/
public static final int NavigationView_itemIconTint = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:itemTextAppearance
*/
public static final int NavigationView_itemTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:itemTextColor
*/
public static final int NavigationView_itemTextColor = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:menu
*/
public static final int NavigationView_menu = 3;
/** 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 MN.CalculatorMN: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, 0x7f01012c
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f01012d
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle MN.CalculatorMN:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f01012e, 0x7f01012f
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:paddingTopNoTitle
*/
public static final int RecycleListView_paddingTopNoTitle = 1;
/** Attributes that can be used with a RecyclerView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollEnabled MN.CalculatorMN:fastScrollEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable MN.CalculatorMN:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable MN.CalculatorMN:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable MN.CalculatorMN:fastScrollVerticalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable MN.CalculatorMN:fastScrollVerticalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager MN.CalculatorMN:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout MN.CalculatorMN:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount MN.CalculatorMN:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd MN.CalculatorMN:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_descendantFocusability
@see #RecyclerView_android_orientation
@see #RecyclerView_fastScrollEnabled
@see #RecyclerView_fastScrollHorizontalThumbDrawable
@see #RecyclerView_fastScrollHorizontalTrackDrawable
@see #RecyclerView_fastScrollVerticalThumbDrawable
@see #RecyclerView_fastScrollVerticalTrackDrawable
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001,
0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005,
0x7f010006, 0x7f010007, 0x7f010008
};
/**
<p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:descendantFocusability
*/
public static final int RecyclerView_android_descendantFocusability = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:orientation
*/
public static final int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fastScrollEnabled}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name MN.CalculatorMN:fastScrollEnabled
*/
public static final int RecyclerView_fastScrollEnabled = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fastScrollHorizontalThumbDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name MN.CalculatorMN:fastScrollHorizontalThumbDrawable
*/
public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fastScrollHorizontalTrackDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name MN.CalculatorMN:fastScrollHorizontalTrackDrawable
*/
public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fastScrollVerticalThumbDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name MN.CalculatorMN:fastScrollVerticalThumbDrawable
*/
public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fastScrollVerticalTrackDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name MN.CalculatorMN:fastScrollVerticalTrackDrawable
*/
public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:layoutManager
*/
public static final int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:reverseLayout
*/
public static final int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:spanCount
*/
public static final int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f010033
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f010034
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon MN.CalculatorMN:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint MN.CalculatorMN:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon MN.CalculatorMN:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault MN.CalculatorMN:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout MN.CalculatorMN:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground MN.CalculatorMN:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint MN.CalculatorMN:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon MN.CalculatorMN:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon MN.CalculatorMN:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground MN.CalculatorMN:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout MN.CalculatorMN:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon MN.CalculatorMN: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,
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#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 MN.CalculatorMN.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 MN.CalculatorMN:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth MN.CalculatorMN:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f010035, 0x7f010082
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN:elevation
*/
public static final int SnackbarLayout_elevation = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:maxActionInlineWidth
*/
public static final int SnackbarLayout_maxActionInlineWidth = 1;
/** 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 MN.CalculatorMN: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,
0x7f010083
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack MN.CalculatorMN:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth MN.CalculatorMN:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding MN.CalculatorMN:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance MN.CalculatorMN:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding MN.CalculatorMN:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint MN.CalculatorMN:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode MN.CalculatorMN:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track MN.CalculatorMN:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint MN.CalculatorMN:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode MN.CalculatorMN: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, 0x7f01013d,
0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141,
0x7f010142, 0x7f010143, 0x7f010144, 0x7f010145,
0x7f010146, 0x7f010147
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN:showText
*/
public static final int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:splitTrack
*/
public static final int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:switchPadding
*/
public static final int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:thumbTint
*/
public static final int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:track
*/
public static final int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:trackTint
*/
public static final int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart MN.CalculatorMN:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity MN.CalculatorMN:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor MN.CalculatorMN:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight MN.CalculatorMN:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth MN.CalculatorMN:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth MN.CalculatorMN:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode MN.CalculatorMN:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding MN.CalculatorMN:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom MN.CalculatorMN:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd MN.CalculatorMN:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart MN.CalculatorMN:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop MN.CalculatorMN:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor MN.CalculatorMN:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance MN.CalculatorMN:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor MN.CalculatorMN: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 = {
0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039,
0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d,
0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041,
0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045
};
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabBackground
*/
public static final int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabContentStart
*/
public static final int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabGravity
*/
public static final int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabIndicatorColor
*/
public static final int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabIndicatorHeight
*/
public static final int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabMaxWidth
*/
public static final int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabMinWidth
*/
public static final int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabMode
*/
public static final int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabPadding
*/
public static final int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabPaddingBottom
*/
public static final int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabPaddingEnd
*/
public static final int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabPaddingStart
*/
public static final int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabPaddingTop
*/
public static final int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabSelectedTextColor
*/
public static final int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabTextAppearance
*/
public static final int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:tabTextColor
*/
public static final int TabLayout_tabTextColor = 9;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_fontFamily MN.CalculatorMN:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps MN.CalculatorMN:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_fontFamily
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textColorHint
@see #TextAppearance_android_textColorLink
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_fontFamily
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x0101009b, 0x01010161, 0x01010162,
0x01010163, 0x01010164, 0x010103ac, 0x7f010094,
0x7f01009a
};
/**
<p>This symbol is the offset where the {@link android.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:fontFamily
*/
public static final int TextAppearance_android_fontFamily = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowColor
*/
public static final int TextAppearance_android_shadowColor = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDx}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDx
*/
public static final int TextAppearance_android_shadowDx = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDy}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDy
*/
public static final int TextAppearance_android_shadowDy = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowRadius
*/
public static final int TextAppearance_android_shadowRadius = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColor
*/
public static final int TextAppearance_android_textColor = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorHint
*/
public static final int TextAppearance_android_textColorHint = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorLink}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorLink
*/
public static final int TextAppearance_android_textColorLink = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static final int TextAppearance_android_textSize = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#textStyle}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#typeface}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:typeface
*/
public static final int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name MN.CalculatorMN:fontFamily
*/
public static final int TextAppearance_fontFamily = 12;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:textAllCaps
*/
public static final int TextAppearance_textAllCaps = 11;
/** Attributes that can be used with a TextInputLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterEnabled MN.CalculatorMN:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength MN.CalculatorMN:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance MN.CalculatorMN:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance MN.CalculatorMN:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled MN.CalculatorMN:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance MN.CalculatorMN:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled MN.CalculatorMN:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled MN.CalculatorMN:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance MN.CalculatorMN:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription MN.CalculatorMN:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable MN.CalculatorMN:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled MN.CalculatorMN:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint MN.CalculatorMN:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode MN.CalculatorMN: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, 0x7f010046, 0x7f010047,
0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b,
0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f,
0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN:counterEnabled
*/
public static final int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:counterMaxLength
*/
public static final int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:counterOverflowTextAppearance
*/
public static final int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:counterTextAppearance
*/
public static final int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:errorEnabled
*/
public static final int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:errorTextAppearance
*/
public static final int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:hintAnimationEnabled
*/
public static final int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:hintEnabled
*/
public static final int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:hintTextAppearance
*/
public static final int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:passwordToggleContentDescription
*/
public static final int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:passwordToggleDrawable
*/
public static final int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:passwordToggleEnabled
*/
public static final int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:passwordToggleTint
*/
public static final int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription MN.CalculatorMN:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon MN.CalculatorMN:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd MN.CalculatorMN:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions MN.CalculatorMN:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft MN.CalculatorMN:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight MN.CalculatorMN:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart MN.CalculatorMN:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation MN.CalculatorMN:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo MN.CalculatorMN:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription MN.CalculatorMN:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight MN.CalculatorMN:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription MN.CalculatorMN:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon MN.CalculatorMN:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme MN.CalculatorMN:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle MN.CalculatorMN:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance MN.CalculatorMN:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor MN.CalculatorMN:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title MN.CalculatorMN:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin MN.CalculatorMN:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom MN.CalculatorMN:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd MN.CalculatorMN:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart MN.CalculatorMN:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop MN.CalculatorMN:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins MN.CalculatorMN:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance MN.CalculatorMN:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor MN.CalculatorMN: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, 0x7f010069, 0x7f01006c,
0x7f010070, 0x7f01007c, 0x7f01007d, 0x7f01007e,
0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010083,
0x7f010148, 0x7f010149, 0x7f01014a, 0x7f01014b,
0x7f01014c, 0x7f01014d, 0x7f01014e, 0x7f01014f,
0x7f010150, 0x7f010151, 0x7f010152, 0x7f010153,
0x7f010154, 0x7f010155, 0x7f010156, 0x7f010157,
0x7f010158
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN:buttonGravity
*/
public static final int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:collapseIcon
*/
public static final int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:logoDescription
*/
public static final int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:navigationIcon
*/
public static final int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:popupTheme
*/
public static final int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:titleMargin
*/
public static final int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:titleMargins
*/
public static final int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart MN.CalculatorMN:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme MN.CalculatorMN: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, 0x7f010159, 0x7f01015a,
0x7f01015b
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.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 MN.CalculatorMN: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 MN.CalculatorMN:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode MN.CalculatorMN:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f01015c, 0x7f01015d
};
/**
<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 MN.CalculatorMN.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 MN.CalculatorMN:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link MN.CalculatorMN.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name MN.CalculatorMN:backgroundTintMode
*/
public static final int ViewBackgroundHelper_backgroundTintMode = 2;
/** Attributes that can be used with a ViewStubCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
</table>
@see #ViewStubCompat_android_id
@see #ViewStubCompat_android_inflatedId
@see #ViewStubCompat_android_layout
*/
public static final int[] ViewStubCompat = {
0x010100d0, 0x010100f2, 0x010100f3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:id
*/
public static final int ViewStubCompat_android_id = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#inflatedId}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:inflatedId
*/
public static final int ViewStubCompat_android_inflatedId = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:layout
*/
public static final int ViewStubCompat_android_layout = 1;
};
}
| [
"[email protected]"
] | |
476578bff6c9d02f4f8e9c83a0ee517442b51988 | 02eab96bfc1c8673c42a0812986cbd74bd561bb5 | /src/main/java/hello/HelloServlet.java | dbea5e7ebe250be03ead8d78b7a5bfe62810a5cd | [] | no_license | DaviChalita/hello-servlet-countries | 4638db0f6d582f5f347ac68ba5149f943c38cd27 | 703fb646bf25135fcb11d5e929f659f910db1aff | refs/heads/master | 2023-03-10T05:14:52.498601 | 2021-02-18T01:58:27 | 2021-02-18T01:58:27 | 339,907,022 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,495 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package hello;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
/**
* @author viter
*/
@WebServlet("/alomundo")
public class HelloServlet extends HttpServlet {
/**
* Processes requests for both HTTP <code>GET</code> and <code>POST</code>
* methods.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
try (PrintWriter out = response.getWriter()) {
/* TODO output your page here. You may use following sample code. */
out.println("<!DOCTYPE html>");
out.println("<html>");
out.println("<head>");
out.println("<title>Servlet HelloServlet</title>");
out.println("</head>");
out.println("<body>");
out.println("<h1>Servlet HelloServlet at " + request.getContextPath() + "</h1>");
out.println("</body>");
out.println("</html>");
}
}
// <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
/**
* Handles the HTTP <code>GET</code> method.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String msg = "";
String lang = request.getParameter("lang");
if (lang == null)
lang = "pt";
switch (lang) {
case "pt":
msg = "Alô, ";
break;
case "en":
msg = "Hello, ";
break;
case "fr":
msg = "Bonjour, ";
break;
case "kr":
msg = "Annyeonghaseyo, ";
break;
}
String nome = request.getParameter("nome");
if (nome == null)
nome = "Fulano";
msg = msg + nome + "!";
response.setContentType("text/html;charset=UTF-8");
try (PrintWriter out = response.getWriter()) {
/* TODO output your page here. You may use following sample code. */
out.println("<!DOCTYPE html>");
out.println("<html>");
out.println("<head>");
out.println("<title>Servlet HelloServlet</title>");
out.println("</head>");
out.println("<body>");
out.println("<h1>Servlet HelloServlet</h1>");
out.println("<p>" + msg + "</p>");
out.println("</body>");
out.println("</html>");
}
}
/**
* Handles the HTTP <code>POST</code> method.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String msg = "";
String lang = request.getParameter("lang");
if (lang == null)
lang = "pt";
switch (lang) {
case "pt":
msg = "Alô, ";
break;
case "en":
msg = "Hello, ";
break;
case "fr":
msg = "Bonjour, ";
break;
case "de":
msg = "Hallo, ";
break;
case "kr":
msg = "Annyeonghaseyo, ";
break;
}
String nome = request.getParameter("nome");
if (nome == null)
nome = "Fulano";
msg = msg + nome + "!";
response.setContentType("text/html;charset=UTF-8");
try (PrintWriter out = response.getWriter()) {
/* TODO output your page here. You may use following sample code. */
out.println("<!DOCTYPE html>");
out.println("<html>");
out.println("<head>");
out.println("<title>Servlet HelloServlet</title>");
out.println("</head>");
out.println("<body>");
out.println("<h1>Servlet HelloServlet</h1>");
out.println("<p>" + msg + "</p>");
out.println("</body>");
out.println("</html>");
}
}
/**
* Returns a short description of the servlet.
*
* @return a String containing servlet description
*/
@Override
public String getServletInfo() {
return "Short description";
}// </editor-fold>
}
| [
"[email protected]"
] | |
2297beca145d376aa580e792e5886c128fd5dafa | 79c257631691579056f87cf30ff1eedde600f662 | /src/service/AddTicketImpl.java | 53c69b245ef855504cdf81d7cf9eac65249bef4b | [] | no_license | TrantorPlayground/iso-tracker | 4bea437ea6fee93d90bde0efa33779458a3adc5d | 69792ca291e8d8d86dcaa910081ea29dc7f1ecae | refs/heads/master | 2021-01-20T07:28:27.110043 | 2017-05-11T14:34:56 | 2017-05-11T14:34:56 | 90,001,591 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,847 | java | package service;
import interfaces.IAddTicketDao;
import interfaces.IAddTicketImpl;
import java.net.SocketTimeoutException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.regex.Pattern;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.Part;
import model.LoginSignup;
import model.Ticket;
import com.google.api.services.drive.Drive;
import com.google.api.services.drive.model.File;
import dao.AddTicketDao;
public class AddTicketImpl implements IAddTicketImpl {
@Override
public Ticket addTicket(String ip,HttpServletRequest req)
{
String component = "addTicket";
Ticket ticket = new Ticket();
IAddTicketDao addTicketDao = new AddTicketDao();
try
{
String tNum = req.getParameter("tno").toLowerCase();
if(tNum != null)
{
if(tNum.indexOf("ticket#") < 0)
{
if(tNum.indexOf("scr#") < 0)
{
ticket.setErrMsg("Ticket Num Must Contain Ticket# OR SCR#");
return ticket;
}
}
}
String tDesc = req.getParameter("tdesc");
String tSubDate = req.getParameter("tsubdate");
int uId = Integer.parseInt(req.getParameter("userId"));
if (!validateDate(tSubDate))
{
ticket.setErrMsg("Date Should Be Valid!.....(yyyy-mm-dd)");
return ticket;
}
String extractedNum = new Misc().extractTicketNum(tNum);
if(addTicketDao.checkTicketNum(ip,extractedNum) != null)
{
ticket.setErrMsg("Ticket Num Already Exists!");
return ticket;
}
ticket.setTicketNum(extractedNum);
ticket.setDesciption(tDesc);
if(!validateFields(ticket))
{
ticket.setErrMsg("Enter Required details!");
return ticket;
}
Map<Integer, String> map = doApiStuff(ip,req);
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
Date date = dateFormat.parse(tSubDate);
ticket.setSubmittedDate(date);
ticket.setStatus(TICKET_STATUS_UNCHECKED);
ticket.setRemarks("Not Yet Verified");
ticket = addTicketDao.saveTicket(ip,map,ticket, uId);
}
catch(Exception ex)
{
System.out.println("Exception while adding ticket: "+ex);
Misc.writeToFile(AddTicketImpl.class, component,ip, ex.toString());
if(ex instanceof SocketTimeoutException)
{
ticket.setErrMsg("Drive Connection TimeOut....Please Try Again!");
}
else
{
ticket.setErrMsg("Some Exception Occurs! Try Again... :|");
}
}
return ticket;
}
boolean validateDate(String d) {
boolean valid = false;
if (d == null || d.equals("")) {
return valid;
}
String regex = "((?:19|20)\\d\\d)-(0?[1-9]|1[012])-([12][0-9]|3[01]|0?[1-9])";
Pattern pattern = Pattern.compile(regex);
if (pattern.matcher(d).matches())
valid = true;
return valid;
}
boolean validateFields(Ticket ticket) {
boolean check = true;
if (ticket.getTicketNum() == null || ticket.getTicketNum().equals("")
|| ticket.getTicketNum().trim().length() == 0
|| ticket.getDesciption() == null
|| ticket.getDesciption().equals("")
|| ticket.getDesciption().trim().length() == 0) {
check = false;
}
return check;
}
public Map<Integer, String> doApiStuff(String ip,HttpServletRequest req) throws Exception
{
Map<Integer, String> map = new HashMap<>();
String component = "doApiStuff";
try
{
String tFolderId = "";
LoginSignup user = new Misc().getUserObjFromSession(Integer
.parseInt(req.getParameter("userId")));
String userFolderId = user.getUserFolderId();
String isoID = user.getIsoFolderId();
String userName = user.getuFName() + " " + user.getuLName();
String userParentFolder = "";
if (user.getSubProject() != null) {
userParentFolder = user.getSubProject().getSubProFolderId();
} else {
userParentFolder = user.getProjects().getProFolderId();
}
Drive service = GoogleDriveImpl.getDriveService();
if (userFolderId == null || userFolderId.equals("")
|| userFolderId.equals("null")) {
userFolderId = GoogleDriveImpl.createChildFolder(service,
userParentFolder, userName);
map.put(USER_FOLDER_ID, userFolderId);
String permissionId = GoogleDriveImpl.doSharing(service,
userFolderId, user.getEmailID());
map.put(PERMISSION_ID, permissionId);
System.out.println("parent folder created== " + userFolderId);
if (isoID == null || isoID.equals("") || isoID.equals("null")) {
isoID = GoogleDriveImpl.createChildFolder(service,
userFolderId, "ISO");
map.put(ISO_FOLDER_ID, isoID);
System.out.println("child folder created== " + isoID);
}
}
IAddTicketDao addTicketDao = new AddTicketDao();
Ticket ticket = addTicketDao.checkTicketNum(ip,req.getParameter("tno"));
if (ticket == null) {
tFolderId = GoogleDriveImpl.createChildFolder(service, isoID,
req.getParameter("tno"));
map.put(TICKET_FOLDER_ID, tFolderId);
String path = "D://tmpISO//" + req.getParameter("tno") + "//";
List<String> fileNames = saveFilesToLocal(ip,path, req);
for (String fName : fileNames) {
String type = fName.substring(0, fName.indexOf('@'));
String fileName = fName.substring(fName.indexOf('@') + 1,
fName.length());
System.out.println(type + " " + fileName);
File file = GoogleDriveImpl.insertFile(service, fileName,
"", tFolderId, "*/*", path + fileName);
String id = file.getId();
if (type.equalsIgnoreCase("rad")) {
map.put(RAD_ID, id);
} else if (type.equalsIgnoreCase("chgreq")) {
map.put(CR_DOC_ID, id);
} else if (type.equalsIgnoreCase("esdoc")) {
map.put(ES_DOC_ID, id);
}
}
}
}
catch(Exception ex)
{
System.out.println("Exception while doing api stuff during add ticket");
Misc.writeToFile(AddTicketImpl.class, component, ip, ex.toString());
throw ex;
}
System.out.println(map);
return map;
}
public String extractFileName(Part p) {
String fileName = "";
fileName = p.getHeader("content-disposition");
fileName = fileName.substring(fileName.lastIndexOf("=") + 1);
fileName = fileName.replace('"', ' ').trim();
return fileName;
}
List<String> saveFilesToLocal(String ip,String path, HttpServletRequest req)
throws Exception
{
List<String> fileNames = new ArrayList<>();
String component = "saveFilesToLocal";
try
{
String fileName = "";
java.io.File file = new java.io.File(path);
if (!file.exists())
file.mkdirs();
Part p = req.getPart("rad");
if (p.getSize() != 0) {
fileName = extractFileName(p);
fileNames.add("rad@" + fileName);
if (!fileName.equals("") || fileName != null
|| fileName.trim().length() > 0) {
p.write(path + fileName);
}
}
p = req.getPart("esdoc");
if (p.getSize() != 0) {
System.out.println(p.getName() + " " + p.getSize());
fileName = extractFileName(p);
fileNames.add("esdoc@" + fileName);
if (!fileName.equals("") || fileName != null
|| fileName.trim().length() > 0) {
p.write(path + fileName);
}
}
p = req.getPart("chgreq");
if (p.getSize() != 0) {
fileName = extractFileName(p);
fileNames.add("chgreq@" + fileName);
if (!fileName.equals("") || fileName != null
|| fileName.trim().length() > 0) {
p.write(path + fileName);
}
}
}
catch(Exception ex)
{
System.out.println("Exception while saving files to local: "+ex);
Misc.writeToFile(AddTicketImpl.class, component, ip, ex.toString());
throw ex;
}
return fileNames;
}
@Override
public Ticket alterTicketDoc(String ip,HttpServletRequest req)
{
Ticket ticket = new Ticket();
String component = "alterTicketDoc";
try
{
ticket.setErrMsg("");
String doctype = req.getParameter("doctype");
String btnid = req.getParameter("btnid");
String tno = req.getParameter("t_no");
Part p = req.getPart("docToAlter");
if (p.getSize() == 0)
{
ticket.setErrMsg("Please Upload the Required Document!");
return ticket;
}
System.out.println(doctype + " " + btnid + " " + tno);
if (doctype == null || doctype.isEmpty() || btnid == null
|| btnid.isEmpty() || tno == null || tno.isEmpty())
{
ticket.setErrMsg("Some Error Occurs!");
return ticket;
}
List<String> files = saveThisFileToLocal(ip,p,tno);
if(files.size() == 2)
{
Drive service = GoogleDriveImpl.getDriveService();
if(service == null)
{
ticket.setErrMsg("Some Error Occurs!");
return ticket;
}
IAddTicketDao addTicketDao = new AddTicketDao();
if (btnid.equalsIgnoreCase("UPDATE"))
{
System.out.println("Need to get id of file from DB");
String fileId = addTicketDao.getDocId(ip,doctype, tno);
System.out.println("file id : "+fileId);
if(fileId != null && !fileId.isEmpty())
{
File newFile = GoogleDriveImpl.updateFile(service, fileId,
files.get(1), "", "*/*",
files.get(0) + files.get(1), true);
System.out.println("new file Id: "+newFile.getId());
//if(!fileId.equals(newFile.getId()))
//{
ticket = addTicketDao.updateTicketDoc(ip,doctype,tno,newFile.getId());
//}
}
}
else if (btnid.equalsIgnoreCase("ADD"))
{
System.out.println("Need to save new file to drive");
String tFolderId = addTicketDao.getTicketFolderID(ip,tno);
if(tFolderId != null && !tFolderId.isEmpty())
{
File file = GoogleDriveImpl.insertFile(service, files.get(1), "",
tFolderId, "*/*", files.get(0) + files.get(1));
ticket = addTicketDao.updateTicketDoc(ip,doctype,tno,file.getId());
}
}
}
}
catch (Exception e)
{
System.out.println(e);
if(e instanceof SocketTimeoutException)
{
ticket.setErrMsg("Drive Connection TimeOut....Please Try Again!");
}
else
{
ticket.setErrMsg("Some Exception Occurs! Try Again... :|");
}
Misc.writeToFile(AddTicketImpl.class, component,ip, e.toString());
}
return ticket;
}
public List<String> saveThisFileToLocal(String ip,Part p, String tNo) throws Exception
{
String fileName = "";
String component = "saveThisFileToLocal";
List<String> files = new ArrayList<>();
String path = "D://ISOSaveUpdate//"+tNo+"//";
java.io.File file = new java.io.File(path);
files.add(0,path);
try
{
if (!file.exists())
file.mkdirs();
if (p.getSize() != 0)
{
fileName = extractFileName(p);
files.add(1,fileName);
if (!fileName.equals("") || fileName != null
|| fileName.trim().length() > 0)
{
p.write(path + fileName);
}
}
}
catch(Exception e)
{
System.out.println("exception while saving single file to local: "+e);
Misc.writeToFile(AddTicketImpl.class, component, ip, e.toString());
throw e;
}
return files;
}
} | [
"[email protected]"
] | |
e0f6a050d216687efec34d4340f48de682e89eab | b498766ab1372d7217e589cce4320abc500752e3 | /amv-access-sdk-spi/src/main/java/org/amv/access/sdk/spi/vehicle/impl/SimpleChargingPlugState.java | ebe58574062ee615a4eab05d3dd7bdb25c7b886f | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | amv-networks/amv-access-sdk-android | 68e8bbedb178abb2771e903f5041ac86996f91cf | 0c596e87f0dcca22de888085cddab066128eff1b | refs/heads/master | 2021-05-03T05:45:57.372338 | 2019-02-19T16:47:23 | 2019-02-19T18:38:22 | 120,583,394 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 290 | java | package org.amv.access.sdk.spi.vehicle.impl;
import org.amv.access.sdk.spi.vehicle.VehicleState;
import lombok.Builder;
import lombok.Value;
@Value
@Builder(toBuilder = true)
public class SimpleChargingPlugState implements VehicleState.ChargingPlugState {
private boolean plugged;
}
| [
"[email protected]"
] | |
b6fa2544daabf348fb8bfdb59227578543be4ac4 | d37fd775c6bc238ca0babc86a01cf154abd4fc33 | /src/Mandalore/RobotPlayer.java | 62a5abf40c0432b6c3eddc7655463b90698cf47a | [
"MIT"
] | permissive | devYaoYH/battlecode2017_edoctablet | 0efa302e22f4423a04f579a9fd89f1639ed337fd | 18febc0116eb0a57b352b0cc187fb4da066df9c6 | refs/heads/master | 2021-01-11T16:26:39.671384 | 2018-05-01T05:10:33 | 2018-05-01T05:10:33 | 80,085,090 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,655 | java | package Mandalore;
import battlecode.common.GameActionException;
import battlecode.common.RobotController;
public strictfp class RobotPlayer {
static BasePlayer newPlayer;
@SuppressWarnings("unused")
public static void run(RobotController rc) throws GameActionException {
/*float archondist = rc.getInitialArchonLocations(rc.getTeam())[0].distanceTo(rc.getInitialArchonLocations(rc.getTeam().opponent())[0]);
if (archondist > 69 && rc.getInitialArchonLocations(rc.getTeam()).length >= 1 && rc.getTeam() == Team.A) {
rc.setIndicatorDot(rc.getLocation(), 0, 255, 255);
//large map
GuanPlayer.run(rc);
}*/
//Robot Specific Initializations
while(true) {
try {
switch (rc.getType()) {
case ARCHON:
newPlayer = new ArchonPlayer(rc);
break;
case GARDENER:
newPlayer = new GardenerPlayer(rc);
break;
case SOLDIER:
newPlayer = new SoldierPlayer(rc);
break;
case LUMBERJACK:
newPlayer = new LumberjackPlayer(rc);
break;
case SCOUT:
newPlayer = new ScoutShaker(rc);
break;
case TANK:
newPlayer = new TankPlayer(rc);
break;
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
} | [
"[email protected]"
] | |
f0945cdc9af9e3bee45bebf286a0cc748eb86c7a | 1b8a1ddc40c47a0e929b22df0deb9e0dbfad2bea | /src/main/java/depdendecy_inversion_principle/high_lvl/Switch.java | 5f835b1df16c39df04f1bd93f66f613a63ad2633 | [] | no_license | axllow91/design-patterns-java | 51dc89dec0558862e45b33441fd6b2cdf235d062 | d41b22afe92a007e33cad05e3024f837625926ea | refs/heads/master | 2022-12-21T07:17:56.235223 | 2020-09-28T18:18:36 | 2020-09-28T18:18:36 | 299,392,686 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 116 | java | package depdendecy_inversion_principle.high_lvl;
public interface Switch {
boolean isOn();
void press();
}
| [
"[email protected]"
] | |
84cea8eaccdb07d62ee20164f398289ecbd0545f | 8cedd840ad4fab0648e51c23e283e2ed9babf871 | /src/main/java/server/HibernateUtil.java | 6426595e64e096c8700caa55a7747326af97ed0e | [] | no_license | KirylPod/ATM3 | de0574eeb4e92f7ea77af557929611b49d62b50d | 80a13c099ca45c78032a823c0587d22367b957ba | refs/heads/master | 2022-06-23T12:22:27.800808 | 2019-09-07T12:42:50 | 2019-09-07T12:42:50 | 204,758,950 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 871 | java | package server;
import org.hibernate.SessionFactory;
import org.hibernate.boot.MetadataSources;
import org.hibernate.boot.registry.StandardServiceRegistry;
import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
public class HibernateUtil {
public static SessionFactory sessionFactory;
private HibernateUtil() {}
static {
final StandardServiceRegistry registry = new StandardServiceRegistryBuilder()
.configure()
.build();
try {
sessionFactory = new MetadataSources(registry).buildMetadata().buildSessionFactory();
} catch (Exception e) {
System.out.println("Исключение!" + e);
StandardServiceRegistryBuilder.destroy(registry);
}
}
public static SessionFactory getSessionFactory() {
return sessionFactory;
}
}
| [
"[email protected]"
] | |
976cc7a74f2ee5f1c9a25a73a44458223ced1431 | 4731fe910eb3e1f7f245faad25810734e591adf9 | /src/main/java/com/xiaowuzei/test/algr/leet/N136_SingleNumber.java | bf2e506628a28f15a33dc8263946bb8383b903a4 | [] | no_license | ErgooLee/TestJava | 31fd1ac0e16ee8f65b54d8ea8312b293ca60dd07 | cd13bb434e7ba6dc8a2fbbe3bf66ec519e3f3048 | refs/heads/master | 2022-12-19T02:40:20.681920 | 2020-08-19T02:37:30 | 2020-09-27T13:40:58 | 288,615,458 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 377 | java | package com.xiaowuzei.test.algr.leet;
public class N136_SingleNumber {
public static void main(String[] args) {
System.out.println(new N136_SingleNumber().singleNumber(new int[]{1, 2, 1, 2, 4}));
}
public int singleNumber(int[] nums) {
int ret = 0;
for (int num : nums) {
ret = ret ^ num;
}
return ret;
}
}
| [
"[email protected]"
] | |
5b346c7a97accf99ab857f369a93d3d47100393d | 007903cd95e30cfe9654af43bd294a8bce0f14cf | /src/main/java/com/rainbow/mydemo/ReadController.java | 6fc34c6ef3d29303935e5f2655c991a7cc33f226 | [] | no_license | WebPavel/MySpringBoot | fcedbf9c5cf377340d6c3260dc82b7486269a922 | 094c17e03dab22817265211712ae63eebd559451 | refs/heads/master | 2020-03-14T22:18:06.036724 | 2018-05-04T02:35:00 | 2018-05-04T02:35:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 440 | java | package com.rainbow.mydemo;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class ReadController {
@RequestMapping("/read")
public String index(ModelMap map){
//加入一个属性,用于在模板中读取
map.addAttribute("host","http://lb.yupaopao.cn");
return "index";
}
}
| [
"[email protected]"
] | |
06874c4ed87e2d099c728ab46cf747899e27ff44 | c99ec259365700078af1ebaf27a96d49ab9474d3 | /src/test/java/com/my/learn/core_java/ch5/ReflectionClassNameTest.java | 566082886c4bad1adf53a2b9891e777c01b2fac9 | [] | no_license | siyu618/core_java | cfd8b873a98dcf7714666c36f2086498fae082f1 | e66737f192d78b0e5c765a091a46a536099de120 | refs/heads/master | 2016-09-05T16:23:21.255750 | 2014-12-06T06:50:03 | 2014-12-06T06:50:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,356 | java | package com.my.learn.core_java.ch5;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.util.Date;
import org.testng.annotations.Test;
public class ReflectionClassNameTest {
@Test
public void className() {
System.out.println(Double[].class.getName());
System.out.println(int[].class.getName());
}
@Test
public void testGetClass() {
Date date = new Date();
assert Date.class == date.getClass();
}
@Test
public void testNewInstance() throws InstantiationException, IllegalAccessException, ClassNotFoundException {
String string = "java.util.Date";
Object object = Class.forName(string).newInstance();
assert object instanceof Date;
assert object.getClass() == Date.class;
}
@Test
public void testNewInstance2() throws NoSuchMethodException, SecurityException, ClassNotFoundException, InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
String string = "java.util.Date";
long dateLong = 13000000;
Constructor<?> constructor = Class.forName(string).getConstructor(long.class);
Object object = constructor.newInstance(dateLong);
assert object instanceof Date;
System.out.println(object);
}
}
| [
"[email protected]"
] | |
c45ef5a8aba3332b0df9bd941e9c3f3fcfc20bc7 | fca6e069c335dc8442618e36d4c0f97ede2c6a06 | /src/com/mixshare/rapid_evolution/audio/util/ByteToSampleReader.java | a8026931778ec2b926dfbde356193d1551eafbe0 | [] | no_license | divideby0/RapidEvolution3 | 127255648bae55e778321067cd7bb5b979684b2c | f04058c6abfe520442a75b3485147f570f7d538e | refs/heads/master | 2020-03-22T00:56:26.188151 | 2018-06-30T20:41:26 | 2018-06-30T20:41:26 | 139,274,034 | 0 | 0 | null | 2018-06-30T19:19:57 | 2018-06-30T19:19:57 | null | UTF-8 | Java | false | false | 4,017 | java | package com.mixshare.rapid_evolution.audio.util;
import org.tritonus.share.sampled.TConversionTool;
public class ByteToSampleReader {
public ByteToSampleReader() { }
public static double getSampleFromBytesNormalized(byte[] buffer, int offset, int bytespersample, boolean bigendian) {
double val = getSampleFromBytes(buffer, offset, bytespersample, bigendian);
if (bytespersample == 1) val /= (128.0);
else if (bytespersample == 2) val /= (32768.0);
else if (bytespersample == 3) val /= (8388606.0);
else if (bytespersample == 4) val /= (2147483648.0);
return val;
}
public static double getSampleFromBytesFactored(byte[] buffer, int offset, int bytespersample, boolean bigendian, double factor) {
double val = getSampleFromBytes(buffer, offset, bytespersample, bigendian);
if (bytespersample == 1) val /= (128.0 * factor);
else if (bytespersample == 2) val /= (32768.0 * factor);
else if (bytespersample == 3) val /= (8388606.0 * factor);
else if (bytespersample == 4) val /= (2147483648.0 * factor);
return val;
}
public static double getSampleFromBytes(byte[] buffer, int offset, int bytespersample, boolean bigendian) {
if (bytespersample == 1) {
if (bigendian) {
double sample = ( (buffer[offset] & 0xFF) - 128);
return sample;
} else {
double sample = buffer[offset];
return sample;
}
} else if (bytespersample == 2) {
if (bigendian) {
double sample = ( (buffer[offset + 0] << 8) | (buffer[offset + 1] & 0xFF) );
return sample;
} else {
double sample = ( (buffer[offset + 0] & 0xFF) | (buffer[offset + 1] << 8) );
return sample;
}
} else if (bytespersample == 3) {
if (bigendian) {
double sample = ( (buffer[offset + 0] << 16) | ((buffer[offset + 1] & 0xFF) << 8) | (buffer[offset + 2] & 0xFF) );
return sample;
} else {
double sample = ( (buffer[offset + 0] & 0xFF) | ((buffer[offset + 1] & 0xFF) << 8) | (buffer[offset + 2] << 16) );
return sample;
}
} else if (bytespersample == 4) {
if (bigendian) {
double sample = ( (buffer[offset + 0] << 24) | ((buffer[offset + 1] & 0xFF) << 16) | ((buffer[offset + 2] & 0xFF) << 8) | (buffer[offset + 3] & 0xFF) );
return sample;
} else {
double sample = ( (buffer[offset + 0] & 0xFF) | ((buffer[offset + 1] & 0xFF) << 8) | ((buffer[offset + 2] & 0xFF) << 16) | (buffer[offset + 3] << 24) );
return sample;
}
}
return 0.0;
}
public static void setBytesFromSample(double sample, byte[] buffer, int offset, int bytespersample, boolean bigendian) {
if (bytespersample == 1) {
byte val = (byte)sample;
buffer[offset] = val;
} else if (bytespersample == 2) {
int val = (int)sample;
TConversionTool.intToBytes16(val, buffer, offset, bigendian);
} else if (bytespersample == 3) {
int val = (int)sample;
TConversionTool.intToBytes24(val, buffer, offset, bigendian);
} else if (bytespersample == 4) {
int val = (int)sample;
TConversionTool.intToBytes32(val, buffer, offset, bigendian);
}
}
public static void setBytesFromNormalizedSample(double sample, byte[] buffer, int offset, int bytespersample, boolean bigendian) {
if (bytespersample == 1) sample *= 127.0;
else if (bytespersample == 2) sample *= 32767.0;
else if (bytespersample == 3) sample *= 8388605.0;
else if (bytespersample == 4) sample *= 2147483647.0;
setBytesFromSample(sample, buffer, offset, bytespersample, bigendian);
}
}
| [
"[email protected]"
] | |
794d33487a695ddfab4f0c0edbc1aed7bb0a1166 | f5f85087e9ebbe427d40ede7a09584a3d22d2794 | /src/main/study/springframework/beans/factory/xml/XmlBeanFactory.java | 85d5c71f8c8d3610b50104ffaaf8e522b60f38c3 | [] | no_license | dy604/Spring-studycode | 760b8fd4a713b29d3a983eccd25a60edf96cd7b8 | 450ea411bfccd45c21a6ba1d9793059f2109451f | refs/heads/master | 2021-01-10T22:14:44.555770 | 2016-10-27T07:30:50 | 2016-10-27T07:30:50 | 70,333,055 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 709 | java | package study.springframework.beans.factory.xml;
import study.springframework.beans.BeansException;
import study.springframework.beans.factory.BeanFactory;
import study.springframework.core.io.Resource;
/**
* Created by dy on 2016/10/10.
*/
@Deprecated
public class XmlBeanFactory extends DefaultListableBeanFactory {
private final XmlBeanDefinitionReader reader = new XmlBeanDefinitionReader(this);
public XmlBeanFactory(Resource resource) throws BeansException {
this(resource, null);
}
public XmlBeanFactory(Resource resource, BeanFactory parentBeanFactory) throws BeansException {
super(parentBeanFactory);
this.reader.loadBeanDefinitions(resource);
}
}
| [
"[email protected]"
] | |
3916b93cef9d58ac5b19dab5ad9f0f4a4ffe598a | 68407176325294313dc005bf9585e0022f7bbff1 | /src/newBookLibrary/Members.java | cccde2f9023c0645002bc04c17def135e745725e | [] | no_license | nitishhurduke/book-library | 6bd793900907942e366c77a61763249310691c42 | 6c635ba2270595427528255395ab7114cc513de5 | refs/heads/master | 2023-08-15T07:59:02.030452 | 2021-09-18T08:40:08 | 2021-09-18T08:40:08 | 405,086,376 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 637 | java | package newBookLibrary;
import java.util.ArrayList;
import java.util.List;
public class Members {
static int mId = 1;
int id;
String mname;
long mob;
long adhar;
String address;
List<String>issuedBooks = new ArrayList<String>();
List<String>memberIssueBook = new ArrayList<String>();
List<String>memberReturnBook = new ArrayList<String>();
List<String>memberBookHistory = new ArrayList<String>();
public Members(String mname,long mob,long adhar,String address)
{
this.mname = mname;
this.mob = mob;
this.adhar = adhar;
this.address = address;
}
public Members()
{
id = mId;
}
}
| [
"[email protected]"
] | |
58059824ee312b9c0ef93512b812fa078639b20d | 93b7f80bfaa2b4e300f18922d7983bfbaa42e324 | /hb_05-many-to-many/src/com/github/magdau/hibernate/demo/entity/InstructorDetail.java | d29949484bbfd6ef3beb4d7801f3cefcb48b29a2 | [
"MIT"
] | permissive | magdaU/spring-and-hibernate-tutorial | 304b7482acdc8b17eea5e8585875e0da68d3c5cc | cf64577a0eff14009b08f788d42a576aaa893fcf | refs/heads/master | 2022-12-22T12:37:10.128670 | 2019-05-30T11:59:16 | 2019-05-30T11:59:16 | 171,691,673 | 1 | 0 | MIT | 2022-12-16T00:40:26 | 2019-02-20T14:49:31 | Java | UTF-8 | Java | false | false | 1,938 | java | package com.github.magdau.hibernate.demo.entity;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.OneToOne;
import javax.persistence.Table;
@Entity
@Table(name="instructor_detail")
public class InstructorDetail {
// annotate the class as an entity and map to db table
// define the fields
// annotate the fields with db column names
// create constructors
// generate getter/setter methods
// generate toString() method
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@Column(name="id")
private int id;
@Column(name="youtube_channel")
private String youtubeChannel;
@Column(name="hobby")
private String hobby;
// add new field for instructor (also add getter/setters)
// add @OneToOne annotation
@OneToOne(mappedBy="instructorDetail",
cascade= {CascadeType.DETACH, CascadeType.MERGE, CascadeType.PERSIST, CascadeType.REFRESH })
private Instructor instructor;
public Instructor getInstructor() {
return instructor;
}
public void setInstructor(Instructor instructor) {
this.instructor = instructor;
}
public InstructorDetail() {
}
public InstructorDetail(String youtubeChannel, String hobby) {
this.youtubeChannel = youtubeChannel;
this.hobby = hobby;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getYoutubeChannel() {
return youtubeChannel;
}
public void setYoutubeChannel(String youtubeChannel) {
this.youtubeChannel = youtubeChannel;
}
public String getHobby() {
return hobby;
}
public void setHobby(String hobby) {
this.hobby = hobby;
}
@Override
public String toString() {
return "InstructorDetail [id=" + id + ", youtubeChannel=" + youtubeChannel + ", hobby=" + hobby + "]";
}
} | [
"[email protected]"
] | |
26a06256b7502bc3e2f43a0b10e0c518b1c4923d | 9885c6acf3c83d3bdcbd14c446f01f384632ec9b | /src/magefortress/jobs/digging/MFDiggingSite.java | 4fa99e796dd687a5d3e7d641bc27691b2ab1271e | [
"MIT"
] | permissive | metaluna/magefortress | 66cdbbe20d29ca29278e62c708edf6650d9e05bd | 33cfdc749db50fda0864fd26f695fd0a938b60ea | refs/heads/master | 2016-09-06T04:46:47.688325 | 2014-07-14T12:34:59 | 2014-07-14T12:34:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,922 | java | /*
* Copyright (c) 2009 Simon Hardijanto
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
package magefortress.jobs.digging;
import java.awt.Color;
import java.awt.Graphics2D;
import magefortress.channel.MFChannelMessage;
import magefortress.channel.MFCommunicationChannel;
import magefortress.channel.MFIChannelSubscriber;
import magefortress.core.MFEDirection;
import magefortress.core.MFLocation;
import magefortress.core.MFPrerequisitesNotMetException;
import magefortress.jobs.MFAssignableJob;
import magefortress.jobs.MFConstructionSite;
import magefortress.jobs.MFIConstructionSiteListener;
import magefortress.jobs.MFJobFactory;
import magefortress.map.MFMap;
import magefortress.map.MFTile;
/**
* Marks a square for digging and emits a job call over the digging channel.
*/
public class MFDiggingSite extends MFConstructionSite
{
public MFDiggingSite(MFLocation _location, MFMap _map,
MFJobFactory _jobFactory, MFCommunicationChannel _channel,
MFIConstructionSiteListener _siteListener)
{
super(_location, 1, 1, _jobFactory, _channel, _siteListener);
if (_map == null) {
String msg = "DiggingSite: Map must not be null. Cannot instantiate " +
"DiggingSite";
logger.severe(msg);
throw new IllegalArgumentException(msg);
}
if (_location.x >= _map.getWidth() || _location.y >= _map.getHeight() ||
_location.z >= _map.getDepth()) {
String msg = "DiggingSite: Illegal location. Cannot instantiate " +
"DiggingSite. Got: " + _location;
logger.severe(msg);
throw new IllegalArgumentException(msg);
}
this.map = _map;
this.checkReachability();
// send job offer
if (!this.isUnreachable) {
this.getChannel().subscribeSender(this);
this.getChannel().enqueueMessage(this.getJobOfferMessage());
}
}
//---vvv--- PAINTABLE INTERFACE METHODS ---vvv---
@Override
public void update()
{
long currentTime = System.currentTimeMillis();
if (currentTime >= NEXT_SWITCH) {
HIGHLIGHT = !HIGHLIGHT;
NEXT_SWITCH = currentTime + BLINKING_INTERVAL;
}
}
@Override
public void paint(Graphics2D _g, int _x_translation, int _y_translation)
{
// set color
if (HIGHLIGHT) {
_g.setColor(Color.lightGray);
// calculate position
int size = MFTile.TILESIZE;
int x = this.getLocation().x*size + _x_translation;
int y = this.getLocation().y*size + _y_translation;
_g.fillRect(x, y, size, size);
}
}
//---vvv--- CHANNEL SENDER INTERFACE METHODS ---vvv---
@Override
public boolean isJobAvailable()
{
return !this.wasJobAssigned && !this.isUnreachable && !this.isJobDone;
}
@Override
public MFAssignableJob getJob()
{
if (this.isUnreachable) {
String msg = this.getClass().getName() + ": Someone's trying " +
"to get a digging job for an unreachable tile@" + this.getLocation();
logger.severe(msg);
throw new MFPrerequisitesNotMetException(msg);
}
if (this.isJobDone) {
String msg = this.getClass().getName() + ": Someone's trying " +
"to get a digging job for an already finished job@" + this.getLocation();
logger.severe(msg);
throw new MFPrerequisitesNotMetException(msg);
}
if (this.wasJobAssigned) {
String msg = this.getClass().getName() + ": Someone's trying " +
"to get a digging job even though it was already assigned earlier@" +
this.getLocation();
logger.severe(msg);
throw new MFPrerequisitesNotMetException(msg);
}
MFAssignableJob result = null;
if (!this.wasJobAssigned) {
result = this.assignedJob = this.getJobFactory().createDiggingJob(this);
this.wasJobAssigned = true;
}
return result;
}
@Override
public void newSubscriber(MFIChannelSubscriber _subscriber)
{
if (this.isJobAvailable()) {
_subscriber.update(this.getJobOfferMessage());
}
}
@Override
public void jobDone(MFAssignableJob _finishedJob)
{
if (_finishedJob == null) {
String msg = this.getClass().getSimpleName() + ": Cannot set " +
"null job finished.";
logger.severe(msg);
throw new IllegalArgumentException(msg);
}
if (_finishedJob != this.assignedJob) {
String msg = this.getClass().getSimpleName() + ": Finished job does " +
"not match job assigned earlier.";
logger.severe(msg);
throw new IllegalArgumentException(msg);
}
this.isJobDone = true;
this.getSiteListener().constructionSiteFinished(this);
}
//---vvv--- PRIVATE METHODS ---vvv---
/** Interval in ms between color changes. Used for sychronization */
private static final int BLINKING_INTERVAL = 750;
/** Time when the next color change will be. Used for sychronization */
private static long NEXT_SWITCH;
/** Current color. Used for sychronization */
private static boolean HIGHLIGHT;
private final MFMap map;
private boolean wasJobAssigned;
private boolean isUnreachable;
private boolean isJobDone;
private MFAssignableJob assignedJob;
// checks if there are any non-underground tiles around the digging site
private void checkReachability()
{
this.isUnreachable = true;
for (MFEDirection direction : MFEDirection.values()) {
MFLocation loc = this.getLocation().locationOf(direction);
if (this.map.isInsideMap(loc)) {
MFTile tile = this.map.getTile(loc);
if (!tile.isUnderground() || tile.isDugOut()) {
this.isUnreachable = false;
return;
}
}
}
}
private MFChannelMessage getJobOfferMessage()
{
return new MFChannelMessage(this);
}
}
| [
"[email protected]"
] | |
38483dd14df930270fbbf9d9c326fa9137b4e02d | f418ce6a65caf49a052552f449886971695c954e | /src/Editor/MeshEditor/MeshEditor.java | 71b7cbfc6366737b87be8a5b2ab7a93c6c0521dd | [] | no_license | SlonSky/Engine | f4f0d47db8efa67cc8576a697a7ea604a960021b | 4f8b4b89d9702f2a6bf2e73487aef41ceed3c4dc | refs/heads/master | 2021-01-18T21:29:37.924008 | 2016-11-11T21:49:46 | 2016-11-11T21:49:46 | 51,652,769 | 0 | 0 | null | 2016-02-21T14:17:04 | 2016-02-13T15:58:29 | Java | UTF-8 | Java | false | false | 745 | java | package Editor.MeshEditor;
import javax.swing.*;
import java.awt.*;
/**
* Created by Slon on 10.04.2016.
*/
public class MeshEditor {
private JFrame frame;
private int id;
public MeshEditor(){
init();
frame.setVisible(true);
}
private void init(){
frame = new JFrame("Post Mortem Mesh LevelEditor");
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
// frame.setSize(1000, 200);
/**
* panel
* set id
* set/edit culling box
* set/edit bounding box
* edit texture
*/
JPanel mainPanel = new JPanel(new FlowLayout());
JTextField id = new JTextField("id");
frame.pack();
}
}
| [
"[email protected]"
] | |
03c2396a1d867a723f2c5771ec3310a80ee603ef | a866a054c8830add2fadd5ee3309cdb6a73e6114 | /src/main/java/com/sanjay/controller/OrderController.java | e7e54db2868245be7b2d3f3b8e915ddf031712c2 | [] | no_license | sanzaiee/CeramicWeb | 7424f4ce0e216e289e80950552f591d78e653cb3 | 1430334f52122323bdc91e949e3ea6fec1880ebd | refs/heads/master | 2021-04-26T22:27:57.284934 | 2018-03-07T08:28:11 | 2018-03-07T08:28:11 | 124,096,239 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 606 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.sanjay.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
/**
*
* @author sanzaie
*/
@Controller
public class OrderController {
@RequestMapping (value ="/Admin/Order/View", method = RequestMethod.GET)
public String vieworder(){
return "vieworder";
}
}
| [
"[email protected]"
] | |
c387ce22cedf4565f12e0fc33deb4744cc4c6807 | 9c5a49269abd67bd63992635e9406e5d9a47a0dc | /src/test/java/com/encoding/ui/Model/FieldWorkerPage.java | 969b602f8057524b84a43a51411818958054fb06 | [] | no_license | stambolsky/testJobEncoding | b5a557cc3c5699ea38270c3e58d13ea2b3421269 | 335a2dc9209f53175b85ff878ec885de8a81c537 | refs/heads/master | 2022-12-25T21:46:58.758543 | 2020-10-13T13:27:18 | 2020-10-13T13:27:18 | 303,710,582 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 799 | java | package com.encoding.ui.Model;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.testng.Assert;
import static org.openqa.selenium.support.ui.ExpectedConditions.elementToBeClickable;
public class FieldWorkerPage extends Page{
public FieldWorkerPage(WebDriver driver) {
super(driver);
}
public void clickElement(WebElement element) {
wait.until(elementToBeClickable(element));
element.click();
}
public void setFieldData(WebElement element, String value) {
element.sendKeys(value);
}
public void checkUrl(String url) {
Assert.assertEquals(driver.getCurrentUrl(), url, "Url does not match");
}
public String getText(WebElement element) {
return element.getText();
}
}
| [
"[email protected]"
] | |
da1b28650b4b5db11eaac81bdea01ca9fa9524b2 | ba77e0c5f213c6eeecb7ef0a07589f5b45f6ddbf | /src/main/java/p455w0rd/ae2wtlib/integration/JEI.java | 7599ce652a26077df5acfb6b59a1061859488b29 | [
"MIT"
] | permissive | BernardoGrigiastro/AE2WirelessTerminalLibrary | 7431500f8d7abd07338fbf7eecee066570d64f31 | 3c9717f1b1f281042cb3819d98bf67e3794b61a1 | refs/heads/master | 2022-03-27T19:52:49.733929 | 2019-11-20T19:24:13 | 2019-11-20T19:24:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,517 | java | package p455w0rd.ae2wtlib.integration;
import mezz.jei.api.*;
import mezz.jei.api.ingredients.VanillaTypes;
import mezz.jei.api.recipe.VanillaRecipeCategoryUid;
import mezz.jei.plugins.vanilla.crafting.ShapelessRecipeWrapper;
import net.minecraft.item.ItemStack;
import p455w0rd.ae2wtlib.api.WTApi;
import p455w0rd.ae2wtlib.init.LibItems;
import p455w0rd.ae2wtlib.recipe.RecipeAddTerminal;
import p455w0rd.ae2wtlib.recipe.RecipeNewTerminal;
/**
* @author p455w0rd
*
*/
@JEIPlugin
public class JEI implements IModPlugin {
@Override
public void register(final IModRegistry registry) {
registry.addIngredientInfo(new ItemStack(LibItems.ULTIMATE_TERMINAL), VanillaTypes.ITEM, "jei.wut.desc");
registry.addRecipes(RecipeNewTerminal.getRecipes(), VanillaRecipeCategoryUid.CRAFTING);
registry.addRecipes(RecipeAddTerminal.getRecipes(), VanillaRecipeCategoryUid.CRAFTING);
registry.handleRecipes(RecipeNewTerminal.class, recipe -> new ShapelessRecipeWrapper<>(registry.getJeiHelpers(), recipe), VanillaRecipeCategoryUid.CRAFTING);
registry.handleRecipes(RecipeAddTerminal.class, recipe -> new ShapelessRecipeWrapper<>(registry.getJeiHelpers(), recipe), VanillaRecipeCategoryUid.CRAFTING);
if (!WTApi.instance().getConfig().isInfinityBoosterCardEnabled()) {
registry.getJeiHelpers().getIngredientBlacklist().addIngredientToBlacklist(new ItemStack(WTApi.instance().getBoosterCard()));
}
}
public static boolean isIngrediantOverlayActive() {
return mezz.jei.config.Config.isOverlayEnabled();
}
}
| [
"[email protected]"
] | |
b7b026aa5e703ebb2d6fd596949c833db25baf89 | 9a67b3c34d566a1e55b71c3794d20cffc071e889 | /itms-shiro/src/main/java/com/bosi/itms/shiro/service/InfoFrmService.java | 441d45a8bad2613f0da86a4b81dd0c9b3122eab7 | [] | no_license | zhzava/SSMP-springCloud-shiroRedis-mybatisPlus | ee9fb9c77b46180a50c2d39573cfa73087c2ddfb | af6dc6b3599c029ca486b6c23bca5e8fb5a6fd33 | refs/heads/master | 2020-03-22T13:06:53.016826 | 2018-07-07T13:41:12 | 2018-07-07T13:41:12 | 140,084,145 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 373 | java | package com.bosi.itms.shiro.service;
import com.baomidou.mybatisplus.service.IService;
import com.bosi.itms.shiro.entity.InfoFrm;
import com.bosi.itms.shiro.entity.InfoUser;
import java.util.List;
/**
* Created by zhz on 2018/7/2.
*/
public interface InfoFrmService extends IService<InfoFrm> {
List<InfoFrm> selectPermByUser(InfoUser infoUser) throws Exception;
}
| [
"[email protected]"
] | |
36d43563c3a56189bce8eaffbc68d9045670069b | b135de9908421a999ae1fa77f3f827e8eecfa2f7 | /src/main/java/pages/TransferPage.java | 08568a3a9f82be8b04755a56580153152a3122b4 | [] | no_license | CzarekCzapczynski/ParaBank | 45f4b5c35bf64f4346d6c057d8a31687b00a1961 | 01b32c88b2ace36880ae43459f3a7dcb6f726800 | refs/heads/master | 2020-03-12T21:30:22.439236 | 2018-05-27T12:46:14 | 2018-05-27T12:46:14 | 130,818,582 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 420 | java | package pages;
import assertions.TransferAssertion;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.support.PageFactory;
public class TransferPage extends LoggedInPage{
public TransferAssertion transferAssertion;
public TransferPage(WebDriver driver) {
super(driver);
PageFactory.initElements(driver, this);
transferAssertion = new TransferAssertion(driver);
}
}
| [
"[email protected]"
] | |
6c2b0db3c70c6bc44368f1b08d6e2ec5a497ed0b | 7624ca356f09e73b80d4581a9106f0305c72a556 | /app/src/main/java/com/foodeze/rider/GoogleMapWork/SavedPlaceListener.java | 92e835b5fdc42b93465fd98a5d2dd16d2f0f2eea | [] | no_license | chandan123-pradhan/Foodeze-Rider | bbd80d816cf89da14e37dafa97d32997633be49b | 79c28ab189eb15a0cbb986205e9f5907abd6f338 | refs/heads/master | 2022-06-26T14:13:58.080966 | 2020-05-06T09:57:23 | 2020-05-06T09:57:23 | 261,716,177 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 234 | java | package com.foodeze.rider.GoogleMapWork;
import java.util.ArrayList;
/**
* Created by Nabeel on 3/13/2018.
*/
interface SavedPlaceListener {
public void onSavedPlaceClick(ArrayList<SavedAddress> mResultList, int position);
}
| [
"[email protected]"
] | |
356ebdac25f732bbf2e28d3e49537d16e5f4e845 | 1a6b7dda40298e363d494442df9c41fdb315425c | /app/src/main/java/ro/magdamiu/myapplication/module6/MethodFragmentActivity.java | 50908043399710fbad94cff88c92d4ca15df5a25 | [] | no_license | magdamiu/SiitAndroidFundamentals | 885bfaef255a7c155975c538d580fdbe9e7a5f6d | 948f161567247082497788c4833b39483022bb91 | refs/heads/master | 2020-04-21T18:46:33.232618 | 2019-04-06T18:33:41 | 2019-04-06T18:33:41 | 168,765,214 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,472 | java | package ro.magdamiu.myapplication.module6;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import ro.magdamiu.myapplication.R;
public class MethodFragmentActivity extends AppCompatActivity {
private EditText mEditTextName;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_method_fragment);
initView();
}
private void initView() {
mEditTextName = findViewById(R.id.edit_text_name);
}
private void addFragment(Fragment fragment) {
FragmentManager fragmentManager = getSupportFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
fragmentTransaction.replace(R.id.container_method_fragment, fragment);
fragmentTransaction.commit();
}
public void btnSendNameOnClick(View view) {
if(mEditTextName != null) {
String name = mEditTextName.getText().toString();
if(name != null && !name.isEmpty()) {
MethodFragment methodFragment = new MethodFragment();
methodFragment.setName(name);
addFragment(methodFragment);
}
}
}
}
| [
"[email protected]"
] | |
0cf87f4c5435159097d7e30b4d171f20691fa08c | 88764e194330e46aaa084af4a0b948f5806b1bf2 | /src/main/java/com/example/TwitterService/modelDTO/tweetMessage.java | 6eb687be8363ae5c22cb3cf0373431d0712fc42a | [] | no_license | mukkatharun/TwitterService | 1eeff3857b8763f67a482c67af161d36d6f914a9 | 65662db7d9f62c3e6933c10a5125a43a82d06642 | refs/heads/main | 2023-08-29T11:31:38.215804 | 2021-09-28T15:49:08 | 2021-09-28T15:49:08 | 410,357,819 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 302 | java | package com.example.TwitterService.modelDTO;
public class tweetMessage {
public tweetMessage(String text) {
this.text = text;
}
private String text;
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
}
| [
"[email protected]"
] | |
d6a9e3e02c3ed11508ea9de114c93fc4ff4f37bd | 6c46510bd42ee7f80d1f86e07e865f88c80eb743 | /idempotent-spring-boot-autoconfigure/src/main/java/io/github/ukuz/idempotent/spring/boot/autoconfigure/core/Idempotent.java | cd4c90da0ad9dcb6f79f76261d269bdc20774ca7 | [
"Apache-2.0"
] | permissive | zhuangjinjin/idempotent-boot-starter | f2d3ad55bad8309da257f8a173fc169f5c4c15b5 | eb09b47c1ffe2f13876d4789d39bf025c7c44a62 | refs/heads/master | 2020-05-23T22:59:22.839453 | 2019-06-14T16:08:48 | 2019-06-14T16:08:48 | 186,985,095 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,064 | java | /*
* Copyright 2019 ukuz90
*
* 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 io.github.ukuz.idempotent.spring.boot.autoconfigure.core;
import io.github.ukuz.idempotent.spring.boot.autoconfigure.exception.StoreException;
import io.github.ukuz.idempotent.spring.boot.autoconfigure.properties.IdempotentProperties;
import org.springframework.util.Assert;
import org.springframework.util.StringUtils;
/**
* @author ukuz90
* @since 2019-05-16
*/
public final class Idempotent {
private Store store;
private IdempotentProperties properties;
public Idempotent(Store store, IdempotentProperties properties) {
this.store = store;
this.properties = properties;
}
public boolean canAccess(String uuid) throws StoreException {
//如果没有Key,就不能调用
if (StringUtils.isEmpty(uuid)) {
return false;
}
Assert.notNull(this.store, "store must not be null");
try {
IdempotentKey idempotentKey = new IdempotentKey();
idempotentKey.setUuid(uuid);
idempotentKey.setState(IdempotentKey.STATE_PROCEED);
if (this.store.contain(idempotentKey)) {
//如果已经存在Key,则不能通过
return false;
}
if (!this.store.atomicSaveWithExpire(idempotentKey, properties.getExpireTime())) {
//如果原子保存失败,则不能通过
return false;
}
return true;
} catch (RuntimeException e) {
throw new StoreException(e);
}
}
public IdempotentKey getKey(String uuid) throws StoreException {
if (StringUtils.isEmpty(uuid)) {
return IdempotentKey.UNKOWN;
}
IdempotentKey key = this.store.getKey(uuid);
//由于store有可能用户实现错了,所以需要校验结果
key = normalizeIdempotentKey(key);
return key;
}
public boolean saveKey(IdempotentKey key) throws StoreException {
normalizeIdempotentKey(key);
return this.store.saveKey(key, properties.getExpireTime());
}
private IdempotentKey normalizeIdempotentKey(IdempotentKey key) {
if (key == null) {
return IdempotentKey.UNKOWN;
}
if (!StringUtils.isEmpty(key.getPayload()) || key.getStatusCode() > 0) {
key.setState(IdempotentKey.STATE_FINISH);
} else {
key.setState(IdempotentKey.STATE_PROCEED);
}
return key;
}
}
| [
"[email protected]"
] | |
36f64ec82d099aa246620c31fc5dddaba84168fb | db76e7ba6dbbbc294d80efc6c3a361c6d0657638 | /src/main/java/RemoveElement.java | 7e44af304816fe6508f0810af50620fd1df9b09b | [] | no_license | KrohIgor/LeedCode | 5e56673a5f720fb8dfc09d36641a3240f61c8224 | d5322f19bbba50d8b003ee54b7222fc9514591a7 | refs/heads/master | 2021-02-26T06:39:54.372894 | 2020-03-29T12:39:20 | 2020-03-29T12:39:20 | 245,503,361 | 0 | 0 | null | 2020-03-29T12:39:21 | 2020-03-06T19:44:04 | Java | UTF-8 | Java | false | false | 960 | java | import java.util.Arrays;
public class RemoveElement {
public static void main(String[] args) {
int[] nums = {0, 1, 2, 2, 3, 0, 4, 2};
int len = new RemoveElement().removeElement(nums, 2);
System.out.print("[");
for (int i = 0; i < len; i++) {
System.out.print(nums[i]);
if (i != len - 1) {
System.out.print(" ,");
} else {
System.out.println("]");
}
}
}
public int removeElement(int[] nums, int val) {
int len = 0;
int counter = 0;
for (int i = 0; i < nums.length; i++) {
if (counter == nums.length) {
break;
}
if (nums[i] == val) {
System.arraycopy(nums, i + 1, nums, i, nums.length - 1 - i);
i--;
} else {
len++;
}
counter++;
}
return len;
}
} | [
"[email protected]"
] | |
c8b1c5f02d9398a64fad066deb1d44a43867fa62 | 5d0a8d4afdafec3b356ed277df279f8d25a9aaa3 | /packersandmovers/src/packersandmovers/Feedback.java | acd672636dc93d3466523141a9a8b6812cd21e00 | [] | no_license | ayushchoukse1/Packers-and-Movers | 8acffb6c66233e91bfae2863340d9b634d93facf | bf98637de52015b4aad18fbc8164622596a13a9c | refs/heads/master | 2021-01-23T12:22:03.241004 | 2015-03-27T22:46:41 | 2015-03-27T22:46:41 | 33,012,863 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 20,551 | java | package packersandmovers;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.ArrayList;
import javax.swing.ButtonGroup;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.SwingConstants;
import javax.swing.border.EmptyBorder;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.Toolkit;
public class Feedback extends JFrame {
private JPanel contentPane;
private JTextField textField;
private JTextField textField_1;
private JTextField textField_2;
private JTextField textField_3;
private JTextField textField_4;
private JTextField textField_5;
private JTextField textField_6;
static String customerid, feedbackid, fname, lname, address, contact, emailid, services, behaviour, overall, comments;
static String quotationid, c_emailid, c_firstname, c_lastname, c_address, c_contact, q_shiftfrom, q_shiftto, q_shiftingdate, q_shiftingtime, routepoint1, routepoint2;
static int num;
static StringBuilder finalstring;
public String tempfeed;
static String final_string,final_string1,final_string3_emp;
public StringBuilder string;
public StringBuilder tempfeed3;
private final ButtonGroup buttonGroup = new ButtonGroup();
private final ButtonGroup buttonGroup_1 = new ButtonGroup();
private final ButtonGroup buttonGroup_2 = new ButtonGroup();
/**
* Launch the application.
*/
public void FeedbackIdGenerator() {
System.out.println(tempfeed+tempfeed3+final_string1);
try {
Class.forName("oracle.jdbc.OracleDriver");
Connection con = DriverManager.getConnection(
"jdbc:oracle:thin:@localhost:1521:orcl","scott","palash");
Statement st = con.createStatement();
String temp = "SELECT feedbackid FROM feedback where ROWNUM<=1 order by feedbackid desc";
ResultSet rs = st.executeQuery(temp);
while (rs.next()) {
String feed = rs.getString(1);
System.out.println(feed);
String tempfeed1 = feed.substring(0, 4);
StringBuilder tempfeed3=new StringBuilder(tempfeed1);
tempfeed = feed.substring(4, 10);
String tempfeed2 = String.valueOf(Integer.parseInt(tempfeed) + 1);
int i=tempfeed2.length();
System.out.println(i);
if(i==1)
{
StringBuilder string=new StringBuilder("00000");
string.append(tempfeed2);
tempfeed3.append(string);
System.out.println(tempfeed3);
final_string1=tempfeed3.toString();
}
if(i==2)
{
StringBuilder string=new StringBuilder("0000");
string.append(tempfeed2);
tempfeed3.append(string);
System.out.println(tempfeed3);
final_string1=tempfeed3.toString();
}
if(i==3)
{
StringBuilder string=new StringBuilder("000");
string.append(tempfeed2);
tempfeed3.append(string);
System.out.println(tempfeed3);
final_string1=tempfeed3.toString();
}
if(i==4)
{
StringBuilder string=new StringBuilder("00");
string.append(tempfeed2);
tempfeed3.append(string);
System.out.println(tempfeed3);
final_string1=tempfeed3.toString();
}
if(i==5)
{
StringBuilder string=new StringBuilder("0");
string.append(tempfeed2);
tempfeed3.append(string);
System.out.println(tempfeed3);
final_string1=tempfeed3.toString();
}
if(i==6)
{
StringBuilder string=new StringBuilder("");
string.append(tempfeed2);
tempfeed3.append(string);
System.out.println(tempfeed3);
final_string1=tempfeed3.toString();
}
}
con.close();
feedbackid= final_string1;
} catch (Exception e) {
e.printStackTrace();
}
// System.out.println(customerid);
// return final_string1;
}
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Feedback frame = new Feedback();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public Feedback() {
setIconImage(Toolkit.getDefaultToolkit().getImage(Feedback.class.getResource("/packersandmovers/logo1.jpg")));
setResizable(false);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(200, 0, 1000, 730);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
contentPane.setLayout(new BorderLayout(0, 0));
setContentPane(contentPane);
JPanel panel = new JPanel();
contentPane.add(panel, BorderLayout.CENTER);
panel.setLayout(new BorderLayout(0, 0));
JScrollPane scrollPane = new JScrollPane();
panel.add(scrollPane, BorderLayout.CENTER);
JPanel panel_1 = new JPanel();
panel_1.setBackground(new Color(255, 248, 220));
scrollPane.setViewportView(panel_1);
panel_1.setLayout(null);
JPanel panel_2 = new JPanel();
panel_2.setLayout(null);
panel_2.setBackground(Color.WHITE);
panel_2.setBounds(20, 0, 931, 130);
panel_1.add(panel_2);
JLabel label = new JLabel("");
label.setIcon(new ImageIcon(Feedback.class.getResource("/packersandmovers/logo1.jpg")));
label.setOpaque(true);
label.setBackground(Color.WHITE);
label.setBounds(10, 0, 92, 130);
panel_2.add(label);
JLabel label_1 = new JLabel("");
label_1.setIcon(new ImageIcon(Feedback.class.getResource("/packersandmovers/banner3.jpg")));
label_1.setBounds(102, 0, 870, 130);
panel_2.add(label_1);
JPanel panel_3 = new JPanel();
panel_3.setLayout(null);
panel_3.setBackground(new Color(47, 79, 79));
panel_3.setBounds(20, 130, 931, 25);
panel_1.add(panel_3);
JLabel label_2 = new JLabel("Update Profile");
label_2.setForeground(new Color(255, 255, 255));
label_2.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
new Update().setVisible(true);
dispose();
}
});
label_2.setFont(new Font("Century Gothic", Font.BOLD, 15));
label_2.setBounds(136, 0, 116, 28);
panel_3.add(label_2);
JLabel label_3 = new JLabel("Give Requirements/Generate Quotation");
label_3.setForeground(new Color(255, 255, 255));
label_3.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
new Quotation().setVisible(true);
dispose();
}
});
label_3.setFont(new Font("Century Gothic", Font.BOLD, 15));
label_3.setBounds(328, 0, 315, 29);
panel_3.add(label_3);
JLabel label_4 = new JLabel("Feedback");
label_4.setForeground(new Color(255, 255, 255));
label_4.setFont(new Font("Century Gothic", Font.BOLD, 15));
label_4.setBounds(703, 0, 86, 28);
panel_3.add(label_4);
JLabel label_6 = new JLabel("Logout");
label_6.setForeground(new Color(255, 255, 255));
label_6.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
int n=JOptionPane.showConfirmDialog(null, "Do you want to Logout?", "Logout", JOptionPane.YES_NO_OPTION);
if(n==0)
{
new Login().setVisible(true);
dispose();
}
}
});
label_6.setFont(new Font("Century Gothic", Font.BOLD, 15));
label_6.setBounds(874, 0, 57, 28);
panel_3.add(label_6);
JLabel label_7 = new JLabel("Home");
label_7.setForeground(new Color(255, 255, 255));
label_7.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
new ClientHome().setVisible(true);
dispose();
}
});
label_7.setFont(new Font("Century Gothic", Font.BOLD, 15));
label_7.setBounds(10, 0, 86, 28);
panel_3.add(label_7);
JPanel panel_4 = new JPanel();
panel_4.setBackground(new Color(255, 248, 220));
panel_4.setBounds(20, 164, 164, 459);
panel_1.add(panel_4);
panel_4.setLayout(null);
JLabel label_5 = new JLabel("Customer Id:");
label_5.setBounds(0, 29, 77, 20);
panel_4.add(label_5);
textField_6 = new JTextField();
textField_6.setBackground(new Color(255, 248, 220));
textField_6.setOpaque(false);
textField_6.setHorizontalAlignment(SwingConstants.CENTER);
textField_6.setFont(new Font("Tahoma", Font.BOLD, 11));
textField_6.setEditable(false);
textField_6.setColumns(10);
textField_6.setBorder(null);
textField_6.setBounds(58, 30, 116, 20);
panel_4.add(textField_6);
JPanel panel_5 = new JPanel();
panel_5.setBackground(new Color(255, 248, 220));
panel_5.setLayout(null);
panel_5.setBounds(183, 164, 768, 459);
panel_1.add(panel_5);
JLabel lblFeedback = new JLabel("Feedback");
lblFeedback.setFont(new Font("Century Gothic", Font.BOLD, 25));
lblFeedback.setBounds(298, 11, 135, 45);
panel_5.add(lblFeedback);
JLabel label_9 = new JLabel("First Name");
label_9.setBounds(10, 136, 105, 14);
panel_5.add(label_9);
JLabel label_10 = new JLabel("Last Name");
label_10.setBounds(385, 136, 105, 14);
panel_5.add(label_10);
JLabel label_11 = new JLabel("Address");
label_11.setBounds(10, 181, 105, 14);
panel_5.add(label_11);
JLabel label_12 = new JLabel("Contact");
label_12.setBounds(385, 181, 105, 14);
panel_5.add(label_12);
JLabel lblCustomerId = new JLabel("Customer Id");
lblCustomerId.setBounds(385, 96, 105, 14);
panel_5.add(lblCustomerId);
JLabel lblFeedbackId = new JLabel("Feedback Id");
lblFeedbackId.setBounds(10, 96, 105, 14);
panel_5.add(lblFeedbackId);
JScrollPane scrollPane_1 = new JScrollPane();
scrollPane_1.setBounds(125, 373, 175, 65);
panel_5.add(scrollPane_1);
final JTextArea textArea_1 = new JTextArea();
textArea_1.setBackground(new Color(255, 248, 220));
scrollPane_1.setViewportView(textArea_1);
JScrollPane scrollPane_2 = new JScrollPane();
scrollPane_2.setBounds(125, 176, 178, 67);
panel_5.add(scrollPane_2);
final JTextArea textArea = new JTextArea();
textArea.setBackground(new Color(255, 248, 220));
scrollPane_2.setViewportView(textArea);
addWindowListener(new WindowAdapter() {
@Override
public void windowOpened(WindowEvent arg0) {
ArrayList list0=new Login().myItems0();
customerid=(String)list0.get(0);
System.out.println(customerid);
textField_6.setText(customerid);
FeedbackIdGenerator();
textField_3.setText(feedbackid);
textField_4.setText(customerid);
ArrayList list=new Quotation().myItems();
c_emailid=(String)list.get(1);
c_firstname=(String)list.get(2);
c_lastname=(String)list.get(3);
c_address=(String)list.get(4);
c_contact=(String)list.get(5);
textField.setText(c_firstname);
textField_1.setText(c_lastname);
textArea.setText(c_address);
textField_2.setText(c_contact);
textField_5.setText(c_emailid);
}
});
final JRadioButton spoor = new JRadioButton("Poor");
spoor.setBackground(new Color(255, 248, 220));
buttonGroup.add(spoor);
spoor.setBounds(125, 263, 109, 23);
panel_5.add(spoor);
final JRadioButton sgood = new JRadioButton("Good");
sgood.setBackground(new Color(255, 248, 220));
buttonGroup.add(sgood);
sgood.setBounds(250, 263, 109, 23);
panel_5.add(sgood);
final JRadioButton svgood = new JRadioButton("Very Good");
svgood.setBackground(new Color(255, 248, 220));
buttonGroup.add(svgood);
svgood.setBounds(381, 263, 109, 23);
panel_5.add(svgood);
final JRadioButton sexcel = new JRadioButton("Excellent");
sexcel.setBackground(new Color(255, 248, 220));
buttonGroup.add(sexcel);
sexcel.setBounds(515, 263, 109, 23);
panel_5.add(sexcel);
final JRadioButton bpoor = new JRadioButton("Poor");
bpoor.setBackground(new Color(255, 248, 220));
buttonGroup_1.add(bpoor);
bpoor.setBounds(125, 299, 109, 23);
panel_5.add(bpoor);
final JRadioButton bgood = new JRadioButton("Good");
bgood.setBackground(new Color(255, 248, 220));
buttonGroup_1.add(bgood);
bgood.setBounds(250, 299, 109, 23);
panel_5.add(bgood);
final JRadioButton bvgood = new JRadioButton("Very Good");
bvgood.setBackground(new Color(255, 248, 220));
buttonGroup_1.add(bvgood);
bvgood.setBounds(381, 299, 109, 23);
panel_5.add(bvgood);
final JRadioButton bexcel = new JRadioButton("Excellent");
bexcel.setBackground(new Color(255, 248, 220));
buttonGroup_1.add(bexcel);
bexcel.setBounds(515, 299, 109, 23);
panel_5.add(bexcel);
final JRadioButton opoor = new JRadioButton("Poor");
opoor.setBackground(new Color(255, 248, 220));
buttonGroup_2.add(opoor);
opoor.setBounds(125, 332, 109, 23);
panel_5.add(opoor);
final JRadioButton ogood = new JRadioButton("Good");
ogood.setBackground(new Color(255, 248, 220));
buttonGroup_2.add(ogood);
ogood.setBounds(250, 332, 109, 23);
panel_5.add(ogood);
final JRadioButton ovgood = new JRadioButton("Very Good");
ovgood.setBackground(new Color(255, 248, 220));
buttonGroup_2.add(ovgood);
ovgood.setBounds(381, 332, 109, 23);
panel_5.add(ovgood);
final JRadioButton oexcel = new JRadioButton("Excellent");
oexcel.setBackground(new Color(255, 248, 220));
buttonGroup_2.add(oexcel);
oexcel.setBounds(515, 332, 109, 23);
panel_5.add(oexcel);
JButton btnSubmit = new JButton("Submit");
btnSubmit.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
fname=textField.getText();
System.out.println(fname);
lname=textField_1.getText();
System.out.println(lname);
comments=textArea_1.getText();
System.out.println(comments);
address=textArea.getText();
contact=textField_2.getText();
emailid=textField_5.getText();
if(spoor.isSelected())
{
services="Poor";
}
if(sgood.isSelected())
{
services="Good";
}
if(svgood.isSelected())
{
services="Very Good";
}
if(sexcel.isSelected())
{
services="Excellent";
}
System.out.println(services);
if(bpoor.isSelected())
{
behaviour="Poor";
}
if(bgood.isSelected())
{
behaviour="Good";
}
if(bvgood.isSelected())
{
behaviour="Very Good";
}
if(bexcel.isSelected())
{
behaviour="Excellent";
}
System.out.println(services);
if(opoor.isSelected())
{
overall="Poor";
}
if(ogood.isSelected())
{
overall="Good";
}
if(ovgood.isSelected())
{
overall="Very Good";
}
if(oexcel.isSelected())
{
overall="Excellent";
}
System.out.println(overall);
if(fname.equals("") || lname.equals("") || address.equals("") || contact.equals("") || emailid.equals("") || services.equals("") || behaviour.equals("") || overall.equals("") || comments.equals(""))
{
JOptionPane.showMessageDialog(null, "one or more fields are empty");
}
else
{
try
{
Class.forName("oracle.jdbc.OracleDriver");
Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","scott","palash");
PreparedStatement ps=con.prepareStatement("insert into feedback values(?,?,?,?,?,?,?,?)");
ps.setString(1, feedbackid);
// System.out.println(customerid);
ps.setString(2, fname);
ps.setString(3, lname);
ps.setString(4, services);
ps.setString(5, behaviour);
ps.setString(6, overall);
ps.setString(7, comments);
ps.setString(8, customerid);
ps.executeUpdate();
con.close();
JOptionPane.showMessageDialog(null, "Feedback Submitted!");
JOptionPane.showMessageDialog(null, "Thank You for your Feedback.");
textField.setText("");
textField_1.setText("");
textArea_1.setText("");
textArea.setText("");
textField_2.setText("");
textField_5.setText("");
buttonGroup.clearSelection();
buttonGroup_1.clearSelection();
buttonGroup_2.clearSelection();
new ClientHome().setVisible(true);
dispose();
}
catch(Exception e)
{
e.printStackTrace();
}
}
}
});
btnSubmit.setBounds(418, 393, 89, 23);
panel_5.add(btnSubmit);
JButton button_1 = new JButton("Reset");
button_1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
textField.setText("");
textField_1.setText("");
textArea_1.setText("");
textArea.setText("");
textField_2.setText("");
textField_5.setText("");
buttonGroup.clearSelection();
buttonGroup_1.clearSelection();
buttonGroup_2.clearSelection();
}
});
button_1.setBounds(586, 393, 89, 23);
panel_5.add(button_1);
textField = new JTextField();
textField.setBackground(new Color(255, 248, 220));
textField.setColumns(10);
textField.setBounds(125, 133, 177, 27);
panel_5.add(textField);
textField_1 = new JTextField();
textField_1.setBackground(new Color(255, 248, 220));
textField_1.setColumns(10);
textField_1.setBounds(531, 133, 177, 27);
panel_5.add(textField_1);
textField_2 = new JTextField();
textField_2.setBackground(new Color(255, 248, 220));
textField_2.setColumns(10);
textField_2.setBounds(531, 178, 177, 27);
panel_5.add(textField_2);
textField_3 = new JTextField();
textField_3.setFont(new Font("Tahoma", Font.BOLD, 11));
textField_3.setBackground(new Color(255, 248, 220));
textField_3.setEditable(false);
textField_3.setColumns(10);
textField_3.setBounds(125, 93, 179, 27);
panel_5.add(textField_3);
JLabel lblServices = new JLabel("Services");
lblServices.setBounds(10, 272, 70, 14);
panel_5.add(lblServices);
JLabel lblComments = new JLabel("Comments");
lblComments.setBounds(10, 378, 87, 14);
panel_5.add(lblComments);
JLabel lblBehaviour = new JLabel("Behaviour");
lblBehaviour.setBounds(10, 308, 87, 14);
panel_5.add(lblBehaviour);
JLabel lblOverall = new JLabel("Overall");
lblOverall.setBounds(10, 341, 87, 14);
panel_5.add(lblOverall);
textField_4 = new JTextField();
textField_4.setFont(new Font("Tahoma", Font.BOLD, 11));
textField_4.setBackground(new Color(255, 248, 220));
textField_4.setEditable(false);
textField_4.setColumns(10);
textField_4.setBounds(531, 93, 177, 27);
panel_5.add(textField_4);
JLabel lblNewLabel = new JLabel("Email Id");
lblNewLabel.setBounds(385, 229, 46, 14);
panel_5.add(lblNewLabel);
textField_5 = new JTextField();
textField_5.setBackground(new Color(255, 248, 220));
textField_5.setBounds(531, 223, 177, 27);
panel_5.add(textField_5);
textField_5.setColumns(10);
JPanel panel_8 = new JPanel();
panel_8.setBackground(new Color(106, 90, 205));
panel_8.setBounds(24, 46, 684, 4);
panel_5.add(panel_8);
JPanel panel_7 = new JPanel();
panel_7.setBounds(183, 155, 768, 10);
panel_1.add(panel_7);
panel_7.setBackground(new Color(240, 230, 140));
JPanel panel_6 = new JPanel();
panel_6.setBounds(20, 155, 174, 10);
panel_1.add(panel_6);
panel_6.setBackground(new Color(240, 230, 140));
JLabel label_8 = new JLabel("Copyright \u00A9 2013 Packers & Movers Ltd. All Rights Reserved");
label_8.setBounds(39, 656, 370, 14);
panel_1.add(label_8);
JLabel label_13 = new JLabel("T & C Apply*");
label_13.setBounds(853, 656, 74, 14);
panel_1.add(label_13);
}
}
| [
"[email protected]"
] | |
e9ee48af32dcad24ec4e5daeab76207f7d7c3140 | 05c91e3d416a85e13bf164edcee24b7fcd90d69f | /ProjetoDrogasAlcool3003/src/com/game/ThauanFramework/SaveManager.java | 5de868cf4e6203703a2203a6911d23f7fe29df83 | [] | no_license | carolinerosa/projeto-drogas-alcool | da27d9148167dda478b69b876afa9debb36ebe3e | 534a408280fd0b4b77c7d6e911aaa8e7f735211f | refs/heads/master | 2016-09-09T20:52:40.608831 | 2013-08-13T03:03:39 | 2013-08-13T03:03:39 | 33,221,597 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,224 | java | package com.game.ThauanFramework;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import android.content.SharedPreferences;
public class SaveManager {
private SharedPreferences sp;
private SharedPreferences.Editor editor;
private SaveManager() {
sp = MinhasCoisas.getCurrentActivity().getPreferences(
MinhasCoisas.getCurrentActivity().MODE_PRIVATE);
editor = sp.edit();
}
private static SaveManager instance;
public static SaveManager getInstance() {
if (instance == null) {
instance = new SaveManager();
}
return instance;
}
// ------------------------ -----------------------
// --------------------------- ----------------------
public void SaveInt(String key, int value) {
editor.putInt(key, value);
editor.commit();
}
public void SaveFloat(String key, float value) {
editor.putFloat(key, value);
editor.commit();
}
public void SaveBoolean(String key, boolean value) {
editor.putBoolean(key, value);
editor.commit();
}
public void SaveString(String key, String value) {
editor.putString(key, value);
editor.commit();
}
public void SaveStringSet(String key, Set<String> values) {
StringBuilder builder = new StringBuilder();
int contador = 0;
for(String str : values)
{
builder.append(str + "/");
}
editor.putString(key, builder.toString());
editor.commit();
}
// ---------------
int defValue = 0;
boolean defbool = false;
// ---------------
public int LoadInt(String key)
{
return sp.getInt(key, defValue);
}
public float LoadFloat(String key)
{
return sp.getFloat(key, defValue);
}
public boolean LoadBool(String key)
{
return sp.getBoolean(key, defbool);
}
public String LoadString(String key)
{
return sp.getString(key, "default");
}
public ArrayList<String> LoadStringSet(String key, String splitter)
{
ArrayList<String> list = new ArrayList<String>();
String[] strs = sp.getString(key, "default").split(splitter);
for(int i = 0; i < strs.length - 1; i++)
{
list.add(strs[i]);
}
return list;
}
}
| [
"[email protected]@fedebfce-50e2-03b3-4baa-995e8cbf6932"
] | [email protected]@fedebfce-50e2-03b3-4baa-995e8cbf6932 |
c4900d1f3236971db3d1c2d39f0750549639bd24 | 19d036059a8d130485d9a252661cae9d52435a31 | /bl-collector-event-tracking/src/main/java/com/nixstack/event/tracking/bean/UserCommentBean.java | a13bedaef3a4d6de3089e7e9fa3ce0c8c1810bec | [] | no_license | nixstack/bl-data-collector | d6437ba423945eef6f522a5b2b2bd9ed9027d6c9 | 4c670cd9dcc227a1ac72737a63e0a9ce38761ec0 | refs/heads/master | 2022-07-07T05:45:46.514707 | 2019-10-20T07:45:39 | 2019-10-20T07:45:39 | 216,325,581 | 0 | 0 | null | 2022-06-17T02:36:45 | 2019-10-20T07:43:59 | Java | UTF-8 | Java | false | false | 618 | java | package com.nixstack.event.tracking.bean;
import com.nixstack.event.tracking.base.UserBaseBean;
import lombok.Data;
/**
* 用户评论
*/
@Data
public class UserCommentBean extends UserBaseBean {
private String comment_id; // 评论id
private String tid; // 点赞的对象id, 作品/课程id...
private String comment_parent_id; // 父级评论id(为0则是一级评论,不为0则是回复)
private String comment_content; //评论内容
private String create_time; // 创建时间
private int comment_praise_count; // 点赞数量
private int comment_reply_count; // 回复数量
}
| [
"[email protected]"
] | |
548ddd4e153660de5473b1cd95a7d0e999390c70 | 04e38c40679b0fd2236a697d7a43685faed00057 | /examples/src/test/java/org/interfacegen/examples/OneMethodTest.java | 3fe241c3d781b152806d3ae89d87e3085d0e85c6 | [
"Apache-2.0"
] | permissive | stephenh/interfacegen | b9fab2346e4a7667c082ab1ae7e6a51d3725d860 | 46b544961e1140a5b50c10d8dc85042d031a8853 | refs/heads/master | 2021-01-25T08:54:02.583559 | 2010-04-06T21:39:42 | 2010-04-06T21:39:42 | 481,753 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 205 | java | package org.interfacegen.examples;
import junit.framework.TestCase;
public class OneMethodTest extends TestCase {
public void testOneMethod() {
IOneMethod m = new OneMethod();
m.fooMethod();
}
}
| [
"[email protected]"
] | |
acbbccc9a2196c90567a5119359367b608fa7651 | 14d992c9a803dc4cef1743ed9d0059c4b678d6af | /src/main/java/org/activiti/incubator/taskservice/Task.java | 5da3b8e176ce2224183ee0da5664c3705dbfeab5 | [] | no_license | miguelruizdev/task-service | 5f98d2b7303225a0d888dc8a76c9fa6f9d16484d | fc090ef44176d10443ba831db02cdb7cd10c6162 | refs/heads/master | 2021-09-10T14:10:17.351201 | 2018-03-27T15:19:43 | 2018-03-27T15:19:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,902 | java | package org.activiti.incubator.taskservice;
import java.util.Date;
import javax.persistence.*;
@Entity
public class Task {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(nullable = false, updatable = false)
private Long id;
private String title;
private State state = State.ACTIVE; //this is the default state
@Temporal(TemporalType.TIMESTAMP) //make sure this is a DATE+TIME in the database
private Date creationDate;
@Temporal(TemporalType.TIMESTAMP)
private Date dueDate;
private String assignedUser;
private int priority; //from 1 down to 10 (DESC)
private Long parent; //stores parent's id; if there is no parent, id = -1
private String content;
//constructor
public Task(){}
//getters and setters
public Long getId() { return id; }
public void setId(Long id) { this.id = id; }
public String getTitle() { return title; }
public void setTitle(String title) { this.title = title; }
public State getState() { return state; }
public void setState(State state) { this.state = state; }
public Date getCreationDate() { return creationDate; }
public void setCreationDate(Date creationDate) { this.creationDate = creationDate; }
public Date getDueDate() {return dueDate; }
public void setDueDate(Date dueDate) { this.dueDate = dueDate; }
public String getAssignedUser() { return assignedUser; }
public void setAssignedUser(String assignedUser) { this.assignedUser = assignedUser; }
public int getPriority() { return priority; }
public void setPriority(int priority) { this.priority = priority; }
public Long getParent() { return parent; }
public void setParent(Long parent) { this.parent = parent; }
public String getContent() { return content; }
public void setContent(String content) { this.content = content; }
}
| [
"[email protected]"
] | |
30b6fdda65c2e038009b0112c0b307e5ecc5c777 | 0655bfe805b86d5296a4b61486990e9ebb4f8d81 | /app/src/main/java/com/example/balar/uts/matematika.java | c3efc1c149a363d048be64b6f64133c061fa68ad | [] | no_license | ardiyansyahh20/UTS | 99bbfdf0abb353581fa37f69d2f0ca105a64323e | 1058bf09162067f4852c1612cfea9d4c78614af8 | refs/heads/master | 2020-05-18T12:24:46.267386 | 2019-05-01T11:34:04 | 2019-05-01T11:34:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 338 | java | package com.example.balar.uts;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class matematika extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_matematika);
}
}
| [
"[email protected]"
] | |
b65a88f86d9d5eeafa451ab2c7196ffa18cdaaf6 | 5e420be994f45c4c2dedc44cf8f4a1b5e3e78e01 | /src/main/java/com/pedrovisk/jhipster/web/rest/errors/BadRequestAlertException.java | 8f3c4df6fd3d14db69f3abb213d993f132958899 | [] | no_license | Pedro-Thales/jhipster-sample-application | b48e43dddb0fba421b1d776ec10abca59e814176 | 12ca874622194ed6c66ce43ac8104246a3f069c7 | refs/heads/main | 2023-01-28T21:41:44.242707 | 2020-12-02T17:12:24 | 2020-12-02T17:12:24 | 317,934,802 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,323 | java | package com.pedrovisk.jhipster.web.rest.errors;
import java.net.URI;
import java.util.HashMap;
import java.util.Map;
import org.zalando.problem.AbstractThrowableProblem;
import org.zalando.problem.Status;
public class BadRequestAlertException extends AbstractThrowableProblem {
private static final long serialVersionUID = 1L;
private final String entityName;
private final String errorKey;
public BadRequestAlertException(String defaultMessage, String entityName, String errorKey) {
this(ErrorConstants.DEFAULT_TYPE, defaultMessage, entityName, errorKey);
}
public BadRequestAlertException(URI type, String defaultMessage, String entityName, String errorKey) {
super(type, defaultMessage, Status.BAD_REQUEST, null, null, null, getAlertParameters(entityName, errorKey));
this.entityName = entityName;
this.errorKey = errorKey;
}
public String getEntityName() {
return entityName;
}
public String getErrorKey() {
return errorKey;
}
private static Map<String, Object> getAlertParameters(String entityName, String errorKey) {
Map<String, Object> parameters = new HashMap<>();
parameters.put("message", "error." + errorKey);
parameters.put("params", entityName);
return parameters;
}
}
| [
"[email protected]"
] | |
a7cf983ac418f5e632a085132201ad021eb6de5e | 40b527db78e89efb797c4d90db898eac741c44d0 | /app/src/main/java/com/example/hi/gossip/UserProfileActivity.java | cbb84558d71d5e2b097012bb1ab3437fbaff8338 | [
"MIT"
] | permissive | avik191/Gossip-chat-app | ce6b30b932190e56a4d657d2ba4f620e610d3d38 | 43615562784caa3eb22ec01c9a981b3a28311ed4 | refs/heads/master | 2021-01-23T08:28:28.979008 | 2017-09-09T06:50:34 | 2017-09-09T06:50:34 | 102,522,475 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 13,288 | java | package com.example.hi.gossip;
import android.app.ProgressDialog;
import android.support.annotation.NonNull;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
import com.google.android.gms.tasks.OnCompleteListener;
import com.google.android.gms.tasks.OnFailureListener;
import com.google.android.gms.tasks.OnSuccessListener;
import com.google.android.gms.tasks.Task;
import com.google.firebase.auth.FirebaseAuth;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import com.squareup.picasso.Callback;
import com.squareup.picasso.NetworkPolicy;
import com.squareup.picasso.Picasso;
import java.text.DateFormat;
import java.util.Date;
import java.util.HashMap;
public class UserProfileActivity extends AppCompatActivity
{
DatabaseReference databaseReference;
TextView profile_name,profile_status,total_friends;
ImageView profile_img;
Button send_req,decline_req;
String uid;
ProgressDialog dialog;
DatabaseReference friend_request_reference;
DatabaseReference friends_reference;
DatabaseReference notification_reference;
FirebaseAuth firebaseAuth;
String current_State = "not_friends";
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_user_profile);
profile_name = (TextView)findViewById(R.id.profile_name);
profile_status = (TextView)findViewById(R.id.profile_status);
total_friends = (TextView)findViewById(R.id.total_friends);
profile_img = (ImageView)findViewById(R.id.profile_img);
send_req = (Button)findViewById(R.id.sendbtn);
decline_req =(Button)findViewById(R.id.declinebtn);
Bundle b =getIntent().getExtras();
uid = b.getString("user_key");
databaseReference = FirebaseDatabase.getInstance().getReference().child("users").child(uid);
//databaseReference.keepSynced(true);
firebaseAuth = FirebaseAuth.getInstance();
friend_request_reference = FirebaseDatabase.getInstance().getReference().child("friend_request");
// friend_request_reference.keepSynced(true);
friends_reference = FirebaseDatabase.getInstance().getReference().child("friends");
//friends_reference.keepSynced(true);
notification_reference = FirebaseDatabase.getInstance().getReference().child("notification");
dialog = new ProgressDialog(UserProfileActivity.this);
dialog.setMessage("Fetching user details..");
dialog.setCancelable(false);
dialog.show();
databaseReference.addValueEventListener(new ValueEventListener()
{
@Override
public void onDataChange(DataSnapshot dataSnapshot)
{
profile_name.setText(dataSnapshot.child("name").getValue().toString());
profile_status.setText(dataSnapshot.child("status").getValue().toString());
final String url = dataSnapshot.child("default_img").getValue().toString();
if(url.equals("default"))
profile_img.setImageResource(R.drawable.avatar);
else
{
Picasso.with(UserProfileActivity.this).load(url).networkPolicy(NetworkPolicy.OFFLINE).
placeholder(R.drawable.avatar).into(profile_img, new Callback()
{
@Override
public void onSuccess()
{
}
@Override
public void onError()
{
Picasso.with(UserProfileActivity.this).load(url).placeholder(R.drawable.avatar).into(profile_img);
}
});
}
friend_request_reference.child(firebaseAuth.getCurrentUser().getUid()).addListenerForSingleValueEvent(new ValueEventListener()
{
@Override
public void onDataChange(DataSnapshot dataSnapshot)
{
if(dataSnapshot.hasChild(uid))
{
String request_type = dataSnapshot.child(uid).child("request_type").getValue().toString();
if(request_type.equals("received"))
{
send_req.setText("Accept Request");
current_State = "request_received";
decline_req.setVisibility(View.VISIBLE);
decline_req.setEnabled(true);
}
else if(request_type.equals("sent"))
{
send_req.setText("cancel request");
current_State = "request_sent";
}
}
dialog.dismiss();
}
@Override
public void onCancelled(DatabaseError databaseError)
{
}
});
friends_reference.child(firebaseAuth.getCurrentUser().getUid()).addValueEventListener(new ValueEventListener()
{
@Override
public void onDataChange(DataSnapshot dataSnapshot)
{
if(dataSnapshot.hasChild(uid))
{
send_req.setText("Remove friend");
current_State = "friends";
if(dialog.isShowing())
dialog.dismiss();
}
}
@Override
public void onCancelled(DatabaseError databaseError)
{
}
});
if(dialog.isShowing())
dialog.dismiss();
}
@Override
public void onCancelled(DatabaseError databaseError)
{
}
});
send_req.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View view)
{
// not friends state //
if(current_State.equals("not_friends"))
{
send_req.setEnabled(false);
dialog.setCancelable(false);
dialog.setMessage("please wait");
dialog.show();
final Request request = new Request();
request.setRequest_type("sent");
int time = (int)(System.currentTimeMillis()) * (-1);
request.setTimestamp(time);
friend_request_reference.child(firebaseAuth.getCurrentUser().getUid()).child(uid).setValue(request)
.addOnCompleteListener(new OnCompleteListener<Void>()
{
@Override
public void onComplete(@NonNull Task<Void> task)
{
if(task.isSuccessful())
{
request.setRequest_type("received");
friend_request_reference.child(uid).child(firebaseAuth.getCurrentUser().getUid())
.setValue(request).addOnSuccessListener(new OnSuccessListener<Void>()
{
@Override
public void onSuccess(Void aVoid)
{
HashMap<String,String> notification_data = new HashMap<String, String>();
notification_data.put("from",firebaseAuth.getCurrentUser().getUid());
notification_data.put("type","request");
notification_reference.child(uid).push().setValue(notification_data)
.addOnCompleteListener(new OnCompleteListener<Void>()
{
@Override
public void onComplete(@NonNull Task<Void> task)
{
if(task.isSuccessful())
{
dialog.dismiss();
send_req.setEnabled(true);
send_req.setText("cancel request");
current_State = "request_sent";
Toast.makeText(UserProfileActivity.this, "request sent", Toast.LENGTH_SHORT).show();
}
else
Toast.makeText(UserProfileActivity.this, "something went wrong..", Toast.LENGTH_SHORT).show();
}
});
}
});
}
else
{
dialog.dismiss();
send_req.setEnabled(true);
Toast.makeText(UserProfileActivity.this, "cannot sent request..", Toast.LENGTH_SHORT).show();
}
}
});
}
// cancel friend request state
else if(current_State.equals("request_sent"))
{
send_req.setEnabled(false);
friend_request_reference.child(firebaseAuth.getCurrentUser().getUid()).child(uid)
.removeValue().addOnSuccessListener(new OnSuccessListener<Void>()
{
@Override
public void onSuccess(Void aVoid)
{
friend_request_reference.child(uid).child(firebaseAuth.getCurrentUser().getUid())
.removeValue().addOnSuccessListener(new OnSuccessListener<Void>()
{
@Override
public void onSuccess(Void aVoid)
{
send_req.setEnabled(true);
send_req.setText("send request");
current_State = "not_friends";
Toast.makeText(UserProfileActivity.this, "request cancelled", Toast.LENGTH_SHORT).show();
}
}).addOnFailureListener(new OnFailureListener()
{
@Override
public void onFailure(@NonNull Exception e)
{
Toast.makeText(UserProfileActivity.this,e.toString(), Toast.LENGTH_SHORT).show();
}
});
}
});
send_req.setEnabled(true);
}
// accept friend request
else if(current_State.equals("request_received"))
{
dialog.setCancelable(false);
dialog.setMessage("please wait");
dialog.show();
send_req.setEnabled(false);
final String time = DateFormat.getDateTimeInstance().format(new Date()).toString();
friends_reference.child(firebaseAuth.getCurrentUser().getUid()).child(uid).child("date")
.setValue(time).addOnSuccessListener(new OnSuccessListener<Void>()
{
@Override
public void onSuccess(Void aVoid)
{
friends_reference.child(uid).child(firebaseAuth.getCurrentUser().getUid()).child("date")
.setValue(time).addOnSuccessListener(new OnSuccessListener<Void>()
{
@Override
public void onSuccess(Void aVoid)
{
friend_request_reference.child(firebaseAuth.getCurrentUser().getUid()).child(uid)
.removeValue().addOnSuccessListener(new OnSuccessListener<Void>()
{
@Override
public void onSuccess(Void aVoid)
{
friend_request_reference.child(uid).child(firebaseAuth.getCurrentUser().getUid())
.removeValue().addOnSuccessListener(new OnSuccessListener<Void>()
{
@Override
public void onSuccess(Void aVoid)
{
dialog.dismiss();
send_req.setEnabled(true);
send_req.setText("Remove Friend");
current_State = "friends";
decline_req.setVisibility(View.GONE);
Toast.makeText(UserProfileActivity.this, "you are now connected..", Toast.LENGTH_SHORT).show();
}
});
}
});
}
}).addOnFailureListener(new OnFailureListener()
{
@Override
public void onFailure(@NonNull Exception e)
{
dialog.dismiss();
}
});
}
});
send_req.setEnabled(true);
}
// remove friend
else if(current_State.equals("friends"))
{
send_req.setEnabled(false);
friends_reference.child(firebaseAuth.getCurrentUser().getUid()).child(uid)
.removeValue().addOnSuccessListener(new OnSuccessListener<Void>()
{
@Override
public void onSuccess(Void aVoid)
{
friends_reference.child(uid).child(firebaseAuth.getCurrentUser().getUid())
.removeValue().addOnSuccessListener(new OnSuccessListener<Void>()
{
@Override
public void onSuccess(Void aVoid)
{
send_req.setText("send request");
current_State = "not_friends";
send_req.setEnabled(true);
}
}).addOnFailureListener(new OnFailureListener()
{
@Override
public void onFailure(@NonNull Exception e)
{
Toast.makeText(UserProfileActivity.this,e.toString(), Toast.LENGTH_SHORT).show();
}
});
}
});
send_req.setEnabled(true);
}
dialog.dismiss();
}
});
decline_req.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View view)
{
decline_req.setEnabled(false);
friend_request_reference.child(firebaseAuth.getCurrentUser().getUid()).child(uid)
.removeValue().addOnSuccessListener(new OnSuccessListener<Void>()
{
@Override
public void onSuccess(Void aVoid)
{
friend_request_reference.child(uid).child(firebaseAuth.getCurrentUser().getUid())
.removeValue().addOnSuccessListener(new OnSuccessListener<Void>()
{
@Override
public void onSuccess(Void aVoid)
{
send_req.setEnabled(true);
send_req.setText("send request");
current_State = "not_friends";
decline_req.setVisibility(View.GONE);
Toast.makeText(UserProfileActivity.this, "request declined", Toast.LENGTH_SHORT).show();
}
}).addOnFailureListener(new OnFailureListener()
{
@Override
public void onFailure(@NonNull Exception e)
{
Toast.makeText(UserProfileActivity.this,e.toString(), Toast.LENGTH_SHORT).show();
}
});
}
});
decline_req.setEnabled(true);
}
});
}
}
| [
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.