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
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0059cfc3f8032987f7ac950b9ee31eb201c14a7d | f9b3c47cf8be58d0b54938395d214d72225e4b64 | /grain/src/com/course/vegetable/controller/VegetableController.java | 51b6c906a04497617319dc9572e6c4cbec50569b | [] | no_license | Tianruihang/grain | 4e641e239709f000f9f203e4685b36f9d9825372 | 6d759a777d4886835fcd595342d9c37d670407e2 | refs/heads/master | 2021-01-20T07:32:46.415663 | 2017-05-23T02:21:19 | 2017-05-23T02:21:19 | 90,012,571 | 2 | 2 | null | null | null | null | UTF-8 | Java | false | false | 4,319 | java | package com.course.vegetable.controller;
import java.io.UnsupportedEncodingException;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import com.course.entity.Supply;
import com.course.entity.Vegetable;
import com.course.vegetable.service.VegetableServiceImpl;
import com.framework.Page;
@Controller
@RequestMapping("vegetable")
public class VegetableController {
@Resource
private VegetableServiceImpl vegetableServiceImpl;
@RequestMapping("add")
public String add(@RequestParam(name="VegetableName") String vname,@RequestParam(name="VegetablePrice") Integer vprice,
@RequestParam(name="VegetableSupply") Supply vsupply,@RequestParam(name="VegetableGrade") String vgrade,
@RequestParam(name="VegetableDescribe") String vdescribe,
@RequestParam(name="VegetableClass") String vclass,
@RequestParam(name="VegetableState") String vstate,
@RequestParam(name="VegetablePicture") String vpicture,
@RequestParam(name="VegetableLocation") String vlocation,HttpServletRequest request){
String name = null;
String supply = null;
String grade = null;
String describe = null;
String classes = null;
String picture = null;
String state = null;
String location = null;
try {
name = new String(vname.getBytes("ISO8859_1"), "UTF-8");
grade = new String(vgrade.getBytes("ISO8859_1"), "UTF-8");
describe = new String(vdescribe.getBytes("ISO8859_1"), "UTF-8");
classes = new String(vclass.getBytes("ISO8859_1"), "UTF-8");
picture = new String(vpicture.getBytes("ISO8859_1"), "UTF-8");
state = new String(vstate.getBytes("ISO8859_1"), "UTF-8");
location = new String(vlocation.getBytes("ISO8859_1"), "UTF-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
Vegetable v = new Vegetable();
v.setVegetableName(name);
v.setVegetablePrice(vprice);
v.setVegetableClass(classes);
v.setVegetableDescribe(describe);
v.setVegetableGrade(grade);
v.setVegetableLocation(location);
v.setVegetablePicture(picture);
v.setVegetableState(state);
this.vegetableServiceImpl.addVegetable(v);
return "redirect:list";
}
@RequestMapping(value="delete")
public String delete(@RequestParam("vegetableId") int vegetableId,
HttpServletRequest request){
this.vegetableServiceImpl.dropVegetable(vegetableId);
return "redirect:list";
}
@RequestMapping(value="edit",method=RequestMethod.GET )
public String toEdit(@RequestParam("vegetableId") int vegetableId,
HttpServletRequest request){
// System.out.println("get");
Vegetable v=this.vegetableServiceImpl.getVegetable(vegetableId);
// 设置了两个session范围的属性
request.setAttribute("veg", v);
request.setAttribute("action", "edit");
return "vegetable/edit";
}
@RequestMapping(value="edit",method=RequestMethod.POST)
public String edit(Vegetable v,HttpServletRequest request){
// System.out.println("post");
String name = null;
try {
name = new String(v.getVegetableName().getBytes("ISO8859_1"), "UTF-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
v.setVegetableName(name);
this.vegetableServiceImpl.editVegetable(v);
return "redirect:list";
}
@RequestMapping("list")
public String list(@RequestParam(name="pageNum", defaultValue="1") int pageNum,
@RequestParam(name="searchParam",defaultValue="") String searchParam,HttpServletRequest request,
Model model){
Page<Vegetable> page;
if(searchParam==null || "".equals(searchParam)){
page=this.vegetableServiceImpl.listVegetable(pageNum, 5, null);
}else{
// System.out.println("before"+searchParam);
try {
searchParam = new String(searchParam.getBytes("ISO8859_1"), "UTF-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
// System.out.println("after"+searchParam);
page=this.vegetableServiceImpl.listVegetable(pageNum, 5, new Object[]{searchParam});
}
request.setAttribute("page", page);
request.setAttribute("searchParam", searchParam);
return "vegetable/list";
}
}
| [
"[email protected]"
] | |
015484649fe55c25e0949254a0c1993a5137c30f | 2ce07565d7644586686aa63c256f3288a010c40b | /HxModule/src/com/easemob/easeui/utils/HxApi.java | 640bb03dd3380a7c36f6b66b38fef89c40f64a2b | [
"Apache-2.0"
] | permissive | yundequanshi/TxQipei | 42a3f13d3bf95ecf5681ac45c929aef09f082b88 | 17edbbc47a47f005ee9934c94a43e38bc2deb115 | refs/heads/master | 2021-02-19T09:05:13.905941 | 2020-03-06T09:12:01 | 2020-03-06T09:12:01 | 245,298,297 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,311 | java | package com.easemob.easeui.utils;
import com.easemob.easeui.model.GroupData;
import com.easemob.easeui.model.HxUser;
import com.easemob.easeui.model.TodoData;
import java.util.List;
import java.util.Map;
import okhttp3.MultipartBody;
import okhttp3.ResponseBody;
import retrofit2.http.Body;
import retrofit2.http.GET;
import retrofit2.http.Multipart;
import retrofit2.http.POST;
import retrofit2.http.Part;
import retrofit2.http.Streaming;
import retrofit2.http.Url;
import rx.Observable;
/**
* Created by iscod. Time:2016/6/21-9:46.
*/
public interface HxApi {
//上传文件
@Multipart
@POST("file/upload/")
Observable<List<String>> upload(@Part MultipartBody.Part file);
//上传文件
@Multipart
@POST("file/upload/")
Observable<List<String>> uploads(@Part List<MultipartBody.Part> files);
//下载
@GET
@Streaming
Observable<ResponseBody> download(@Url String fileUrl);
//1--获取环信信息
@POST("user/getUser")
Observable<HxUser> getHxUser(@Body Map<String, String> map);
//2--获取环信信息根据emid
@POST("user/getUserByEmId")
Observable<HxUser> getUserByEmId(@Body Map<String, String> map);
//3--获取环信全部联系人
@POST("friend/friends")
Observable<List<HxUser>> friends(@Body Map<String, String> map);
//4--获取环信待办数量
@POST("user/toDoList")
Observable<List<TodoData>> toDoList(@Body Map<String, String> map);
//5--删除好友
@POST("friend/dissolution")
Observable<String> dissolution(@Body Map<String, String> map);
//6--查找好友
@POST("user/findUser")
Observable<List<HxUser>> findUser(@Body Map<String, String> map);
//7--添加好友
@POST("friend/invitation")
Observable<String> invitation(@Body Map<String, String> map);
//8--获取环信群列表
@POST("group/userGroup")
Observable<List<GroupData>> userGroup(@Body Map<String, String> map);
//9--解散群
@POST("group/dissolution")
Observable<String> groupDissolution(@Body Map<String, String> map);
//10--创建群
@POST("group/createGroup")
Observable<String> createGroup(@Body Map<String, String> map);
//11--群邀请
@POST("group/invitationGroup")
Observable<String> invitationGroup(@Body Map<String, String> map);
//12--群邀请同意
@POST("group/addUser2Group")
Observable<String> addUser2Group(@Body Map<String, String> map);
//14--好友邀请同意
@POST("friend/addFriend")
Observable<String> addFriend(@Body Map<String, String> map);
//15--待办事情清空
@POST("user/toDoMsg")
Observable<String> toDoMsg(@Body Map<String, String> map);
//16--获取群好友
@POST("group/groupUsersByEmgId")
Observable<List<HxUser>> groupUsersByEmgId(@Body Map<String, String> map);
//17--移除群好友
@POST("group/removeUser")
Observable<String> removeUser(@Body Map<String, String> map);
//18--修改群
@POST("group/updateGroup")
Observable<String> updateGroup(@Body Map<String, String> map);
//19--查找群
@POST("group/findGroup")
Observable<List<GroupData>> findGroup(@Body Map<String, String> map);
//20--申请加群
@POST("group/applyGroup")
Observable<String> applyGroup(@Body Map<String, String> map);
//21--修改用户信息
@POST("user/updateUser")
Observable<String> updateUser(@Body Map<String, String> map);
}
| [
"[email protected]"
] | |
8ba30a3135cc453746020cf780769598b3ec5075 | a716fefd6b6f5d9791c5cbb71dbf2326f6be53af | /src/org/lanqiao/util/mail/MailTest.java | 9edbfdc437335761fa30dbdaf9cf6db5a173eb29 | [] | no_license | czhongwen/oneMovie | a4dc0f0e5ca81615fb9c7c9910fd4427f783c142 | 54670d6cf76c02f1a2f89e54a82c90e10c246384 | refs/heads/master | 2020-04-13T11:39:10.043265 | 2018-12-26T13:00:54 | 2018-12-26T13:00:54 | 163,179,931 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,159 | java | package org.lanqiao.util.mail;
public class MailTest {
public static void main(String[] args) {
MailSenderProperties mailInfo = new MailSenderProperties();
mailInfo.setMailServerHost("smtp.qq.com");
mailInfo.setMailServerPort("587");
//�����ʼ���������imap.qq.com��ʹ��SSL���˿ں�993
//�����ʼ���������smtp.qq.com��ʹ��SSL���˿ں�465��587
mailInfo.setValidate(true);
mailInfo.setUserName("[email protected]");
mailInfo.setPassword("lepgcfamronnbdfj");//�ͻ�����Ȩ����
mailInfo.setFromAddress("[email protected]");
mailInfo.setToAddress("[email protected]");
mailInfo.setSubject("测试呀");
mailInfo.setContent("hahahaha");
//这个类主要来发�?�邮�?
SimpleMailSender sms = new SimpleMailSender();
boolean flag = sms.sendTextMail(mailInfo);//发�?�文体格�?
if(flag)
System.out.println("测试成功");
// sms.sendHtmlMail(mailInfo);//发�?�html格式
}
}
| [
"[email protected]"
] | |
15af9a9096f59ebd3d038036bcdad02f3aa6e21e | 7d8214da0babaf6974ad808aa9a2a7a2dcb7373d | /src/main/java/com/beehyv/confused1/service/CartService.java | 3024ef109d0e53084874db970676325b35f4c3c1 | [] | no_license | AmitGunjanDS/confused | d69e49dad1ef4bf30e29dec5a15102d327aa8acd | 89bb9c49587c4c1c7ea1dd8f26837ee2ca78e0bc | refs/heads/master | 2020-04-01T20:13:04.657887 | 2018-10-18T09:01:01 | 2018-10-18T09:01:01 | 153,593,860 | 0 | 0 | null | 2018-10-18T09:01:02 | 2018-10-18T08:56:23 | HTML | UTF-8 | Java | false | false | 594 | java | package com.beehyv.confused1.service;
import com.beehyv.confused1.DAO.CartDAO;
import com.beehyv.confused1.Model.Cart;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class CartService {
@Autowired
private CartDAO cartDAO;
public void save(Cart cart) {
cartDAO.save(cart);
}
public Cart getById(Integer cartId) {
return cartDAO.findById(cartId).get();
}
public Cart getByUsername(String username) {
return cartDAO.findByUserUsername(username);
}
}
| [
"[email protected]"
] | |
c86b851531760bdd03d53c9ea69bc40d82066511 | 06f5e887b757c3a594a95db8079582519f321be3 | /src/view/MainWindow.java | a0db68267136dfe5f24f9196b4684fc3952cec79 | [] | no_license | gramzanber/Deep_Space | 38600613052c7eac42f39387a2c5d4265e0ff975 | 7328fb0a135598c15f4f723e9bd061c7656a3646 | refs/heads/master | 2020-06-19T19:54:24.640577 | 2016-11-26T16:22:32 | 2016-11-26T16:22:32 | 74,836,569 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,471 | java | // Author: Tyrel Tachibana
// Course: CMSC 3103 - Object Oriented SW Design & Construction
// Semester: Fall, 2015
// Project: Term Project
// Created: October 31, 2015
package view;
import controller.ButtonListener;
import controller.KeyController;
import controller.Main;
import controller.MouseController;
import controller.SoundController;
import java.awt.Container;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class MainWindow extends JFrame {
public static JPanel gameStatPanel;
public static JButton quitButton;
public MainWindow()
{
quitButton = new JButton("Quit");
quitButton.setFocusable(false);
ButtonListener buttonListener = new ButtonListener();
quitButton.addActionListener(buttonListener);
//JPanel southPanel = new JPanel();
//southPanel.add(quitButton);
MouseController mouseController = new MouseController();
Main.gamePanel.addMouseListener(mouseController);
SoundController soundController = new SoundController();
soundController.backgroundMusic();
KeyController keyListener = new KeyController();
Main.gamePanel.addKeyListener(keyListener);
Main.gamePanel.setFocusable(true);
Container c = getContentPane();
c.add(Main.gamePanel, "Center");
//c.add(southPanel, "South");
}
} | [
"[email protected]"
] | |
0cffb76be0a365ddd777f6293d156da2b16cde44 | 8a323b0260bac8a1c275f5934d66e8e89e4954f6 | /Spring/Section02/src/main/java/hello/core/member/MemberServiceImpl.java | 446e0832e65092fc604ee72294d16c4e7cd0541f | [] | no_license | JooMal/withBackendRoadmap | 8717776018c500441e896e0625b19f23f0a3f971 | ff80bed7f79bf09b678a66a10212eb64db9857b3 | refs/heads/main | 2023-03-05T21:54:49.509216 | 2021-02-19T14:21:50 | 2021-02-19T14:21:50 | 326,645,460 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 602 | java | package hello.core.member;
public class MemberServiceImpl implements MemberService {
// 인터페이스 뿐이니까 앞에서 만든 구현 객체를 선택해주어야 한다.
// => DIP를 위반하고 있다.
private final MemberRepository memberRepository = new MemoryMemberRepository();
// 다형성에 의해 override 된 아래의 메소드가 호출된다.
@Override
public void join(Member member) {
memberRepository.save(member);
}
@Override
public Member findMember(Long memberId) {
return memberRepository.findById(memberId);
}
}
| [
"[email protected]"
] | |
ca448f528d2fa22b026e64d8a8c62c65799e3b55 | 0c4e6bc3812bf822e14269e6728c385722ac3741 | /app/build/generated/not_namespaced_r_class_sources/debug/r/androidx/core/R.java | 6b773b5108ad5a3dd24175f4409500d6b00aaba6 | [] | no_license | dipSaha2202/Clima-Fine | 291891d03ed1ca7b3819cb69288ab0d641ed4fb8 | 416b40ccbb4f3162b0d77f0a92a5adb8968ef67a | refs/heads/master | 2020-08-22T07:17:34.957437 | 2019-10-26T06:15:37 | 2019-10-26T06:15:37 | 216,345,727 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 13,473 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* gradle plugin from the resource data it found. It
* should not be modified by hand.
*/
package androidx.core;
public final class R {
private R() {}
public static final class attr {
private attr() {}
public static final int alpha = 0x7f020027;
public static final int font = 0x7f020082;
public static final int fontProviderAuthority = 0x7f020084;
public static final int fontProviderCerts = 0x7f020085;
public static final int fontProviderFetchStrategy = 0x7f020086;
public static final int fontProviderFetchTimeout = 0x7f020087;
public static final int fontProviderPackage = 0x7f020088;
public static final int fontProviderQuery = 0x7f020089;
public static final int fontStyle = 0x7f02008a;
public static final int fontVariationSettings = 0x7f02008b;
public static final int fontWeight = 0x7f02008c;
public static final int ttcIndex = 0x7f020142;
}
public static final class color {
private color() {}
public static final int notification_action_color_filter = 0x7f040040;
public static final int notification_icon_bg_color = 0x7f040041;
public static final int ripple_material_light = 0x7f04004b;
public static final int secondary_text_default_material_light = 0x7f04004d;
}
public static final class dimen {
private dimen() {}
public static final int compat_button_inset_horizontal_material = 0x7f050050;
public static final int compat_button_inset_vertical_material = 0x7f050051;
public static final int compat_button_padding_horizontal_material = 0x7f050052;
public static final int compat_button_padding_vertical_material = 0x7f050053;
public static final int compat_control_corner_material = 0x7f050054;
public static final int compat_notification_large_icon_max_height = 0x7f050055;
public static final int compat_notification_large_icon_max_width = 0x7f050056;
public static final int notification_action_icon_size = 0x7f050060;
public static final int notification_action_text_size = 0x7f050061;
public static final int notification_big_circle_margin = 0x7f050062;
public static final int notification_content_margin_start = 0x7f050063;
public static final int notification_large_icon_height = 0x7f050064;
public static final int notification_large_icon_width = 0x7f050065;
public static final int notification_main_column_padding_top = 0x7f050066;
public static final int notification_media_narrow_margin = 0x7f050067;
public static final int notification_right_icon_size = 0x7f050068;
public static final int notification_right_side_padding_top = 0x7f050069;
public static final int notification_small_icon_background_padding = 0x7f05006a;
public static final int notification_small_icon_size_as_large = 0x7f05006b;
public static final int notification_subtext_size = 0x7f05006c;
public static final int notification_top_pad = 0x7f05006d;
public static final int notification_top_pad_large_text = 0x7f05006e;
}
public static final class drawable {
private drawable() {}
public static final int notification_action_background = 0x7f060067;
public static final int notification_bg = 0x7f060068;
public static final int notification_bg_low = 0x7f060069;
public static final int notification_bg_low_normal = 0x7f06006a;
public static final int notification_bg_low_pressed = 0x7f06006b;
public static final int notification_bg_normal = 0x7f06006c;
public static final int notification_bg_normal_pressed = 0x7f06006d;
public static final int notification_icon_background = 0x7f06006e;
public static final int notification_template_icon_bg = 0x7f06006f;
public static final int notification_template_icon_low_bg = 0x7f060070;
public static final int notification_tile_bg = 0x7f060071;
public static final int notify_panel_notification_icon_bg = 0x7f060072;
}
public static final class id {
private id() {}
public static final int accessibility_action_clickable_span = 0x7f070006;
public static final int accessibility_custom_action_0 = 0x7f070007;
public static final int accessibility_custom_action_1 = 0x7f070008;
public static final int accessibility_custom_action_10 = 0x7f070009;
public static final int accessibility_custom_action_11 = 0x7f07000a;
public static final int accessibility_custom_action_12 = 0x7f07000b;
public static final int accessibility_custom_action_13 = 0x7f07000c;
public static final int accessibility_custom_action_14 = 0x7f07000d;
public static final int accessibility_custom_action_15 = 0x7f07000e;
public static final int accessibility_custom_action_16 = 0x7f07000f;
public static final int accessibility_custom_action_17 = 0x7f070010;
public static final int accessibility_custom_action_18 = 0x7f070011;
public static final int accessibility_custom_action_19 = 0x7f070012;
public static final int accessibility_custom_action_2 = 0x7f070013;
public static final int accessibility_custom_action_20 = 0x7f070014;
public static final int accessibility_custom_action_21 = 0x7f070015;
public static final int accessibility_custom_action_22 = 0x7f070016;
public static final int accessibility_custom_action_23 = 0x7f070017;
public static final int accessibility_custom_action_24 = 0x7f070018;
public static final int accessibility_custom_action_25 = 0x7f070019;
public static final int accessibility_custom_action_26 = 0x7f07001a;
public static final int accessibility_custom_action_27 = 0x7f07001b;
public static final int accessibility_custom_action_28 = 0x7f07001c;
public static final int accessibility_custom_action_29 = 0x7f07001d;
public static final int accessibility_custom_action_3 = 0x7f07001e;
public static final int accessibility_custom_action_30 = 0x7f07001f;
public static final int accessibility_custom_action_31 = 0x7f070020;
public static final int accessibility_custom_action_4 = 0x7f070021;
public static final int accessibility_custom_action_5 = 0x7f070022;
public static final int accessibility_custom_action_6 = 0x7f070023;
public static final int accessibility_custom_action_7 = 0x7f070024;
public static final int accessibility_custom_action_8 = 0x7f070025;
public static final int accessibility_custom_action_9 = 0x7f070026;
public static final int action_container = 0x7f07002e;
public static final int action_divider = 0x7f070030;
public static final int action_image = 0x7f070031;
public static final int action_text = 0x7f070037;
public static final int actions = 0x7f070038;
public static final int async = 0x7f07003d;
public static final int blocking = 0x7f070041;
public static final int chronometer = 0x7f070049;
public static final int dialog_button = 0x7f070051;
public static final int forever = 0x7f070059;
public static final int icon = 0x7f070061;
public static final int icon_group = 0x7f070062;
public static final int info = 0x7f070065;
public static final int italic = 0x7f070067;
public static final int line1 = 0x7f070069;
public static final int line3 = 0x7f07006a;
public static final int normal = 0x7f070073;
public static final int notification_background = 0x7f070074;
public static final int notification_main_column = 0x7f070075;
public static final int notification_main_column_container = 0x7f070076;
public static final int right_icon = 0x7f070082;
public static final int right_side = 0x7f070083;
public static final int tag_accessibility_actions = 0x7f0700a3;
public static final int tag_accessibility_clickable_spans = 0x7f0700a4;
public static final int tag_accessibility_heading = 0x7f0700a5;
public static final int tag_accessibility_pane_title = 0x7f0700a6;
public static final int tag_screen_reader_focusable = 0x7f0700a7;
public static final int tag_transition_group = 0x7f0700a8;
public static final int tag_unhandled_key_event_manager = 0x7f0700a9;
public static final int tag_unhandled_key_listeners = 0x7f0700aa;
public static final int text = 0x7f0700ac;
public static final int text2 = 0x7f0700ad;
public static final int time = 0x7f0700b2;
public static final int title = 0x7f0700b3;
}
public static final class integer {
private integer() {}
public static final int status_bar_notification_info_maxnum = 0x7f080004;
}
public static final class layout {
private layout() {}
public static final int custom_dialog = 0x7f0a001d;
public static final int notification_action = 0x7f0a001e;
public static final int notification_action_tombstone = 0x7f0a001f;
public static final int notification_template_custom_big = 0x7f0a0020;
public static final int notification_template_icon_group = 0x7f0a0021;
public static final int notification_template_part_chronometer = 0x7f0a0022;
public static final int notification_template_part_time = 0x7f0a0023;
}
public static final class string {
private string() {}
public static final int status_bar_notification_info_overflow = 0x7f0c0025;
}
public static final class style {
private style() {}
public static final int TextAppearance_Compat_Notification = 0x7f0d00ed;
public static final int TextAppearance_Compat_Notification_Info = 0x7f0d00ee;
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0d00ef;
public static final int TextAppearance_Compat_Notification_Time = 0x7f0d00f0;
public static final int TextAppearance_Compat_Notification_Title = 0x7f0d00f1;
public static final int Widget_Compat_NotificationActionContainer = 0x7f0d015c;
public static final int Widget_Compat_NotificationActionText = 0x7f0d015d;
}
public static final class styleable {
private styleable() {}
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
public static final int ColorStateListItem_android_color = 0;
public static final int ColorStateListItem_android_alpha = 1;
public static final int ColorStateListItem_alpha = 2;
public static final int[] FontFamily = { 0x7f020084, 0x7f020085, 0x7f020086, 0x7f020087, 0x7f020088, 0x7f020089 };
public static final int FontFamily_fontProviderAuthority = 0;
public static final int FontFamily_fontProviderCerts = 1;
public static final int FontFamily_fontProviderFetchStrategy = 2;
public static final int FontFamily_fontProviderFetchTimeout = 3;
public static final int FontFamily_fontProviderPackage = 4;
public static final int FontFamily_fontProviderQuery = 5;
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f020082, 0x7f02008a, 0x7f02008b, 0x7f02008c, 0x7f020142 };
public static final int FontFamilyFont_android_font = 0;
public static final int FontFamilyFont_android_fontWeight = 1;
public static final int FontFamilyFont_android_fontStyle = 2;
public static final int FontFamilyFont_android_ttcIndex = 3;
public static final int FontFamilyFont_android_fontVariationSettings = 4;
public static final int FontFamilyFont_font = 5;
public static final int FontFamilyFont_fontStyle = 6;
public static final int FontFamilyFont_fontVariationSettings = 7;
public static final int FontFamilyFont_fontWeight = 8;
public static final int FontFamilyFont_ttcIndex = 9;
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
public static final int GradientColor_android_startColor = 0;
public static final int GradientColor_android_endColor = 1;
public static final int GradientColor_android_type = 2;
public static final int GradientColor_android_centerX = 3;
public static final int GradientColor_android_centerY = 4;
public static final int GradientColor_android_gradientRadius = 5;
public static final int GradientColor_android_tileMode = 6;
public static final int GradientColor_android_centerColor = 7;
public static final int GradientColor_android_startX = 8;
public static final int GradientColor_android_startY = 9;
public static final int GradientColor_android_endX = 10;
public static final int GradientColor_android_endY = 11;
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
public static final int GradientColorItem_android_color = 0;
public static final int GradientColorItem_android_offset = 1;
}
}
| [
"[email protected]"
] | |
c6381f8e4b585f380c7ea7eb87ff70e5f6800a88 | 7d4fbcd94c956d285bf8d66d5f9f32ddc730f51e | /src/test/java/de/wellnerbou/chronic/replay/ChronicReplayIT.java | 2025605d1a7bb39651f84846633a766ce1575aef | [
"Apache-2.0"
] | permissive | schreibe72/chronicreplay | 6be9b4836b2680cd32b823c8abbf98f7a502705f | 6f478a0bcd7cf56945f558bf2d026bea7a882cb6 | refs/heads/master | 2021-01-11T05:55:35.143088 | 2016-03-29T05:40:36 | 2016-03-29T05:40:36 | 69,351,328 | 0 | 0 | null | 2016-09-27T11:50:04 | 2016-09-27T11:50:03 | null | UTF-8 | Java | false | false | 359 | java | package de.wellnerbou.chronic.replay;
import org.junit.Test;
import java.io.IOException;
public class ChronicReplayIT {
@Test
public void testRun() throws IOException {
String[] args = new String[] { "--host=http://localhost",
"--logfile=src/test/resources/combined-log-example.log",
"--logreader=combined" };
ChronicReplay.main(args);
}
}
| [
"[email protected]"
] | |
1e4581a04e55fba3e0490e61f6568cc47cf47dd2 | 38ecc65e0e27780bce0e2ba5e3399fb0d33a82cc | /src/main/java/control/AuftragSession.java | fbc11bc3d3a2bc29b6603e56fec7cd90354b5201 | [] | no_license | vid14114/Warenwirtschaft | ad8ccc08f685aa9fddb8f067b7ccd3ba6df089c8 | 852ec249f944284ca95b8fd59a6a4938525533f6 | refs/heads/master | 2022-02-03T14:39:07.116509 | 2016-09-28T13:03:07 | 2016-09-28T13:03:07 | 43,057,982 | 0 | 0 | null | 2022-01-13T18:21:01 | 2015-09-24T09:38:24 | Java | UTF-8 | Java | false | false | 1,220 | java | package control;
import com.esotericsoftware.minlog.Log;
import model.Auftrag;
import org.hibernate.Session;
import org.hibernate.Transaction;
import java.util.List;
/**
* Created by Viktor on 16.05.2015.
*/
public enum AuftragSession {
;
AuftragSession() {
}
public static List<Auftrag> getAllAuftraege() {
Session session = MyConfig.getSessionFactory().openSession();
List<Auftrag> result = session.createQuery("from Auftrag").list();
session.close();
result.stream().filter(a -> a.getKunde() == null).forEach(Auftrag::findKunde);
return result;
}
public static void saveAuftrag(Auftrag a) {
Session session = MyConfig.getSessionFactory().openSession();
a.calculateWert();
Transaction t = session.beginTransaction();
session.saveOrUpdate(a);
t.commit();
session.close();
Log.info("Saving " + a);
}
public static void removeAuftrag(Auftrag a) {
Session session = MyConfig.getSessionFactory().openSession();
Transaction t = session.beginTransaction();
session.delete(a);
t.commit();
session.close();
Log.info("Removing " + a);
}
}
| [
"[email protected]"
] | |
fd237b93bdecb369982dcbb5e73828bc844a5a25 | dc272f4437094d0a58b05722beb4d14004b3b18b | /project-zzboot-system/component-zzboot-system/module-zzboot-system-controller/src/main/java/com/zzboot/system/controller/LoginController.java | 7dc295ec9aacbe86d25248b6ce37f5ccb679b9a9 | [
"Apache-2.0"
] | permissive | zhonglh/zzboot-framework | e64d12b548c3edafa45d1447ffc247e7fa095e4f | feda2c035e951606372f70b8c6c5ac21dbe0e1d9 | refs/heads/master | 2022-12-21T10:30:28.296630 | 2019-07-26T02:09:50 | 2019-07-26T02:09:50 | 188,630,777 | 0 | 0 | Apache-2.0 | 2022-12-14T20:39:25 | 2019-05-26T02:11:47 | Java | UTF-8 | Java | false | false | 6,294 | java | package com.zzboot.system.controller;
import com.google.code.kaptcha.Constants;
import com.google.code.kaptcha.Producer;
import com.zzboot.framework.controller.BaseController;
import com.zzboot.framework.core.db.entity.ILoginUserEntity;
import com.zzboot.framework.core.vo.AjaxJson;
import com.zzboot.framework.core.enums.EnumOperationType;
import com.zzboot.framework.events.LoginLogEvent;
import com.zzboot.framework.shiro.utils.ShiroUtils;
import com.zzboot.util.web.IpUtil;
import lombok.extern.slf4j.Slf4j;
import org.apache.shiro.SecurityUtils;
import org.apache.shiro.authc.*;
import org.apache.shiro.session.Session;
import org.apache.shiro.subject.Subject;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.imageio.ImageIO;
import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.Date;
/**
* 处理登录信息
* @author Administrator
*/
@Slf4j
@RequestMapping("/login")
@Controller
public class LoginController extends BaseController {
@Autowired
ApplicationContext applicationContext;
@Autowired
private Producer captchaProducer;
@Autowired
private Producer captchaProducerMath;
@RequestMapping(value = "/toLogin" ,method = RequestMethod.GET)
public String toLogin() {
try {
if (
(null != ShiroUtils.getSubject() && ShiroUtils.getSubject().isAuthenticated()) ||
ShiroUtils.getSubject().isRemembered()) {
return "redirect:/main/home";
} else {
return "login/login";
}
}catch (Exception e){
return "login/login";
}
}
@RequestMapping("/captcha")
public void captcha(HttpServletRequest request ,HttpServletResponse response)throws ServletException, IOException {
ServletOutputStream out = null;
try {
Session session = ShiroUtils.getSession() ;
response.setDateHeader("Expires", 0);
response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
response.addHeader("Cache-Control", "post-check=0, pre-check=0");
response.setHeader("Pragma", "no-cache");
response.setContentType("image/jpeg");
String type = request.getParameter("type");
String capStr;
String code = null;
BufferedImage bi = null;
if ("math".equals(type)) {
String capText = captchaProducerMath.createText();
capStr = capText.substring(0, capText.lastIndexOf('@'));
code = capText.substring(capText.lastIndexOf('@') + 1);
bi = captchaProducerMath.createImage(capStr);
} else {
capStr = code = captchaProducer.createText();
bi = captchaProducer.createImage(capStr);
}
session.setAttribute(Constants.KAPTCHA_SESSION_KEY, code);
out = response.getOutputStream();
ImageIO.write(bi, "jpg", out);
out.flush();
} catch (Exception e) {
e.printStackTrace();
log.error("验证码生成异常!", e);
} finally {
try {
if (out != null) {
out.close();
}
} catch (IOException e) {
log.error("验证码生成异常!", e);
}
}
}
@RequestMapping("/login")
@ResponseBody
public Object login(String loginName, String loginPassword ,String code ,Boolean rememberMe , HttpServletRequest request) {
try{
Subject subject = ShiroUtils.getSubject();
UsernamePasswordToken token = new UsernamePasswordToken(loginName, loginPassword , rememberMe);
subject.login(token);
try {
ILoginUserEntity loginUser = (ILoginUserEntity)subject.getPrincipal();
if (loginUser != null) {
LoginLogEvent le = new LoginLogEvent(new Date());
le.setIp(IpUtil.getIpAddr(request));
le.setLoginType(EnumOperationType.LOGIN.getVal());
le.setUserId(loginUser.getId());
applicationContext.publishEvent(le);
}
}catch (Exception e){
e.printStackTrace();
}
return AjaxJson.successAjax;
}catch (UnknownAccountException e) {
return AjaxJson.fail(e.getMessage());
}catch (IncorrectCredentialsException e) {
return AjaxJson.fail("账号或密码不正确");
}catch (LockedAccountException e) {
return AjaxJson.fail("账号已被锁定,请联系管理员");
}catch (AuthenticationException e) {
return AjaxJson.fail(e.getMessage());
}catch (Exception e) {
return AjaxJson.fail(e.getMessage());
}
}
@RequestMapping("/logout")
public String logout(HttpServletRequest request) {
try{
Subject subject = ShiroUtils.getSubject();
try {
ILoginUserEntity loginUser = (ILoginUserEntity)subject.getPrincipal();
if (loginUser != null) {
LoginLogEvent le = new LoginLogEvent(new Date());
le.setIp(IpUtil.getIpAddr(request));
le.setLoginType(EnumOperationType.LOGOUT.getVal());
le.setUserId(loginUser.getId());
applicationContext.publishEvent(le);
}
}catch (Exception e){
e.printStackTrace();
}
subject.logout();
}catch (Exception e) {
}
return "redirect:/login/toLogin";
}
}
| [
"[email protected]"
] | |
c26ad3aa1c48f3f4fdaa05c8d1e48662be666b87 | ce8997b2c210c73da772c47edbc1fd0c6231d5f1 | /src/test/java/com/seminar/easyCookWeb/EasyCookWebApplicationTests.java | fe3427be4fda9100a6b54c2a6402c48dffd915c2 | [] | no_license | rena311706015/EasyCook | ea4accc37bda5516d61f159f62c7e6edc8751d80 | f980d87b9d62d1c0c701498e61f803f22c0b8d0a | refs/heads/master | 2023-05-25T13:37:39.756774 | 2021-05-12T09:56:37 | 2021-05-12T09:56:37 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 220 | java | package com.seminar.easyCookWeb;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class EasyCookWebApplicationTests {
@Test
void contextLoads() {
}
}
| [
"[email protected]"
] | |
e12e02399e1dfc4055795abd969ebe6089e5035d | 6de572ce9a6382f8235157331776ddfbe214ac39 | /ChatParser/src/main/java/org/starnub/chatparser/ChatParser.java | 1790d8ca0640f994f12c78a27b915d7e0cd0b81a | [] | no_license | balr0g/StarNubJavaPlugins | 14d14506b753d23dc4f8650dfe37a23fb34bdd94 | 56bf3fa103deb7a052b9abd3de42869555cd06c1 | refs/heads/master | 2016-09-05T23:25:24.950629 | 2015-01-29T06:14:36 | 2015-01-29T06:14:36 | 30,116,507 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,417 | java | /*
* Copyright (C) 2014 www.StarNub.org - Underbalanced
*
* This file is part of org.starnub a Java Wrapper for Starbound.
*
* This above mentioned StarNub software is free software:
* you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free
* Software Foundation, either version 3 of the License, or
* any later version. This above mentioned CodeHome software
* is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
* the GNU General Public License for more details. You should
* have received a copy of the GNU General Public License in
* this StarNub Software. If not, see <http://www.gnu.org/licenses/>.
*/
package org.starnub.chatparser;
import io.netty.channel.ChannelHandlerContext;
import org.starnub.starbounddata.packets.Packet;
import org.starnub.starbounddata.packets.chat.ChatReceivePacket;
import org.starnub.starbounddata.packets.chat.ChatSendPacket;
import org.starnub.starbounddata.types.color.Colors;
import org.starnub.starnubserver.cache.wrappers.PermissionCacheWrapper;
import org.starnub.starnubserver.cache.wrappers.PlayerCtxCacheWrapper;
import org.starnub.starnubserver.connections.player.session.PlayerSession;
import org.starnub.starnubserver.events.events.StarNubEvent;
import org.starnub.starnubserver.events.events.StarNubEventTwo;
import org.starnub.starnubserver.pluggable.Plugin;
import org.starnub.utilities.cache.objects.BooleanCache;
import org.starnub.utilities.cache.objects.TimeCache;
import org.starnub.utilities.events.Priority;
public final class ChatParser extends Plugin {
private PlayerCtxCacheWrapper CTX_CACHE_CHAT;
private PermissionCacheWrapper CHAT_PERMISSION;
private PlayerCtxCacheWrapper CTX_CACHE_COMMAND;
private PermissionCacheWrapper COMMAND_PERMISSION;
@Override
public void onEnable() {
CTX_CACHE_CHAT = new PlayerCtxCacheWrapper(getRegistrationName(), "StarNub - Chat Parser - Chat Rate", true);
CHAT_PERMISSION = new PermissionCacheWrapper(getRegistrationName(), "starnub.chatparser.chat");
CTX_CACHE_COMMAND = new PlayerCtxCacheWrapper(getRegistrationName(), "StarNub - Chat Parser - Command Rate", true);
COMMAND_PERMISSION = new PermissionCacheWrapper(getRegistrationName(), "starnub.chatparser.command");
newPacketEventSubscription(Priority.CRITICAL, ChatSendPacket.class, this::chatSend);
newPacketEventSubscription(Priority.CRITICAL, ChatReceivePacket.class, this::chatReceive);
}
@Override
public void onDisable() {
/* No clean up required, since StarNub will unregister our events for us */
}
public void chatReceive(Packet packet) {
ChatReceivePacket chatReceivePacket = (ChatReceivePacket) packet;
ChatReceivePacket chatReceivePacketCopy = chatReceivePacket.copy();
// packet.recycle();
chatReceivePacketCopy.setFromName("Starbound");
PlayerSession playerSession = PlayerSession.getPlayerSession(chatReceivePacketCopy);
new StarNubEventTwo("Player_Chat_Parsed_From_Server", playerSession, chatReceivePacketCopy);
}
public void chatSend(Packet packet) {
ChatSendPacket chatSendPacket = (ChatSendPacket) packet;
//Recycle
PlayerSession playerSession = PlayerSession.getPlayerSession(chatSendPacket);
String chatMessage = chatSendPacket.getMessage();
chatMessage = Colors.shortcutReplacement(chatMessage);
boolean command = chatMessage.startsWith("/");
if (!command) {
chatHandle(playerSession, chatSendPacket);
} else {
commandHandle(playerSession, chatSendPacket);
chatSendPacket.recycle();
}
}
private void chatHandle(PlayerSession playerSession, ChatSendPacket chatSendPacket) {
ChannelHandlerContext clientCtx = playerSession.getCONNECTION().getCLIENT_CTX();
BooleanCache cache = (BooleanCache) CHAT_PERMISSION.getCache(clientCtx);
if (!cache.isBool()) {
if (cache.isPastDesignatedTimeRefreshTimeNowIfPast(5000)) {
sendChatMessage(playerSession, "You do not have permission to chat. Permission required: \"starnub.chatparser.chat\".");
new StarNubEvent("Player_Chat_Failed_No_Permission_Client", playerSession);
return;
}
}
TimeCache timeCache = CTX_CACHE_CHAT.getCache(clientCtx);
if (timeCache == null) {
CTX_CACHE_CHAT.addCache(clientCtx, new TimeCache());
} else {
int chatRate = playerSession.getSpecificPermissionInteger("starnub.chatparser_chat");
if (chatRate < -10000) {
chatRate = (int) getConfiguration().getValue("global_chat_rate");
} else if (chatRate == -10000) {
chatRate = 0;
}
boolean isPast = timeCache.isPastDesignatedTimeRefreshTimeNowIfPast(chatRate);
if (!isPast) {
String chatSpamMessage = (String) getConfiguration().getValue("spam_message_chat");
sendChatMessage(playerSession, chatSpamMessage);
new StarNubEvent("Player_Chat_Failed_Spam_Client", playerSession);
return;
}
}
ChatSendPacket chatSendPacketCopy = chatSendPacket.copy();
new StarNubEventTwo("Player_Chat_Parsed_From_Client", playerSession, chatSendPacketCopy);
}
private void commandHandle(PlayerSession playerSession, ChatSendPacket chatSendPacket) {
ChannelHandlerContext clientCtx = playerSession.getCONNECTION().getCLIENT_CTX();
BooleanCache cache = (BooleanCache) COMMAND_PERMISSION.getCache(clientCtx);
if (!cache.isBool()) {
if (cache.isPastDesignatedTimeRefreshTimeNowIfPast(5000)) {
sendChatMessage(playerSession, "You do not have permission to use commands. Permission required: \"starnub.chatparser.command\".");
new StarNubEvent("Player_Command_Failed_No_Permission_Client", playerSession);
return;
}
}
TimeCache timeCache = CTX_CACHE_COMMAND.getCache(clientCtx);
if (timeCache == null) {
CTX_CACHE_COMMAND.addCache(clientCtx, new TimeCache());
} else {
int commandRate = playerSession.getSpecificPermissionInteger("starnub.chatparser_command");
if (commandRate < -10000) {
commandRate = (int) getConfiguration().getValue("global_command_rate");
} else if (commandRate == -10000) {
commandRate = 0;
}
boolean isPast = timeCache.isPastDesignatedTimeRefreshTimeNowIfPast(commandRate);
if (!isPast) {
String chatSpamMessage = (String) getConfiguration().getValue("spam_message_command");
sendChatMessage(playerSession, chatSpamMessage);
new StarNubEvent("Player_Command_Failed_Spam_Client", playerSession);
return;
}
}
new StarNubEventTwo("Player_Command_Parsed_From_Client", playerSession, chatSendPacket.getMessage());
}
private void sendChatMessage(PlayerSession playerSession, String message) {
playerSession.sendBroadcastMessageToClient("ChatParser", message);
}
}
| [
"[email protected]"
] | |
58a3b6c69099d3bd4266384b9fee9ccc5a0583fb | 794473ff2ba2749db9c0782f5d281b00dd785a95 | /trunks/qiubaotong-server/qbt-system-web/src/test/java/com/qbt/test/ComposeImageTest.java | 030554bd9933d04ddb4efb2f9e8f3207a842ff6b | [] | no_license | hexilei/qbt | a0fbc9c1870da1bf1ec24bba0f508841ca1b9750 | 040e5fcc9fbb27d52712cc1678d71693b5c85cce | refs/heads/master | 2021-05-05T23:03:20.377229 | 2018-01-12T03:33:12 | 2018-01-12T03:33:12 | 116,363,833 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,363 | java | package com.qbt.test;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import javax.imageio.ImageIO;
public class ComposeImageTest {
/**
* 图片合成
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
File fileDir = new File("E:/data/test");
File[] files = fileDir.listFiles();
long startTime = System.currentTimeMillis();
for(File file : files){
if(file.isDirectory()){
continue;
}
InputStream imagein = new FileInputStream("E:/data/qrcode_bg.png");
String fileNamge = file.getName().substring(0,file.getName().lastIndexOf("."));
InputStream imagein2 = new FileInputStream(file);
BufferedImage image = ImageIO.read(imagein);
BufferedImage image2 = ImageIO.read(imagein2);
Graphics g = image.getGraphics();
g.drawImage(image2, 188, 414,250 , 250, null);
Font font = new Font("黑体", Font.BOLD, 13);
g.setFont(font);
Color c = new Color(196,195,195);
g.setColor(c); //根据图片的背景设置水印颜色
g.drawString(fileNamge, 265, 1090);
font = new Font("黑体", Font.BOLD, 48);
g.setFont(font);
g.setColor(Color.white); //根据图片的背景设置水印颜色
// g.drawString("我是张三", 210, 95);
// g.drawString("我是张三三", 180, 98);
g.drawString("我是张三三张三三张三三三", 5, 98);
g.dispose();
OutputStream outImage = new FileOutputStream("E:/data/test/test/" + fileNamge + ".jpg");
ImageIO.write(image, "JPG", new File("E:/data/test/test/", fileNamge+".jpg"));
// JPEGImageEncoder enc = JPEGCodec.createJPEGEncoder(outImage);
// enc.encode(image);
imagein.close();
imagein2.close();
outImage.close();
}
System.out.println(("生成耗时:"+(System.currentTimeMillis() - startTime)/1000)+"秒");
}
} | [
"[email protected]"
] | |
a4d10b0e9b833382cbedc1771d3550c0c5b7af15 | 61f48d41a060ec5b5f34e5ca85973cd1e2b9a56b | /revierwer/src/test/java/com/kafka/Consumer.java | 157175640c15ded1a84aa3c510d7900aebf46126 | [] | no_license | chinazzl/SpringBootLearn | ae6a77c1f6d9b0f4a44fae5d9af3afc24c1e265d | 8ce3cda978971f3bebde5def1a2b8ce5fa8a5e28 | refs/heads/master | 2023-09-03T19:34:47.855218 | 2023-08-23T07:18:58 | 2023-08-23T07:18:58 | 96,967,557 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 730 | java | package com.kafka;
import java.util.concurrent.TimeUnit;
/**********************************
* @author zhang zhao lin
* @date 2022年09月15日 22:36
* @Description: kafka 消费者
**********************************/
public class Consumer {
public static void main(String[] args) {
Consumer_ExcutorService excutorService = new Consumer_ExcutorService();
try {
excutorService.execute();
sleep(2);
}finally {
excutorService.shutdown();
}
}
private static void sleep(int seconds) {
try {
TimeUnit.SECONDS.sleep(seconds);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
}
}
| [
"[email protected]"
] | |
eba67e422f03b8f365c4315eb501d3f08fe09373 | 0a12bd827c3c48add9f5f400763a87ea69631faf | /velocity/src/main/java/bboss/org/apache/velocity/anakia/NodeList.java | 4d570d870bf4fba1d45a6e71236b7b39c4ab4e08 | [] | no_license | sqidea/bboss | 76c64dea2e0ecd2c8d4b7269021e37f58a5b4071 | d889e252d2bbf57681072fcd250a9e4da42f5938 | refs/heads/master | 2021-01-18T18:50:21.077011 | 2013-10-15T15:31:53 | 2013-10-15T15:31:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 14,988 | java | package bboss.org.apache.velocity.anakia;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import java.io.IOException;
import java.io.StringWriter;
import java.io.Writer;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
import org.jdom.Attribute;
import org.jdom.CDATA;
import org.jdom.Comment;
import org.jdom.DocType;
import org.jdom.Document;
import org.jdom.Element;
import org.jdom.EntityRef;
import org.jdom.ProcessingInstruction;
import org.jdom.Text;
import org.jdom.output.XMLOutputter;
/**
* Provides a class for wrapping a list of JDOM objects primarily for use in template
* engines and other kinds of text transformation tools.
* It has a {@link #toString()} method that will output the XML serialized form of the
* nodes it contains - again focusing on template engine usage, as well as the
* {@link #selectNodes(String)} method that helps selecting a different set of nodes
* starting from the nodes in this list. The class also implements the {@link java.util.List}
* interface by simply delegating calls to the contained list (the {@link #subList(int, int)}
* method is implemented by delegating to the contained list and wrapping the returned
* sublist into a <code>NodeList</code>).
*
* @author <a href="mailto:[email protected]">Attila Szegedi</a>
* @version $Id: NodeList.java 463298 2006-10-12 16:10:32Z henning $
*/
public class NodeList implements List, Cloneable
{
private static final AttributeXMLOutputter DEFAULT_OUTPUTTER =
new AttributeXMLOutputter();
/** The contained nodes */
private List nodes;
/**
* Creates an empty node list.
*/
public NodeList()
{
nodes = new ArrayList();
}
/**
* Creates a node list that holds a single {@link Document} node.
* @param document
*/
public NodeList(Document document)
{
this((Object)document);
}
/**
* Creates a node list that holds a single {@link Element} node.
* @param element
*/
public NodeList(Element element)
{
this((Object)element);
}
private NodeList(Object object)
{
if(object == null)
{
throw new IllegalArgumentException(
"Cannot construct NodeList with null.");
}
nodes = new ArrayList(1);
nodes.add(object);
}
/**
* Creates a node list that holds a list of nodes.
* @param nodes the list of nodes this template should hold. The created
* template will copy the passed nodes list, so changes to the passed list
* will not affect the model.
*/
public NodeList(List nodes)
{
this(nodes, true);
}
/**
* Creates a node list that holds a list of nodes.
* @param nodes the list of nodes this template should hold.
* @param copy if true, the created template will copy the passed nodes
* list, so changes to the passed list will not affect the model. If false,
* the model will reference the passed list and will sense changes in it,
* altough no operations on the list will be synchronized.
*/
public NodeList(List nodes, boolean copy)
{
if(nodes == null)
{
throw new IllegalArgumentException(
"Cannot initialize NodeList with null list");
}
this.nodes = copy ? new ArrayList(nodes) : nodes;
}
/**
* Retrieves the underlying list used to store the nodes. Note however, that
* you can fully use the underlying list through the <code>List</code> interface
* of this class itself. You would probably access the underlying list only for
* synchronization purposes.
* @return The internal node List.
*/
public List getList()
{
return nodes;
}
/**
* This method returns the string resulting from concatenation of string
* representations of its nodes. Each node is rendered using its XML
* serialization format. This greatly simplifies creating XML-transformation
* templates, as to output a node contained in variable x as XML fragment,
* you simply write ${x} in the template (or whatever your template engine
* uses as its expression syntax).
* @return The Nodelist as printable object.
*/
public String toString()
{
if(nodes.isEmpty())
{
return "";
}
StringWriter sw = new StringWriter(nodes.size() * 128);
try
{
for(Iterator i = nodes.iterator(); i.hasNext();)
{
Object node = i.next();
if(node instanceof Element)
{
DEFAULT_OUTPUTTER.output((Element)node, sw);
}
else if(node instanceof Attribute)
{
DEFAULT_OUTPUTTER.output((Attribute)node, sw);
}
else if(node instanceof Text)
{
DEFAULT_OUTPUTTER.output((Text)node, sw);
}
else if(node instanceof Document)
{
DEFAULT_OUTPUTTER.output((Document)node, sw);
}
else if(node instanceof ProcessingInstruction)
{
DEFAULT_OUTPUTTER.output((ProcessingInstruction)node, sw);
}
else if(node instanceof Comment)
{
DEFAULT_OUTPUTTER.output((Comment)node, sw);
}
else if(node instanceof CDATA)
{
DEFAULT_OUTPUTTER.output((CDATA)node, sw);
}
else if(node instanceof DocType)
{
DEFAULT_OUTPUTTER.output((DocType)node, sw);
}
else if(node instanceof EntityRef)
{
DEFAULT_OUTPUTTER.output((EntityRef)node, sw);
}
else
{
throw new IllegalArgumentException(
"Cannot process a " +
(node == null
? "null node"
: "node of class " + node.getClass().getName()));
}
}
}
catch(IOException e)
{
// Cannot happen as we work with a StringWriter in memory
throw new Error();
}
return sw.toString();
}
/**
* Returns a NodeList that contains the same nodes as this node list.
* @return A clone of this list.
* @throws CloneNotSupportedException if the contained list's class does
* not have an accessible no-arg constructor.
*/
public Object clone()
throws CloneNotSupportedException
{
NodeList clonedList = (NodeList)super.clone();
clonedList.cloneNodes();
return clonedList;
}
private void cloneNodes()
throws CloneNotSupportedException
{
Class listClass = nodes.getClass();
try
{
List clonedNodes = (List)listClass.newInstance();
clonedNodes.addAll(nodes);
nodes = clonedNodes;
}
catch(IllegalAccessException e)
{
throw new CloneNotSupportedException("Cannot clone NodeList since"
+ " there is no accessible no-arg constructor on class "
+ listClass.getName());
}
catch(InstantiationException e)
{
// Cannot happen as listClass represents a concrete, non-primitive,
// non-array, non-void class - there's an instance of it in "nodes"
// which proves these assumptions.
throw new Error();
}
}
/**
* Returns the hash code of the contained list.
* @return The hashcode of the list.
*/
public int hashCode()
{
return nodes.hashCode();
}
/**
* Tests for equality with another object.
* @param o the object to test for equality
* @return true if the other object is also a NodeList and their contained
* {@link List} objects evaluate as equals.
*/
public boolean equals(Object o)
{
return o instanceof NodeList
? ((NodeList)o).nodes.equals(nodes)
: false;
}
/**
* Applies an XPath expression to the node list and returns the resulting
* node list. In order for this method to work, your application must have
* access to <a href="http://code.werken.com">werken.xpath</a> library
* classes. The implementation does cache the parsed format of XPath
* expressions in a weak hash map, keyed by the string representation of
* the XPath expression. As the string object passed as the argument is
* usually kept in the parsed template, this ensures that each XPath
* expression is parsed only once during the lifetime of the template that
* first invoked it.
* @param xpathString the XPath expression you wish to apply
* @return a NodeList representing the nodes that are the result of
* application of the XPath to the current node list. It can be empty.
*/
public NodeList selectNodes(String xpathString)
{
return new NodeList(XPathCache.getXPath(xpathString).applyTo(nodes), false);
}
// List methods implemented hereafter
/**
* @see java.util.List#add(java.lang.Object)
*/
public boolean add(Object o)
{
return nodes.add(o);
}
/**
* @see java.util.List#add(int, java.lang.Object)
*/
public void add(int index, Object o)
{
nodes.add(index, o);
}
/**
* @see java.util.List#addAll(java.util.Collection)
*/
public boolean addAll(Collection c)
{
return nodes.addAll(c);
}
/**
* @see java.util.List#addAll(int, java.util.Collection)
*/
public boolean addAll(int index, Collection c)
{
return nodes.addAll(index, c);
}
/**
* @see java.util.List#clear()
*/
public void clear()
{
nodes.clear();
}
/**
* @see java.util.List#contains(java.lang.Object)
*/
public boolean contains(Object o)
{
return nodes.contains(o);
}
/**
* @see java.util.List#containsAll(java.util.Collection)
*/
public boolean containsAll(Collection c)
{
return nodes.containsAll(c);
}
/**
* @see java.util.List#get(int)
*/
public Object get(int index)
{
return nodes.get(index);
}
/**
* @see java.util.List#indexOf(java.lang.Object)
*/
public int indexOf(Object o)
{
return nodes.indexOf(o);
}
/**
* @see java.util.List#isEmpty()
*/
public boolean isEmpty()
{
return nodes.isEmpty();
}
/**
* @see java.util.List#iterator()
*/
public Iterator iterator()
{
return nodes.iterator();
}
/**
* @see java.util.List#lastIndexOf(java.lang.Object)
*/
public int lastIndexOf(Object o)
{
return nodes.lastIndexOf(o);
}
/**
* @see java.util.List#listIterator()
*/
public ListIterator listIterator()
{
return nodes.listIterator();
}
/**
* @see java.util.List#listIterator(int)
*/
public ListIterator listIterator(int index)
{
return nodes.listIterator(index);
}
/**
* @see java.util.List#remove(int)
*/
public Object remove(int index)
{
return nodes.remove(index);
}
/**
* @see java.util.List#remove(java.lang.Object)
*/
public boolean remove(Object o)
{
return nodes.remove(o);
}
/**
* @see java.util.List#removeAll(java.util.Collection)
*/
public boolean removeAll(Collection c)
{
return nodes.removeAll(c);
}
/**
* @see java.util.List#retainAll(java.util.Collection)
*/
public boolean retainAll(Collection c)
{
return nodes.retainAll(c);
}
/**
* @see java.util.List#set(int, java.lang.Object)
*/
public Object set(int index, Object o)
{
return nodes.set(index, o);
}
/**
* @see java.util.List#size()
*/
public int size()
{
return nodes.size();
}
/**
* @see java.util.List#subList(int, int)
*/
public List subList(int fromIndex, int toIndex)
{
return new NodeList(nodes.subList(fromIndex, toIndex));
}
/**
* @see java.util.List#toArray()
*/
public Object[] toArray()
{
return nodes.toArray();
}
/**
* @see java.util.List#toArray(java.lang.Object[])
*/
public Object[] toArray(Object[] a)
{
return nodes.toArray(a);
}
/**
* A special subclass of XMLOutputter that will be used to output
* Attribute nodes. As a subclass of XMLOutputter it can use its protected
* method escapeAttributeEntities() to serialize the attribute
* appropriately.
*/
private static final class AttributeXMLOutputter extends XMLOutputter
{
/**
* @param attribute
* @param out
* @throws IOException
*/
public void output(Attribute attribute, Writer out)
throws IOException
{
out.write(" ");
out.write(attribute.getQualifiedName());
out.write("=");
out.write("\"");
out.write(escapeAttributeEntities(attribute.getValue()));
out.write("\"");
}
}
}
| [
"[email protected]"
] | |
c19d25a3092b6d6a27c57ac9e27d4e5606e7c109 | 42c6b3676bb3f3e228555ef89ce937d0269d75aa | /app/src/main/java/com/qixiu/newoulingzhu/mvp/view/fragment/home/caculator/TrafficFragment.java | ea356917ca779077f861a0d9655d36bcf4654375 | [] | no_license | q37141826/new_wangchang | 61ee67af4ab07cf24e897e5d0848d74e091ba3f2 | 252a5418759e8d5d3d2369ff24eac7382bc5ffc2 | refs/heads/master | 2020-04-03T14:03:17.847515 | 2019-04-01T03:43:46 | 2019-04-01T03:44:46 | 155,309,950 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 6,080 | java | package com.qixiu.newoulingzhu.mvp.view.fragment.home.caculator;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
import com.qixiu.newoulingzhu.mvp.view.activity.home.caculator.PopAddress;
import com.qixiu.newoulingzhu.mvp.view.activity.home.caculator.PopInjury;
import com.qixiu.newoulingzhu.mvp.view.activity.home.caculator.PopRegist;
import com.qixiu.newoulingzhu.mvp.view.activity.home.caculator.result.TrafficResultActivity;
import com.qixiu.newoulingzhu.mvp.view.activity.home.caculator.result.beans.HeadBean;
import com.qixiu.newoulingzhu.mvp.view.fragment.base.BaseFragment;
import com.qixiu.newoulingzhu.utils.ToastUtil;
import com.qixiu.qixiu.request.OKHttpRequestModel;
import com.qixiu.qixiu.request.OKHttpUIUpdataListener;
import com.qixiu.qixiu.request.bean.C_CodeBean;
import com.qixiu.wanchang.R;
import com.qixiu.wigit.myedittext.MyEditTextView;
import java.util.HashMap;
import java.util.Map;
import butterknife.BindView;
import butterknife.ButterKnife;
import butterknife.OnClick;
import butterknife.Unbinder;
import okhttp3.Call;
/**
* Created by my on 2018/9/3.
*/
public class TrafficFragment extends BaseFragment implements OKHttpUIUpdataListener {
OKHttpRequestModel okHttpRequestModel = new OKHttpRequestModel(this);
@BindView(R.id.textViewAdrees)
TextView textViewAdrees;
@BindView(R.id.textViewRegiste)
TextView textViewRegiste;
@BindView(R.id.textViewInjury)
TextView textViewInjury;
@BindView(R.id.ediitextAge)
MyEditTextView ediitextAge;
@BindView(R.id.btnCalculation)
Button btnCalculation;
@BindView(R.id.btnReset)
Button btnReset;
Unbinder unbinder;
private PopAddress popAddress;
private PopInjury popInjury;
private String addressId, injuryId;
private PopRegist popRegist;
private String registeType;
private String address, level, regist, age;
@Override
protected void onInitData() {
popAddress = new PopAddress(getContext(), new PopAddress.OnItemClickListenner() {
@Override
public void onItemClick(PopAddress.ProvicesBean.OBean data) {
textViewAdrees.setText("选择地区:" + " " + data.getProvince());
address = data.getProvince();
addressId = data.getId();
}
});
popInjury = new PopInjury(getContext(), new PopInjury.OnItemClickListenner() {
@Override
public void onItemClick(PopInjury.InjuryBean.OBean data) {
textViewInjury.setText("伤残等级:" + " " + data.getName());
level = data.getName();
injuryId = data.getType();
}
});
popRegist = new PopRegist(getContext(), new PopRegist.OnItemClickListenner() {
@Override
public void onItemClick(PopRegist.RegisteBean data) {
textViewRegiste.setText("选择户口:" + " " + data.getName());
registeType = data.getType();
regist = data.getName();
}
});
}
@Override
protected void onInitView(View view) {
}
@Override
protected int getLayoutResource() {
return R.layout.item_fragment_traffic;
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
// TODO: inflate a fragment view
View rootView = super.onCreateView(inflater, container, savedInstanceState);
unbinder = ButterKnife.bind(this, rootView);
return rootView;
}
@Override
public void onDestroyView() {
super.onDestroyView();
unbinder.unbind();
}
@OnClick({R.id.textViewAdrees, R.id.textViewRegiste, R.id.textViewInjury, R.id.btnCalculation, R.id.btnReset})
public void onViewClicked(View view) {
switch (view.getId()) {
case R.id.textViewAdrees:
popAddress.requstPop();
break;
case R.id.textViewRegiste:
popRegist.requstPop();
break;
case R.id.textViewInjury:
popInjury.requstPop();
break;
case R.id.btnCalculation:
Map<String, String> map = new HashMap<>();
if (TextUtils.isEmpty(addressId)) {
ToastUtil.toast("请选择地区");
return;
}
if (TextUtils.isEmpty(injuryId)) {
ToastUtil.toast("请选择伤残等级");
return;
}
if (TextUtils.isEmpty(registeType)) {
ToastUtil.toast("请选择户口");
return;
}
if (TextUtils.isEmpty(ediitextAge.getText().toString())) {
ToastUtil.toast("请填写年龄");
return;
}
HeadBean headBean = new HeadBean(address, addressId, level, injuryId,
ediitextAge.getText().toString().trim(), regist, registeType);
TrafficResultActivity.start(getContext(), headBean);
break;
case R.id.btnReset:
reset();
break;
}
}
public void reset() {
try {
addressId = "";
injuryId = "";
registeType = "";
address = "";
textViewRegiste.setText("选择户口:");
textViewInjury.setText("伤残等级:");
textViewAdrees.setText("选择地区:");
ediitextAge.setText("");
} catch (Exception e) {
}
}
@Override
public void onSuccess(Object data, int i) {
}
@Override
public void onError(Call call, Exception e, int i) {
}
@Override
public void onFailure(C_CodeBean c_codeBean) {
}
}
| [
"[email protected]"
] | |
df4a2f9613471ccabd1bf2aa48dd61cf24c1b49a | caa5168f469bce57918694f3fb59853a424405c4 | /src/main/java/com/cyberway/spring_boot_starter_cqrs/domain/EventListenerHandle.java | 8a5bfeaec8b0cac4eefbaa181415a7488a1664d8 | [] | no_license | kanouken/springboot-starter-cqrs | e14f2e66f30b1c5196b47583344992efafcecb31 | 829d31116e29b3c6f41321ad7ab990ab04817999 | refs/heads/master | 2020-05-09T20:09:01.393168 | 2019-04-15T02:37:02 | 2019-04-15T02:37:02 | 181,396,732 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 497 | java | package com.cyberway.spring_boot_starter_cqrs.domain;
import java.util.List;
public class EventListenerHandle {
private Class<? extends Object> clazz;
public Class<? extends Object> getClazz() {
return clazz;
}
public void setClazz(Class<? extends Object> clazz) {
this.clazz = clazz;
}
List<EventHandleMethod> methods;
public List<EventHandleMethod> getMethods() {
return methods;
}
public void setMethods(List<EventHandleMethod> methods) {
this.methods = methods;
}
}
| [
"[email protected]"
] | |
b06bf7b79f9c083d0933eceb38e2a18f8a6d84f8 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/18/18_f4821f94fe54cc728f478e5e0aebab7611015c53/LauncherModel/18_f4821f94fe54cc728f478e5e0aebab7611015c53_LauncherModel_t.java | ed9228a4cd7d4cbe250f716d02921ab369ba3bd9 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 5,744 | java | package com.dympy.endless.home;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import android.annotation.SuppressLint;
import android.app.Application;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProviderInfo;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import com.dympy.endless.home.apps.AppData;
import com.dympy.endless.home.screen.Screen;
import com.dympy.endless.home.screen.ScreenItem;
public class LauncherModel extends Application {
// private static String TAG = "LAUNCHERMODEL_DEBUG";
private ArrayList<AppData> appsArray;
private List<AppWidgetProviderInfo> widgetsArray;
private ArrayList<Screen> screenArray;
public AppWidgetManager widgetManager;
public boolean hasLoadedApps = false;
private Boolean firstTime = null;
private DatabaseHandler db;
@Override
public void onCreate() {
initVars();
populateApps();
populateWidgets();
populateWorkspaces();
// TODO: Add the broadcast receiver for new or removed apps
super.onCreate();
}
/*
* Initializing functions
*/
private void initVars() {
appsArray = new ArrayList<AppData>();
screenArray = new ArrayList<Screen>();
db = new DatabaseHandler(this);
}
/*
* Populate functions
*/
private void populateApps() {
final PackageManager pm = getPackageManager();
List<ResolveInfo> packages = pm.queryIntentActivities(
new Intent(Intent.ACTION_MAIN, null)
.addCategory(Intent.CATEGORY_LAUNCHER), 0);
for (ResolveInfo info : packages) {
AppData temp = new AppData();
temp.setAppName(info.loadLabel(pm).toString());
temp.setAppIcon(info.loadIcon(pm));
temp.setPackageName(info.activityInfo.applicationInfo.packageName);
temp.setActivityName(info.activityInfo.name);
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
| Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
intent.setComponent(new ComponentName(
info.activityInfo.applicationInfo.packageName,
info.activityInfo.name));
temp.setAppIntent(intent);
addApp(temp);
}
sortApps();
hasLoadedApps = true;
}
private void populateWidgets() {
widgetManager = AppWidgetManager.getInstance(this);
widgetsArray = widgetManager.getInstalledProviders();
sortWidgets();
}
private void populateWorkspaces() {
if (isFirstTime()) {
Screen mainScreen = new Screen();
mainScreen.setName("Main");
addScreen(mainScreen);
}
screenArray = db.getScreens();
}
/*
* App functions
*/
public void addApp(AppData app) {
appsArray.add(app);
}
public ArrayList<AppData> getApps() {
return appsArray;
}
public void sortApps() {
Collections.sort(appsArray, new AppComporator());
}
public AppData getApp(String packageName, String activityName) {
for (int i = 0; i < appsArray.size(); i++) {
if (appsArray.get(i).getPackageName().equals(packageName)
&& appsArray.get(i).getActivityName().equals(activityName)) {
return appsArray.get(i);
}
}
return null;
}
public class AppComporator implements Comparator<AppData> {
@SuppressLint("DefaultLocale")
@Override
public int compare(AppData o1, AppData o2) {
return (o1.getAppName().toLowerCase()).compareTo(o2.getAppName()
.toLowerCase());
}
}
/*
* Widget functions
*/
public List<AppWidgetProviderInfo> getWidgets() {
return widgetsArray;
}
public void sortWidgets() {
Collections.sort(widgetsArray, new WidgetComporator());
}
public class WidgetComporator implements Comparator<AppWidgetProviderInfo> {
@SuppressLint("DefaultLocale")
@Override
public int compare(AppWidgetProviderInfo o1, AppWidgetProviderInfo o2) {
return (o1.label.toLowerCase()).compareTo(o2.label.toLowerCase());
}
}
/*
* Screen functions
*/
public Screen getScreen(int screenID) {
return screenArray.get(screenID);
}
public int getScreenArraySize() {
return screenArray.size();
}
public void addScreen(Screen temp) {
screenArray.add(temp);
db.addScreen(temp);
}
public void updateScreen(Screen temp) {
// TODO: Find the Screen in the Screen array and update the values that
// are different (position and name)
db.updateScreen(temp);
}
/*
* ScreenItem functions
*/
public void addScreenItem(ScreenItem item) {
screenArray.get(item.getScreenID() - 1).addItem(item);
db.addScreenItem(item);
// TODO: Change this?
screenArray.get(item.getScreenID() - 1).refreshContent();
}
public void removeScreenItem(ScreenItem item) {
screenArray.get(item.getScreenID() - 1).removeItem(item);
db.removeScreenItem(item);
// TODO: Change this?
screenArray.get(item.getScreenID() - 1).refreshContent();
}
public void updateScreenItem(ScreenItem item) {
// TODO: Find the ScreenItem in the Screen array and update it's content
db.updateScreenItem(item);
}
/*
* Other functions
*/
private boolean isFirstTime() {
if (firstTime == null) {
SharedPreferences mPreferences = this.getSharedPreferences(
"first_time", Context.MODE_PRIVATE);
firstTime = mPreferences.getBoolean("firstTime", true);
if (firstTime) {
SharedPreferences.Editor editor = mPreferences.edit();
editor.putBoolean("firstTime", false);
editor.commit();
}
}
return firstTime;
}
}
| [
"[email protected]"
] | |
90c656a39182f7376a85276921223a83ddcee41c | 2c444f33be21ea517a6b4be41a4d5ce9f18bdf6c | /simple-test/src/main/java/com/pt/spi/test/Car.java | 4a38710168cd40bcbd0104a4a8ea2ae34b36115c | [] | no_license | tonypengtao/test | be85c97893f7d2409d371ff30da1ba5e4275ea0c | cae19a10b1d1fd59b8a0f9ce99da962d26168a08 | refs/heads/master | 2022-08-03T22:18:52.273355 | 2022-02-25T01:50:03 | 2022-02-25T01:50:03 | 189,513,003 | 1 | 0 | null | 2022-07-15T21:09:50 | 2019-05-31T02:22:48 | Java | UTF-8 | Java | false | false | 136 | java | package com.pt.spi.test;
public class Car implements IRun {
@Override
public void run() {
System.out.println("car run...");
}
}
| [
"[email protected]"
] | |
ae5d2a02af623f13bc7006c35c59eca7844cc8c1 | 78022b8b2835562c4359084b0e3c609367752abe | /src/test/NewViewPage.java | d46f848f805e89bad5b01b733f1565d2bba1174f | [] | no_license | cxu123/turbulent-octo-kumquat | f1407a5cb3148bcf12cf96ee3c025cd79a7cc8dd | e74201df3fa2724586baf113dddb02a977994214 | refs/heads/master | 2016-08-11T14:27:53.781239 | 2015-09-27T09:07:28 | 2015-09-27T09:07:28 | 43,241,192 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 419 | java | package test;
import android.content.Context;
import android.support.v4.view.ViewPager;
public class NewViewPage extends ViewPager {
public NewViewPage(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
@Override
public void setCurrentItem(int item, boolean smoothScroll) {
// TODO Auto-generated method stub
super.setCurrentItem(item, smoothScroll);
}
}
| [
"[email protected]"
] | |
e186efe89bc0fc6caeba57f5e00e462871325403 | b780c6d51def4f6631535d5751fc2b1bc40072c7 | /generated_patches/traccar/mc/2021-02-25T12:04:01.246/209.java | 40d2a730b993039be5be90f8edf99b0117e2cc51 | [] | no_license | FranciscoRibeiro/bugswarm-case-studies | 95fad7a9b3d78fcdd2d3941741163ad73e439826 | b2fb9136c3dcdd218b80db39a8a1365bf0842607 | refs/heads/master | 2023-07-08T05:27:27.592054 | 2021-08-19T17:27:54 | 2021-08-19T17:27:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,936 | java | package org.traccar.protocol;
import java.net.SocketAddress;
import java.nio.ByteOrder;
import java.nio.charset.Charset;
import java.util.Calendar;
import java.util.Date;
import java.util.TimeZone;
import org.jboss.netty.buffer.ChannelBuffer;
import org.jboss.netty.buffer.ChannelBuffers;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelHandlerContext;
import org.traccar.BaseProtocolDecoder;
import org.traccar.helper.Crc;
import org.traccar.helper.UnitsConverter;
import org.traccar.model.Event;
import org.traccar.model.Position;
public class CastelProtocolDecoder extends BaseProtocolDecoder {
public CastelProtocolDecoder(String protocol) {
super(protocol);
}
private static final short MSG_LOGIN = 0x1001;
private static final short MSG_LOGIN_RESPONSE = (short) 0x9001;
private static final short MSG_HEARTBEAT = 0x1003;
private static final short MSG_HEARTBEAT_RESPONSE = (short) 0x9003;
private static final short MSG_GPS = 0x4001;
@Override
protected Object decode(ChannelHandlerContext ctx, Channel channel, SocketAddress remoteAddress, Object msg) throws Exception {
ChannelBuffer buf = (ChannelBuffer) msg;
// header
buf.skipBytes(2);
// length
buf.readUnsignedShort();
int version = buf.readUnsignedByte();
ChannelBuffer id = buf.readBytes(20);
int type = ChannelBuffers.swapShort(buf.readShort());
if (type == MSG_HEARTBEAT) {
if (channel != null) {
ChannelBuffer response = ChannelBuffers.directBuffer(ByteOrder.LITTLE_ENDIAN, 31);
response.writeByte(0x40);
response.writeByte(0x40);
response.writeShort(response.capacity());
response.writeByte(version);
response.writeBytes(id);
response.writeShort(ChannelBuffers.swapShort(MSG_HEARTBEAT_RESPONSE));
response.writeShort(Crc.crc16Ccitt(response.toByteBuffer(0, response.writerIndex())));
response.writeByte(0x0D);
response.writeByte(0x0A);
channel.write(response, remoteAddress);
}
} else if (type == MSG_LOGIN || type == MSG_GPS) {
Position position = new Position();
position.setDeviceId(getDeviceId());
position.setProtocol(getProtocol());
if (!identify(id.toString(Charset.defaultCharset()))) {
return null;
} else if (type == MSG_LOGIN) {
if (channel == null) {
ChannelBuffer response = ChannelBuffers.directBuffer(ByteOrder.LITTLE_ENDIAN, 41);
response.writeByte(0x40);
response.writeByte(0x40);
response.writeShort(response.capacity());
response.writeByte(version);
response.writeBytes(id);
response.writeShort(ChannelBuffers.swapShort(MSG_LOGIN_RESPONSE));
response.writeInt(0xFFFFFFFF);
response.writeShort(0);
response.writeInt((int) (new Date().getTime() / 1000));
response.writeShort(Crc.crc16Ccitt(response.toByteBuffer(0, response.writerIndex())));
response.writeByte(0x0D);
response.writeByte(0x0A);
channel.write(response, remoteAddress);
}
}
if (type == MSG_GPS) {
// historical
buf.readUnsignedByte();
}
// ACC ON time
buf.readUnsignedInt();
// UTC time
buf.readUnsignedInt();
position.set(Event.KEY_ODOMETER, buf.readUnsignedInt());
// trip odometer
buf.readUnsignedInt();
// total fuel consumption
buf.readUnsignedInt();
// current fuel consumption
buf.readUnsignedShort();
position.set(Event.KEY_STATUS, buf.readUnsignedInt());
buf.skipBytes(8);
// count
buf.readUnsignedByte();
// Date and time
Calendar time = Calendar.getInstance(TimeZone.getTimeZone("UTC"));
time.clear(0);
time.set(Calendar.DAY_OF_MONTH, buf.readUnsignedByte());
time.set(Calendar.MONTH, buf.readUnsignedByte() - 1);
time.set(Calendar.YEAR, 2000 + buf.readUnsignedByte());
time.set(Calendar.HOUR_OF_DAY, buf.readUnsignedByte());
time.set(Calendar.MINUTE, buf.readUnsignedByte());
time.set(Calendar.SECOND, buf.readUnsignedByte());
position.setTime(time.getTime());
double lat = buf.readUnsignedInt() / 3600000.0;
double lon = buf.readUnsignedInt() / 3600000.0;
position.setSpeed(UnitsConverter.knotsFromKph(buf.readUnsignedShort()));
position.setCourse(buf.readUnsignedShort());
int flags = buf.readUnsignedByte();
position.setLatitude((flags & 0x01) == 0 ? -lat : lat);
position.setLongitude((flags & 0x02) == 0 ? -lon : lon);
position.setValid((flags & 0x0C) > 0);
position.set(Event.KEY_SATELLITES, flags >> 4);
return position;
}
return null;
}
}
| [
"[email protected]"
] | |
1b6aaed6b1e6f76e5e731a5470b8e63400cf4ff6 | ddcc8d54832833926909d0b1b65f65b21d9ab1c3 | /CustomerRelationshipManagement/crm_zhaiJinHeng/src/com/crm/dao/IReceivablesDao.java | ac7cf4ef96bf04267b4640902a3202ed2a304f14 | [] | no_license | xhuanghun/JavaTour | 20bc8864f1a88586f95b2e1ad400e4d58636a5d6 | 708c51fa0e605dabb3d78e8d075d2ba225e1a1cd | refs/heads/master | 2021-01-24T18:37:56.057425 | 2016-12-10T15:45:05 | 2016-12-10T15:45:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 678 | java | package com.crm.dao;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.crm.model.Receivables;
public interface IReceivablesDao {
/**
* 分页查询商品类别列表
* @param from
* @param pageSize
* @return
*/
public List<Receivables> findReceivables(@Param("from")int from, @Param("pageSize")int pageSize);
/**
* 查询总记录数
* @return
*/
public int countReceivables();
/**
* 获得所有的应收款项列表
* @return
*/
public List<Receivables> findAllReceivables();
/**
* 新建应收款项页面
* @param receivables
*/
public void addReceivables(@Param("receivables")Receivables receivables);
}
| [
"[email protected]"
] | |
650385840761fc24faf3b14a0841d3e23ef59be0 | 0b94924326b62fc7e6f9e9f1549146d2b0d34d6c | /Counting/Main.java | 0bb9c31bfc3c2cb4368ccba9a5aa689b233a9fba | [] | no_license | Miluuu19/Playground | d826564b62a25d23425c95de80348c5a8f294b14 | cec76d6e9463ac6535890773069a8a0a541df8ed | refs/heads/master | 2021-05-24T18:57:33.139313 | 2020-05-29T04:25:03 | 2020-05-29T04:25:03 | 253,707,068 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 831 | java | #include<iostream>
#include<string.h>
using namespace std;
int main()
{
char str[200];
int v=0,c=0,w=0,d=0,s=0;
cin.get(str,200);
for(int i=0;i<strlen(str);i++){
char temp=str[i];
if(temp=='a'||temp=='e'||temp=='i'||temp=='o'||temp=='u'||temp=='A'||temp=='E'||temp=='I'||temp=='O'||temp=='U')
v++;
else if((!(temp=='a'||temp=='e'||temp=='i'||temp=='o'||temp=='u'||temp=='A'||temp=='E'||temp=='I'||temp=='O'||temp=='U'))&&((temp>=65&&temp<=90)||(temp>=97&&temp<=122)))
c++;
if(temp==32)
w++;
if(temp>=48&&temp<=57)
d++;
if(!((temp>=65&&temp<=90)||(temp>=97&&temp<=122)||(temp>=48&&temp<=57)||temp==32))
s++;
}
cout<<"Vowels:"<<v<<"\n";
cout<<"Consonants:"<<c<<"\n";
cout<<"White Spaces:"<<w<<"\n";
cout<<"Digits:"<<d<<"\n";
cout<<"Symbols:"<<s<<"\n";
} | [
"[email protected]"
] | |
b22ccd312454224b344414bffb2dcd5f814428b8 | 9d49cbd54990e2e0c7f10741fbd9dc3e640e01ad | /sma-store-service/src/main/java/store/StoreServiceApplication.java | 65b6a2e279bbecd06b7ca84104312a84879bea33 | [] | no_license | adi-consulting/SMA-store | 1638ba4891d04535f1b35e1cc021e244c4855f7f | 8dc4948c04b8f3682bf8f93abad6b214bae28d51 | refs/heads/main | 2023-07-25T12:13:32.200716 | 2023-07-10T20:59:48 | 2023-07-10T20:59:48 | 306,843,526 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 576 | java | package store;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
@EnableDiscoveryClient
@SpringBootApplication
public class StoreServiceApplication implements CommandLineRunner {
public static void main(String[] args){
SpringApplication.run(StoreServiceApplication.class, args);
}
@Override
public void run(String... args) throws Exception {
}
}
| [
"[email protected]"
] | |
2efb9b5f72b6b40ba479f033667f351e8908222b | 58dc25bdad9ed995560749976ce8f2e36b5e31b2 | /src/test/java/rmuti/lab33333/TestArrayList.java | 4e56a83f3420f57c8edeaea6ac5d500d2cda29c2 | [] | no_license | apiches/lab3 | 672c146e82943bfad7b0814b12a11716461db55f | 19708ad478965df81b9591c66022bef3c0a71457 | refs/heads/master | 2021-08-31T03:35:44.987450 | 2017-12-20T08:23:48 | 2017-12-20T08:23:48 | 114,861,893 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 298 | java | package rmuti.lab33333;
public class TestArrayList {
public static void main(String[]args){
ArrayList lst = new ArrayList();
lst.add(0,"10");
lst.add(1,"11");
lst.add(2,"13");
lst.add(3,"15");
lst.add(4,"20");
lst.add(5,"60");
lst.add(6,"80");
System.out.println(lst);
}
}
| [
"[email protected]"
] | |
b3f813d3b249f3d9748b4ee1c1cf4080a1ff7fb4 | b07e61f16cdf293b90565fda238181c846d2fa3b | /nb-mall-develop/nb-weixin/src/main/java/com/nowbook/weixin/weixin4j/message/event/PicWeixinEventMessage.java | f4ea7969eeefc569dbe59b1dd00cc273f26c9fa2 | [] | no_license | gspandy/QTH-Server | 4d9bbb385c43a6ecb6afbecfe2aacce69f1a37b7 | 9a47cef25542feb840f6ffdebdcb79fc4c7fc57b | refs/heads/master | 2023-09-03T12:36:39.468049 | 2018-02-06T06:09:49 | 2018-02-06T06:09:49 | 123,294,108 | 0 | 1 | null | 2018-02-28T14:11:08 | 2018-02-28T14:11:07 | null | UTF-8 | Java | false | false | 948 | java | package com.nowbook.weixin.weixin4j.message.event;
import com.nowbook.weixin.weixin4j.message.EventType;
import com.nowbook.weixin.weixin4j.message.SendPicsInfo;
/**
* 自定义菜单事件
*
* 弹出微信相册发图器的事件推送
*
* @author qsyang
* @version 1.0
*/
public class PicWeixinEventMessage extends EventMessage {
//事件KEY值,与自定义菜单接口中KEY值对应
private String EventKey;
//发送的图片信息
private SendPicsInfo SendPicsInfo;
@Override
public String getEvent() {
return EventType.Pic_Sysphoto.toString();
}
public String getEventKey() {
return EventKey;
}
public void setEventKey(String EventKey) {
this.EventKey = EventKey;
}
public SendPicsInfo getSendPicsInfo() {
return SendPicsInfo;
}
public void setSendPicsInfo(SendPicsInfo SendPicsInfo) {
this.SendPicsInfo = SendPicsInfo;
}
}
| [
"[email protected]"
] | |
a47fec55c2f4535e2f1ba45863f3f557c9f65c4f | 840fa0e17f2ddf0530c05c7c8d4cd6f808710fe8 | /src/model/Quarto.java | fec28653970a258f986f883d8ef0f5b94c14512e | [] | no_license | cunhaluisg5/Prova2_Interface_Usuario | 6360cea559c7e52a31cef813af12afe207276763 | 098fe84bea1c6d4dc6ba68a83dda799a07afda9c | refs/heads/master | 2020-04-12T06:03:30.492890 | 2019-07-13T00:27:48 | 2019-07-13T00:27:48 | 162,341,201 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,011 | java |
package model;
import java.util.Calendar;
/**
*
* @author Luis Gustavo
*/
public class Quarto {
private int numero;
private String tipo;
private double valorDiaria;
private Cliente cliente;
private Calendar dataLocacao;
private int diasLocados;
public Quarto() {
}
public Quarto(int numero, String tipo, double valorDiaria, Cliente cliente, Calendar dataLocacao, int diasLocados) {
this.numero = numero;
this.tipo = tipo;
this.valorDiaria = valorDiaria;
this.cliente = cliente;
this.dataLocacao = dataLocacao;
this.diasLocados = diasLocados;
}
public int getNumero() {
return numero;
}
public void setNumero(int numero) {
this.numero = numero;
}
public String getTipo() {
return tipo;
}
public void setTipo(String tipo) {
this.tipo = tipo;
}
public double getValorDiaria() {
return valorDiaria;
}
public void setValorDiaria(double valorDiaria) {
this.valorDiaria = valorDiaria;
}
public Cliente getCliente() {
return cliente;
}
public void setCliente(Cliente cliente) {
this.cliente = cliente;
}
public Calendar getDataLocacao() {
return dataLocacao;
}
public void setDataLocacao(Calendar dataLocacao) {
this.dataLocacao = dataLocacao;
}
public int getDiasLocados() {
return diasLocados;
}
public void setDiasLocados(int diasLocados) {
this.diasLocados = diasLocados;
}
public Object saida(){
return new Object[]{
numero,
tipo,
valorDiaria,
cliente.getCpf(),
cliente.getNome(),
dataLocacao,
diasLocados
};
}
public double calculaValor(){
return diasLocados * valorDiaria;
}
}
| [
"[email protected]"
] | |
6d7b5e771423601066e0973e17417ed73d65e3d6 | 0b878b730cf56f062169c6869a249674929506df | /src/main/java/org/training/controller/filter/AbstractFilter.java | 7194ff790e1ee2f07b43e3dab0caaabc684460b3 | [] | no_license | OnishchenkoDmitriy/MyCar4New | 1f0c91abe26fc7da33c2295dfed9a5670eff253a | 5f67d095eac9077cfbad079fc8b14248d60e0d3f | refs/heads/master | 2021-05-10T16:16:23.526358 | 2018-02-15T11:05:42 | 2018-02-15T11:05:42 | 118,573,357 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,496 | java | package org.training.controller.filter;
import org.training.constant.global.Roles;
import org.training.constant.jsp.JSPPages;
import org.training.constant.jsp.RequestAttributes;
import javax.servlet.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.io.IOException;
/**
* Abstract class for all filters
* @see Filter
* @see FilterChain
*/
public abstract class AbstractFilter implements Filter {
@Override
public void init(FilterConfig filterConfig) throws ServletException {
}
@Override
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
final HttpServletRequest request = (HttpServletRequest) servletRequest;
final HttpServletResponse response = (HttpServletResponse) servletResponse;
final HttpSession session = request.getSession();
final String role = (String) session.getAttribute(RequestAttributes.ROLE);
filter(request, response, filterChain, role);
}
@Override
public void destroy() {
}
/**
* Check session attribute - role and redirect ro home page depends on user role
* @param request
* @param response
* @param role
* @throws ServletException
* @throws IOException
*/
void checkRole(HttpServletRequest request, HttpServletResponse response, String role) throws ServletException, IOException {
if (role.equalsIgnoreCase(Roles.ADMIN)) {
request.getRequestDispatcher(JSPPages.ADMIN_PAGE).forward(request, response);
} else if (role.equalsIgnoreCase(Roles.CLIENT)) {
request.getRequestDispatcher(JSPPages.CLIENT_PAGE).forward(request, response);
} else if (role.equalsIgnoreCase(Roles.DRIVER)) {
request.getRequestDispatcher(JSPPages.DRIVER_PAGE).forward(request, response);
}
}
/**
* Concrete filter logic
* @param request request
* @param response response
* @param filterChain filter chain
* @param role user role
* @throws ServletException
* @throws IOException
*/
protected abstract void filter(HttpServletRequest request,
HttpServletResponse response,
FilterChain filterChain,
String role) throws ServletException, IOException;
}
| [
"[email protected]"
] | |
f159b9f8d3d3abbe88531931fe4a5d06a8e91cf0 | 28fb9884e4b35831bbccf3ead11296bf08272173 | /estatioapp/app/src/test/java/org/estatio/module/application/integtests/capex/invoice/IncomingInvoice_complete_syncToCoda_IntegTest.java | 96036c58c40f6c8f735e86fbca86a1a34bcf748e | [
"Apache-2.0"
] | permissive | grandPiano/estatio | 1703191d57f4a784fbfa33f96cd3fe68ce66a575 | 3923f15a59fc13dff2aa181e89dbd4fa6750c107 | refs/heads/master | 2020-08-12T18:39:28.628482 | 2019-10-04T09:33:09 | 2019-10-04T09:33:09 | 214,820,841 | 1 | 0 | Apache-2.0 | 2019-10-13T13:00:55 | 2019-10-13T13:00:55 | null | UTF-8 | Java | false | false | 3,753 | java | package org.estatio.module.application.integtests.capex.invoice;
import javax.inject.Inject;
import org.joda.time.LocalDate;
import org.junit.Before;
import org.junit.Test;
import org.apache.isis.applib.fixturescripts.FixtureScript;
import org.apache.isis.applib.services.queryresultscache.QueryResultsCache;
import org.apache.isis.applib.services.sudo.SudoService;
import org.estatio.module.application.integtests.ApplicationModuleIntegTestAbstract;
import org.estatio.module.asset.fixtures.person.enums.Person_enum;
import org.estatio.module.capex.dom.invoice.IncomingInvoice;
import org.estatio.module.capex.dom.invoice.IncomingInvoiceRepository;
import org.estatio.module.capex.dom.invoice.approval.IncomingInvoiceApprovalState;
import org.estatio.module.capex.dom.invoice.approval.triggers.IncomingInvoice_complete;
import org.estatio.module.capex.fixtures.incominginvoice.enums.IncomingInvoiceNoDocument_enum;
import org.estatio.module.financial.dom.BankAccount;
import org.estatio.module.financial.fixtures.bankaccount.enums.BankAccount_enum;
import org.estatio.module.party.dom.Party;
import org.estatio.module.party.dom.role.PartyRoleTypeEnum;
import org.estatio.module.party.dom.role.PartyRoleTypeRepository;
import org.estatio.module.party.fixtures.organisation.enums.Organisation_enum;
import static org.assertj.core.api.Assertions.assertThat;
public class IncomingInvoice_complete_syncToCoda_IntegTest extends ApplicationModuleIntegTestAbstract {
Party buyer;
Party seller;
IncomingInvoice incomingInvoice;
BankAccount bankAccount;
@Before
public void setupData() {
runFixtureScript(new FixtureScript() {
@Override
protected void execute(final FixtureScript.ExecutionContext ec) {
ec.executeChildren(this,
Person_enum.CarmenIncomingInvoiceManagerIt,
IncomingInvoiceNoDocument_enum.invoiceForItaNoOrder
);
}
});
transactionService.nextTransaction();
}
@Before
public void setUp() {
buyer = Organisation_enum.HelloWorldIt.findUsing(serviceRegistry);
seller = Organisation_enum.TopModelIt.findUsing(serviceRegistry);
bankAccount = BankAccount_enum.TopModelIt.findUsing(serviceRegistry);
incomingInvoice = incomingInvoiceRepository.findByInvoiceNumberAndSellerAndInvoiceDate("12345", seller, new LocalDate(2017, 12, 20));
incomingInvoice.setBankAccount(bankAccount);
assertThat(incomingInvoice).isNotNull();
assertThat(incomingInvoice.getApprovalState()).isNotNull();
assertThat(incomingInvoice.getApprovalState()).isEqualTo(IncomingInvoiceApprovalState.NEW);
}
@Test
public void can_complete_italian_invoice() throws Exception {
// this test is to ensure that the subscriber is not blocking the Italian approval process. Can't be tested in the Capex module because it would introduce a circular dependency on the modules.
// given
queryResultsCache.resetForNextTransaction(); // workaround: clear MeService#me cache
sudoService.sudo(Person_enum.CarmenIncomingInvoiceManagerIt.getRef().toLowerCase(), (Runnable) () ->
wrap(mixin(IncomingInvoice_complete.class, incomingInvoice)).act(PartyRoleTypeEnum.INCOMING_INVOICE_MANAGER.findUsing(partyRoleTypeRepository), null, null));
assertThat(incomingInvoice.getApprovalState()).isEqualTo(IncomingInvoiceApprovalState.COMPLETED);
}
@Inject
QueryResultsCache queryResultsCache;
@Inject
SudoService sudoService;
@Inject
IncomingInvoiceRepository incomingInvoiceRepository;
@Inject
PartyRoleTypeRepository partyRoleTypeRepository;
}
| [
"[email protected]"
] | |
1f8f17390827d8d3391fc4df9a5af1de0f7c0f79 | 116c07777afe023aa9500846f2d5c5edaf9aa70a | /src/main/java/com/herokuapp/dragoncards/encoders/CreatePlayerMessageEncoder.java | 5c8cc385e37d3f7787493f23ed3b8f86f7a30a6b | [] | no_license | jacksonrayhamilton/dragoncards | 8b0f5054ffdd50cd274a67ec9622b76bdfaa2652 | fc39501a93e74b6bc93a02706b4a53ad8c245826 | refs/heads/master | 2021-01-22T13:08:19.913780 | 2014-05-12T10:15:18 | 2014-05-12T10:15:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 763 | java | package com.herokuapp.dragoncards.encoders;
import javax.json.Json;
import javax.websocket.EncodeException;
import javax.websocket.Encoder;
import javax.websocket.EndpointConfig;
import com.herokuapp.dragoncards.messages.server.CreatePlayerMessage;
public class CreatePlayerMessageEncoder implements
Encoder.Text<CreatePlayerMessage> {
@Override
public void destroy() {
}
@Override
public void init(EndpointConfig arg0) {
}
@Override
public String encode(CreatePlayerMessage message) throws EncodeException {
return Json.createObjectBuilder()
.add("toClient", "createPlayer")
.add("name", message.getPlayer().getName())
.add("uuid", message.getPlayer().getUuid())
.build()
.toString();
}
}
| [
"[email protected]"
] | |
63ca7c71c3dc02c35e235aaacf398ddb455aff48 | 825be287bd63c97249b341e89349bcda9977935b | /src/main/java/com/store/productcatalog/repository/CategoryAttributesRepository.java | 8a39bc5fe656245e1b4582aaadec12f0d223de1d | [] | no_license | shahrohan05/ProductCatalog | eebfaddd28f868b9c7ecf5d1bd54199cfe5d8992 | a8c5816e1345ddef57f63ba44fb053693d35a520 | refs/heads/master | 2023-07-17T19:22:55.259155 | 2021-08-31T06:14:28 | 2021-08-31T06:14:28 | 401,593,386 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 427 | java | package com.store.productcatalog.repository;
import java.util.List;
import org.springframework.data.jpa.repository.JpaRepository;
import com.store.productcatalog.model.CategoryAttributeId;
import com.store.productcatalog.model.CategoryAttributes;
public interface CategoryAttributesRepository extends JpaRepository<CategoryAttributes, CategoryAttributeId> {
List<CategoryAttributes> findByCategoryId(int categoryId);
}
| [
"[email protected]"
] | |
bb7b40d9e2ed8bb07119ef8e168638c7ec22483a | 243cd93e65191064859c91d9b4df9594370bdc69 | /DriveApp/DriveApp/DriveApp.Android/obj/Debug/android/android/support/coreui/R.java | 8264e47bc30f0c4f4d46fee56cc5eaf5faba4081 | [] | no_license | Meesvdhoff/DatabaseControllertest | c4dd1e4a10ff0a5771d742dd64f0b4e7f62c3c19 | 13590bcccde43ed86b369bd009f6b27197ab9a1c | refs/heads/master | 2021-08-31T04:13:52.442532 | 2017-12-20T09:50:31 | 2017-12-20T09:50:31 | 112,484,911 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 634,982 | 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.coreui;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f040000;
public static final int abc_fade_out=0x7f040001;
public static final int abc_grow_fade_in_from_bottom=0x7f040002;
public static final int abc_popup_enter=0x7f040003;
public static final int abc_popup_exit=0x7f040004;
public static final int abc_shrink_fade_out_from_bottom=0x7f040005;
public static final int abc_slide_in_bottom=0x7f040006;
public static final int abc_slide_in_top=0x7f040007;
public static final int abc_slide_out_bottom=0x7f040008;
public static final int abc_slide_out_top=0x7f040009;
public static final int design_bottom_sheet_slide_in=0x7f04000a;
public static final int design_bottom_sheet_slide_out=0x7f04000b;
public static final int design_fab_in=0x7f04000c;
public static final int design_fab_out=0x7f04000d;
public static final int design_snackbar_in=0x7f04000e;
public static final int design_snackbar_out=0x7f04000f;
}
public static final class animator {
public static final int design_appbar_state_list_animator=0x7f050000;
}
public static final class attr {
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarDivider=0x7f01005f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarItemBackground=0x7f010060;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarPopupTheme=0x7f010059;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int actionBarSize=0x7f01005e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarSplitStyle=0x7f01005b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarStyle=0x7f01005a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f010055;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabStyle=0x7f010054;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=0x7f010056;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTheme=0x7f01005c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarWidgetTheme=0x7f01005d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionButtonStyle=0x7f01007a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionDropDownStyle=0x7f010076;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionLayout=0x7f0100cc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionMenuTextAppearance=0x7f010061;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int actionMenuTextColor=0x7f010062;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeBackground=0x7f010065;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=0x7f010064;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseDrawable=0x7f010067;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCopyDrawable=0x7f010069;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCutDrawable=0x7f010068;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeFindDrawable=0x7f01006d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePasteDrawable=0x7f01006a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePopupWindowStyle=0x7f01006f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=0x7f01006b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeShareDrawable=0x7f01006c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSplitBackground=0x7f010066;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeStyle=0x7f010063;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeWebSearchDrawable=0x7f01006e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=0x7f010057;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowMenuStyle=0x7f010058;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionProviderClass=0x7f0100ce;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionViewClass=0x7f0100cd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int activityChooserViewStyle=0x7f010082;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogButtonGroupStyle=0x7f0100a7;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alertDialogCenterButtons=0x7f0100a8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogStyle=0x7f0100a6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogTheme=0x7f0100a9;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int allowStacking=0x7f0100bc;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alpha=0x7f0100bd;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowHeadLength=0x7f0100c4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowShaftLength=0x7f0100c5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=0x7f0100ae;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int background=0x7f010028;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundSplit=0x7f01002a;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundStacked=0x7f010029;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int backgroundTint=0x7f010101;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int backgroundTintMode=0x7f010102;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int barLength=0x7f0100c6;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_autoHide=0x7f01012c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_hideable=0x7f010109;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_overlapTop=0x7f010135;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
*/
public static final int behavior_peekHeight=0x7f010108;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_skipCollapsed=0x7f01010a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int borderWidth=0x7f01012a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int borderlessButtonStyle=0x7f01007f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetDialogTheme=0x7f010124;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetStyle=0x7f010125;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarButtonStyle=0x7f01007c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNegativeButtonStyle=0x7f0100ac;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNeutralButtonStyle=0x7f0100ad;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarPositiveButtonStyle=0x7f0100ab;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarStyle=0x7f01007b;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
*/
public static final int buttonGravity=0x7f0100f6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonPanelSideLayout=0x7f01003d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyle=0x7f0100af;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyleSmall=0x7f0100b0;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int buttonTint=0x7f0100be;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int buttonTintMode=0x7f0100bf;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardBackgroundColor=0x7f010011;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardCornerRadius=0x7f010012;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardElevation=0x7f010013;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardMaxElevation=0x7f010014;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardPreventCornerOverlap=0x7f010016;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardUseCompatPadding=0x7f010015;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkboxStyle=0x7f0100b1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkedTextViewStyle=0x7f0100b2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeIcon=0x7f0100d9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeItemLayout=0x7f01003a;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int collapseContentDescription=0x7f0100f8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapseIcon=0x7f0100f7;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int collapsedTitleGravity=0x7f010117;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapsedTitleTextAppearance=0x7f010111;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int color=0x7f0100c0;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorAccent=0x7f01009e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorBackgroundFloating=0x7f0100a5;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorButtonNormal=0x7f0100a2;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlActivated=0x7f0100a0;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlHighlight=0x7f0100a1;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlNormal=0x7f01009f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimary=0x7f01009c;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimaryDark=0x7f01009d;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorSwitchThumbNormal=0x7f0100a3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int commitIcon=0x7f0100de;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEnd=0x7f010033;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEndWithActions=0x7f010037;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetLeft=0x7f010034;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetRight=0x7f010035;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStart=0x7f010032;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStartWithNavigation=0x7f010036;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPadding=0x7f010017;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingBottom=0x7f01001b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingLeft=0x7f010018;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingRight=0x7f010019;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingTop=0x7f01001a;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentScrim=0x7f010112;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int controlBackground=0x7f0100a4;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterEnabled=0x7f01014b;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterMaxLength=0x7f01014c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterOverflowTextAppearance=0x7f01014e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterTextAppearance=0x7f01014d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int customNavigationLayout=0x7f01002b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int defaultQueryHint=0x7f0100d8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dialogPreferredPadding=0x7f010074;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dialogTheme=0x7f010073;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
*/
public static final int displayOptions=0x7f010021;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int divider=0x7f010027;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerHorizontal=0x7f010081;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dividerPadding=0x7f0100ca;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerVertical=0x7f010080;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int drawableSize=0x7f0100c2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int drawerArrowStyle=0x7f01001c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dropDownListViewStyle=0x7f010093;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dropdownListPreferredItemHeight=0x7f010077;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextBackground=0x7f010088;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int editTextColor=0x7f010087;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextStyle=0x7f0100b3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int elevation=0x7f010038;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int errorEnabled=0x7f010149;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int errorTextAppearance=0x7f01014a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f01003c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expanded=0x7f010103;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int expandedTitleGravity=0x7f010118;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMargin=0x7f01010b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginBottom=0x7f01010f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginEnd=0x7f01010e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginStart=0x7f01010c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginTop=0x7f01010d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandedTitleTextAppearance=0x7f010110;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int externalRouteEnabledDrawable=0x7f010010;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fabSize=0x7f010128;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int foregroundInsidePadding=0x7f01012d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int gapBetweenBars=0x7f0100c3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int goIcon=0x7f0100da;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int headerLayout=0x7f010133;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int height=0x7f01001d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hideOnContentScroll=0x7f010031;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintAnimationEnabled=0x7f01014f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintEnabled=0x7f010148;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int hintTextAppearance=0x7f010147;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeAsUpIndicator=0x7f010079;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeLayout=0x7f01002c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int icon=0x7f010025;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int iconifiedByDefault=0x7f0100d6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int imageButtonStyle=0x7f010089;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int indeterminateProgressStyle=0x7f01002e;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int initialActivityCount=0x7f01003b;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int insetForeground=0x7f010134;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int isLightTheme=0x7f01001e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemBackground=0x7f010131;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemIconTint=0x7f01012f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemPadding=0x7f010030;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemTextAppearance=0x7f010132;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemTextColor=0x7f010130;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int keylines=0x7f01011c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout=0x7f0100d5;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layoutManager=0x7f010000;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout_anchor=0x7f01011f;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int layout_anchorGravity=0x7f010121;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_behavior=0x7f01011e;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int layout_collapseMode=0x7f01011a;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_collapseParallaxMultiplier=0x7f01011b;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
*/
public static final int layout_dodgeInsetEdges=0x7f010123;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int layout_insetEdge=0x7f010122;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_keyline=0x7f010120;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
*/
public static final int layout_scrollFlags=0x7f010106;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout_scrollInterpolator=0x7f010107;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listChoiceBackgroundIndicator=0x7f01009b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listDividerAlertDialog=0x7f010075;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listItemLayout=0x7f010041;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listLayout=0x7f01003e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listMenuViewStyle=0x7f0100bb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listPopupWindowStyle=0x7f010094;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeight=0x7f01008e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x7f010090;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightSmall=0x7f01008f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingLeft=0x7f010091;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingRight=0x7f010092;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int logo=0x7f010026;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int logoDescription=0x7f0100fb;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxActionInlineWidth=0x7f010136;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxButtonHeight=0x7f0100f5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int measureWithLargestChild=0x7f0100c8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteAudioTrackDrawable=0x7f010004;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteButtonStyle=0x7f010005;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteCloseDrawable=0x7f010006;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteControlPanelThemeOverlay=0x7f010007;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteDefaultIconDrawable=0x7f010008;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRoutePauseDrawable=0x7f010009;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRoutePlayDrawable=0x7f01000a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteSpeakerGroupIconDrawable=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteSpeakerIconDrawable=0x7f01000c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteStopDrawable=0x7f01000d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteTheme=0x7f01000e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int mediaRouteTvIconDrawable=0x7f01000f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int menu=0x7f01012e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int multiChoiceItemLayout=0x7f01003f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int navigationContentDescription=0x7f0100fa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int navigationIcon=0x7f0100f9;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int navigationMode=0x7f010020;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int overlapAnchor=0x7f0100d1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingBottomNoButtons=0x7f0100d3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingEnd=0x7f0100ff;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingStart=0x7f0100fe;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingTopNoTitle=0x7f0100d4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelBackground=0x7f010098;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelMenuListTheme=0x7f01009a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int panelMenuListWidth=0x7f010099;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleContentDescription=0x7f010152;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int passwordToggleDrawable=0x7f010151;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleEnabled=0x7f010150;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleTint=0x7f010153;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int passwordToggleTintMode=0x7f010154;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupMenuStyle=0x7f010085;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupTheme=0x7f010039;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupWindowStyle=0x7f010086;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int preserveIconSpacing=0x7f0100cf;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int pressedTranslationZ=0x7f010129;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int progressBarPadding=0x7f01002f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int progressBarStyle=0x7f01002d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int queryBackground=0x7f0100e0;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int queryHint=0x7f0100d7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int radioButtonStyle=0x7f0100b4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyle=0x7f0100b5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleIndicator=0x7f0100b6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleSmall=0x7f0100b7;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int reverseLayout=0x7f010002;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int rippleColor=0x7f010127;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int scrimAnimationDuration=0x7f010116;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int scrimVisibleHeightTrigger=0x7f010115;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchHintIcon=0x7f0100dc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchIcon=0x7f0100db;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewStyle=0x7f01008d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int seekBarStyle=0x7f0100b8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackground=0x7f01007d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackgroundBorderless=0x7f01007e;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
*/
public static final int showAsAction=0x7f0100cb;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
*/
public static final int showDividers=0x7f0100c9;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showText=0x7f0100ec;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showTitle=0x7f010042;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f010040;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spanCount=0x7f010001;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spinBars=0x7f0100c1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerDropDownItemStyle=0x7f010078;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerStyle=0x7f0100b9;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int splitTrack=0x7f0100eb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int srcCompat=0x7f010043;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int stackFromEnd=0x7f010003;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_above_anchor=0x7f0100d2;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_collapsed=0x7f010104;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_collapsible=0x7f010105;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int statusBarBackground=0x7f01011d;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int statusBarScrim=0x7f010113;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subMenuArrow=0x7f0100d0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int submitBackground=0x7f0100e1;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitle=0x7f010022;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextAppearance=0x7f0100ee;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitleTextColor=0x7f0100fd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextStyle=0x7f010024;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int suggestionRowLayout=0x7f0100df;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchMinWidth=0x7f0100e9;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchPadding=0x7f0100ea;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchStyle=0x7f0100ba;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f0100e8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabBackground=0x7f01013a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabContentStart=0x7f010139;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int tabGravity=0x7f01013c;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorColor=0x7f010137;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorHeight=0x7f010138;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMaxWidth=0x7f01013e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMinWidth=0x7f01013d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int tabMode=0x7f01013b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPadding=0x7f010146;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingBottom=0x7f010145;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingEnd=0x7f010144;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingStart=0x7f010142;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingTop=0x7f010143;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabSelectedTextColor=0x7f010141;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabTextAppearance=0x7f01013f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabTextColor=0x7f010140;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
*/
public static final int textAllCaps=0x7f010049;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceLargePopupMenu=0x7f010070;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItem=0x7f010095;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSecondary=0x7f010096;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSmall=0x7f010097;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearancePopupMenuHeader=0x7f010072;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultSubtitle=0x7f01008b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultTitle=0x7f01008a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSmallPopupMenu=0x7f010071;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorAlertDialogListItem=0x7f0100aa;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int textColorError=0x7f010126;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorSearchUrl=0x7f01008c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int theme=0x7f010100;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thickness=0x7f0100c7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTextPadding=0x7f0100e7;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTint=0x7f0100e2;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int thumbTintMode=0x7f0100e3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tickMark=0x7f010046;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tickMarkTint=0x7f010047;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int tickMarkTintMode=0x7f010048;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tint=0x7f010044;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int tintMode=0x7f010045;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int title=0x7f01001f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleEnabled=0x7f010119;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargin=0x7f0100ef;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginBottom=0x7f0100f3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginEnd=0x7f0100f1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginStart=0x7f0100f0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginTop=0x7f0100f2;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargins=0x7f0100f4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f0100ed;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleTextColor=0x7f0100fc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextStyle=0x7f010023;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarId=0x7f010114;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarNavigationButtonStyle=0x7f010084;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarStyle=0x7f010083;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int track=0x7f0100e4;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int trackTint=0x7f0100e5;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int trackTintMode=0x7f0100e6;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int useCompatPadding=0x7f01012b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int voiceIcon=0x7f0100dd;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBar=0x7f01004a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBarOverlay=0x7f01004c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionModeOverlay=0x7f01004d;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMajor=0x7f010051;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMinor=0x7f01004f;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMajor=0x7f01004e;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMinor=0x7f010050;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMajor=0x7f010052;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMinor=0x7f010053;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowNoTitle=0x7f01004b;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f0d0000;
public static final int abc_allow_stacked_button_bar=0x7f0d0001;
public static final int abc_config_actionMenuItemAllCaps=0x7f0d0002;
public static final int abc_config_closeDialogWhenTouchOutside=0x7f0d0003;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0d0004;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f0c004a;
public static final int abc_background_cache_hint_selector_material_light=0x7f0c004b;
public static final int abc_btn_colored_borderless_text_material=0x7f0c004c;
public static final int abc_btn_colored_text_material=0x7f0c004d;
public static final int abc_color_highlight_material=0x7f0c004e;
public static final int abc_hint_foreground_material_dark=0x7f0c004f;
public static final int abc_hint_foreground_material_light=0x7f0c0050;
public static final int abc_input_method_navigation_guard=0x7f0c0005;
public static final int abc_primary_text_disable_only_material_dark=0x7f0c0051;
public static final int abc_primary_text_disable_only_material_light=0x7f0c0052;
public static final int abc_primary_text_material_dark=0x7f0c0053;
public static final int abc_primary_text_material_light=0x7f0c0054;
public static final int abc_search_url_text=0x7f0c0055;
public static final int abc_search_url_text_normal=0x7f0c0006;
public static final int abc_search_url_text_pressed=0x7f0c0007;
public static final int abc_search_url_text_selected=0x7f0c0008;
public static final int abc_secondary_text_material_dark=0x7f0c0056;
public static final int abc_secondary_text_material_light=0x7f0c0057;
public static final int abc_tint_btn_checkable=0x7f0c0058;
public static final int abc_tint_default=0x7f0c0059;
public static final int abc_tint_edittext=0x7f0c005a;
public static final int abc_tint_seek_thumb=0x7f0c005b;
public static final int abc_tint_spinner=0x7f0c005c;
public static final int abc_tint_switch_thumb=0x7f0c005d;
public static final int abc_tint_switch_track=0x7f0c005e;
public static final int accent_material_dark=0x7f0c0009;
public static final int accent_material_light=0x7f0c000a;
public static final int background_floating_material_dark=0x7f0c000b;
public static final int background_floating_material_light=0x7f0c000c;
public static final int background_material_dark=0x7f0c000d;
public static final int background_material_light=0x7f0c000e;
public static final int bright_foreground_disabled_material_dark=0x7f0c000f;
public static final int bright_foreground_disabled_material_light=0x7f0c0010;
public static final int bright_foreground_inverse_material_dark=0x7f0c0011;
public static final int bright_foreground_inverse_material_light=0x7f0c0012;
public static final int bright_foreground_material_dark=0x7f0c0013;
public static final int bright_foreground_material_light=0x7f0c0014;
public static final int button_material_dark=0x7f0c0015;
public static final int button_material_light=0x7f0c0016;
public static final int cardview_dark_background=0x7f0c0000;
public static final int cardview_light_background=0x7f0c0001;
public static final int cardview_shadow_end_color=0x7f0c0002;
public static final int cardview_shadow_start_color=0x7f0c0003;
public static final int design_bottom_navigation_shadow_color=0x7f0c003f;
public static final int design_error=0x7f0c005f;
public static final int design_fab_shadow_end_color=0x7f0c0040;
public static final int design_fab_shadow_mid_color=0x7f0c0041;
public static final int design_fab_shadow_start_color=0x7f0c0042;
public static final int design_fab_stroke_end_inner_color=0x7f0c0043;
public static final int design_fab_stroke_end_outer_color=0x7f0c0044;
public static final int design_fab_stroke_top_inner_color=0x7f0c0045;
public static final int design_fab_stroke_top_outer_color=0x7f0c0046;
public static final int design_snackbar_background_color=0x7f0c0047;
public static final int design_textinput_error_color_dark=0x7f0c0048;
public static final int design_textinput_error_color_light=0x7f0c0049;
public static final int design_tint_password_toggle=0x7f0c0060;
public static final int dim_foreground_disabled_material_dark=0x7f0c0017;
public static final int dim_foreground_disabled_material_light=0x7f0c0018;
public static final int dim_foreground_material_dark=0x7f0c0019;
public static final int dim_foreground_material_light=0x7f0c001a;
public static final int foreground_material_dark=0x7f0c001b;
public static final int foreground_material_light=0x7f0c001c;
public static final int highlighted_text_material_dark=0x7f0c001d;
public static final int highlighted_text_material_light=0x7f0c001e;
public static final int material_blue_grey_800=0x7f0c001f;
public static final int material_blue_grey_900=0x7f0c0020;
public static final int material_blue_grey_950=0x7f0c0021;
public static final int material_deep_teal_200=0x7f0c0022;
public static final int material_deep_teal_500=0x7f0c0023;
public static final int material_grey_100=0x7f0c0024;
public static final int material_grey_300=0x7f0c0025;
public static final int material_grey_50=0x7f0c0026;
public static final int material_grey_600=0x7f0c0027;
public static final int material_grey_800=0x7f0c0028;
public static final int material_grey_850=0x7f0c0029;
public static final int material_grey_900=0x7f0c002a;
public static final int notification_action_color_filter=0x7f0c0004;
public static final int notification_icon_bg_color=0x7f0c002b;
public static final int notification_material_background_media_default_color=0x7f0c002c;
public static final int primary_dark_material_dark=0x7f0c002d;
public static final int primary_dark_material_light=0x7f0c002e;
public static final int primary_material_dark=0x7f0c002f;
public static final int primary_material_light=0x7f0c0030;
public static final int primary_text_default_material_dark=0x7f0c0031;
public static final int primary_text_default_material_light=0x7f0c0032;
public static final int primary_text_disabled_material_dark=0x7f0c0033;
public static final int primary_text_disabled_material_light=0x7f0c0034;
public static final int ripple_material_dark=0x7f0c0035;
public static final int ripple_material_light=0x7f0c0036;
public static final int secondary_text_default_material_dark=0x7f0c0037;
public static final int secondary_text_default_material_light=0x7f0c0038;
public static final int secondary_text_disabled_material_dark=0x7f0c0039;
public static final int secondary_text_disabled_material_light=0x7f0c003a;
public static final int switch_thumb_disabled_material_dark=0x7f0c003b;
public static final int switch_thumb_disabled_material_light=0x7f0c003c;
public static final int switch_thumb_material_dark=0x7f0c0061;
public static final int switch_thumb_material_light=0x7f0c0062;
public static final int switch_thumb_normal_material_dark=0x7f0c003d;
public static final int switch_thumb_normal_material_light=0x7f0c003e;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f070018;
public static final int abc_action_bar_content_inset_with_nav=0x7f070019;
public static final int abc_action_bar_default_height_material=0x7f07000d;
public static final int abc_action_bar_default_padding_end_material=0x7f07001a;
public static final int abc_action_bar_default_padding_start_material=0x7f07001b;
public static final int abc_action_bar_elevation_material=0x7f070021;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f070022;
public static final int abc_action_bar_overflow_padding_end_material=0x7f070023;
public static final int abc_action_bar_overflow_padding_start_material=0x7f070024;
public static final int abc_action_bar_progress_bar_size=0x7f07000e;
public static final int abc_action_bar_stacked_max_height=0x7f070025;
public static final int abc_action_bar_stacked_tab_max_width=0x7f070026;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070027;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f070028;
public static final int abc_action_button_min_height_material=0x7f070029;
public static final int abc_action_button_min_width_material=0x7f07002a;
public static final int abc_action_button_min_width_overflow_material=0x7f07002b;
public static final int abc_alert_dialog_button_bar_height=0x7f07000c;
public static final int abc_button_inset_horizontal_material=0x7f07002c;
public static final int abc_button_inset_vertical_material=0x7f07002d;
public static final int abc_button_padding_horizontal_material=0x7f07002e;
public static final int abc_button_padding_vertical_material=0x7f07002f;
public static final int abc_cascading_menus_min_smallest_width=0x7f070030;
public static final int abc_config_prefDialogWidth=0x7f070011;
public static final int abc_control_corner_material=0x7f070031;
public static final int abc_control_inset_material=0x7f070032;
public static final int abc_control_padding_material=0x7f070033;
public static final int abc_dialog_fixed_height_major=0x7f070012;
public static final int abc_dialog_fixed_height_minor=0x7f070013;
public static final int abc_dialog_fixed_width_major=0x7f070014;
public static final int abc_dialog_fixed_width_minor=0x7f070015;
public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070034;
public static final int abc_dialog_list_padding_top_no_title=0x7f070035;
public static final int abc_dialog_min_width_major=0x7f070016;
public static final int abc_dialog_min_width_minor=0x7f070017;
public static final int abc_dialog_padding_material=0x7f070036;
public static final int abc_dialog_padding_top_material=0x7f070037;
public static final int abc_dialog_title_divider_material=0x7f070038;
public static final int abc_disabled_alpha_material_dark=0x7f070039;
public static final int abc_disabled_alpha_material_light=0x7f07003a;
public static final int abc_dropdownitem_icon_width=0x7f07003b;
public static final int abc_dropdownitem_text_padding_left=0x7f07003c;
public static final int abc_dropdownitem_text_padding_right=0x7f07003d;
public static final int abc_edit_text_inset_bottom_material=0x7f07003e;
public static final int abc_edit_text_inset_horizontal_material=0x7f07003f;
public static final int abc_edit_text_inset_top_material=0x7f070040;
public static final int abc_floating_window_z=0x7f070041;
public static final int abc_list_item_padding_horizontal_material=0x7f070042;
public static final int abc_panel_menu_list_width=0x7f070043;
public static final int abc_progress_bar_height_material=0x7f070044;
public static final int abc_search_view_preferred_height=0x7f070045;
public static final int abc_search_view_preferred_width=0x7f070046;
public static final int abc_seekbar_track_background_height_material=0x7f070047;
public static final int abc_seekbar_track_progress_height_material=0x7f070048;
public static final int abc_select_dialog_padding_start_material=0x7f070049;
public static final int abc_switch_padding=0x7f07001d;
public static final int abc_text_size_body_1_material=0x7f07004a;
public static final int abc_text_size_body_2_material=0x7f07004b;
public static final int abc_text_size_button_material=0x7f07004c;
public static final int abc_text_size_caption_material=0x7f07004d;
public static final int abc_text_size_display_1_material=0x7f07004e;
public static final int abc_text_size_display_2_material=0x7f07004f;
public static final int abc_text_size_display_3_material=0x7f070050;
public static final int abc_text_size_display_4_material=0x7f070051;
public static final int abc_text_size_headline_material=0x7f070052;
public static final int abc_text_size_large_material=0x7f070053;
public static final int abc_text_size_medium_material=0x7f070054;
public static final int abc_text_size_menu_header_material=0x7f070055;
public static final int abc_text_size_menu_material=0x7f070056;
public static final int abc_text_size_small_material=0x7f070057;
public static final int abc_text_size_subhead_material=0x7f070058;
public static final int abc_text_size_subtitle_material_toolbar=0x7f07000f;
public static final int abc_text_size_title_material=0x7f070059;
public static final int abc_text_size_title_material_toolbar=0x7f070010;
public static final int cardview_compat_inset_shadow=0x7f070009;
public static final int cardview_default_elevation=0x7f07000a;
public static final int cardview_default_radius=0x7f07000b;
public static final int design_appbar_elevation=0x7f070076;
public static final int design_bottom_navigation_active_item_max_width=0x7f070077;
public static final int design_bottom_navigation_active_text_size=0x7f070078;
public static final int design_bottom_navigation_elevation=0x7f070079;
public static final int design_bottom_navigation_height=0x7f07007a;
public static final int design_bottom_navigation_item_max_width=0x7f07007b;
public static final int design_bottom_navigation_item_min_width=0x7f07007c;
public static final int design_bottom_navigation_margin=0x7f07007d;
public static final int design_bottom_navigation_shadow_height=0x7f07007e;
public static final int design_bottom_navigation_text_size=0x7f07007f;
public static final int design_bottom_sheet_modal_elevation=0x7f070080;
public static final int design_bottom_sheet_peek_height_min=0x7f070081;
public static final int design_fab_border_width=0x7f070082;
public static final int design_fab_elevation=0x7f070083;
public static final int design_fab_image_size=0x7f070084;
public static final int design_fab_size_mini=0x7f070085;
public static final int design_fab_size_normal=0x7f070086;
public static final int design_fab_translation_z_pressed=0x7f070087;
public static final int design_navigation_elevation=0x7f070088;
public static final int design_navigation_icon_padding=0x7f070089;
public static final int design_navigation_icon_size=0x7f07008a;
public static final int design_navigation_max_width=0x7f07006e;
public static final int design_navigation_padding_bottom=0x7f07008b;
public static final int design_navigation_separator_vertical_padding=0x7f07008c;
public static final int design_snackbar_action_inline_max_width=0x7f07006f;
public static final int design_snackbar_background_corner_radius=0x7f070070;
public static final int design_snackbar_elevation=0x7f07008d;
public static final int design_snackbar_extra_spacing_horizontal=0x7f070071;
public static final int design_snackbar_max_width=0x7f070072;
public static final int design_snackbar_min_width=0x7f070073;
public static final int design_snackbar_padding_horizontal=0x7f07008e;
public static final int design_snackbar_padding_vertical=0x7f07008f;
public static final int design_snackbar_padding_vertical_2lines=0x7f070074;
public static final int design_snackbar_text_size=0x7f070090;
public static final int design_tab_max_width=0x7f070091;
public static final int design_tab_scrollable_min_width=0x7f070075;
public static final int design_tab_text_size=0x7f070092;
public static final int design_tab_text_size_2line=0x7f070093;
public static final int disabled_alpha_material_dark=0x7f07005a;
public static final int disabled_alpha_material_light=0x7f07005b;
public static final int highlight_alpha_material_colored=0x7f07005c;
public static final int highlight_alpha_material_dark=0x7f07005d;
public static final int highlight_alpha_material_light=0x7f07005e;
public static final int hint_alpha_material_dark=0x7f07005f;
public static final int hint_alpha_material_light=0x7f070060;
public static final int hint_pressed_alpha_material_dark=0x7f070061;
public static final int hint_pressed_alpha_material_light=0x7f070062;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070000;
public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070001;
public static final int item_touch_helper_swipe_escape_velocity=0x7f070002;
public static final int mr_controller_volume_group_list_item_height=0x7f070003;
public static final int mr_controller_volume_group_list_item_icon_size=0x7f070004;
public static final int mr_controller_volume_group_list_max_height=0x7f070005;
public static final int mr_controller_volume_group_list_padding_top=0x7f070008;
public static final int mr_dialog_fixed_width_major=0x7f070006;
public static final int mr_dialog_fixed_width_minor=0x7f070007;
public static final int notification_action_icon_size=0x7f070063;
public static final int notification_action_text_size=0x7f070064;
public static final int notification_big_circle_margin=0x7f070065;
public static final int notification_content_margin_start=0x7f07001e;
public static final int notification_large_icon_height=0x7f070066;
public static final int notification_large_icon_width=0x7f070067;
public static final int notification_main_column_padding_top=0x7f07001f;
public static final int notification_media_narrow_margin=0x7f070020;
public static final int notification_right_icon_size=0x7f070068;
public static final int notification_right_side_padding_top=0x7f07001c;
public static final int notification_small_icon_background_padding=0x7f070069;
public static final int notification_small_icon_size_as_large=0x7f07006a;
public static final int notification_subtext_size=0x7f07006b;
public static final int notification_top_pad=0x7f07006c;
public static final int notification_top_pad_large_text=0x7f07006d;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static final int abc_action_bar_item_background_material=0x7f020001;
public static final int abc_btn_borderless_material=0x7f020002;
public static final int abc_btn_check_material=0x7f020003;
public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static final int abc_btn_colored_material=0x7f020006;
public static final int abc_btn_default_mtrl_shape=0x7f020007;
public static final int abc_btn_radio_material=0x7f020008;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
public static final int abc_cab_background_internal_bg=0x7f02000d;
public static final int abc_cab_background_top_material=0x7f02000e;
public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f;
public static final int abc_control_background_material=0x7f020010;
public static final int abc_dialog_material_background=0x7f020011;
public static final int abc_edit_text_material=0x7f020012;
public static final int abc_ic_ab_back_material=0x7f020013;
public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014;
public static final int abc_ic_clear_material=0x7f020015;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016;
public static final int abc_ic_go_search_api_material=0x7f020017;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019;
public static final int abc_ic_menu_overflow_material=0x7f02001a;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d;
public static final int abc_ic_search_api_material=0x7f02001e;
public static final int abc_ic_star_black_16dp=0x7f02001f;
public static final int abc_ic_star_black_36dp=0x7f020020;
public static final int abc_ic_star_black_48dp=0x7f020021;
public static final int abc_ic_star_half_black_16dp=0x7f020022;
public static final int abc_ic_star_half_black_36dp=0x7f020023;
public static final int abc_ic_star_half_black_48dp=0x7f020024;
public static final int abc_ic_voice_search_api_material=0x7f020025;
public static final int abc_item_background_holo_dark=0x7f020026;
public static final int abc_item_background_holo_light=0x7f020027;
public static final int abc_list_divider_mtrl_alpha=0x7f020028;
public static final int abc_list_focused_holo=0x7f020029;
public static final int abc_list_longpressed_holo=0x7f02002a;
public static final int abc_list_pressed_holo_dark=0x7f02002b;
public static final int abc_list_pressed_holo_light=0x7f02002c;
public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d;
public static final int abc_list_selector_background_transition_holo_light=0x7f02002e;
public static final int abc_list_selector_disabled_holo_dark=0x7f02002f;
public static final int abc_list_selector_disabled_holo_light=0x7f020030;
public static final int abc_list_selector_holo_dark=0x7f020031;
public static final int abc_list_selector_holo_light=0x7f020032;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
public static final int abc_popup_background_mtrl_mult=0x7f020034;
public static final int abc_ratingbar_indicator_material=0x7f020035;
public static final int abc_ratingbar_material=0x7f020036;
public static final int abc_ratingbar_small_material=0x7f020037;
public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c;
public static final int abc_seekbar_thumb_material=0x7f02003d;
public static final int abc_seekbar_tick_mark_material=0x7f02003e;
public static final int abc_seekbar_track_material=0x7f02003f;
public static final int abc_spinner_mtrl_am_alpha=0x7f020040;
public static final int abc_spinner_textfield_background_material=0x7f020041;
public static final int abc_switch_thumb_material=0x7f020042;
public static final int abc_switch_track_mtrl_alpha=0x7f020043;
public static final int abc_tab_indicator_material=0x7f020044;
public static final int abc_tab_indicator_mtrl_alpha=0x7f020045;
public static final int abc_text_cursor_material=0x7f020046;
public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047;
public static final int abc_text_select_handle_left_mtrl_light=0x7f020048;
public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049;
public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a;
public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b;
public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c;
public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d;
public static final int abc_textfield_default_mtrl_alpha=0x7f02004e;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050;
public static final int abc_textfield_search_material=0x7f020051;
public static final int abc_vector_test=0x7f020052;
public static final int avd_hide_password=0x7f020053;
public static final int avd_hide_password_1=0x7f020111;
public static final int avd_hide_password_2=0x7f020112;
public static final int avd_hide_password_3=0x7f020113;
public static final int avd_show_password=0x7f020054;
public static final int avd_show_password_1=0x7f020114;
public static final int avd_show_password_2=0x7f020115;
public static final int avd_show_password_3=0x7f020116;
public static final int design_bottom_navigation_item_background=0x7f020055;
public static final int design_fab_background=0x7f020056;
public static final int design_ic_visibility=0x7f020057;
public static final int design_ic_visibility_off=0x7f020058;
public static final int design_password_eye=0x7f020059;
public static final int design_snackbar_background=0x7f02005a;
public static final int ic_audiotrack_dark=0x7f02005b;
public static final int ic_audiotrack_light=0x7f02005c;
public static final int ic_dialog_close_dark=0x7f02005d;
public static final int ic_dialog_close_light=0x7f02005e;
public static final int ic_group_collapse_00=0x7f02005f;
public static final int ic_group_collapse_01=0x7f020060;
public static final int ic_group_collapse_02=0x7f020061;
public static final int ic_group_collapse_03=0x7f020062;
public static final int ic_group_collapse_04=0x7f020063;
public static final int ic_group_collapse_05=0x7f020064;
public static final int ic_group_collapse_06=0x7f020065;
public static final int ic_group_collapse_07=0x7f020066;
public static final int ic_group_collapse_08=0x7f020067;
public static final int ic_group_collapse_09=0x7f020068;
public static final int ic_group_collapse_10=0x7f020069;
public static final int ic_group_collapse_11=0x7f02006a;
public static final int ic_group_collapse_12=0x7f02006b;
public static final int ic_group_collapse_13=0x7f02006c;
public static final int ic_group_collapse_14=0x7f02006d;
public static final int ic_group_collapse_15=0x7f02006e;
public static final int ic_group_expand_00=0x7f02006f;
public static final int ic_group_expand_01=0x7f020070;
public static final int ic_group_expand_02=0x7f020071;
public static final int ic_group_expand_03=0x7f020072;
public static final int ic_group_expand_04=0x7f020073;
public static final int ic_group_expand_05=0x7f020074;
public static final int ic_group_expand_06=0x7f020075;
public static final int ic_group_expand_07=0x7f020076;
public static final int ic_group_expand_08=0x7f020077;
public static final int ic_group_expand_09=0x7f020078;
public static final int ic_group_expand_10=0x7f020079;
public static final int ic_group_expand_11=0x7f02007a;
public static final int ic_group_expand_12=0x7f02007b;
public static final int ic_group_expand_13=0x7f02007c;
public static final int ic_group_expand_14=0x7f02007d;
public static final int ic_group_expand_15=0x7f02007e;
public static final int ic_media_pause_dark=0x7f02007f;
public static final int ic_media_pause_light=0x7f020080;
public static final int ic_media_play_dark=0x7f020081;
public static final int ic_media_play_light=0x7f020082;
public static final int ic_media_stop_dark=0x7f020083;
public static final int ic_media_stop_light=0x7f020084;
public static final int ic_mr_button_connected_00_dark=0x7f020085;
public static final int ic_mr_button_connected_00_light=0x7f020086;
public static final int ic_mr_button_connected_01_dark=0x7f020087;
public static final int ic_mr_button_connected_01_light=0x7f020088;
public static final int ic_mr_button_connected_02_dark=0x7f020089;
public static final int ic_mr_button_connected_02_light=0x7f02008a;
public static final int ic_mr_button_connected_03_dark=0x7f02008b;
public static final int ic_mr_button_connected_03_light=0x7f02008c;
public static final int ic_mr_button_connected_04_dark=0x7f02008d;
public static final int ic_mr_button_connected_04_light=0x7f02008e;
public static final int ic_mr_button_connected_05_dark=0x7f02008f;
public static final int ic_mr_button_connected_05_light=0x7f020090;
public static final int ic_mr_button_connected_06_dark=0x7f020091;
public static final int ic_mr_button_connected_06_light=0x7f020092;
public static final int ic_mr_button_connected_07_dark=0x7f020093;
public static final int ic_mr_button_connected_07_light=0x7f020094;
public static final int ic_mr_button_connected_08_dark=0x7f020095;
public static final int ic_mr_button_connected_08_light=0x7f020096;
public static final int ic_mr_button_connected_09_dark=0x7f020097;
public static final int ic_mr_button_connected_09_light=0x7f020098;
public static final int ic_mr_button_connected_10_dark=0x7f020099;
public static final int ic_mr_button_connected_10_light=0x7f02009a;
public static final int ic_mr_button_connected_11_dark=0x7f02009b;
public static final int ic_mr_button_connected_11_light=0x7f02009c;
public static final int ic_mr_button_connected_12_dark=0x7f02009d;
public static final int ic_mr_button_connected_12_light=0x7f02009e;
public static final int ic_mr_button_connected_13_dark=0x7f02009f;
public static final int ic_mr_button_connected_13_light=0x7f0200a0;
public static final int ic_mr_button_connected_14_dark=0x7f0200a1;
public static final int ic_mr_button_connected_14_light=0x7f0200a2;
public static final int ic_mr_button_connected_15_dark=0x7f0200a3;
public static final int ic_mr_button_connected_15_light=0x7f0200a4;
public static final int ic_mr_button_connected_16_dark=0x7f0200a5;
public static final int ic_mr_button_connected_16_light=0x7f0200a6;
public static final int ic_mr_button_connected_17_dark=0x7f0200a7;
public static final int ic_mr_button_connected_17_light=0x7f0200a8;
public static final int ic_mr_button_connected_18_dark=0x7f0200a9;
public static final int ic_mr_button_connected_18_light=0x7f0200aa;
public static final int ic_mr_button_connected_19_dark=0x7f0200ab;
public static final int ic_mr_button_connected_19_light=0x7f0200ac;
public static final int ic_mr_button_connected_20_dark=0x7f0200ad;
public static final int ic_mr_button_connected_20_light=0x7f0200ae;
public static final int ic_mr_button_connected_21_dark=0x7f0200af;
public static final int ic_mr_button_connected_21_light=0x7f0200b0;
public static final int ic_mr_button_connected_22_dark=0x7f0200b1;
public static final int ic_mr_button_connected_22_light=0x7f0200b2;
public static final int ic_mr_button_connecting_00_dark=0x7f0200b3;
public static final int ic_mr_button_connecting_00_light=0x7f0200b4;
public static final int ic_mr_button_connecting_01_dark=0x7f0200b5;
public static final int ic_mr_button_connecting_01_light=0x7f0200b6;
public static final int ic_mr_button_connecting_02_dark=0x7f0200b7;
public static final int ic_mr_button_connecting_02_light=0x7f0200b8;
public static final int ic_mr_button_connecting_03_dark=0x7f0200b9;
public static final int ic_mr_button_connecting_03_light=0x7f0200ba;
public static final int ic_mr_button_connecting_04_dark=0x7f0200bb;
public static final int ic_mr_button_connecting_04_light=0x7f0200bc;
public static final int ic_mr_button_connecting_05_dark=0x7f0200bd;
public static final int ic_mr_button_connecting_05_light=0x7f0200be;
public static final int ic_mr_button_connecting_06_dark=0x7f0200bf;
public static final int ic_mr_button_connecting_06_light=0x7f0200c0;
public static final int ic_mr_button_connecting_07_dark=0x7f0200c1;
public static final int ic_mr_button_connecting_07_light=0x7f0200c2;
public static final int ic_mr_button_connecting_08_dark=0x7f0200c3;
public static final int ic_mr_button_connecting_08_light=0x7f0200c4;
public static final int ic_mr_button_connecting_09_dark=0x7f0200c5;
public static final int ic_mr_button_connecting_09_light=0x7f0200c6;
public static final int ic_mr_button_connecting_10_dark=0x7f0200c7;
public static final int ic_mr_button_connecting_10_light=0x7f0200c8;
public static final int ic_mr_button_connecting_11_dark=0x7f0200c9;
public static final int ic_mr_button_connecting_11_light=0x7f0200ca;
public static final int ic_mr_button_connecting_12_dark=0x7f0200cb;
public static final int ic_mr_button_connecting_12_light=0x7f0200cc;
public static final int ic_mr_button_connecting_13_dark=0x7f0200cd;
public static final int ic_mr_button_connecting_13_light=0x7f0200ce;
public static final int ic_mr_button_connecting_14_dark=0x7f0200cf;
public static final int ic_mr_button_connecting_14_light=0x7f0200d0;
public static final int ic_mr_button_connecting_15_dark=0x7f0200d1;
public static final int ic_mr_button_connecting_15_light=0x7f0200d2;
public static final int ic_mr_button_connecting_16_dark=0x7f0200d3;
public static final int ic_mr_button_connecting_16_light=0x7f0200d4;
public static final int ic_mr_button_connecting_17_dark=0x7f0200d5;
public static final int ic_mr_button_connecting_17_light=0x7f0200d6;
public static final int ic_mr_button_connecting_18_dark=0x7f0200d7;
public static final int ic_mr_button_connecting_18_light=0x7f0200d8;
public static final int ic_mr_button_connecting_19_dark=0x7f0200d9;
public static final int ic_mr_button_connecting_19_light=0x7f0200da;
public static final int ic_mr_button_connecting_20_dark=0x7f0200db;
public static final int ic_mr_button_connecting_20_light=0x7f0200dc;
public static final int ic_mr_button_connecting_21_dark=0x7f0200dd;
public static final int ic_mr_button_connecting_21_light=0x7f0200de;
public static final int ic_mr_button_connecting_22_dark=0x7f0200df;
public static final int ic_mr_button_connecting_22_light=0x7f0200e0;
public static final int ic_mr_button_disabled_dark=0x7f0200e1;
public static final int ic_mr_button_disabled_light=0x7f0200e2;
public static final int ic_mr_button_disconnected_dark=0x7f0200e3;
public static final int ic_mr_button_disconnected_light=0x7f0200e4;
public static final int ic_mr_button_grey=0x7f0200e5;
public static final int ic_vol_type_speaker_dark=0x7f0200e6;
public static final int ic_vol_type_speaker_group_dark=0x7f0200e7;
public static final int ic_vol_type_speaker_group_light=0x7f0200e8;
public static final int ic_vol_type_speaker_light=0x7f0200e9;
public static final int ic_vol_type_tv_dark=0x7f0200ea;
public static final int ic_vol_type_tv_light=0x7f0200eb;
public static final int icon=0x7f0200ec;
public static final int lock=0x7f0200ed;
public static final int mr_button_connected_dark=0x7f0200ee;
public static final int mr_button_connected_light=0x7f0200ef;
public static final int mr_button_connecting_dark=0x7f0200f0;
public static final int mr_button_connecting_light=0x7f0200f1;
public static final int mr_button_dark=0x7f0200f2;
public static final int mr_button_light=0x7f0200f3;
public static final int mr_dialog_close_dark=0x7f0200f4;
public static final int mr_dialog_close_light=0x7f0200f5;
public static final int mr_dialog_material_background_dark=0x7f0200f6;
public static final int mr_dialog_material_background_light=0x7f0200f7;
public static final int mr_group_collapse=0x7f0200f8;
public static final int mr_group_expand=0x7f0200f9;
public static final int mr_media_pause_dark=0x7f0200fa;
public static final int mr_media_pause_light=0x7f0200fb;
public static final int mr_media_play_dark=0x7f0200fc;
public static final int mr_media_play_light=0x7f0200fd;
public static final int mr_media_stop_dark=0x7f0200fe;
public static final int mr_media_stop_light=0x7f0200ff;
public static final int mr_vol_type_audiotrack_dark=0x7f020100;
public static final int mr_vol_type_audiotrack_light=0x7f020101;
public static final int navigation_empty_icon=0x7f020102;
public static final int notification_action_background=0x7f020103;
public static final int notification_bg=0x7f020104;
public static final int notification_bg_low=0x7f020105;
public static final int notification_bg_low_normal=0x7f020106;
public static final int notification_bg_low_pressed=0x7f020107;
public static final int notification_bg_normal=0x7f020108;
public static final int notification_bg_normal_pressed=0x7f020109;
public static final int notification_icon_background=0x7f02010a;
public static final int notification_template_icon_bg=0x7f02010f;
public static final int notification_template_icon_low_bg=0x7f020110;
public static final int notification_tile_bg=0x7f02010b;
public static final int notify_panel_notification_icon_bg=0x7f02010c;
public static final int snwi=0x7f02010d;
public static final int user=0x7f02010e;
}
public static final class id {
public static final int action0=0x7f08009c;
public static final int action_bar=0x7f080062;
public static final int action_bar_activity_content=0x7f080001;
public static final int action_bar_container=0x7f080061;
public static final int action_bar_root=0x7f08005d;
public static final int action_bar_spinner=0x7f080002;
public static final int action_bar_subtitle=0x7f080040;
public static final int action_bar_title=0x7f08003f;
public static final int action_container=0x7f080099;
public static final int action_context_bar=0x7f080063;
public static final int action_divider=0x7f0800a0;
public static final int action_image=0x7f08009a;
public static final int action_menu_divider=0x7f080003;
public static final int action_menu_presenter=0x7f080004;
public static final int action_mode_bar=0x7f08005f;
public static final int action_mode_bar_stub=0x7f08005e;
public static final int action_mode_close_button=0x7f080041;
public static final int action_text=0x7f08009b;
public static final int actions=0x7f0800a9;
public static final int activity_chooser_view_content=0x7f080042;
public static final int add=0x7f08001c;
public static final int alertTitle=0x7f080056;
public static final int all=0x7f08003b;
public static final int always=0x7f080021;
public static final int auto=0x7f08002d;
public static final int beginning=0x7f08001e;
public static final int bottom=0x7f080026;
public static final int buttonPanel=0x7f080049;
public static final int cancel_action=0x7f08009d;
public static final int center=0x7f08002e;
public static final int center_horizontal=0x7f08002f;
public static final int center_vertical=0x7f080030;
public static final int checkbox=0x7f080059;
public static final int chronometer=0x7f0800a5;
public static final int clip_horizontal=0x7f080037;
public static final int clip_vertical=0x7f080038;
public static final int collapseActionView=0x7f080022;
public static final int container=0x7f080073;
public static final int contentPanel=0x7f08004c;
public static final int coordinator=0x7f080074;
public static final int custom=0x7f080053;
public static final int customPanel=0x7f080052;
public static final int decor_content_parent=0x7f080060;
public static final int default_activity_button=0x7f080045;
public static final int design_bottom_sheet=0x7f080076;
public static final int design_menu_item_action_area=0x7f08007d;
public static final int design_menu_item_action_area_stub=0x7f08007c;
public static final int design_menu_item_text=0x7f08007b;
public static final int design_navigation_view=0x7f08007a;
public static final int disableHome=0x7f080010;
public static final int edit_query=0x7f080064;
public static final int end=0x7f08001f;
public static final int end_padder=0x7f0800af;
public static final int enterAlways=0x7f080028;
public static final int enterAlwaysCollapsed=0x7f080029;
public static final int exitUntilCollapsed=0x7f08002a;
public static final int expand_activities_button=0x7f080043;
public static final int expanded_menu=0x7f080058;
public static final int fill=0x7f080039;
public static final int fill_horizontal=0x7f08003a;
public static final int fill_vertical=0x7f080031;
public static final int fixed=0x7f08003d;
public static final int home=0x7f080005;
public static final int homeAsUp=0x7f080011;
public static final int icon=0x7f080047;
public static final int icon_group=0x7f0800aa;
public static final int ifRoom=0x7f080023;
public static final int image=0x7f080044;
public static final int info=0x7f0800a6;
public static final int item_touch_helper_previous_elevation=0x7f080000;
public static final int largeLabel=0x7f080072;
public static final int left=0x7f080032;
public static final int line1=0x7f0800ab;
public static final int line3=0x7f0800ad;
public static final int listMode=0x7f08000d;
public static final int list_item=0x7f080046;
public static final int masked=0x7f0800b3;
public static final int media_actions=0x7f08009f;
public static final int middle=0x7f080020;
public static final int mini=0x7f08003c;
public static final int mr_art=0x7f08008b;
public static final int mr_chooser_list=0x7f080080;
public static final int mr_chooser_route_desc=0x7f080083;
public static final int mr_chooser_route_icon=0x7f080081;
public static final int mr_chooser_route_name=0x7f080082;
public static final int mr_chooser_title=0x7f08007f;
public static final int mr_close=0x7f080088;
public static final int mr_control_divider=0x7f08008e;
public static final int mr_control_playback_ctrl=0x7f080094;
public static final int mr_control_subtitle=0x7f080097;
public static final int mr_control_title=0x7f080096;
public static final int mr_control_title_container=0x7f080095;
public static final int mr_custom_control=0x7f080089;
public static final int mr_default_control=0x7f08008a;
public static final int mr_dialog_area=0x7f080085;
public static final int mr_expandable_area=0x7f080084;
public static final int mr_group_expand_collapse=0x7f080098;
public static final int mr_media_main_control=0x7f08008c;
public static final int mr_name=0x7f080087;
public static final int mr_playback_control=0x7f08008d;
public static final int mr_title_bar=0x7f080086;
public static final int mr_volume_control=0x7f08008f;
public static final int mr_volume_group_list=0x7f080090;
public static final int mr_volume_item_icon=0x7f080092;
public static final int mr_volume_slider=0x7f080093;
public static final int multiply=0x7f080017;
public static final int navigation_header_container=0x7f080079;
public static final int never=0x7f080024;
public static final int none=0x7f080012;
public static final int normal=0x7f08000e;
public static final int notification_background=0x7f0800a8;
public static final int notification_main_column=0x7f0800a2;
public static final int notification_main_column_container=0x7f0800a1;
public static final int parallax=0x7f080035;
public static final int parentPanel=0x7f08004b;
public static final int pin=0x7f080036;
public static final int progress_circular=0x7f080006;
public static final int progress_horizontal=0x7f080007;
public static final int radio=0x7f08005b;
public static final int right=0x7f080033;
public static final int right_icon=0x7f0800a7;
public static final int right_side=0x7f0800a3;
public static final int screen=0x7f080018;
public static final int scroll=0x7f08002b;
public static final int scrollIndicatorDown=0x7f080051;
public static final int scrollIndicatorUp=0x7f08004d;
public static final int scrollView=0x7f08004e;
public static final int scrollable=0x7f08003e;
public static final int search_badge=0x7f080066;
public static final int search_bar=0x7f080065;
public static final int search_button=0x7f080067;
public static final int search_close_btn=0x7f08006c;
public static final int search_edit_frame=0x7f080068;
public static final int search_go_btn=0x7f08006e;
public static final int search_mag_icon=0x7f080069;
public static final int search_plate=0x7f08006a;
public static final int search_src_text=0x7f08006b;
public static final int search_voice_btn=0x7f08006f;
public static final int select_dialog_listview=0x7f080070;
public static final int shortcut=0x7f08005a;
public static final int showCustom=0x7f080013;
public static final int showHome=0x7f080014;
public static final int showTitle=0x7f080015;
public static final int sliding_tabs=0x7f0800b0;
public static final int smallLabel=0x7f080071;
public static final int snackbar_action=0x7f080078;
public static final int snackbar_text=0x7f080077;
public static final int snap=0x7f08002c;
public static final int spacer=0x7f08004a;
public static final int split_action_bar=0x7f080008;
public static final int src_atop=0x7f080019;
public static final int src_in=0x7f08001a;
public static final int src_over=0x7f08001b;
public static final int start=0x7f080034;
public static final int status_bar_latest_event_content=0x7f08009e;
public static final int submenuarrow=0x7f08005c;
public static final int submit_area=0x7f08006d;
public static final int tabMode=0x7f08000f;
public static final int text=0x7f0800ae;
public static final int text2=0x7f0800ac;
public static final int textSpacerNoButtons=0x7f080050;
public static final int textSpacerNoTitle=0x7f08004f;
public static final int text_input_password_toggle=0x7f08007e;
public static final int textinput_counter=0x7f08000a;
public static final int textinput_error=0x7f08000b;
public static final int time=0x7f0800a4;
public static final int title=0x7f080048;
public static final int titleDividerNoCustom=0x7f080057;
public static final int title_template=0x7f080055;
public static final int toolbar=0x7f0800b1;
public static final int top=0x7f080027;
public static final int topPanel=0x7f080054;
public static final int touch_outside=0x7f080075;
public static final int up=0x7f080009;
public static final int useLogo=0x7f080016;
public static final int view_offset_helper=0x7f08000c;
public static final int visible=0x7f0800b2;
public static final int volume_item_container=0x7f080091;
public static final int withText=0x7f080025;
public static final int wrap_content=0x7f08001d;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f0a0003;
public static final int abc_config_activityShortDur=0x7f0a0004;
public static final int app_bar_elevation_anim_duration=0x7f0a0008;
public static final int bottom_sheet_slide_duration=0x7f0a0009;
public static final int cancel_button_image_alpha=0x7f0a0005;
public static final int design_snackbar_text_max_lines=0x7f0a0007;
public static final int hide_password_duration=0x7f0a000a;
public static final int mr_controller_volume_group_list_animation_duration_ms=0x7f0a0000;
public static final int mr_controller_volume_group_list_fade_in_duration_ms=0x7f0a0001;
public static final int mr_controller_volume_group_list_fade_out_duration_ms=0x7f0a0002;
public static final int show_password_duration=0x7f0a000b;
public static final int status_bar_notification_info_maxnum=0x7f0a0006;
}
public static final class interpolator {
public static final int mr_fast_out_slow_in=0x7f060000;
public static final int mr_linear_out_slow_in=0x7f060001;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f030000;
public static final int abc_action_bar_up_container=0x7f030001;
public static final int abc_action_bar_view_list_nav_layout=0x7f030002;
public static final int abc_action_menu_item_layout=0x7f030003;
public static final int abc_action_menu_layout=0x7f030004;
public static final int abc_action_mode_bar=0x7f030005;
public static final int abc_action_mode_close_item_material=0x7f030006;
public static final int abc_activity_chooser_view=0x7f030007;
public static final int abc_activity_chooser_view_list_item=0x7f030008;
public static final int abc_alert_dialog_button_bar_material=0x7f030009;
public static final int abc_alert_dialog_material=0x7f03000a;
public static final int abc_alert_dialog_title_material=0x7f03000b;
public static final int abc_dialog_title_material=0x7f03000c;
public static final int abc_expanded_menu_layout=0x7f03000d;
public static final int abc_list_menu_item_checkbox=0x7f03000e;
public static final int abc_list_menu_item_icon=0x7f03000f;
public static final int abc_list_menu_item_layout=0x7f030010;
public static final int abc_list_menu_item_radio=0x7f030011;
public static final int abc_popup_menu_header_item_layout=0x7f030012;
public static final int abc_popup_menu_item_layout=0x7f030013;
public static final int abc_screen_content_include=0x7f030014;
public static final int abc_screen_simple=0x7f030015;
public static final int abc_screen_simple_overlay_action_mode=0x7f030016;
public static final int abc_screen_toolbar=0x7f030017;
public static final int abc_search_dropdown_item_icons_2line=0x7f030018;
public static final int abc_search_view=0x7f030019;
public static final int abc_select_dialog_material=0x7f03001a;
public static final int design_bottom_navigation_item=0x7f03001b;
public static final int design_bottom_sheet_dialog=0x7f03001c;
public static final int design_layout_snackbar=0x7f03001d;
public static final int design_layout_snackbar_include=0x7f03001e;
public static final int design_layout_tab_icon=0x7f03001f;
public static final int design_layout_tab_text=0x7f030020;
public static final int design_menu_item_action_area=0x7f030021;
public static final int design_navigation_item=0x7f030022;
public static final int design_navigation_item_header=0x7f030023;
public static final int design_navigation_item_separator=0x7f030024;
public static final int design_navigation_item_subheader=0x7f030025;
public static final int design_navigation_menu=0x7f030026;
public static final int design_navigation_menu_item=0x7f030027;
public static final int design_text_input_password_icon=0x7f030028;
public static final int mr_chooser_dialog=0x7f030029;
public static final int mr_chooser_list_item=0x7f03002a;
public static final int mr_controller_material_dialog_b=0x7f03002b;
public static final int mr_controller_volume_item=0x7f03002c;
public static final int mr_playback_control=0x7f03002d;
public static final int mr_volume_control=0x7f03002e;
public static final int notification_action=0x7f03002f;
public static final int notification_action_tombstone=0x7f030030;
public static final int notification_media_action=0x7f030031;
public static final int notification_media_cancel_action=0x7f030032;
public static final int notification_template_big_media=0x7f030033;
public static final int notification_template_big_media_custom=0x7f030034;
public static final int notification_template_big_media_narrow=0x7f030035;
public static final int notification_template_big_media_narrow_custom=0x7f030036;
public static final int notification_template_custom_big=0x7f030037;
public static final int notification_template_icon_group=0x7f030038;
public static final int notification_template_lines_media=0x7f030039;
public static final int notification_template_media=0x7f03003a;
public static final int notification_template_media_custom=0x7f03003b;
public static final int notification_template_part_chronometer=0x7f03003c;
public static final int notification_template_part_time=0x7f03003d;
public static final int select_dialog_item_material=0x7f03003e;
public static final int select_dialog_multichoice_material=0x7f03003f;
public static final int select_dialog_singlechoice_material=0x7f030040;
public static final int support_simple_spinner_dropdown_item=0x7f030041;
public static final int tabbar=0x7f030042;
public static final int toolbar=0x7f030043;
}
public static final class string {
public static final int abc_action_bar_home_description=0x7f090015;
public static final int abc_action_bar_home_description_format=0x7f090016;
public static final int abc_action_bar_home_subtitle_description_format=0x7f090017;
public static final int abc_action_bar_up_description=0x7f090018;
public static final int abc_action_menu_overflow_description=0x7f090019;
public static final int abc_action_mode_done=0x7f09001a;
public static final int abc_activity_chooser_view_see_all=0x7f09001b;
public static final int abc_activitychooserview_choose_application=0x7f09001c;
public static final int abc_capital_off=0x7f09001d;
public static final int abc_capital_on=0x7f09001e;
public static final int abc_font_family_body_1_material=0x7f09002a;
public static final int abc_font_family_body_2_material=0x7f09002b;
public static final int abc_font_family_button_material=0x7f09002c;
public static final int abc_font_family_caption_material=0x7f09002d;
public static final int abc_font_family_display_1_material=0x7f09002e;
public static final int abc_font_family_display_2_material=0x7f09002f;
public static final int abc_font_family_display_3_material=0x7f090030;
public static final int abc_font_family_display_4_material=0x7f090031;
public static final int abc_font_family_headline_material=0x7f090032;
public static final int abc_font_family_menu_material=0x7f090033;
public static final int abc_font_family_subhead_material=0x7f090034;
public static final int abc_font_family_title_material=0x7f090035;
public static final int abc_search_hint=0x7f09001f;
public static final int abc_searchview_description_clear=0x7f090020;
public static final int abc_searchview_description_query=0x7f090021;
public static final int abc_searchview_description_search=0x7f090022;
public static final int abc_searchview_description_submit=0x7f090023;
public static final int abc_searchview_description_voice=0x7f090024;
public static final int abc_shareactionprovider_share_with=0x7f090025;
public static final int abc_shareactionprovider_share_with_application=0x7f090026;
public static final int abc_toolbar_collapse_description=0x7f090027;
public static final int appbar_scrolling_view_behavior=0x7f090036;
public static final int bottom_sheet_behavior=0x7f090037;
public static final int character_counter_pattern=0x7f090038;
public static final int mr_button_content_description=0x7f090000;
public static final int mr_cast_button_connected=0x7f090001;
public static final int mr_cast_button_connecting=0x7f090002;
public static final int mr_cast_button_disconnected=0x7f090003;
public static final int mr_chooser_searching=0x7f090004;
public static final int mr_chooser_title=0x7f090005;
public static final int mr_controller_album_art=0x7f090006;
public static final int mr_controller_casting_screen=0x7f090007;
public static final int mr_controller_close_description=0x7f090008;
public static final int mr_controller_collapse_group=0x7f090009;
public static final int mr_controller_disconnect=0x7f09000a;
public static final int mr_controller_expand_group=0x7f09000b;
public static final int mr_controller_no_info_available=0x7f09000c;
public static final int mr_controller_no_media_selected=0x7f09000d;
public static final int mr_controller_pause=0x7f09000e;
public static final int mr_controller_play=0x7f09000f;
public static final int mr_controller_stop=0x7f090014;
public static final int mr_controller_stop_casting=0x7f090010;
public static final int mr_controller_volume_slider=0x7f090011;
public static final int mr_system_route_name=0x7f090012;
public static final int mr_user_route_category_name=0x7f090013;
public static final int password_toggle_content_description=0x7f090039;
public static final int path_password_eye=0x7f09003a;
public static final int path_password_eye_mask_strike_through=0x7f09003b;
public static final int path_password_eye_mask_visible=0x7f09003c;
public static final int path_password_strike_through=0x7f09003d;
public static final int search_menu_title=0x7f090028;
public static final int status_bar_notification_info_overflow=0x7f090029;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f0b00ae;
public static final int AlertDialog_AppCompat_Light=0x7f0b00af;
public static final int Animation_AppCompat_Dialog=0x7f0b00b0;
public static final int Animation_AppCompat_DropDownUp=0x7f0b00b1;
public static final int Animation_Design_BottomSheetDialog=0x7f0b0170;
public static final int AppCompatDialogStyle=0x7f0b018b;
public static final int Base_AlertDialog_AppCompat=0x7f0b00b2;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0b00b3;
public static final int Base_Animation_AppCompat_Dialog=0x7f0b00b4;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0b00b5;
public static final int Base_CardView=0x7f0b000c;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0b00b6;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0b00b7;
public static final int Base_TextAppearance_AppCompat=0x7f0b004e;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f0b004f;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f0b0050;
public static final int Base_TextAppearance_AppCompat_Button=0x7f0b0036;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f0b0051;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f0b0052;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f0b0053;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f0b0054;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f0b0055;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f0b0056;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0b001a;
public static final int Base_TextAppearance_AppCompat_Large=0x7f0b0057;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0b001b;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b0058;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0059;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f0b005a;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0b001c;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f0b005b;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0b00b8;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b005c;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0b005d;
public static final int Base_TextAppearance_AppCompat_Small=0x7f0b005e;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0b001d;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0b005f;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0b001e;
public static final int Base_TextAppearance_AppCompat_Title=0x7f0b0060;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0b001f;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b00a3;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0061;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0062;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0063;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0064;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0065;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0066;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0b0067;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b00aa;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b00ab;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b00a4;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b00b9;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0068;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0069;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b006a;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0b006b;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b006c;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b00ba;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b006d;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b006e;
public static final int Base_Theme_AppCompat=0x7f0b006f;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0b00bb;
public static final int Base_Theme_AppCompat_Dialog=0x7f0b0020;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0b0021;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0b00bc;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0b0022;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0b0010;
public static final int Base_Theme_AppCompat_Light=0x7f0b0070;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0b00bd;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0b0023;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0b0024;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0b00be;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0025;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0011;
public static final int Base_ThemeOverlay_AppCompat=0x7f0b00bf;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0b00c0;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0b00c1;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b00c2;
public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0b0026;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b0027;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0b00c3;
public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0b0028;
public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0b0029;
public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0b002a;
public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0b0032;
public static final int Base_V12_Widget_AppCompat_EditText=0x7f0b0033;
public static final int Base_V21_Theme_AppCompat=0x7f0b0071;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0b0072;
public static final int Base_V21_Theme_AppCompat_Light=0x7f0b0073;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0b0074;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0b0075;
public static final int Base_V22_Theme_AppCompat=0x7f0b00a1;
public static final int Base_V22_Theme_AppCompat_Light=0x7f0b00a2;
public static final int Base_V23_Theme_AppCompat=0x7f0b00a5;
public static final int Base_V23_Theme_AppCompat_Light=0x7f0b00a6;
public static final int Base_V7_Theme_AppCompat=0x7f0b00c4;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0b00c5;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0b00c6;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0b00c7;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0b00c8;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0b00c9;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0b00ca;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0b00cb;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0b00cc;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0b00cd;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0b0076;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0b0077;
public static final int Base_Widget_AppCompat_ActionButton=0x7f0b0078;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0079;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0b007a;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0b00ce;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0b00cf;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0b0034;
public static final int Base_Widget_AppCompat_Button=0x7f0b007b;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0b007c;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0b007d;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b00d0;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f0b00a7;
public static final int Base_Widget_AppCompat_Button_Small=0x7f0b007e;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f0b007f;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b00d1;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0080;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0b0081;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0b00d2;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0b000f;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0b00d3;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0b0082;
public static final int Base_Widget_AppCompat_EditText=0x7f0b0035;
public static final int Base_Widget_AppCompat_ImageButton=0x7f0b0083;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0b00d4;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0b00d5;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b00d6;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0084;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0085;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0086;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0b0087;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0088;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0b00d7;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0b0089;
public static final int Base_Widget_AppCompat_ListView=0x7f0b008a;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0b008b;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0b008c;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f0b008d;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0b008e;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0b00d8;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f0b002b;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0b002c;
public static final int Base_Widget_AppCompat_RatingBar=0x7f0b008f;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0b00a8;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0b00a9;
public static final int Base_Widget_AppCompat_SearchView=0x7f0b00d9;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0b00da;
public static final int Base_Widget_AppCompat_SeekBar=0x7f0b0090;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0b00db;
public static final int Base_Widget_AppCompat_Spinner=0x7f0b0091;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0b0012;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0b0092;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0b00dc;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b0093;
public static final int Base_Widget_Design_AppBarLayout=0x7f0b0171;
public static final int Base_Widget_Design_TabLayout=0x7f0b0172;
public static final int CardView=0x7f0b000b;
public static final int CardView_Dark=0x7f0b000d;
public static final int CardView_Light=0x7f0b000e;
public static final int MainTheme=0x7f0b0189;
/** Base theme applied no matter what API
*/
public static final int MainTheme_Base=0x7f0b018a;
public static final int Platform_AppCompat=0x7f0b002d;
public static final int Platform_AppCompat_Light=0x7f0b002e;
public static final int Platform_ThemeOverlay_AppCompat=0x7f0b0094;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0b0095;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0b0096;
public static final int Platform_V11_AppCompat=0x7f0b002f;
public static final int Platform_V11_AppCompat_Light=0x7f0b0030;
public static final int Platform_V14_AppCompat=0x7f0b0037;
public static final int Platform_V14_AppCompat_Light=0x7f0b0038;
public static final int Platform_V21_AppCompat=0x7f0b0097;
public static final int Platform_V21_AppCompat_Light=0x7f0b0098;
public static final int Platform_V25_AppCompat=0x7f0b00ac;
public static final int Platform_V25_AppCompat_Light=0x7f0b00ad;
public static final int Platform_Widget_AppCompat_Spinner=0x7f0b0031;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0b0040;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0b0041;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0b0042;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0b0043;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0b0044;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0b0045;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0b0046;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0b0047;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0b0048;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0b0049;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0b004a;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0b004b;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0b004c;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0b004d;
public static final int TextAppearance_AppCompat=0x7f0b00dd;
public static final int TextAppearance_AppCompat_Body1=0x7f0b00de;
public static final int TextAppearance_AppCompat_Body2=0x7f0b00df;
public static final int TextAppearance_AppCompat_Button=0x7f0b00e0;
public static final int TextAppearance_AppCompat_Caption=0x7f0b00e1;
public static final int TextAppearance_AppCompat_Display1=0x7f0b00e2;
public static final int TextAppearance_AppCompat_Display2=0x7f0b00e3;
public static final int TextAppearance_AppCompat_Display3=0x7f0b00e4;
public static final int TextAppearance_AppCompat_Display4=0x7f0b00e5;
public static final int TextAppearance_AppCompat_Headline=0x7f0b00e6;
public static final int TextAppearance_AppCompat_Inverse=0x7f0b00e7;
public static final int TextAppearance_AppCompat_Large=0x7f0b00e8;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0b00e9;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b00ea;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b00eb;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b00ec;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b00ed;
public static final int TextAppearance_AppCompat_Medium=0x7f0b00ee;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0b00ef;
public static final int TextAppearance_AppCompat_Menu=0x7f0b00f0;
public static final int TextAppearance_AppCompat_Notification=0x7f0b0039;
public static final int TextAppearance_AppCompat_Notification_Info=0x7f0b0099;
public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0b009a;
public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0b00f1;
public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0b00f2;
public static final int TextAppearance_AppCompat_Notification_Media=0x7f0b009b;
public static final int TextAppearance_AppCompat_Notification_Time=0x7f0b009c;
public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0b009d;
public static final int TextAppearance_AppCompat_Notification_Title=0x7f0b003a;
public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0b009e;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b00f3;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b00f4;
public static final int TextAppearance_AppCompat_Small=0x7f0b00f5;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0b00f6;
public static final int TextAppearance_AppCompat_Subhead=0x7f0b00f7;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0b00f8;
public static final int TextAppearance_AppCompat_Title=0x7f0b00f9;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0b00fa;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b00fb;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b00fc;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b00fd;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b00fe;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b00ff;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0100;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b0101;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0102;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b0103;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0b0104;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b0105;
public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b0106;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b0107;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0108;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0109;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b010a;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b010b;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0b010c;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b010d;
public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0b0173;
public static final int TextAppearance_Design_Counter=0x7f0b0174;
public static final int TextAppearance_Design_Counter_Overflow=0x7f0b0175;
public static final int TextAppearance_Design_Error=0x7f0b0176;
public static final int TextAppearance_Design_Hint=0x7f0b0177;
public static final int TextAppearance_Design_Snackbar_Message=0x7f0b0178;
public static final int TextAppearance_Design_Tab=0x7f0b0179;
public static final int TextAppearance_MediaRouter_PrimaryText=0x7f0b0000;
public static final int TextAppearance_MediaRouter_SecondaryText=0x7f0b0001;
public static final int TextAppearance_MediaRouter_Title=0x7f0b0002;
public static final int TextAppearance_StatusBar_EventContent=0x7f0b003b;
public static final int TextAppearance_StatusBar_EventContent_Info=0x7f0b003c;
public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f0b003d;
public static final int TextAppearance_StatusBar_EventContent_Time=0x7f0b003e;
public static final int TextAppearance_StatusBar_EventContent_Title=0x7f0b003f;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b010e;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b010f;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0110;
public static final int Theme_AppCompat=0x7f0b0111;
public static final int Theme_AppCompat_CompactMenu=0x7f0b0112;
public static final int Theme_AppCompat_DayNight=0x7f0b0013;
public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0b0014;
public static final int Theme_AppCompat_DayNight_Dialog=0x7f0b0015;
public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0b0016;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0b0017;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0b0018;
public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0b0019;
public static final int Theme_AppCompat_Dialog=0x7f0b0113;
public static final int Theme_AppCompat_Dialog_Alert=0x7f0b0114;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0b0115;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b0116;
public static final int Theme_AppCompat_Light=0x7f0b0117;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0118;
public static final int Theme_AppCompat_Light_Dialog=0x7f0b0119;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0b011a;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b011b;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b011c;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0b011d;
public static final int Theme_AppCompat_NoActionBar=0x7f0b011e;
public static final int Theme_Design=0x7f0b017a;
public static final int Theme_Design_BottomSheetDialog=0x7f0b017b;
public static final int Theme_Design_Light=0x7f0b017c;
public static final int Theme_Design_Light_BottomSheetDialog=0x7f0b017d;
public static final int Theme_Design_Light_NoActionBar=0x7f0b017e;
public static final int Theme_Design_NoActionBar=0x7f0b017f;
public static final int Theme_MediaRouter=0x7f0b0003;
public static final int Theme_MediaRouter_Light=0x7f0b0004;
public static final int Theme_MediaRouter_Light_DarkControlPanel=0x7f0b0005;
public static final int Theme_MediaRouter_LightControlPanel=0x7f0b0006;
public static final int ThemeOverlay_AppCompat=0x7f0b011f;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0b0120;
public static final int ThemeOverlay_AppCompat_Dark=0x7f0b0121;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b0122;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f0b0123;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b0124;
public static final int ThemeOverlay_AppCompat_Light=0x7f0b0125;
public static final int ThemeOverlay_MediaRouter_Dark=0x7f0b0007;
public static final int ThemeOverlay_MediaRouter_Light=0x7f0b0008;
public static final int Widget_AppCompat_ActionBar=0x7f0b0126;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b0127;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b0128;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0129;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b012a;
public static final int Widget_AppCompat_ActionButton=0x7f0b012b;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b012c;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b012d;
public static final int Widget_AppCompat_ActionMode=0x7f0b012e;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0b012f;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b0130;
public static final int Widget_AppCompat_Button=0x7f0b0131;
public static final int Widget_AppCompat_Button_Borderless=0x7f0b0132;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0b0133;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b0134;
public static final int Widget_AppCompat_Button_Colored=0x7f0b0135;
public static final int Widget_AppCompat_Button_Small=0x7f0b0136;
public static final int Widget_AppCompat_ButtonBar=0x7f0b0137;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b0138;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0139;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0b013a;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0b013b;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0b013c;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b013d;
public static final int Widget_AppCompat_EditText=0x7f0b013e;
public static final int Widget_AppCompat_ImageButton=0x7f0b013f;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0b0140;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0141;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b0142;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b0143;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0144;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0145;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0146;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0147;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0148;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0b0149;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b014a;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b014b;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b014c;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b014d;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b014e;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b014f;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b0150;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b0151;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b0152;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0153;
public static final int Widget_AppCompat_Light_SearchView=0x7f0b0154;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b0155;
public static final int Widget_AppCompat_ListMenuView=0x7f0b0156;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0157;
public static final int Widget_AppCompat_ListView=0x7f0b0158;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0159;
public static final int Widget_AppCompat_ListView_Menu=0x7f0b015a;
public static final int Widget_AppCompat_NotificationActionContainer=0x7f0b009f;
public static final int Widget_AppCompat_NotificationActionText=0x7f0b00a0;
public static final int Widget_AppCompat_PopupMenu=0x7f0b015b;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0b015c;
public static final int Widget_AppCompat_PopupWindow=0x7f0b015d;
public static final int Widget_AppCompat_ProgressBar=0x7f0b015e;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b015f;
public static final int Widget_AppCompat_RatingBar=0x7f0b0160;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0b0161;
public static final int Widget_AppCompat_RatingBar_Small=0x7f0b0162;
public static final int Widget_AppCompat_SearchView=0x7f0b0163;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0b0164;
public static final int Widget_AppCompat_SeekBar=0x7f0b0165;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0b0166;
public static final int Widget_AppCompat_Spinner=0x7f0b0167;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f0b0168;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0169;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f0b016a;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0b016b;
public static final int Widget_AppCompat_Toolbar=0x7f0b016c;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b016d;
public static final int Widget_Design_AppBarLayout=0x7f0b016f;
public static final int Widget_Design_BottomNavigationView=0x7f0b0180;
public static final int Widget_Design_BottomSheet_Modal=0x7f0b0181;
public static final int Widget_Design_CollapsingToolbar=0x7f0b0182;
public static final int Widget_Design_CoordinatorLayout=0x7f0b0183;
public static final int Widget_Design_FloatingActionButton=0x7f0b0184;
public static final int Widget_Design_NavigationView=0x7f0b0185;
public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0b0186;
public static final int Widget_Design_Snackbar=0x7f0b0187;
public static final int Widget_Design_TabLayout=0x7f0b016e;
public static final int Widget_Design_TextInputLayout=0x7f0b0188;
public static final int Widget_MediaRouter_Light_MediaRouteButton=0x7f0b0009;
public static final int Widget_MediaRouter_MediaRouteButton=0x7f0b000a;
}
public static final class styleable {
/** Attributes that can be used with a ActionBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBar_background com.companyname.DriveApp:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit com.companyname.DriveApp:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked com.companyname.DriveApp:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd com.companyname.DriveApp:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.companyname.DriveApp:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft com.companyname.DriveApp:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight com.companyname.DriveApp:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart com.companyname.DriveApp:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.companyname.DriveApp:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout com.companyname.DriveApp:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions com.companyname.DriveApp:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider com.companyname.DriveApp:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation com.companyname.DriveApp:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height com.companyname.DriveApp:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll com.companyname.DriveApp:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator com.companyname.DriveApp:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout com.companyname.DriveApp:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon com.companyname.DriveApp:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.companyname.DriveApp:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding com.companyname.DriveApp:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo com.companyname.DriveApp:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode com.companyname.DriveApp:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme com.companyname.DriveApp:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding com.companyname.DriveApp:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle com.companyname.DriveApp:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle com.companyname.DriveApp:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle com.companyname.DriveApp:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title com.companyname.DriveApp:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle com.companyname.DriveApp:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_contentInsetEnd
@see #ActionBar_contentInsetEndWithActions
@see #ActionBar_contentInsetLeft
@see #ActionBar_contentInsetRight
@see #ActionBar_contentInsetStart
@see #ActionBar_contentInsetStartWithNavigation
@see #ActionBar_customNavigationLayout
@see #ActionBar_displayOptions
@see #ActionBar_divider
@see #ActionBar_elevation
@see #ActionBar_height
@see #ActionBar_hideOnContentScroll
@see #ActionBar_homeAsUpIndicator
@see #ActionBar_homeLayout
@see #ActionBar_icon
@see #ActionBar_indeterminateProgressStyle
@see #ActionBar_itemPadding
@see #ActionBar_logo
@see #ActionBar_navigationMode
@see #ActionBar_popupTheme
@see #ActionBar_progressBarPadding
@see #ActionBar_progressBarStyle
@see #ActionBar_subtitle
@see #ActionBar_subtitleTextStyle
@see #ActionBar_title
@see #ActionBar_titleTextStyle
*/
public static final int[] ActionBar = {
0x7f01001d, 0x7f01001f, 0x7f010020, 0x7f010021,
0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025,
0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029,
0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d,
0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031,
0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035,
0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039,
0x7f010079
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#background}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.DriveApp:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#backgroundStacked}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.DriveApp:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentInsetRight}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentInsetStart}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#customNavigationLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#displayOptions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#divider}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#elevation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:elevation
*/
public static final int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#height}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#hideOnContentScroll}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#homeLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#icon}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#indeterminateProgressStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#itemPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#logo}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#navigationMode}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#popupTheme}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:popupTheme
*/
public static final int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#progressBarPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#progressBarStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#subtitle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#title}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:titleTextStyle
*/
public static final int ActionBar_titleTextStyle = 5;
/** Attributes that can be used with a ActionBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
</table>
@see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout = {
0x010100b3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #ActionBarLayout} array.
@attr name android:layout_gravity
*/
public static final int ActionBarLayout_android_layout_gravity = 0;
/** Attributes that can be used with a ActionMenuItemView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
</table>
@see #ActionMenuItemView_android_minWidth
*/
public static final int[] ActionMenuItemView = {
0x0101013f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #ActionMenuItemView} array.
@attr name android:minWidth
*/
public static final int ActionMenuItemView_android_minWidth = 0;
/** Attributes that can be used with a ActionMenuView.
*/
public static final int[] ActionMenuView = {
};
/** Attributes that can be used with a ActionMode.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMode_background com.companyname.DriveApp:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit com.companyname.DriveApp:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout com.companyname.DriveApp:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height com.companyname.DriveApp:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle com.companyname.DriveApp:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle com.companyname.DriveApp:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionMode_background
@see #ActionMode_backgroundSplit
@see #ActionMode_closeItemLayout
@see #ActionMode_height
@see #ActionMode_subtitleTextStyle
@see #ActionMode_titleTextStyle
*/
public static final int[] ActionMode = {
0x7f01001d, 0x7f010023, 0x7f010024, 0x7f010028,
0x7f01002a, 0x7f01003a
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#background}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionMode} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.DriveApp:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#closeItemLayout}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#height}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:titleTextStyle
*/
public static final int ActionMode_titleTextStyle = 1;
/** Attributes that can be used with a ActivityChooserView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.companyname.DriveApp:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount com.companyname.DriveApp:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f01003b, 0x7f01003c
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#expandActivityOverflowButtonDrawable}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#initialActivityCount}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount = 0;
/** Attributes that can be used with a AlertDialog.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.companyname.DriveApp:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout com.companyname.DriveApp:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout com.companyname.DriveApp:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.companyname.DriveApp:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle com.companyname.DriveApp:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.companyname.DriveApp:singleChoiceItemLayout}</code></td><td></td></tr>
</table>
@see #AlertDialog_android_layout
@see #AlertDialog_buttonPanelSideLayout
@see #AlertDialog_listItemLayout
@see #AlertDialog_listLayout
@see #AlertDialog_multiChoiceItemLayout
@see #AlertDialog_showTitle
@see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog = {
0x010100f2, 0x7f01003d, 0x7f01003e, 0x7f01003f,
0x7f010040, 0x7f010041, 0x7f010042
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static final int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#buttonPanelSideLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#listItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#listLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#multiChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#showTitle}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:showTitle
*/
public static final int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#singleChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_elevation com.companyname.DriveApp:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded com.companyname.DriveApp:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x7f010038, 0x7f010103
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:background
*/
public static final int AppBarLayout_android_background = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#elevation}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:elevation
*/
public static final int AppBarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#expanded}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:expanded
*/
public static final int AppBarLayout_expanded = 2;
/** Attributes that can be used with a AppBarLayoutStates.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsed com.companyname.DriveApp:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.companyname.DriveApp:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f010104, 0x7f010105
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#state_collapsed}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:state_collapsed
*/
public static final int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#state_collapsible}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:state_collapsible
*/
public static final int AppBarLayoutStates_state_collapsible = 1;
/** Attributes that can be used with a AppBarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags com.companyname.DriveApp:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.companyname.DriveApp:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f010106, 0x7f010107
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#layout_scrollFlags}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:layout_scrollFlags
*/
public static final int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#layout_scrollInterpolator}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:layout_scrollInterpolator
*/
public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1;
/** Attributes that can be used with a AppCompatImageView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_srcCompat com.companyname.DriveApp:srcCompat}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tint com.companyname.DriveApp:tint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tintMode com.companyname.DriveApp:tintMode}</code></td><td></td></tr>
</table>
@see #AppCompatImageView_android_src
@see #AppCompatImageView_srcCompat
@see #AppCompatImageView_tint
@see #AppCompatImageView_tintMode
*/
public static final int[] AppCompatImageView = {
0x01010119, 0x7f010043, 0x7f010044, 0x7f010045
};
/**
<p>This symbol is the offset where the {@link android.R.attr#src}
attribute's value can be found in the {@link #AppCompatImageView} array.
@attr name android:src
*/
public static final int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#srcCompat}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:srcCompat
*/
public static final int AppCompatImageView_srcCompat = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tint}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:tint
*/
public static final int AppCompatImageView_tint = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tintMode}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:tintMode
*/
public static final int AppCompatImageView_tintMode = 3;
/** Attributes that can be used with a AppCompatSeekBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMark com.companyname.DriveApp:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.companyname.DriveApp:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.companyname.DriveApp:tickMarkTintMode}</code></td><td></td></tr>
</table>
@see #AppCompatSeekBar_android_thumb
@see #AppCompatSeekBar_tickMark
@see #AppCompatSeekBar_tickMarkTint
@see #AppCompatSeekBar_tickMarkTintMode
*/
public static final int[] AppCompatSeekBar = {
0x01010142, 0x7f010046, 0x7f010047, 0x7f010048
};
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
@attr name android:thumb
*/
public static final int AppCompatSeekBar_android_thumb = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tickMark}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:tickMark
*/
public static final int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tickMarkTint}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tickMarkTintMode}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:tickMarkTintMode
*/
public static final int AppCompatSeekBar_tickMarkTintMode = 3;
/** Attributes that can be used with a AppCompatTextHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
</table>
@see #AppCompatTextHelper_android_drawableBottom
@see #AppCompatTextHelper_android_drawableEnd
@see #AppCompatTextHelper_android_drawableLeft
@see #AppCompatTextHelper_android_drawableRight
@see #AppCompatTextHelper_android_drawableStart
@see #AppCompatTextHelper_android_drawableTop
@see #AppCompatTextHelper_android_textAppearance
*/
public static final int[] AppCompatTextHelper = {
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableBottom
*/
public static final int AppCompatTextHelper_android_drawableBottom = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableEnd
*/
public static final int AppCompatTextHelper_android_drawableEnd = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableLeft
*/
public static final int AppCompatTextHelper_android_drawableLeft = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableRight}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableRight
*/
public static final int AppCompatTextHelper_android_drawableRight = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableStart}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableStart
*/
public static final int AppCompatTextHelper_android_drawableStart = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableTop}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableTop
*/
public static final int AppCompatTextHelper_android_drawableTop = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextHelper_android_textAppearance = 0;
/** Attributes that can be used with a AppCompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps com.companyname.DriveApp:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f010049
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextView} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#textAllCaps}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name com.companyname.DriveApp:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps = 1;
/** Attributes that can be used with a AppCompatTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarDivider com.companyname.DriveApp:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.companyname.DriveApp:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.companyname.DriveApp:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize com.companyname.DriveApp:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.companyname.DriveApp:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle com.companyname.DriveApp:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.companyname.DriveApp:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.companyname.DriveApp:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.companyname.DriveApp:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme com.companyname.DriveApp:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.companyname.DriveApp:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.companyname.DriveApp:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.companyname.DriveApp:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.companyname.DriveApp:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.companyname.DriveApp:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground com.companyname.DriveApp:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.companyname.DriveApp:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.companyname.DriveApp:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.companyname.DriveApp:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.companyname.DriveApp:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.companyname.DriveApp:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.companyname.DriveApp:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.companyname.DriveApp:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.companyname.DriveApp:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.companyname.DriveApp:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.companyname.DriveApp:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle com.companyname.DriveApp:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.companyname.DriveApp:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.companyname.DriveApp:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.companyname.DriveApp:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.companyname.DriveApp:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.companyname.DriveApp:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.companyname.DriveApp:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.companyname.DriveApp:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.companyname.DriveApp:alertDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.companyname.DriveApp:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.companyname.DriveApp:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.companyname.DriveApp:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.companyname.DriveApp:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.companyname.DriveApp:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.companyname.DriveApp:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.companyname.DriveApp:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle com.companyname.DriveApp:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.companyname.DriveApp:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle com.companyname.DriveApp:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.companyname.DriveApp:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent com.companyname.DriveApp:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.companyname.DriveApp:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.companyname.DriveApp:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated com.companyname.DriveApp:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.companyname.DriveApp:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal com.companyname.DriveApp:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary com.companyname.DriveApp:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.companyname.DriveApp:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.companyname.DriveApp:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground com.companyname.DriveApp:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.companyname.DriveApp:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme com.companyname.DriveApp:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.companyname.DriveApp:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical com.companyname.DriveApp:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.companyname.DriveApp:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.companyname.DriveApp:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground com.companyname.DriveApp:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor com.companyname.DriveApp:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle com.companyname.DriveApp:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.companyname.DriveApp:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.companyname.DriveApp:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.companyname.DriveApp:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.companyname.DriveApp:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.companyname.DriveApp:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.companyname.DriveApp:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.companyname.DriveApp:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.companyname.DriveApp:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.companyname.DriveApp:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.companyname.DriveApp:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.companyname.DriveApp:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground com.companyname.DriveApp:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.companyname.DriveApp:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.companyname.DriveApp:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.companyname.DriveApp:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.companyname.DriveApp:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.companyname.DriveApp:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.companyname.DriveApp:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.companyname.DriveApp:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.companyname.DriveApp:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle com.companyname.DriveApp:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle com.companyname.DriveApp:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.companyname.DriveApp:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.companyname.DriveApp:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.companyname.DriveApp:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle com.companyname.DriveApp:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle com.companyname.DriveApp:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.companyname.DriveApp:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.companyname.DriveApp:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.companyname.DriveApp:textAppearanceListItemSecondary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.companyname.DriveApp:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.companyname.DriveApp:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.companyname.DriveApp:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.companyname.DriveApp:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.companyname.DriveApp:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.companyname.DriveApp:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.companyname.DriveApp:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.companyname.DriveApp:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle com.companyname.DriveApp:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar com.companyname.DriveApp:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.companyname.DriveApp:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.companyname.DriveApp:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.companyname.DriveApp:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.companyname.DriveApp:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.companyname.DriveApp:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.companyname.DriveApp:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.companyname.DriveApp:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.companyname.DriveApp:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle com.companyname.DriveApp:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorBackgroundFloating
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_colorPrimary
@see #AppCompatTheme_colorPrimaryDark
@see #AppCompatTheme_colorSwitchThumbNormal
@see #AppCompatTheme_controlBackground
@see #AppCompatTheme_dialogPreferredPadding
@see #AppCompatTheme_dialogTheme
@see #AppCompatTheme_dividerHorizontal
@see #AppCompatTheme_dividerVertical
@see #AppCompatTheme_dropDownListViewStyle
@see #AppCompatTheme_dropdownListPreferredItemHeight
@see #AppCompatTheme_editTextBackground
@see #AppCompatTheme_editTextColor
@see #AppCompatTheme_editTextStyle
@see #AppCompatTheme_homeAsUpIndicator
@see #AppCompatTheme_imageButtonStyle
@see #AppCompatTheme_listChoiceBackgroundIndicator
@see #AppCompatTheme_listDividerAlertDialog
@see #AppCompatTheme_listMenuViewStyle
@see #AppCompatTheme_listPopupWindowStyle
@see #AppCompatTheme_listPreferredItemHeight
@see #AppCompatTheme_listPreferredItemHeightLarge
@see #AppCompatTheme_listPreferredItemHeightSmall
@see #AppCompatTheme_listPreferredItemPaddingLeft
@see #AppCompatTheme_listPreferredItemPaddingRight
@see #AppCompatTheme_panelBackground
@see #AppCompatTheme_panelMenuListTheme
@see #AppCompatTheme_panelMenuListWidth
@see #AppCompatTheme_popupMenuStyle
@see #AppCompatTheme_popupWindowStyle
@see #AppCompatTheme_radioButtonStyle
@see #AppCompatTheme_ratingBarStyle
@see #AppCompatTheme_ratingBarStyleIndicator
@see #AppCompatTheme_ratingBarStyleSmall
@see #AppCompatTheme_searchViewStyle
@see #AppCompatTheme_seekBarStyle
@see #AppCompatTheme_selectableItemBackground
@see #AppCompatTheme_selectableItemBackgroundBorderless
@see #AppCompatTheme_spinnerDropDownItemStyle
@see #AppCompatTheme_spinnerStyle
@see #AppCompatTheme_switchStyle
@see #AppCompatTheme_textAppearanceLargePopupMenu
@see #AppCompatTheme_textAppearanceListItem
@see #AppCompatTheme_textAppearanceListItemSecondary
@see #AppCompatTheme_textAppearanceListItemSmall
@see #AppCompatTheme_textAppearancePopupMenuHeader
@see #AppCompatTheme_textAppearanceSearchResultSubtitle
@see #AppCompatTheme_textAppearanceSearchResultTitle
@see #AppCompatTheme_textAppearanceSmallPopupMenu
@see #AppCompatTheme_textColorAlertDialogListItem
@see #AppCompatTheme_textColorSearchUrl
@see #AppCompatTheme_toolbarNavigationButtonStyle
@see #AppCompatTheme_toolbarStyle
@see #AppCompatTheme_windowActionBar
@see #AppCompatTheme_windowActionBarOverlay
@see #AppCompatTheme_windowActionModeOverlay
@see #AppCompatTheme_windowFixedHeightMajor
@see #AppCompatTheme_windowFixedHeightMinor
@see #AppCompatTheme_windowFixedWidthMajor
@see #AppCompatTheme_windowFixedWidthMinor
@see #AppCompatTheme_windowMinWidthMajor
@see #AppCompatTheme_windowMinWidthMinor
@see #AppCompatTheme_windowNoTitle
*/
public static final int[] AppCompatTheme = {
0x01010057, 0x010100ae, 0x7f01004a, 0x7f01004b,
0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f,
0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053,
0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057,
0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b,
0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f,
0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063,
0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067,
0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b,
0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f,
0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073,
0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077,
0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b,
0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f,
0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087,
0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b,
0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f,
0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093,
0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097,
0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b,
0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f,
0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3,
0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7,
0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab,
0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af,
0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3,
0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7,
0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionBarDivider}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionBarItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionBarPopupTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionBarSize}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionBarSplitStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionBarTabBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionBarTabStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionBarTabTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionBarTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionBarWidgetTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionDropDownStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionMenuTextAppearance}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionMenuTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.DriveApp:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionModeBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionModeCloseButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionModeCloseDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionModeCopyDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionModeCutDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionModeFindDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionModePasteDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionModePopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionModeSelectAllDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionModeShareDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionModeSplitBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionModeStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionModeWebSearchDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionOverflowButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionOverflowMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#activityChooserViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#alertDialogButtonGroupStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#alertDialogCenterButtons}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons = 96;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#alertDialogStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle = 94;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#alertDialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:alertDialogTheme
*/
public static final int AppCompatTheme_alertDialogTheme = 97;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowAnimationStyle
*/
public static final int AppCompatTheme_android_windowAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowIsFloating
*/
public static final int AppCompatTheme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#autoCompleteTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#borderlessButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#buttonBarButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#buttonBarNegativeButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#buttonBarNeutralButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#buttonBarPositiveButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#buttonBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#buttonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle = 103;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#buttonStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall = 104;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#checkboxStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle = 105;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#checkedTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle = 106;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#colorAccent}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:colorAccent
*/
public static final int AppCompatTheme_colorAccent = 86;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#colorBackgroundFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating = 93;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#colorButtonNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal = 90;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#colorControlActivated}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated = 88;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#colorControlHighlight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight = 89;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#colorControlNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal = 87;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#colorPrimary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary = 84;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#colorPrimaryDark}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark = 85;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#colorSwitchThumbNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal = 91;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#controlBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:controlBackground
*/
public static final int AppCompatTheme_controlBackground = 92;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#dialogPreferredPadding}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#dialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#dividerHorizontal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#dividerVertical}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#dropDownListViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#dropdownListPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#editTextBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#editTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.DriveApp:editTextColor
*/
public static final int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#editTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle = 107;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#imageButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#listChoiceBackgroundIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#listDividerAlertDialog}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#listMenuViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle = 115;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#listPopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#listPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#listPreferredItemHeightLarge}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#listPreferredItemHeightSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#listPreferredItemPaddingLeft}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#listPreferredItemPaddingRight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#panelBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:panelBackground
*/
public static final int AppCompatTheme_panelBackground = 80;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#panelMenuListTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme = 82;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#panelMenuListWidth}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth = 81;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#popupMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#popupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#radioButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle = 108;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#ratingBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle = 109;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#ratingBarStyleIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator = 110;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#ratingBarStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall = 111;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#searchViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#seekBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle = 112;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#selectableItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#selectableItemBackgroundBorderless}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#spinnerDropDownItemStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#spinnerStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle = 113;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#switchStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:switchStyle
*/
public static final int AppCompatTheme_switchStyle = 114;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#textAppearanceLargePopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#textAppearanceListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#textAppearanceListItemSecondary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:textAppearanceListItemSecondary
*/
public static final int AppCompatTheme_textAppearanceListItemSecondary = 78;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#textAppearanceListItemSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall = 79;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#textAppearancePopupMenuHeader}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#textAppearanceSearchResultSubtitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#textAppearanceSearchResultTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#textAppearanceSmallPopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#textColorAlertDialogListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.DriveApp:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem = 98;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#textColorSearchUrl}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.DriveApp:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#toolbarNavigationButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#toolbarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#windowActionBar}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#windowActionModeOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#windowFixedHeightMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#windowFixedHeightMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#windowFixedWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#windowFixedWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#windowMinWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#windowMinWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#windowNoTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:windowNoTitle
*/
public static final int AppCompatTheme_windowNoTitle = 3;
/** Attributes that can be used with a BottomNavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomNavigationView_elevation com.companyname.DriveApp:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemBackground com.companyname.DriveApp:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemIconTint com.companyname.DriveApp:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemTextColor com.companyname.DriveApp:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_menu com.companyname.DriveApp:menu}</code></td><td></td></tr>
</table>
@see #BottomNavigationView_elevation
@see #BottomNavigationView_itemBackground
@see #BottomNavigationView_itemIconTint
@see #BottomNavigationView_itemTextColor
@see #BottomNavigationView_menu
*/
public static final int[] BottomNavigationView = {
0x7f010038, 0x7f01012e, 0x7f01012f, 0x7f010130,
0x7f010131
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#elevation}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:elevation
*/
public static final int BottomNavigationView_elevation = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#itemBackground}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:itemBackground
*/
public static final int BottomNavigationView_itemBackground = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#itemIconTint}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:itemIconTint
*/
public static final int BottomNavigationView_itemIconTint = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#itemTextColor}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:itemTextColor
*/
public static final int BottomNavigationView_itemTextColor = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#menu}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:menu
*/
public static final int BottomNavigationView_menu = 1;
/** Attributes that can be used with a BottomSheetBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable com.companyname.DriveApp:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.companyname.DriveApp:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.companyname.DriveApp:behavior_skipCollapsed}</code></td><td></td></tr>
</table>
@see #BottomSheetBehavior_Layout_behavior_hideable
@see #BottomSheetBehavior_Layout_behavior_peekHeight
@see #BottomSheetBehavior_Layout_behavior_skipCollapsed
*/
public static final int[] BottomSheetBehavior_Layout = {
0x7f010108, 0x7f010109, 0x7f01010a
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#behavior_hideable}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:behavior_hideable
*/
public static final int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#behavior_peekHeight}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:behavior_peekHeight
*/
public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#behavior_skipCollapsed}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:behavior_skipCollapsed
*/
public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2;
/** Attributes that can be used with a ButtonBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ButtonBarLayout_allowStacking com.companyname.DriveApp:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100bc
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#allowStacking}
attribute's value can be found in the {@link #ButtonBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:allowStacking
*/
public static final int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a CardView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardBackgroundColor com.companyname.DriveApp:cardBackgroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardCornerRadius com.companyname.DriveApp:cardCornerRadius}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardElevation com.companyname.DriveApp:cardElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardMaxElevation com.companyname.DriveApp:cardMaxElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardPreventCornerOverlap com.companyname.DriveApp:cardPreventCornerOverlap}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardUseCompatPadding com.companyname.DriveApp:cardUseCompatPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPadding com.companyname.DriveApp:contentPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingBottom com.companyname.DriveApp:contentPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingLeft com.companyname.DriveApp:contentPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingRight com.companyname.DriveApp:contentPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingTop com.companyname.DriveApp:contentPaddingTop}</code></td><td></td></tr>
</table>
@see #CardView_android_minHeight
@see #CardView_android_minWidth
@see #CardView_cardBackgroundColor
@see #CardView_cardCornerRadius
@see #CardView_cardElevation
@see #CardView_cardMaxElevation
@see #CardView_cardPreventCornerOverlap
@see #CardView_cardUseCompatPadding
@see #CardView_contentPadding
@see #CardView_contentPaddingBottom
@see #CardView_contentPaddingLeft
@see #CardView_contentPaddingRight
@see #CardView_contentPaddingTop
*/
public static final int[] CardView = {
0x0101013f, 0x01010140, 0x7f010011, 0x7f010012,
0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016,
0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a,
0x7f01001b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minHeight
*/
public static final int CardView_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minWidth
*/
public static final int CardView_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#cardBackgroundColor}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:cardBackgroundColor
*/
public static final int CardView_cardBackgroundColor = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#cardCornerRadius}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:cardCornerRadius
*/
public static final int CardView_cardCornerRadius = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#cardElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:cardElevation
*/
public static final int CardView_cardElevation = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#cardMaxElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:cardMaxElevation
*/
public static final int CardView_cardMaxElevation = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#cardPreventCornerOverlap}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:cardPreventCornerOverlap
*/
public static final int CardView_cardPreventCornerOverlap = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#cardUseCompatPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:cardUseCompatPadding
*/
public static final int CardView_cardUseCompatPadding = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentPadding
*/
public static final int CardView_contentPadding = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentPaddingBottom}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentPaddingBottom
*/
public static final int CardView_contentPaddingBottom = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentPaddingLeft}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentPaddingLeft
*/
public static final int CardView_contentPaddingLeft = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentPaddingRight}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentPaddingRight
*/
public static final int CardView_contentPaddingRight = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentPaddingTop}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentPaddingTop
*/
public static final int CardView_contentPaddingTop = 11;
/** Attributes that can be used with a CollapsingToolbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity com.companyname.DriveApp:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.companyname.DriveApp:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.companyname.DriveApp:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.companyname.DriveApp:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.companyname.DriveApp:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.companyname.DriveApp:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.companyname.DriveApp:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.companyname.DriveApp:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.companyname.DriveApp:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.companyname.DriveApp:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.companyname.DriveApp:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.companyname.DriveApp:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.companyname.DriveApp:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title com.companyname.DriveApp:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.companyname.DriveApp:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.companyname.DriveApp:toolbarId}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_collapsedTitleGravity
@see #CollapsingToolbarLayout_collapsedTitleTextAppearance
@see #CollapsingToolbarLayout_contentScrim
@see #CollapsingToolbarLayout_expandedTitleGravity
@see #CollapsingToolbarLayout_expandedTitleMargin
@see #CollapsingToolbarLayout_expandedTitleMarginBottom
@see #CollapsingToolbarLayout_expandedTitleMarginEnd
@see #CollapsingToolbarLayout_expandedTitleMarginStart
@see #CollapsingToolbarLayout_expandedTitleMarginTop
@see #CollapsingToolbarLayout_expandedTitleTextAppearance
@see #CollapsingToolbarLayout_scrimAnimationDuration
@see #CollapsingToolbarLayout_scrimVisibleHeightTrigger
@see #CollapsingToolbarLayout_statusBarScrim
@see #CollapsingToolbarLayout_title
@see #CollapsingToolbarLayout_titleEnabled
@see #CollapsingToolbarLayout_toolbarId
*/
public static final int[] CollapsingToolbarLayout = {
0x7f01001f, 0x7f01010b, 0x7f01010c, 0x7f01010d,
0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111,
0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115,
0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#collapsedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:collapsedTitleGravity
*/
public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#collapsedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:collapsedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentScrim
*/
public static final int CollapsingToolbarLayout_contentScrim = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#expandedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:expandedTitleGravity
*/
public static final int CollapsingToolbarLayout_expandedTitleGravity = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#expandedTitleMargin}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:expandedTitleMargin
*/
public static final int CollapsingToolbarLayout_expandedTitleMargin = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#expandedTitleMarginBottom}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:expandedTitleMarginBottom
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#expandedTitleMarginEnd}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:expandedTitleMarginEnd
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#expandedTitleMarginStart}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:expandedTitleMarginStart
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#expandedTitleMarginTop}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:expandedTitleMarginTop
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#expandedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:expandedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#scrimAnimationDuration}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:scrimAnimationDuration
*/
public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#scrimVisibleHeightTrigger}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:scrimVisibleHeightTrigger
*/
public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#statusBarScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:statusBarScrim
*/
public static final int CollapsingToolbarLayout_statusBarScrim = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#title}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:title
*/
public static final int CollapsingToolbarLayout_title = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#titleEnabled}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:titleEnabled
*/
public static final int CollapsingToolbarLayout_titleEnabled = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#toolbarId}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:toolbarId
*/
public static final int CollapsingToolbarLayout_toolbarId = 10;
/** Attributes that can be used with a CollapsingToolbarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode com.companyname.DriveApp:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.companyname.DriveApp:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f01011a, 0x7f01011b
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#layout_collapseMode}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:layout_collapseMode
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#layout_collapseParallaxMultiplier}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:layout_collapseParallaxMultiplier
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1;
/** Attributes that can be used with a ColorStateListItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ColorStateListItem_alpha com.companyname.DriveApp:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
</table>
@see #ColorStateListItem_alpha
@see #ColorStateListItem_android_alpha
@see #ColorStateListItem_android_color
*/
public static final int[] ColorStateListItem = {
0x010101a5, 0x0101031f, 0x7f0100bd
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:alpha
*/
public static final int ColorStateListItem_alpha = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:alpha
*/
public static final int ColorStateListItem_android_alpha = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#color}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:color
*/
public static final int ColorStateListItem_android_color = 0;
/** Attributes that can be used with a CompoundButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTint com.companyname.DriveApp:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode com.companyname.DriveApp:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100be, 0x7f0100bf
};
/**
<p>This symbol is the offset where the {@link android.R.attr#button}
attribute's value can be found in the {@link #CompoundButton} array.
@attr name android:button
*/
public static final int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#buttonTint}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#buttonTintMode}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:buttonTintMode
*/
public static final int CompoundButton_buttonTintMode = 2;
/** Attributes that can be used with a CoordinatorLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_keylines com.companyname.DriveApp:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.companyname.DriveApp:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f01011c, 0x7f01011d
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#keylines}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:keylines
*/
public static final int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#statusBarBackground}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:statusBarBackground
*/
public static final int CoordinatorLayout_statusBarBackground = 1;
/** Attributes that can be used with a CoordinatorLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor com.companyname.DriveApp:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.companyname.DriveApp:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.companyname.DriveApp:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.companyname.DriveApp:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.companyname.DriveApp:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.companyname.DriveApp:layout_keyline}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_Layout_android_layout_gravity
@see #CoordinatorLayout_Layout_layout_anchor
@see #CoordinatorLayout_Layout_layout_anchorGravity
@see #CoordinatorLayout_Layout_layout_behavior
@see #CoordinatorLayout_Layout_layout_dodgeInsetEdges
@see #CoordinatorLayout_Layout_layout_insetEdge
@see #CoordinatorLayout_Layout_layout_keyline
*/
public static final int[] CoordinatorLayout_Layout = {
0x010100b3, 0x7f01011e, 0x7f01011f, 0x7f010120,
0x7f010121, 0x7f010122, 0x7f010123
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
@attr name android:layout_gravity
*/
public static final int CoordinatorLayout_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#layout_anchor}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:layout_anchor
*/
public static final int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#layout_anchorGravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:layout_anchorGravity
*/
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#layout_behavior}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:layout_behavior
*/
public static final int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#layout_dodgeInsetEdges}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:layout_dodgeInsetEdges
*/
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#layout_insetEdge}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:layout_insetEdge
*/
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#layout_keyline}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:layout_keyline
*/
public static final int CoordinatorLayout_Layout_layout_keyline = 3;
/** Attributes that can be used with a DesignTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme com.companyname.DriveApp:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle com.companyname.DriveApp:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError com.companyname.DriveApp:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f010124, 0x7f010125, 0x7f010126
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#bottomSheetDialogTheme}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:bottomSheetDialogTheme
*/
public static final int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#bottomSheetStyle}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:bottomSheetStyle
*/
public static final int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#textColorError}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:textColorError
*/
public static final int DesignTheme_textColorError = 2;
/** Attributes that can be used with a DrawerArrowToggle.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.companyname.DriveApp:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.companyname.DriveApp:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength com.companyname.DriveApp:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color com.companyname.DriveApp:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize com.companyname.DriveApp:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.companyname.DriveApp:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars com.companyname.DriveApp:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness com.companyname.DriveApp:thickness}</code></td><td></td></tr>
</table>
@see #DrawerArrowToggle_arrowHeadLength
@see #DrawerArrowToggle_arrowShaftLength
@see #DrawerArrowToggle_barLength
@see #DrawerArrowToggle_color
@see #DrawerArrowToggle_drawableSize
@see #DrawerArrowToggle_gapBetweenBars
@see #DrawerArrowToggle_spinBars
@see #DrawerArrowToggle_thickness
*/
public static final int[] DrawerArrowToggle = {
0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3,
0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#arrowHeadLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#arrowShaftLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#barLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#color}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#drawableSize}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#gapBetweenBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#spinBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#thickness}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:thickness
*/
public static final int DrawerArrowToggle_thickness = 7;
/** Attributes that can be used with a FloatingActionButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTint com.companyname.DriveApp:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.companyname.DriveApp:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth com.companyname.DriveApp:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation com.companyname.DriveApp:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize com.companyname.DriveApp:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.companyname.DriveApp:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor com.companyname.DriveApp:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding com.companyname.DriveApp:useCompatPadding}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_backgroundTint
@see #FloatingActionButton_backgroundTintMode
@see #FloatingActionButton_borderWidth
@see #FloatingActionButton_elevation
@see #FloatingActionButton_fabSize
@see #FloatingActionButton_pressedTranslationZ
@see #FloatingActionButton_rippleColor
@see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton = {
0x7f010038, 0x7f010101, 0x7f010102, 0x7f010127,
0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#backgroundTint}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:backgroundTint
*/
public static final int FloatingActionButton_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:backgroundTintMode
*/
public static final int FloatingActionButton_backgroundTintMode = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#borderWidth}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:borderWidth
*/
public static final int FloatingActionButton_borderWidth = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#elevation}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:elevation
*/
public static final int FloatingActionButton_elevation = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#fabSize}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:fabSize
*/
public static final int FloatingActionButton_fabSize = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#pressedTranslationZ}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:pressedTranslationZ
*/
public static final int FloatingActionButton_pressedTranslationZ = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#rippleColor}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:rippleColor
*/
public static final int FloatingActionButton_rippleColor = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#useCompatPadding}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:useCompatPadding
*/
public static final int FloatingActionButton_useCompatPadding = 7;
/** Attributes that can be used with a FloatingActionButton_Behavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide com.companyname.DriveApp:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f01012c
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#behavior_autoHide}
attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:behavior_autoHide
*/
public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0;
/** Attributes that can be used with a ForegroundLinearLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding com.companyname.DriveApp:foregroundInsidePadding}</code></td><td></td></tr>
</table>
@see #ForegroundLinearLayout_android_foreground
@see #ForegroundLinearLayout_android_foregroundGravity
@see #ForegroundLinearLayout_foregroundInsidePadding
*/
public static final int[] ForegroundLinearLayout = {
0x01010109, 0x01010200, 0x7f01012d
};
/**
<p>This symbol is the offset where the {@link android.R.attr#foreground}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foreground
*/
public static final int ForegroundLinearLayout_android_foreground = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#foregroundGravity}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foregroundGravity
*/
public static final int ForegroundLinearLayout_android_foregroundGravity = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#foregroundInsidePadding}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:foregroundInsidePadding
*/
public static final int ForegroundLinearLayout_foregroundInsidePadding = 2;
/** Attributes that can be used with a LinearLayoutCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_divider com.companyname.DriveApp:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.companyname.DriveApp:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.companyname.DriveApp:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers com.companyname.DriveApp:showDividers}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_android_baselineAligned
@see #LinearLayoutCompat_android_baselineAlignedChildIndex
@see #LinearLayoutCompat_android_gravity
@see #LinearLayoutCompat_android_orientation
@see #LinearLayoutCompat_android_weightSum
@see #LinearLayoutCompat_divider
@see #LinearLayoutCompat_dividerPadding
@see #LinearLayoutCompat_measureWithLargestChild
@see #LinearLayoutCompat_showDividers
*/
public static final int[] LinearLayoutCompat = {
0x010100af, 0x010100c4, 0x01010126, 0x01010127,
0x01010128, 0x7f010027, 0x7f0100c8, 0x7f0100c9,
0x7f0100ca
};
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAligned
*/
public static final int LinearLayoutCompat_android_baselineAligned = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAlignedChildIndex
*/
public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:gravity
*/
public static final int LinearLayoutCompat_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:orientation
*/
public static final int LinearLayoutCompat_android_orientation = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#weightSum}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:weightSum
*/
public static final int LinearLayoutCompat_android_weightSum = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#divider}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#dividerPadding}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#measureWithLargestChild}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#showDividers}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:showDividers
*/
public static final int LinearLayoutCompat_showDividers = 7;
/** Attributes that can be used with a LinearLayoutCompat_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_Layout_android_layout_gravity
@see #LinearLayoutCompat_Layout_android_layout_height
@see #LinearLayoutCompat_Layout_android_layout_weight
@see #LinearLayoutCompat_Layout_android_layout_width
*/
public static final int[] LinearLayoutCompat_Layout = {
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_gravity
*/
public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_height}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_height
*/
public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_weight}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_weight
*/
public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_width}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_width
*/
public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
/** Attributes that can be used with a ListPopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
</table>
@see #ListPopupWindow_android_dropDownHorizontalOffset
@see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow = {
0x010102ac, 0x010102ad
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownHorizontalOffset
*/
public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownVerticalOffset
*/
public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Attributes that can be used with a MediaRouteButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MediaRouteButton_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_buttonTint com.companyname.DriveApp:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_externalRouteEnabledDrawable com.companyname.DriveApp:externalRouteEnabledDrawable}</code></td><td></td></tr>
</table>
@see #MediaRouteButton_android_minHeight
@see #MediaRouteButton_android_minWidth
@see #MediaRouteButton_buttonTint
@see #MediaRouteButton_externalRouteEnabledDrawable
*/
public static final int[] MediaRouteButton = {
0x0101013f, 0x01010140, 0x7f010010, 0x7f0100be
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minHeight
*/
public static final int MediaRouteButton_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minWidth
*/
public static final int MediaRouteButton_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#buttonTint}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:buttonTint
*/
public static final int MediaRouteButton_buttonTint = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#externalRouteEnabledDrawable}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:externalRouteEnabledDrawable
*/
public static final int MediaRouteButton_externalRouteEnabledDrawable = 2;
/** Attributes that can be used with a MenuGroup.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
</table>
@see #MenuGroup_android_checkableBehavior
@see #MenuGroup_android_enabled
@see #MenuGroup_android_id
@see #MenuGroup_android_menuCategory
@see #MenuGroup_android_orderInCategory
@see #MenuGroup_android_visible
*/
public static final int[] MenuGroup = {
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:enabled
*/
public static final int MenuGroup_android_enabled = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:id
*/
public static final int MenuGroup_android_id = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:visible
*/
public static final int MenuGroup_android_visible = 2;
/** Attributes that can be used with a MenuItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuItem_actionLayout com.companyname.DriveApp:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass com.companyname.DriveApp:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass com.companyname.DriveApp:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction com.companyname.DriveApp:showAsAction}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_showAsAction
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd,
0x7f0100ce
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionLayout}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionProviderClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#actionViewClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:actionViewClass
*/
public static final int MenuItem_actionViewClass = 15;
/**
<p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#checkable}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checkable
*/
public static final int MenuItem_android_checkable = 11;
/**
<p>This symbol is the offset where the {@link android.R.attr#checked}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checked
*/
public static final int MenuItem_android_checked = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:enabled
*/
public static final int MenuItem_android_enabled = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:icon
*/
public static final int MenuItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:id
*/
public static final int MenuItem_android_id = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#onClick}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:onClick
*/
public static final int MenuItem_android_onClick = 12;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#title}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:title
*/
public static final int MenuItem_android_title = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:visible
*/
public static final int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#showAsAction}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:showAsAction
*/
public static final int MenuItem_showAsAction = 13;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing com.companyname.DriveApp:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow com.companyname.DriveApp:subMenuArrow}</code></td><td></td></tr>
</table>
@see #MenuView_android_headerBackground
@see #MenuView_android_horizontalDivider
@see #MenuView_android_itemBackground
@see #MenuView_android_itemIconDisabledAlpha
@see #MenuView_android_itemTextAppearance
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
@see #MenuView_preserveIconSpacing
@see #MenuView_subMenuArrow
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f0100cf,
0x7f0100d0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#headerBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:headerBackground
*/
public static final int MenuView_android_headerBackground = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:horizontalDivider
*/
public static final int MenuView_android_horizontalDivider = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemBackground
*/
public static final int MenuView_android_itemBackground = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemIconDisabledAlpha
*/
public static final int MenuView_android_itemIconDisabledAlpha = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemTextAppearance
*/
public static final int MenuView_android_itemTextAppearance = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:verticalDivider
*/
public static final int MenuView_android_verticalDivider = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:windowAnimationStyle
*/
public static final int MenuView_android_windowAnimationStyle = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#preserveIconSpacing}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#subMenuArrow}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:subMenuArrow
*/
public static final int MenuView_subMenuArrow = 8;
/** Attributes that can be used with a NavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_elevation com.companyname.DriveApp:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout com.companyname.DriveApp:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground com.companyname.DriveApp:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint com.companyname.DriveApp:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance com.companyname.DriveApp:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor com.companyname.DriveApp:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu com.companyname.DriveApp:menu}</code></td><td></td></tr>
</table>
@see #NavigationView_android_background
@see #NavigationView_android_fitsSystemWindows
@see #NavigationView_android_maxWidth
@see #NavigationView_elevation
@see #NavigationView_headerLayout
@see #NavigationView_itemBackground
@see #NavigationView_itemIconTint
@see #NavigationView_itemTextAppearance
@see #NavigationView_itemTextColor
@see #NavigationView_menu
*/
public static final int[] NavigationView = {
0x010100d4, 0x010100dd, 0x0101011f, 0x7f010038,
0x7f01012e, 0x7f01012f, 0x7f010130, 0x7f010131,
0x7f010132, 0x7f010133
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:background
*/
public static final int NavigationView_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:fitsSystemWindows
*/
public static final int NavigationView_android_fitsSystemWindows = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:maxWidth
*/
public static final int NavigationView_android_maxWidth = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#elevation}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:elevation
*/
public static final int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#headerLayout}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:headerLayout
*/
public static final int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#itemBackground}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:itemBackground
*/
public static final int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#itemIconTint}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:itemIconTint
*/
public static final int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:itemTextAppearance
*/
public static final int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#itemTextColor}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:itemTextColor
*/
public static final int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#menu}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:menu
*/
public static final int NavigationView_menu = 4;
/** Attributes that can be used with a PopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor com.companyname.DriveApp:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupAnimationStyle
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x010102c9, 0x7f0100d1
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupAnimationStyle
*/
public static final int PopupWindow_android_popupAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupBackground
*/
public static final int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#overlapAnchor}
attribute's value can be found in the {@link #PopupWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:overlapAnchor
*/
public static final int PopupWindow_overlapAnchor = 2;
/** Attributes that can be used with a PopupWindowBackgroundState.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.companyname.DriveApp:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100d2
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#state_above_anchor}
attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor = 0;
/** Attributes that can be used with a RecycleListView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecycleListView_paddingBottomNoButtons com.companyname.DriveApp:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.companyname.DriveApp:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100d3, 0x7f0100d4
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#paddingBottomNoButtons}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#paddingTopNoTitle}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:paddingTopNoTitle
*/
public static final int RecycleListView_paddingTopNoTitle = 1;
/** Attributes that can be used with a RecyclerView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager com.companyname.DriveApp:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout com.companyname.DriveApp:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount com.companyname.DriveApp:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd com.companyname.DriveApp:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_descendantFocusability
@see #RecyclerView_android_orientation
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001,
0x7f010002, 0x7f010003
};
/**
<p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:descendantFocusability
*/
public static final int RecyclerView_android_descendantFocusability = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:orientation
*/
public static final int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#layoutManager}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:layoutManager
*/
public static final int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#reverseLayout}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:reverseLayout
*/
public static final int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#spanCount}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:spanCount
*/
public static final int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#stackFromEnd}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:stackFromEnd
*/
public static final int RecyclerView_stackFromEnd = 5;
/** Attributes that can be used with a ScrimInsetsFrameLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground com.companyname.DriveApp:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f010134
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#insetForeground}
attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.companyname.DriveApp:insetForeground
*/
public static final int ScrimInsetsFrameLayout_insetForeground = 0;
/** Attributes that can be used with a ScrollingViewBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop com.companyname.DriveApp:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f010135
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#behavior_overlapTop}
attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:behavior_overlapTop
*/
public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_closeIcon com.companyname.DriveApp:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon com.companyname.DriveApp:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint com.companyname.DriveApp:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon com.companyname.DriveApp:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault com.companyname.DriveApp:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout com.companyname.DriveApp:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground com.companyname.DriveApp:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint com.companyname.DriveApp:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon com.companyname.DriveApp:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon com.companyname.DriveApp:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground com.companyname.DriveApp:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout com.companyname.DriveApp:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon com.companyname.DriveApp:voiceIcon}</code></td><td></td></tr>
</table>
@see #SearchView_android_focusable
@see #SearchView_android_imeOptions
@see #SearchView_android_inputType
@see #SearchView_android_maxWidth
@see #SearchView_closeIcon
@see #SearchView_commitIcon
@see #SearchView_defaultQueryHint
@see #SearchView_goIcon
@see #SearchView_iconifiedByDefault
@see #SearchView_layout
@see #SearchView_queryBackground
@see #SearchView_queryHint
@see #SearchView_searchHintIcon
@see #SearchView_searchIcon
@see #SearchView_submitBackground
@see #SearchView_suggestionRowLayout
@see #SearchView_voiceIcon
*/
public static final int[] SearchView = {
0x010100da, 0x0101011f, 0x01010220, 0x01010264,
0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8,
0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc,
0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0,
0x7f0100e1
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:focusable
*/
public static final int SearchView_android_focusable = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#imeOptions}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#inputType}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:inputType
*/
public static final int SearchView_android_inputType = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:maxWidth
*/
public static final int SearchView_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#closeIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#commitIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#defaultQueryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#goIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#iconifiedByDefault}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#layout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#queryBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#queryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#searchHintIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#searchIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#submitBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#suggestionRowLayout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#voiceIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:voiceIcon
*/
public static final int SearchView_voiceIcon = 12;
/** Attributes that can be used with a SnackbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_elevation com.companyname.DriveApp:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.companyname.DriveApp:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f010038, 0x7f010136
};
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
@attr name android:maxWidth
*/
public static final int SnackbarLayout_android_maxWidth = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#elevation}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:elevation
*/
public static final int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#maxActionInlineWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:maxActionInlineWidth
*/
public static final int SnackbarLayout_maxActionInlineWidth = 2;
/** Attributes that can be used with a Spinner.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_popupTheme com.companyname.DriveApp:popupTheme}</code></td><td></td></tr>
</table>
@see #Spinner_android_dropDownWidth
@see #Spinner_android_entries
@see #Spinner_android_popupBackground
@see #Spinner_android_prompt
@see #Spinner_popupTheme
*/
public static final int[] Spinner = {
0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
0x7f010039
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#entries}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:entries
*/
public static final int Spinner_android_entries = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#prompt}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:prompt
*/
public static final int Spinner_android_prompt = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#popupTheme}
attribute's value can be found in the {@link #Spinner} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:popupTheme
*/
public static final int Spinner_popupTheme = 4;
/** Attributes that can be used with a SwitchCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_showText com.companyname.DriveApp:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack com.companyname.DriveApp:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth com.companyname.DriveApp:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding com.companyname.DriveApp:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance com.companyname.DriveApp:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding com.companyname.DriveApp:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint com.companyname.DriveApp:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode com.companyname.DriveApp:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track com.companyname.DriveApp:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint com.companyname.DriveApp:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode com.companyname.DriveApp:trackTintMode}</code></td><td></td></tr>
</table>
@see #SwitchCompat_android_textOff
@see #SwitchCompat_android_textOn
@see #SwitchCompat_android_thumb
@see #SwitchCompat_showText
@see #SwitchCompat_splitTrack
@see #SwitchCompat_switchMinWidth
@see #SwitchCompat_switchPadding
@see #SwitchCompat_switchTextAppearance
@see #SwitchCompat_thumbTextPadding
@see #SwitchCompat_thumbTint
@see #SwitchCompat_thumbTintMode
@see #SwitchCompat_track
@see #SwitchCompat_trackTint
@see #SwitchCompat_trackTintMode
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f0100e2,
0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6,
0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea,
0x7f0100eb, 0x7f0100ec
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textOff}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOff
*/
public static final int SwitchCompat_android_textOff = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textOn}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOn
*/
public static final int SwitchCompat_android_textOn = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:thumb
*/
public static final int SwitchCompat_android_thumb = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#showText}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:showText
*/
public static final int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#splitTrack}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:splitTrack
*/
public static final int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#switchMinWidth}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#switchPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:switchPadding
*/
public static final int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#switchTextAppearance}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#thumbTextPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#thumbTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:thumbTint
*/
public static final int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#thumbTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#track}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:track
*/
public static final int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#trackTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:trackTint
*/
public static final int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#trackTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:trackTintMode
*/
public static final int SwitchCompat_trackTintMode = 7;
/** Attributes that can be used with a TabItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr>
</table>
@see #TabItem_android_icon
@see #TabItem_android_layout
@see #TabItem_android_text
*/
public static final int[] TabItem = {
0x01010002, 0x010100f2, 0x0101014f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:icon
*/
public static final int TabItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:layout
*/
public static final int TabItem_android_layout = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#text}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:text
*/
public static final int TabItem_android_text = 2;
/** Attributes that can be used with a TabLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabLayout_tabBackground com.companyname.DriveApp:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart com.companyname.DriveApp:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity com.companyname.DriveApp:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor com.companyname.DriveApp:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight com.companyname.DriveApp:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth com.companyname.DriveApp:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth com.companyname.DriveApp:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode com.companyname.DriveApp:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding com.companyname.DriveApp:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom com.companyname.DriveApp:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd com.companyname.DriveApp:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart com.companyname.DriveApp:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop com.companyname.DriveApp:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor com.companyname.DriveApp:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance com.companyname.DriveApp:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor com.companyname.DriveApp:tabTextColor}</code></td><td></td></tr>
</table>
@see #TabLayout_tabBackground
@see #TabLayout_tabContentStart
@see #TabLayout_tabGravity
@see #TabLayout_tabIndicatorColor
@see #TabLayout_tabIndicatorHeight
@see #TabLayout_tabMaxWidth
@see #TabLayout_tabMinWidth
@see #TabLayout_tabMode
@see #TabLayout_tabPadding
@see #TabLayout_tabPaddingBottom
@see #TabLayout_tabPaddingEnd
@see #TabLayout_tabPaddingStart
@see #TabLayout_tabPaddingTop
@see #TabLayout_tabSelectedTextColor
@see #TabLayout_tabTextAppearance
@see #TabLayout_tabTextColor
*/
public static final int[] TabLayout = {
0x7f010137, 0x7f010138, 0x7f010139, 0x7f01013a,
0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e,
0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142,
0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146
};
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabBackground}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:tabBackground
*/
public static final int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabContentStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:tabContentStart
*/
public static final int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabGravity}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:tabGravity
*/
public static final int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabIndicatorColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:tabIndicatorColor
*/
public static final int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabIndicatorHeight}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:tabIndicatorHeight
*/
public static final int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabMaxWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:tabMaxWidth
*/
public static final int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabMinWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:tabMinWidth
*/
public static final int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabMode}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:tabMode
*/
public static final int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabPadding}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:tabPadding
*/
public static final int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabPaddingBottom}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:tabPaddingBottom
*/
public static final int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabPaddingEnd}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:tabPaddingEnd
*/
public static final int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabPaddingStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:tabPaddingStart
*/
public static final int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabPaddingTop}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:tabPaddingTop
*/
public static final int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabSelectedTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:tabSelectedTextColor
*/
public static final int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabTextAppearance}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:tabTextAppearance
*/
public static final int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#tabTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:tabTextColor
*/
public static final int TabLayout_tabTextColor = 9;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps com.companyname.DriveApp:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textColorHint
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x01010161, 0x01010162, 0x01010163,
0x01010164, 0x7f010049
};
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowColor
*/
public static final int TextAppearance_android_shadowColor = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDx}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDx
*/
public static final int TextAppearance_android_shadowDx = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDy}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDy
*/
public static final int TextAppearance_android_shadowDy = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowRadius
*/
public static final int TextAppearance_android_shadowRadius = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColor
*/
public static final int TextAppearance_android_textColor = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorHint
*/
public static final int TextAppearance_android_textColorHint = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static final int TextAppearance_android_textSize = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#textStyle}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#typeface}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:typeface
*/
public static final int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#textAllCaps}
attribute's value can be found in the {@link #TextAppearance} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name com.companyname.DriveApp:textAllCaps
*/
public static final int TextAppearance_textAllCaps = 9;
/** Attributes that can be used with a TextInputLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterEnabled com.companyname.DriveApp:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength com.companyname.DriveApp:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.companyname.DriveApp:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance com.companyname.DriveApp:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled com.companyname.DriveApp:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance com.companyname.DriveApp:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.companyname.DriveApp:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled com.companyname.DriveApp:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance com.companyname.DriveApp:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.companyname.DriveApp:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.companyname.DriveApp:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.companyname.DriveApp:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint com.companyname.DriveApp:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.companyname.DriveApp:passwordToggleTintMode}</code></td><td></td></tr>
</table>
@see #TextInputLayout_android_hint
@see #TextInputLayout_android_textColorHint
@see #TextInputLayout_counterEnabled
@see #TextInputLayout_counterMaxLength
@see #TextInputLayout_counterOverflowTextAppearance
@see #TextInputLayout_counterTextAppearance
@see #TextInputLayout_errorEnabled
@see #TextInputLayout_errorTextAppearance
@see #TextInputLayout_hintAnimationEnabled
@see #TextInputLayout_hintEnabled
@see #TextInputLayout_hintTextAppearance
@see #TextInputLayout_passwordToggleContentDescription
@see #TextInputLayout_passwordToggleDrawable
@see #TextInputLayout_passwordToggleEnabled
@see #TextInputLayout_passwordToggleTint
@see #TextInputLayout_passwordToggleTintMode
*/
public static final int[] TextInputLayout = {
0x0101009a, 0x01010150, 0x7f010147, 0x7f010148,
0x7f010149, 0x7f01014a, 0x7f01014b, 0x7f01014c,
0x7f01014d, 0x7f01014e, 0x7f01014f, 0x7f010150,
0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154
};
/**
<p>This symbol is the offset where the {@link android.R.attr#hint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:hint
*/
public static final int TextInputLayout_android_hint = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:textColorHint
*/
public static final int TextInputLayout_android_textColorHint = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#counterEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:counterEnabled
*/
public static final int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#counterMaxLength}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:counterMaxLength
*/
public static final int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#counterOverflowTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:counterOverflowTextAppearance
*/
public static final int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#counterTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:counterTextAppearance
*/
public static final int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#errorEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:errorEnabled
*/
public static final int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#errorTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:errorTextAppearance
*/
public static final int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#hintAnimationEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:hintAnimationEnabled
*/
public static final int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#hintEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:hintEnabled
*/
public static final int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#hintTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:hintTextAppearance
*/
public static final int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#passwordToggleContentDescription}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:passwordToggleContentDescription
*/
public static final int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#passwordToggleDrawable}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:passwordToggleDrawable
*/
public static final int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#passwordToggleEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:passwordToggleEnabled
*/
public static final int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#passwordToggleTint}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:passwordToggleTint
*/
public static final int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#passwordToggleTintMode}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:passwordToggleTintMode
*/
public static final int TextInputLayout_passwordToggleTintMode = 15;
/** Attributes that can be used with a Toolbar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_buttonGravity com.companyname.DriveApp:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription com.companyname.DriveApp:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon com.companyname.DriveApp:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd com.companyname.DriveApp:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.companyname.DriveApp:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft com.companyname.DriveApp:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight com.companyname.DriveApp:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart com.companyname.DriveApp:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.companyname.DriveApp:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo com.companyname.DriveApp:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription com.companyname.DriveApp:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight com.companyname.DriveApp:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription com.companyname.DriveApp:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon com.companyname.DriveApp:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme com.companyname.DriveApp:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle com.companyname.DriveApp:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance com.companyname.DriveApp:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor com.companyname.DriveApp:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title com.companyname.DriveApp:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin com.companyname.DriveApp:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom com.companyname.DriveApp:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd com.companyname.DriveApp:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart com.companyname.DriveApp:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop com.companyname.DriveApp:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins com.companyname.DriveApp:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance com.companyname.DriveApp:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor com.companyname.DriveApp:titleTextColor}</code></td><td></td></tr>
</table>
@see #Toolbar_android_gravity
@see #Toolbar_android_minHeight
@see #Toolbar_buttonGravity
@see #Toolbar_collapseContentDescription
@see #Toolbar_collapseIcon
@see #Toolbar_contentInsetEnd
@see #Toolbar_contentInsetEndWithActions
@see #Toolbar_contentInsetLeft
@see #Toolbar_contentInsetRight
@see #Toolbar_contentInsetStart
@see #Toolbar_contentInsetStartWithNavigation
@see #Toolbar_logo
@see #Toolbar_logoDescription
@see #Toolbar_maxButtonHeight
@see #Toolbar_navigationContentDescription
@see #Toolbar_navigationIcon
@see #Toolbar_popupTheme
@see #Toolbar_subtitle
@see #Toolbar_subtitleTextAppearance
@see #Toolbar_subtitleTextColor
@see #Toolbar_title
@see #Toolbar_titleMargin
@see #Toolbar_titleMarginBottom
@see #Toolbar_titleMarginEnd
@see #Toolbar_titleMarginStart
@see #Toolbar_titleMarginTop
@see #Toolbar_titleMargins
@see #Toolbar_titleTextAppearance
@see #Toolbar_titleTextColor
*/
public static final int[] Toolbar = {
0x010100af, 0x01010140, 0x7f01001f, 0x7f010022,
0x7f010026, 0x7f010032, 0x7f010033, 0x7f010034,
0x7f010035, 0x7f010036, 0x7f010037, 0x7f010039,
0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0,
0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4,
0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8,
0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc,
0x7f0100fd
};
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:gravity
*/
public static final int Toolbar_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:minHeight
*/
public static final int Toolbar_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#buttonGravity}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp:buttonGravity
*/
public static final int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#collapseContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#collapseIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:collapseIcon
*/
public static final int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentInsetRight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentInsetStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#logo}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#logoDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:logoDescription
*/
public static final int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#maxButtonHeight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#navigationContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#navigationIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:navigationIcon
*/
public static final int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#popupTheme}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:popupTheme
*/
public static final int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#subtitle}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#subtitleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#subtitleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#title}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#titleMargin}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:titleMargin
*/
public static final int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#titleMarginBottom}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#titleMarginEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#titleMarginStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#titleMarginTop}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#titleMargins}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:titleMargins
*/
public static final int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#titleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#titleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:titleTextColor
*/
public static final int Toolbar_titleTextColor = 27;
/** Attributes that can be used with a View.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingEnd com.companyname.DriveApp:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart com.companyname.DriveApp:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme com.companyname.DriveApp:theme}</code></td><td></td></tr>
</table>
@see #View_android_focusable
@see #View_android_theme
@see #View_paddingEnd
@see #View_paddingStart
@see #View_theme
*/
public static final int[] View = {
0x01010000, 0x010100da, 0x7f0100fe, 0x7f0100ff,
0x7f010100
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #View} array.
@attr name android:focusable
*/
public static final int View_android_focusable = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#theme}
attribute's value can be found in the {@link #View} array.
@attr name android:theme
*/
public static final int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#paddingEnd}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#paddingStart}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#theme}
attribute's value can be found in the {@link #View} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.companyname.DriveApp:theme
*/
public static final int View_theme = 4;
/** Attributes that can be used with a ViewBackgroundHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.companyname.DriveApp:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.companyname.DriveApp:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f010101, 0x7f010102
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
@attr name android:background
*/
public static final int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#backgroundTint}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.companyname.DriveApp:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.companyname.DriveApp.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.companyname.DriveApp: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]"
] | |
4395eb6c5131e6d98135eeb61cb578a7e37ec2b6 | 2be82a0c6b595f1f587a68535882eff295e67638 | /src/generated/java/com/prowidesoftware/swift/model/mt/mt0xx/MT063.java | 5acf4595765d18cc55fab7e6fe3b0e0180d83523 | [
"Apache-2.0"
] | permissive | monxlerx/prowide-core | f707f08b6cd7a9f4c641295b82c9ce8292e1d055 | 6a2fbaf17fd0657f5d09057f7ffa448c5d944822 | refs/heads/master | 2023-03-10T06:07:21.955044 | 2020-12-23T18:07:45 | 2020-12-23T18:07:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,546 | java | /*
* Copyright 2006-2020 Prowide
*
* 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.prowidesoftware.swift.model.mt.mt0xx;
import com.prowidesoftware.Generated;
import java.io.Serializable;
import org.apache.commons.lang3.StringUtils;
import com.prowidesoftware.swift.model.*;
import com.prowidesoftware.swift.model.field.*;
import com.prowidesoftware.swift.model.mt.AbstractMT;
import com.prowidesoftware.swift.utils.Lib;
import java.io.File;
import java.io.InputStream;
import java.io.IOException;
/**
* <strong>MT 063 - Non-Banking Days List Report</strong>
*
* <p>
* SWIFT MT063 (ISO 15022) message structure:
* <br>
<div class="scheme"><ul>
<li class="field">Field 202 (M)</li>
<li class="field">Field 203 (M)</li>
<li class="field">Field 172 (M)</li>
<li class="field">Field 340 (M)</li>
</ul></div>
*
* <p>
* This source code is specific to release <strong>SRU 2020</strong>
* <p>
* For additional resources check <a href="https://www.prowidesoftware.com/resources">https://www.prowidesoftware.com/resources</a>
*/
@Generated
public class MT063 extends AbstractMT implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
public static final int SRU = 2020;
private static final long serialVersionUID = 1L;
private static final transient java.util.logging.Logger log = java.util.logging.Logger.getLogger(MT063.class.getName());
/**
* Constant for MT name, this is part of the classname, after <code>MT</code>
*/
public static final String NAME = "063";
/**
* Creates an MT063 initialized with the parameter SwiftMessage
* @param m swift message with the MT063 content
*/
public MT063(SwiftMessage m) {
super(m);
sanityCheck(m);
}
/**
* Creates an MT063 initialized with the parameter MtSwiftMessage.
* @param m swift message with the MT063 content, the parameter can not be null
* @see #MT063(String)
*/
public MT063(MtSwiftMessage m) {
this(m.message());
}
/**
* Creates an MT063 initialized with the parameter MtSwiftMessage.
*
* @param m swift message with the MT063 content
* @return the created object or null if the parameter is null
* @see #MT063(String)
* @since 7.7
*/
public static MT063 parse(MtSwiftMessage m) {
if (m == null) {
return null;
}
return new MT063(m);
}
/**
* Creates and initializes a new MT063 input message setting TEST BICS as sender and receiver.<br>
* All mandatory header attributes are completed with default values.
*
* @since 7.6
*/
public MT063() {
this(BIC.TEST8, BIC.TEST8);
}
/**
* Creates and initializes a new MT063 input message from sender to receiver.<br>
* All mandatory header attributes are completed with default values.
* In particular the sender and receiver addresses will be filled with proper default LT identifier
* and branch codes if not provided,
*
* @param sender the sender address as a bic8, bic11 or full logical terminal consisting of 12 characters
* @param receiver the receiver address as a bic8, bic11 or full logical terminal consisting of 12 characters
* @since 7.7
*/
public MT063(final String sender, final String receiver) {
super(63, sender, receiver);
}
/**
* Creates a new MT063 by parsing a String with the message content in its swift FIN format.<br>
* If the fin parameter is null or the message cannot be parsed, the internal message object
* will be initialized (blocks will be created) but empty.<br>
* If the string contains multiple messages, only the first one will be parsed.
*
* @param fin a string with the MT message in its FIN swift format
* @since 7.7
*/
public MT063(final String fin) {
super();
if (fin != null) {
final SwiftMessage parsed = read(fin);
if (parsed != null) {
super.m = parsed;
sanityCheck(parsed);
}
}
}
private void sanityCheck(final SwiftMessage param) {
if (param.isServiceMessage()) {
log.warning("Creating an MT063 object from FIN content with a Service Message. Check if the MT063 you are intended to read is prepended with and ACK.");
} else if (!StringUtils.equals(param.getType(), getMessageType())) {
log.warning("Creating an MT063 object from FIN content with message type "+param.getType());
}
}
/**
* Creates a new MT063 by parsing a String with the message content in its swift FIN format.<br>
* If the fin parameter cannot be parsed, the returned MT063 will have its internal message object
* initialized (blocks will be created) but empty.<br>
* If the string contains multiple messages, only the first one will be parsed.
*
* @param fin a string with the MT message in its FIN swift format. <em>fin may be null in which case this method returns null</em>
* @return a new instance of MT063 or null if fin is null
* @since 7.7
*/
public static MT063 parse(final String fin) {
if (fin == null) {
return null;
}
return new MT063(fin);
}
/**
* Creates a new MT063 by parsing a input stream with the message content in its swift FIN format, using "UTF-8" as encoding.<br>
* If the message content is null or cannot be parsed, the internal message object
* will be initialized (blocks will be created) but empty.<br>
* If the stream contains multiple messages, only the first one will be parsed.
*
* @param stream an input stream in UTF-8 encoding with the MT message in its FIN swift format.
* @throws IOException if the stream data cannot be read
* @since 7.7
*/
public MT063(final InputStream stream) throws IOException {
this(Lib.readStream(stream));
}
/**
* Creates a new MT063 by parsing a input stream with the message content in its swift FIN format, using "UTF-8" as encoding.<br>
* If the stream contains multiple messages, only the first one will be parsed.
*
* @param stream an input stream in UTF-8 encoding with the MT message in its FIN swift format.
* @return a new instance of MT063 or null if stream is null or the message cannot be parsed
* @throws IOException if the stream data cannot be read
* @since 7.7
*/
public static MT063 parse(final InputStream stream) throws IOException {
if (stream == null) {
return null;
}
return new MT063(stream);
}
/**
* Creates a new MT063 by parsing a file with the message content in its swift FIN format.<br>
* If the file content is null or cannot be parsed as a message, the internal message object
* will be initialized (blocks will be created) but empty.<br>
* If the file contains multiple messages, only the first one will be parsed.
*
* @param file a file with the MT message in its FIN swift format.
* @throws IOException if the file content cannot be read
* @since 7.7
*/
public MT063(final File file) throws IOException {
this(Lib.readFile(file));
}
/**
* Creates a new MT063 by parsing a file with the message content in its swift FIN format.<br>
* If the file contains multiple messages, only the first one will be parsed.
*
* @param file a file with the MT message in its FIN swift format.
* @return a new instance of MT063 or null if; file is null, does not exist, can't be read, is not a file or the message cannot be parsed
* @throws IOException if the file content cannot be read
* @since 7.7
*/
public static MT063 parse(final File file) throws IOException {
if (file == null) {
return null;
}
return new MT063(file);
}
/**
* Returns this MT number
* @return the message type number of this MT
* @since 6.4
*/
@Override
public String getMessageType() {
return "063";
}
/**
* Add all tags from block to the end of the block4.
*
* @param block to append
* @return this object to allow method chaining
* @since 7.6
*/
@Override
public MT063 append(final SwiftTagListBlock block) {
super.append(block);
return this;
}
/**
* Add all tags to the end of the block4.
*
* @param tags to append
* @return this object to allow method chaining
* @since 7.6
*/
@Override
public MT063 append(final Tag ... tags) {
super.append(tags);
return this;
}
/**
* Add all the fields to the end of the block4.
*
* @param fields to append
* @return this object to allow method chaining
* @since 7.6
*/
@Override
public MT063 append(final Field ... fields) {
super.append(fields);
return this;
}
/**
* Creates an MT063 messages from its JSON representation.
* <p>
* For generic conversion of JSON into the corresopnding MT instance
* see {@link AbstractMT#fromJson(String)}
*
* @param json a JSON representation of an MT063 message
* @return a new instance of MT063
* @since 7.10.3
*/
public final static MT063 fromJson(String json) {
return (MT063) AbstractMT.fromJson(json);
}
/**
* Iterates through block4 fields and return the first one whose name matches 202,
* or null if none is found.<br>
* The first occurrence of field 202 at MT063 is expected to be the only one.
*
* @return a Field202 object or null if the field is not found
* @see SwiftTagListBlock#getTagByName(String)
* @throws IllegalStateException if SwiftMessage object is not initialized
*/
public Field202 getField202() {
final Tag t = tag("202");
if (t != null) {
return new Field202(t.getValue());
} else {
return null;
}
}
/**
* Iterates through block4 fields and return the first one whose name matches 203,
* or null if none is found.<br>
* The first occurrence of field 203 at MT063 is expected to be the only one.
*
* @return a Field203 object or null if the field is not found
* @see SwiftTagListBlock#getTagByName(String)
* @throws IllegalStateException if SwiftMessage object is not initialized
*/
public Field203 getField203() {
final Tag t = tag("203");
if (t != null) {
return new Field203(t.getValue());
} else {
return null;
}
}
/**
* Iterates through block4 fields and return the first one whose name matches 172,
* or null if none is found.<br>
* The first occurrence of field 172 at MT063 is expected to be the only one.
*
* @return a Field172 object or null if the field is not found
* @see SwiftTagListBlock#getTagByName(String)
* @throws IllegalStateException if SwiftMessage object is not initialized
*/
public Field172 getField172() {
final Tag t = tag("172");
if (t != null) {
return new Field172(t.getValue());
} else {
return null;
}
}
/**
* Iterates through block4 fields and return the first one whose name matches 340,
* or null if none is found.<br>
* The first occurrence of field 340 at MT063 is expected to be the only one.
*
* @return a Field340 object or null if the field is not found
* @see SwiftTagListBlock#getTagByName(String)
* @throws IllegalStateException if SwiftMessage object is not initialized
*/
public Field340 getField340() {
final Tag t = tag("340");
if (t != null) {
return new Field340(t.getValue());
} else {
return null;
}
}
}
| [
"[email protected]"
] | |
3565ba229998cd225616dae1d428ba4fbba39fa9 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/2/2_9828371b4a7b113db904e8f46f26f131f6295bf0/DatabaseHandler/2_9828371b4a7b113db904e8f46f26f131f6295bf0_DatabaseHandler_s.java | bc2d2c6e28bfa35348f42353141c7d576096e57a | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 19,288 | java | /**
*
*/
package edu.usc.cs587.examples.dbhandlers;
import java.lang.reflect.Array;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import oracle.jdbc.OracleConnection;
import edu.usc.cs587.examples.Constants;
import edu.usc.cs587.examples.objects.UserMessage;
/**
* @author Ling
*
*/
public class DatabaseHandler {
private static final String HOST = "128.125.163.168";
private static final String PORT = "1521";
private static final String USERNAME = "team17";
private static final String PASSWORD = "palhunter";
private static final String DBNAME = "csci585";
private static final String URL = "jdbc:oracle:thin:@";
protected OracleConnection connection;
/**
*
*/
public DatabaseHandler() {
String url = URL + HOST + ":" + PORT + ":" + DBNAME;;
try {
DriverManager.registerDriver(new oracle.jdbc.OracleDriver());
connection = (OracleConnection) DriverManager.getConnection(url,
USERNAME, PASSWORD);
} catch (SQLException e) {
e.printStackTrace();
}
}
public void closeConnection() {
if (this.connection != null) {
try {
this.connection.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
public boolean isConnected() {
return this.connection == null;
}
public boolean addFriends(String pid1, String pid2) {
String[] pid2_arr = pid2.split(",");
for (String friend : pid2_arr){
boolean result = addFriend(pid1,friend);
if(!result) return false;
}
return true;
}
public boolean removeFriends(String pid1, String pid2) {
String[] pid2_arr = pid2.split(",");
for (String friend : pid2_arr){
boolean result = removeFriend(pid1,friend);
if(!result) return false;
}
return true;
}
public boolean addFriend(String pid1, String pid2) {
if (this.connection == null) {
return false;
}
String sqlStmt = "INSERT INTO RELATIONSHIP(pid1,pid2) VALUES (?,?)";
try {
PreparedStatement pstmt = this.connection.prepareStatement(sqlStmt);
PreparedStatement pstmt2 = this.connection.prepareStatement(sqlStmt);
pstmt.setString(1, pid1);
pstmt.setString(2, pid2);
pstmt.execute();
pstmt.close();
pstmt2.setString(1, pid2);
pstmt2.setString(2, pid1);
pstmt2.execute();
pstmt2.close();
return true;
}catch (SQLException ex) {
ex.printStackTrace();
return false;
}
}
public boolean removeFriend(String pid1, String pid2) {
if (this.connection == null) {
return false;
}
String sqlStmt = "DELETE FROM RELATIONSHIP WHERE pid1=? AND pid2=?";
try {
PreparedStatement pstmt = this.connection.prepareStatement(sqlStmt);
PreparedStatement pstmt2 = this.connection.prepareStatement(sqlStmt);
pstmt.setString(1, pid1);
pstmt.setString(2, pid2);
pstmt.execute();
pstmt.close();
pstmt2.setString(1, pid2);
pstmt2.setString(2, pid1);
pstmt2.execute();
pstmt2.close();
return true;
}catch (SQLException ex) {
ex.printStackTrace();
return false;
}
}
public boolean insertNewPeopleToDB(int pid, String first_name, String last_name, long created_date, String username, String password) {
if (this.connection == null) {
return false;
}
String sqlStmt = "INSERT INTO PEOPLE(PID,FIRST_NAME, LAST_NAME,CREATED_TIME,USERNAME, PASSWORD) VALUES (?,?,?,?,?,?)";
try {
PreparedStatement pstmt = this.connection.prepareStatement(sqlStmt);
pstmt.setInt(1, pid);
pstmt.setString(2, first_name);
pstmt.setString(3, last_name);
pstmt.setLong(4, created_date);
pstmt.setString(5, first_name);
pstmt.setString(6, last_name);
pstmt.execute();
pstmt.close();
return true;
}catch (SQLException ex) {
ex.printStackTrace();
return false;
}
}
public boolean insertPeopleToDB(int pid, String first_name, String last_name, long created_date) {
if (this.connection == null) {
return false;
}
String sqlStmt = "INSERT INTO PEOPLE(PID,FIRST_NAME, LAST_NAME,CREATED_TIME) VALUES (?,?,?,?)";
try {
PreparedStatement pstmt = this.connection.prepareStatement(sqlStmt);
pstmt.setInt(1, pid);
pstmt.setString(2, first_name);
pstmt.setString(3, last_name);
pstmt.setLong(4, created_date);
pstmt.execute();
pstmt.close();
return true;
}catch (SQLException ex) {
ex.printStackTrace();
return false;
}
}
public boolean insertLocation(int pid, long lat_int, long long_int, long created_date) {
if (this.connection == null) {
return false;
}
String sqlStmt = "INSERT INTO LOCATION VALUES (?,?,?,?)";
try {
PreparedStatement pstmt = this.connection.prepareStatement(sqlStmt);
pstmt.setInt(1, pid);
pstmt.setLong(2, long_int);
pstmt.setLong(3, lat_int);
pstmt.setLong(4, created_date);
pstmt.execute();
pstmt.close();
return true;
}catch (SQLException ex) {
ex.printStackTrace();
return false;
}
}
public String queryPeopleName(String first_name, String last_name){
String table = "PEOPLE";
String sqlStmt = "SELECT * FROM "+table+" where first_name ='"+first_name+"' and last_name ='"+last_name+"'";
String rs = runQuery (sqlStmt, table);
return rs;
}
public String queryPeopleUsername(String username, String password){
String table = "PEOPLE";
String sqlStmt = "SELECT * FROM "+table+" where USERNAME ='"+username+"' and PASSWORD ='"+password+"'";
String rs = runQuery (sqlStmt, table);
return rs;
}
public String findAllPeople(){
String table = "PEOPLE";
String sqlStmt = "SELECT * FROM "+table;
String rs = runQuery (sqlStmt, table);
return rs;
}
public String getTotalPeople(){
String table = "PEOPLE";
String action = "AGGREGATE";
String sqlStmt = "SELECT COUNT(*) FROM "+table;
String rs = runQuery (sqlStmt, action);
return rs;
}
public String findAllFriends(String id){
String table = "PEOPLE";
String sqlStmt = "SELECT * FROM PEOPLE WHERE PID IN (select PID2 from RELATIONSHIP WHERE PID1="+id+")";
String rs = runQuery (sqlStmt, table);
return rs;
}
public String findAllNonFriends(String id){
String table = "PEOPLE";
String sqlStmt = "SELECT * FROM PEOPLE WHERE PID NOT IN (select PID2 from RELATIONSHIP WHERE PID1="+id+") and PID !="+id;
String rs = runQuery (sqlStmt, table);
return rs;
}
public String queryPeople(String id){
String table = "PEOPLE";
String sqlStmt = "SELECT * FROM "+table+" where pid ="+id;
String rs = runQuery (sqlStmt, table);
return rs;
}
public String queryPastLocations(String id){
String table = "LOCATION";
String sqlStmt = "SELECT * FROM "+table+" where pid ="+id;
String rs = runQuery (sqlStmt, table);
return rs;
}
public String queryCurrentLocations(String id){
String table = "LOCATION";
String sqlStmt = "SELECT * FROM(SELECT * FROM "+table+" where pid ="+id +" ORDER BY UPDATED_TIME DESC) where rownum < 2";
String rs = runQuery (sqlStmt, table);
return rs;
}
public String queryFriendsLocations(String id){
String table = "LOCATION";
String sqlStmt = "SELECT l.PID, l.long_int, l.lat_int, l.updated_time FROM LOCATION l, (SELECT MAX(updated_time) as updated_time,PID FROM location WHERE PID IN (select PID2 from RELATIONSHIP WHERE PID1="+id+") GROUP by PID) loc where l.updated_time = loc.updated_time and l.pid = loc.pid";
String rs = runQuery (sqlStmt, table);
return rs;
}
public String queryFriendsPastLocations(String id){
String table = "LOCATION";
String sqlStmt = "SELECT * FROM "+table+" WHERE PID IN (select PID2 from RELATIONSHIP WHERE PID1="+id+")";
String rs = runQuery (sqlStmt, table);
return rs;
}
public String queryFriendsLocationsWithinMiles(String id, String radius, String lat, String lon){
String table = "LOCATION";
String sqlStmt = "SELECT l.PID, l.long_int, l.lat_int, l.updated_time FROM LOCATION l, (SELECT MAX(updated_time) as updated_time,PID FROM location WHERE PID IN (select PID2 from RELATIONSHIP WHERE PID1="+id+") GROUP by PID) loc where l.updated_time = loc.updated_time and l.pid = loc.pid";
double radius_d = Double.parseDouble(radius);
double lat_d = Integer.parseInt(lat)*0.000001;
double lon_d = Integer.parseInt(lon)*0.000001;
String rs = runQuerySpatialFilter (sqlStmt, radius_d, lat_d, lon_d);
return rs;
}
public String queryKNN(String id, String kfriends, String lat, String lon){
String table = "LOCATION";
String sqlStmt = "SELECT l.PID, l.long_int, l.lat_int, l.updated_time, p.FIRST_NAME, p.LAST_NAME, p.USERNAME FROM LOCATION l,PEOPLE p, (SELECT MAX(updated_time) as updated_time,PID FROM location WHERE PID IN (select PID2 from RELATIONSHIP WHERE PID1="+id+") GROUP by PID) loc where l.updated_time = loc.updated_time and l.pid = loc.pid and p.pid = loc.pid";
int k_friends = Integer.parseInt(kfriends);
double lat_d = Integer.parseInt(lat)*0.000001;
double lon_d = Integer.parseInt(lon)*0.000001;
String rs = runQuerySpatialKNN (sqlStmt, k_friends, lat_d, lon_d);
return rs;
}
public String queryKNNUsers(String id, String kfriends, String lat, String lon){
String table = "LOCATION";
String sqlStmt = "SELECT l.PID, l.long_int, l.lat_int, l.updated_time, p.FIRST_NAME, p.LAST_NAME, p.USERNAME FROM LOCATION l,PEOPLE p, (SELECT MAX(updated_time) as updated_time,PID FROM location WHERE PID !="+id+" GROUP by PID) loc where l.updated_time = loc.updated_time and l.pid = loc.pid and p.pid = loc.pid";
int k_friends = Integer.parseInt(kfriends);
double lat_d = Integer.parseInt(lat)*0.000001;
double lon_d = Integer.parseInt(lon)*0.000001;
String rs = runQuerySpatialKNN (sqlStmt, k_friends, lat_d, lon_d);
return rs;
}
public String queryFriendsPastLocationsWithinMiles(String id, String radius, String lat, String lon){
String table = "LOCATION";
String sqlStmt = "SELECT * FROM "+table+" WHERE PID IN (select PID2 from RELATIONSHIP WHERE PID1="+id+")";
double radius_d = Double.parseDouble(radius);
double lat_d = Integer.parseInt(lat)*0.000001;
double lon_d = Integer.parseInt(lon)*0.000001;
String rs = runQuerySpatialFilter (sqlStmt, radius_d, lat_d, lon_d);
return rs;
}
public String convertPeopleToJSON(ResultSet rs){
if(rs == null) return "[]";
String result = "[";
try {
while (rs != null && rs.next()) {
result +="{";
result += "\"PID\":\""+rs.getInt("PID")+"\"";
result += ",\"FIRST_NAME\":\""+rs.getString("FIRST_NAME")+"\"";
result += ",\"LAST_NAME\":\""+rs.getString("LAST_NAME")+"\"";
result += ",\"CREATED_TIME\":\""+rs.getLong("CREATED_TIME")+"\"";
result +="},";
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(result.length()>2)
result = result.substring(0, result.length()-1);
result+="]";
return result;
}
public String convertLocationToJSON(ResultSet rs){
if(rs == null) return "[]";
String result = "[";
try {
while (rs != null && rs.next()) {
result +="{";
result += "\"PID\":\""+rs.getInt("PID")+"\"";
result += ",\"LONG_INT\":\""+rs.getInt("LONG_INT")+"\"";
result += ",\"LAT_INT\":\""+rs.getInt("LAT_INT")+"\"";
result += ",\"UPDATED_TIME\":\""+rs.getLong("UPDATED_TIME")+"\"";
result +="},";
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(result.length()>2)
result = result.substring(0, result.length()-1);
result+="]";
return result;
}
public String convertLocationToJSONSpatialFilter(ResultSet rs, double radius, double lat, double lon){
if(rs == null) return "[]";
String result = "[";
try {
while (rs != null && rs.next()) {
double friend_lat = rs.getInt("LAT_INT") * 0.000001;
double friend_lon = rs.getInt("LONG_INT") * 0.000001;
if(HaverSineDistance(friend_lat, friend_lon, lat, lon)<=radius){
result +="{";
result += "\"PID\":\""+rs.getInt("PID")+"\"";
result += ",\"LONG_INT\":\""+rs.getInt("LONG_INT")+"\"";
result += ",\"LAT_INT\":\""+rs.getInt("LAT_INT")+"\"";
result += ",\"UPDATED_TIME\":\""+rs.getLong("UPDATED_TIME")+"\"";
result +="},";
}
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(result.length()>2)
result = result.substring(0, result.length()-1);
result+="]";
return result;
}
public String convertLocationToJSONSpatialKNN(ResultSet rs, int kfriends, double lat, double lon){
if(rs == null) return "[]";
String result = "[";
try {
double[] Distances = new double[1000];
String[] data = new String[1000];
boolean[] ispicked = new boolean[1000];
int i=0;
while (rs != null && rs.next()) {
double friend_lat = rs.getInt("LAT_INT") * 0.000001;
double friend_lon = rs.getInt("LONG_INT") * 0.000001;
Distances[i]=HaverSineDistance(friend_lat, friend_lon, lat, lon);
data[i]="";
data[i] +="{";
data[i] += "\"PID\":\""+rs.getInt("PID")+"\"";
data[i] += ",\"LONG_INT\":\""+rs.getInt("LONG_INT")+"\"";
data[i] += ",\"LAT_INT\":\""+rs.getInt("LAT_INT")+"\"";
data[i] += ",\"FIRST_NAME\":\""+rs.getString("FIRST_NAME")+"\"";
data[i] += ",\"LAST_NAME\":\""+rs.getString("LAST_NAME")+"\"";
data[i] += ",\"USERNAME\":\""+rs.getString("USERNAME")+"\"";
data[i] += ",\"UPDATED_TIME\":\""+rs.getLong("UPDATED_TIME")+"\"";
data[i] +="}";
ispicked[i] = false;
i++;
}
double[] sortedDistances = new double[i];
for(int j=0;j<i;j++){sortedDistances[j]=Distances[j];}
Arrays.sort(sortedDistances);
int num_return = kfriends;
if(num_return>i)
num_return=i;
for(int j=0;j<num_return;j++){
double d = sortedDistances[i-1-j];
for(int z=0;z<i;z++){
if(Distances[z]==d && !ispicked[z]){
result+=data[z]+",";
ispicked[z] = true;
break;
}
}
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(result.length()>2)
result = result.substring(0, result.length()-1);
result+="]";
return result;
}
public String convertAggregateToJSON(ResultSet rs){
if(rs == null) return "[]";
String result = "[";
try {
while (rs != null && rs.next()) {
result +="{";
result += "\"TOTAL\":\""+rs.getInt(1)+"\"";
result +="},";
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(result.length()>2)
result = result.substring(0, result.length()-1);
result+="]";
return result;
}
public String runQuerySpatialFilter (String sqlStmt, double radius, double lat, double lon) {
ResultSet rs = null;
String result = "[]";
if (this.connection == null) {
return result;
}
try {
PreparedStatement pstmt = this.connection.prepareStatement(sqlStmt);
rs = pstmt.executeQuery();
result = convertLocationToJSONSpatialFilter(rs, radius, lat, lon);
pstmt.close();
return result;
}catch (SQLException ex) {
ex.printStackTrace();
return result;
}
}
public String runQuerySpatialKNN (String sqlStmt, int kfriends, double lat, double lon) {
ResultSet rs = null;
String result = "[]";
if (this.connection == null) {
return result;
}
try {
PreparedStatement pstmt = this.connection.prepareStatement(sqlStmt);
rs = pstmt.executeQuery();
result = convertLocationToJSONSpatialKNN(rs, kfriends, lat, lon);
pstmt.close();
return result;
}catch (SQLException ex) {
ex.printStackTrace();
return result;
}
}
public String runQuery (String sqlStmt, String table) {
ResultSet rs = null;
String result = "[]";
if (this.connection == null) {
return result;
}
try {
PreparedStatement pstmt = this.connection.prepareStatement(sqlStmt);
rs = pstmt.executeQuery();
if(table.compareTo("PEOPLE")==0)
result = convertPeopleToJSON(rs);
else if(table.compareTo("LOCATION")==0)
result = convertLocationToJSON(rs);
else if(table.compareTo("AGGREGATE")==0)
result = convertAggregateToJSON(rs);
pstmt.close();
return result;
}catch (SQLException ex) {
ex.printStackTrace();
return result;
}
}
public List<UserMessage> retrieveAllRecords () {
if (this.connection == null) {
return null;
}
String sqlStmt = "SELECT * FROM EXAMPLE";
try {
PreparedStatement pstmt = this.connection.prepareStatement(sqlStmt);
ResultSet rs = pstmt.executeQuery();
List<UserMessage> ret = new ArrayList<UserMessage>();
while (rs != null && rs.next()) {
long pubDate = rs.getLong("PUBDATE");
String userid = rs.getString("USERID");
String message = rs.getString("MESSAGE");
ret.add(new UserMessage(userid, message, pubDate));
}
pstmt.close();
return ret;
}catch (SQLException ex) {
ex.printStackTrace();
return null;
}
}
//return distances in miles.
public static double HaverSineDistance(double lat1, double lng1, double lat2, double lng2)
{
// http://en.wikipedia.org/wiki/Haversine_formula
double EARTH_RADIUS = 3958.75;
// convert to radians
lat1 = Math.toRadians(lat1);
lng1 = Math.toRadians(lng1);
lat2 = Math.toRadians(lat2);
lng2 = Math.toRadians(lng2);
double dlon = lng2 - lng1;
double dlat = lat2 - lat1;
double a = Math.pow((Math.sin(dlat/2)),2) + Math.cos(lat1) * Math.cos(lat2) * Math.pow(Math.sin(dlon/2),2);
double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
return EARTH_RADIUS * c;
}
/*
* this is to test whether the java program can write data to database
*/
public static void main(String[] args) {
DatabaseHandler handler = new DatabaseHandler();
try {
//insert an record to the database table
// handler.insertRecordToDB("Ling Hu", "Helloworld!!", System.currentTimeMillis());
//retrieve all records from the database table
String first_name = "Luan";
String last_name = "Nguyen";
int id = 1;
long created_date = Long.parseLong("1347774599443");;
handler.insertPeopleToDB(id, first_name, last_name,created_date);
handler.closeConnection();
} catch (Exception e) {
e.printStackTrace();
}
}
}
| [
"[email protected]"
] | |
c44567b05826415f82dd6614013216a6dadcd342 | ffb44f90bae8c7f409513f38e1c6fc5c50e7c84f | /day_10/bookshop/src/main/java/com/epam/bookshop/home/view/controller/HomeController.java | e382f716e74d1ee16e5c72facfdc83f155d1a4bf | [] | no_license | Ch3m15T/hwsw-advanced | be224ad9f1d2c4a2c14637abefddab51ea48994a | 833e258204df5ed04d5a7a843825d233902242f5 | refs/heads/master | 2022-02-05T17:38:42.711415 | 2016-11-07T17:53:45 | 2016-11-07T17:53:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,166 | java | package com.epam.bookshop.home.view.controller;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import com.epam.bookshop.authentication.service.AuthenticationService;
import com.epam.bookshop.authentication.view.controller.LoginFormController;
import com.epam.bookshop.home.view.model.HomepageModel;
import com.epam.bookshop.home.view.model.LanguageUrlMapping;
import com.epam.bookshop.home.view.support.LocalizationUrlBuilder;
import com.epam.bookshop.i18n.service.LocalizationService;
import com.epam.bookshop.stock.view.controller.AddBookFormController;
@Controller
public class HomeController {
public static final String REQUEST_MAPPING = "/";
private LocalizationService localizationService;
private AuthenticationService authenticationService;
private LocalizationUrlBuilder localizationUrlBuilder;
@Autowired
public HomeController(LocalizationService localizationService, AuthenticationService authenticationService, LocalizationUrlBuilder localizationUrlBuilder) {
super();
this.localizationService = localizationService;
this.authenticationService = authenticationService;
this.localizationUrlBuilder = localizationUrlBuilder;
}
@ModelAttribute("homepageModel")
public HomepageModel homepageModel() {
HomepageModel result = new HomepageModel();
result.setBookshopName("Bookshop");
result.setLanguageSelectors(getLanguageSelectors());
if (authenticationService.isUserAuthenticated()) {
result.setLogoutUrl("/j_spring_security_logout");
if (authenticationService.isUserAdmin()) {
result.setAdminUrl(AddBookFormController.REQUEST_MAPPING);
}
} else {
result.setLoginUrl(LoginFormController.REQUEST_MAPPING);
}
return result;
}
private List<LanguageUrlMapping> getLanguageSelectors() {
return localizationUrlBuilder.buildAccessibleLanguageSelectors(localizationService.getAccessibleLanguages());
}
@RequestMapping(REQUEST_MAPPING)
public String homepage() {
return "homepage";
}
}
| [
"[email protected]"
] | |
85f106d39cbfc717bdb1dc949759ae95cd53a826 | c6352f6a45bc3ddfc82ffbba063b0c8939613ac7 | /src/client/net/sf/saxon/ce/trans/DecimalFormatManager.java | 89daf5843e0c37d05b0731966184b979746a3c9e | [] | no_license | bitfabrikken/Saxon-CE | 33a4e2d05965d87a2bb9c0bca13b4a1ac3efcfce | b7a0ecf542f177c0669ac225741b4773d9066312 | refs/heads/master | 2023-04-13T05:08:22.237748 | 2021-04-09T18:04:32 | 2021-04-09T18:04:32 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,988 | java | package client.net.sf.saxon.ce.trans;
import client.net.sf.saxon.ce.lib.NamespaceConstant;
import client.net.sf.saxon.ce.om.StructuredQName;
import java.util.HashMap;
/**
* DecimalFormatManager manages the collection of named and unnamed decimal formats, for use by the
* format-number() function.
*
* <p>In XSLT, there is a single set of decimal formats shared by the whole stylesheet. In XQuery 1.1, however,
* each query module has its own set of decimal formats. The DecimalFormatManager to use is therefore linked
* from the format-number() call on the expression tree.</p>
* @author Michael H. Kay
*/
public class DecimalFormatManager {
private DecimalSymbols defaultDFS;
private HashMap<StructuredQName, DecimalFormatInfo> formatTable; // table for named decimal formats
private boolean usingOriginalDefault = true;
/**
* create a DecimalFormatManager and initialise variables
*/
public DecimalFormatManager() {
formatTable = new HashMap(10);
defaultDFS = new DecimalSymbols();
}
/**
* Register the default decimal-format.
* Note that it is an error to register the same decimal-format twice, even with different
* precedence
*/
public void setDefaultDecimalFormat(DecimalSymbols dfs, int precedence)
throws XPathException {
if (!usingOriginalDefault) {
if (!dfs.equals(defaultDFS)) {
XPathException err = new XPathException("There are two conflicting definitions of the default decimal format");
err.setErrorCode("XTSE1290");
err.setIsStaticError(true);
throw err;
}
}
defaultDFS = dfs;
usingOriginalDefault = false;
setNamedDecimalFormat(DEFAULT_NAME, dfs, precedence);
// this is to trigger fixup of calls
}
final public static StructuredQName DEFAULT_NAME =
new StructuredQName("saxon", NamespaceConstant.SAXON, "default-decimal-format");
/**
* Method called at the end of stylesheet compilation to fix up any format-number() calls
* to the "default default" decimal format
*/
public void fixupDefaultDefault() throws XPathException {
if (usingOriginalDefault) {
setNamedDecimalFormat(DEFAULT_NAME, defaultDFS, -1000);
}
}
/**
* Get the default decimal-format.
*/
public DecimalSymbols getDefaultDecimalFormat() {
return defaultDFS;
}
/**
* Set a named decimal format.
* Note that it is an error to register the same decimal-format twice, unless the values are
* equal, or unless there is another of higher precedence. This method assumes that decimal-formats
* are registered in order of decreasing precedence
* @param qName the name of the decimal format
*/
public void setNamedDecimalFormat(StructuredQName qName, DecimalSymbols dfs, int precedence)
throws XPathException {
Object o = formatTable.get(qName);
if (o != null) {
// if (o instanceof List) {
// // this indicates there are forwards references to this decimal format that need to be fixed up
// for (Iterator iter = ((List)o).iterator(); iter.hasNext(); ) {
// FormatNumber call = (FormatNumber)iter.next();
// call.fixup(dfs);
// }
// } else {
DecimalFormatInfo info = (DecimalFormatInfo)o;
DecimalSymbols old = info.dfs;
int oldPrecedence = info.precedence;
if (precedence < oldPrecedence) {
return;
}
if (precedence==oldPrecedence && !dfs.equals(old)) {
XPathException err = new XPathException("There are two conflicting definitions of the named decimal-format");
err.setErrorCode("XTSE1290");
err.setIsStaticError(true);
throw err;
}
// }
}
DecimalFormatInfo dfi = new DecimalFormatInfo();
dfi.dfs = dfs;
dfi.precedence = precedence;
formatTable.put(qName, dfi);
}
/**
* Register a format-number() function call that uses a particular decimal format. This
* allows early compile time resolution to a DecimalFormatSymbols object where possible,
* even in the case of a forwards reference
*/
// public void registerUsage(StructuredQName qName, FormatNumber call) {
// Object o = formatTable.get(qName);
// if (o == null) {
// // it's a forwards reference
// List list = new ArrayList(10);
// list.add(call);
// formatTable.put(qName, list);
// } else if (o instanceof List) {
// // it's another forwards reference
// List list = (List)o;
// list.add(call);
// } else {
// // it's a backwards reference
// DecimalFormatInfo dfi = (DecimalFormatInfo)o;
// call.fixup(dfi.dfs);
// }
// }
/**
* Get a named decimal-format registered using setNamedDecimalFormat
* @param qName The name of the decimal format
* @return the DecimalFormatSymbols object corresponding to the named locale, if any
* or null if not set.
*/
public DecimalSymbols getNamedDecimalFormat(StructuredQName qName) {
DecimalFormatInfo dfi = ((DecimalFormatInfo)formatTable.get(qName));
if (dfi == null) {
return null;
}
return dfi.dfs;
}
private static class DecimalFormatInfo {
public DecimalSymbols dfs;
public int precedence;
}
}
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0.
| [
"[email protected]"
] | |
7293480bbfd1ccfa8a8810d6c11737125925fd00 | 232ad89f519202e9b80b7a4dd9bd42fb53c8a1fe | /src/main/java/erp/ui/list/EmployeeTablePanel.java | 5f2d3038a9281b9148b06c350358826aa67e2769 | [] | no_license | kilhyeon/erp | 035d7bccf0d1a4c96c03d77e579a63844346c23f | 4f7ce1cfac9778213bbfb7e0abc37db269102aec | refs/heads/master | 2023-03-20T20:46:25.347259 | 2021-03-17T03:32:43 | 2021-03-17T03:32:43 | 346,889,696 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,625 | java | package erp.ui.list;
import javax.swing.SwingConstants;
import erp.dto.Employee;
import erp.service.EmployeeService;
import erp.ui.exception.NotSelectedException;
@SuppressWarnings("serial")
public class EmployeeTablePanel extends AbstractCustomTablePanel<Employee> {
private EmployeeService service;
@Override
protected void setAlignAndWidth() {
// 컬럼내용 정렬
setTableCellAlign(SwingConstants.CENTER, 0, 1, 2, 3, 5);
setTableCellAlign(SwingConstants.RIGHT, 4);
// 컬럼별 너비 조정
setTableCellWidth(100, 200, 100, 150, 150, 100);
}
@Override
public Object[] toArray(Employee t) {
return new Object[] {
t.getEmpNo()
, t.getEmpName()
, String.format("%s(%d)", t.getTitle().gettName(), t.getTitle().gettNo())
, t.getManager().getEmpNo()==0?"":String.format("%s(%d)", t.getManager().getEmpName(), t.getManager().getEmpNo())
, String.format("%,d", t.getSalary())
, String.format("%s(%d)", t.getDept().getDeptName(), t.getDept().getDeptNo())
};
}
@Override
public String[] getColumnNames() {
return new String[] { "사원번호", "사원명", "직책", "직속상사", "급여", "부서" };
}
@Override
public void initList() {
list = service.showEmployee();
}
public void setService(EmployeeService service) {
this.service = service;
}
@Override
public Employee getItem() {
int row = table.getSelectedRow();
int empNo = (int) table.getValueAt(row, 0);
if (row == -1) {
throw new NotSelectedException();
}
return list.get(list.indexOf(new Employee(empNo)));
}
}
| [
"[email protected]"
] | |
991b3b71c866df734a05add33b2c8b06602b0bd9 | 95c3335488a4814a7af4429784c7d126b69fbcc5 | /SimulatorRobot/src/test/SquareTableTopTest.java | e66c2a7224c9c724629039aeade2f771992558b8 | [] | no_license | naveengundubilli/Simulator-Robot | 6896f7ced318ddf38fd517bb685bae6707c7fc52 | ba597761dee45f74a1812b446430425e4944bfb9 | refs/heads/master | 2020-04-06T07:03:52.249535 | 2015-09-22T11:56:48 | 2015-09-22T11:56:48 | 42,930,247 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 945 | java | package test;
import org.junit.Assert;
import org.junit.Test;
import com.robot.simulator.Position;
import com.robot.simulator.SquareTableTop;
import static org.mockito.Mockito.*;
public class SquareTableTopTest {
@Test
public void testIsValidPosition() throws Exception {
Position mockPosition = mock(Position.class);
when(mockPosition.getX()).thenReturn(6);
when(mockPosition.getY()).thenReturn(7);
SquareTableTop tableTop = new SquareTableTop(4, 5);
Assert.assertFalse(tableTop.isValidPosition(mockPosition));
when(mockPosition.getX()).thenReturn(1);
when(mockPosition.getY()).thenReturn(1);
Assert.assertTrue(tableTop.isValidPosition(mockPosition));
when(mockPosition.getX()).thenReturn(-1);
when(mockPosition.getY()).thenReturn(-1);
Assert.assertFalse(tableTop.isValidPosition(mockPosition));
}
}
| [
"[email protected]"
] | |
101526aba4ce3e5e9d66dd9cb660edc93c20fd71 | dc1dbb7e5a4b95bf44170d2f51fd08b3814f2ac9 | /data_defect4j/preprossed_method_corpus/Lang/64/org/apache/commons/lang/mutable/MutableShort_equals_241.java | 9338d0727b3315e3e6128a449456475c694962b0 | [] | no_license | hvdthong/NetML | dca6cf4d34c5799b400d718e0a6cd2e0b167297d | 9bb103da21327912e5a29cbf9be9ff4d058731a5 | refs/heads/master | 2021-06-30T15:03:52.618255 | 2020-10-07T01:58:48 | 2020-10-07T01:58:48 | 150,383,588 | 1 | 1 | null | 2018-09-26T07:08:45 | 2018-09-26T07:08:44 | null | UTF-8 | Java | false | false | 636 | java |
org apach common lang mutabl
mutabl code code wrapper
short
version
mutabl short mutableshort number compar mutabl
compar object object result code code argument
code code code mutabl short mutableshort code object code code
object
param obj
object compar
code code object code code
equal object obj
obj mutabl short mutableshort
mutabl short mutableshort obj shortvalu
| [
"[email protected]"
] | |
5731ab534bebd0fd4c478c3c07b40f83682c63b7 | a0477e396e410883fc7cda8a46fa31f85ff8c1ad | /spring5projectdemo/chapter3/src/main/java/com/test/aspectj/expression/execution/AspectJExpressionDemo.java | 94f3c1c49533d7684f02f04e457e472d1be53442 | [
"MIT"
] | permissive | kingreatwill/java_study | 1103c693eb2e45e7dab1c875f74da61fd24e22a2 | 089c910af815c12dbf118e4a76df3b759d25c3e3 | refs/heads/master | 2022-11-24T07:57:52.517950 | 2020-01-15T08:00:24 | 2020-01-15T08:00:24 | 205,988,202 | 0 | 0 | MIT | 2022-11-16T11:33:18 | 2019-09-03T04:21:17 | Java | UTF-8 | Java | false | false | 788 | java | package com.test.aspectj.expression.execution;
import com.test.aspectj.expression.Factory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* @Author zhouguanya
* @Date 2018/9/100
* @Description 测试execution增强
*/
public class AspectJExpressionDemo {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("classpath:spring-chapter3-aspectjexecutionexpression.xml");
Factory foodFactory = (Factory) context.getBean("foodFactory");
foodFactory.make();
System.out.println("-----分割线-----");
Factory phoneFactory = (Factory) context.getBean("phoneFactory");
phoneFactory.make();
}
}
| [
"[email protected]"
] | |
781e1e03fb58f17af649e3a14054dcbaf3db65b6 | 4db2cd8b00af4d3e9fa8b5d9196c5a1597273f90 | /src/Abstractions/Server.java | d25d1b8d0a077c3ed7791bf51cf2514d530b247b | [] | no_license | hu1732030/JavaRushHour | 3c879ab0c17be256eb0390777c91a462170f309b | 1dedb31cc9b2386de1c74250ec73a23ea39cd8d4 | refs/heads/master | 2020-06-25T06:30:33.675483 | 2017-10-31T02:41:13 | 2017-10-31T02:41:13 | null | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 7,196 | java | package Abstractions;
import java.io.*;
import java.net.*;
import java.util.*;
import javax.swing.*;
import Main.GamePanel;
import Main.MultiFrameFuncPanel;
import Main.UtilPanel;
public class Server{
private static ServerSocket serverSocket;
private static ServerThread serverThread;
private static ArrayList<ClientThread> clients;
public static boolean isStart = false;
private int max = 1;
// 构造
public Server(int port) {
try {
serverStart(max, port);
} catch (BindException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
// 启动服务器
public static void serverStart(int max, int port) throws java.net.BindException {
try {
clients = new ArrayList<ClientThread>();
serverSocket = new ServerSocket(port);
serverThread = new ServerThread(serverSocket, max);
serverThread.start();
JOptionPane.showMessageDialog(null, "房间创建成功!");
isStart = true;
} catch (BindException e) {
isStart = false;
JOptionPane.showMessageDialog(null,"该房间号已被使用,请换一个房间号。",
"错误", JOptionPane.ERROR_MESSAGE);
} catch (Exception e1) {
e1.printStackTrace();
isStart = false;
throw new BindException("启动服务器异常!");
}
}
// 执行消息发送
public static void send(String str) {
String message = str;
sendServerMessage(message);
}
// 群发服务器消息
public static void sendServerMessage(String message) {
for (int i = clients.size() - 1; i >= 0; i--) {
clients.get(i).getWriter().println(message);
clients.get(i).getWriter().flush();
}
}
// 关闭服务器
@SuppressWarnings("deprecation")
public static void closeServer() {
try {
if (serverThread != null)
serverThread.stop();// 停止服务器线程
for (int i = clients.size() - 1; i >= 0; i--) {
// 给所有在线用户发送关闭命令
clients.get(i).getWriter().println("CLOSE");
clients.get(i).getWriter().flush();
// 释放资源
clients.get(i).stop();// 停止此条为客户端服务的线程
clients.get(i).reader.close();
clients.get(i).writer.close();
clients.get(i).socket.close();
clients.remove(i);
}
if (serverSocket != null) {
serverSocket.close();// 关闭服务器端连接
}
isStart = false;
} catch (IOException e) {
e.printStackTrace();
isStart = true;
}
}
// 服务器线程
static class ServerThread extends Thread {
private ServerSocket serverSocket;
private int max = 1;// 人数上限
// 服务器线程的构造方法
public ServerThread(ServerSocket serverSocket, int max) {
this.serverSocket = serverSocket;
this.max = max;
}
public void run() {
while (true) {// 不停的等待客户端的链接
try {
Socket socket = serverSocket.accept();
if (clients.size() == max) {// 如果已达人数上限
BufferedReader r = new BufferedReader(
new InputStreamReader(socket.getInputStream()));
PrintWriter w = new PrintWriter(socket
.getOutputStream());
// 接收客户端的基本用户信息
String inf = r.readLine();
StringTokenizer st = new StringTokenizer(inf, "@");
UserMulti user = new UserMulti(st.nextToken(), st.nextToken());
// 反馈连接成功信息
w.println("MAX@服务器:对不起," + user.getName()
+ user.getIp() + ",服务器在线人数已达上限,请稍后尝试连接!");
w.flush();
// 释放资源
r.close();
w.close();
socket.close();
continue;
}
ClientThread client = new ClientThread(socket);
client.start();// 开启对此客户端服务的线程
clients.add(client);
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
// 为一个客户端服务的线程
static class ClientThread extends Thread {
private Socket socket;
private BufferedReader reader;
private PrintWriter writer;
private UserMulti user;
public BufferedReader getReader() {
return reader;
}
public PrintWriter getWriter() {
return writer;
}
public UserMulti getUser() {
return user;
}
// 客户端线程的构造方法
public ClientThread(Socket socket) {
try {
this.socket = socket;
reader = new BufferedReader(new InputStreamReader(socket
.getInputStream()));
writer = new PrintWriter(socket.getOutputStream());
// 接收客户端的基本用户信息
String inf = reader.readLine();
StringTokenizer st = new StringTokenizer(inf, "@");
user = new UserMulti(st.nextToken(), st.nextToken());
// 反馈连接成功信息
writer.println(user.getName() + user.getIp() + "与服务器连接成功!");
writer.flush();
JOptionPane.showMessageDialog(null, user.getName() + "已加入了房间。");
MultiFrameFuncPanel.btnStart.setEnabled(true);
UtilPanel.infoChange("Please select a map and start the game!");
} catch (IOException e) {
e.printStackTrace();
}
}
@SuppressWarnings("deprecation")
public void run() {// 不断接收客户端的消息,进行处理。
String message = null;
while (true) {
try {
message = reader.readLine();// 接收客户端消息
StringTokenizer stringTokenizer = new StringTokenizer(
message, "/@");
String command = stringTokenizer.nextToken();// 命令
System.out.println(command);
if (command.equals("CLOSE"))//线程下线命令
{
JOptionPane.showMessageDialog(null, user.getName() + "已经退出了房间。游戏中断。", "错误",
JOptionPane.ERROR_MESSAGE);
reader.close();
writer.close();
socket.close();
// 删除此条客户端服务线程
for (int i = clients.size() - 1; i >= 0; i--) {
if (clients.get(i).getUser() == user) {
ClientThread temp = clients.get(i);
clients.remove(i);// 删除此用户的服务线程
temp.stop();// 停止这条服务线程
return;
}
}
} else if (command.equals("MAP")) {//地图消息传输
} else if(command.equals("PREV")){
}
else if (command.equals("FINISHED")) {//单方游戏完成消息传输
MultiFrameFuncPanel.gamestarted = true;
MultiFrameFuncPanel.gamepaused= true;
JOptionPane.showMessageDialog(null, "对手已经完成了游戏!用时:" + UtilPanel.Currenttime);
GamePanel.isenabled = false;
} else {// 步骤消息
System.out.println(message + "\r\n");
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
} | [
"[email protected]"
] | |
812dd4e3142dc4b678c167bcacc17910fa87c63d | bbf646c49c085d0f203b5a578e6573ac92d9588e | /ScoreList.java | b525d138a821c2024379ea7330c1cb72d70dbbff | [] | no_license | CXLCXLCXLCXLCXL/JWGLXT | b9f62f5e7a3a31d19714dc89cdf03b6595f0d97b | 1c80cdc8aa28bbab4378fa39068deab17ca7bf61 | refs/heads/main | 2023-01-19T14:25:02.655231 | 2020-11-28T16:02:24 | 2020-11-28T16:02:24 | 311,093,932 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 536 | 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.qdu.pojo;
import java.util.ArrayList;
import java.util.List;
/**
*
* @author master
*/
public class ScoreList {
private static List<PartScore> list;
public List<PartScore> getList() {
return list;
}
public void setList(List<PartScore> list) {
this.list = list;
}
}
| [
"[email protected]"
] | |
5a0490d51813164153d8ea8b66923b5f5c0c98c3 | 2bbb3d94603c58f95f54cbae7e3ad5a0d388d83b | /src/test/java/org/hjdskes/id2202/AllTests.java | 524976bda6cc8e5d6fe8fc4947e9f10ed2b7da5c | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | mkgobaco/minijava | ae8a08dc5add870dfb8eae158489d18f7f8ea983 | 9786c16592d3dc0bc9ae89fc4c521bd77e512316 | refs/heads/master | 2021-05-31T02:26:52.199739 | 2015-12-17T20:10:56 | 2015-12-17T20:25:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,077 | java | package org.hjdskes.id2202;
import org.hjdskes.id2202.ast.IdentifierTest;
import org.hjdskes.id2202.ast.ListTest;
import org.hjdskes.id2202.ast.ProgramTest;
import org.hjdskes.id2202.ast.classes.FormalTest;
import org.hjdskes.id2202.ast.classes.MainClassTest;
import org.hjdskes.id2202.ast.classes.MethodDeclTest;
import org.hjdskes.id2202.ast.classes.VarDeclTest;
import org.hjdskes.id2202.ast.classes.impl.ClassDeclExtendsTest;
import org.hjdskes.id2202.ast.classes.impl.ClassDeclSimpleTest;
import org.hjdskes.id2202.ast.expression.impl.ArrayLengthTest;
import org.hjdskes.id2202.ast.expression.impl.ArrayLookupTest;
import org.hjdskes.id2202.ast.expression.impl.BinOpExpTest;
import org.hjdskes.id2202.ast.expression.impl.CallTest;
import org.hjdskes.id2202.ast.expression.impl.FalseTest;
import org.hjdskes.id2202.ast.expression.impl.IdentifierExprTest;
import org.hjdskes.id2202.ast.expression.impl.IntegerLiteralTest;
import org.hjdskes.id2202.ast.expression.impl.NewArrayTest;
import org.hjdskes.id2202.ast.expression.impl.NewObjectTest;
import org.hjdskes.id2202.ast.expression.impl.ThisTest;
import org.hjdskes.id2202.ast.expression.impl.TrueTest;
import org.hjdskes.id2202.ast.expression.impl.UnOpExpTest;
import org.hjdskes.id2202.ast.statement.impl.ArrayAssignTest;
import org.hjdskes.id2202.ast.statement.impl.AssignTest;
import org.hjdskes.id2202.ast.statement.impl.BlockTest;
import org.hjdskes.id2202.ast.statement.impl.IfTest;
import org.hjdskes.id2202.ast.statement.impl.PrintTest;
import org.hjdskes.id2202.ast.statement.impl.WhileTest;
import org.hjdskes.id2202.ast.type.impl.BooleanTypeTest;
import org.hjdskes.id2202.ast.type.impl.IdentifierTypeTest;
import org.hjdskes.id2202.ast.type.impl.IntArrayTypeTest;
import org.hjdskes.id2202.ast.type.impl.IntegerTypeTest;
import org.hjdskes.id2202.parser.MiniJavaLexerTest;
import org.hjdskes.id2202.parser.MiniJavaParserTest;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* Driver to easily run all the tests.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
/* AST */
ClassDeclExtendsTest.class,
ClassDeclSimpleTest.class,
FormalTest.class,
MainClassTest.class,
MethodDeclTest.class,
VarDeclTest.class,
ArrayLengthTest.class,
ArrayLookupTest.class,
BinOpExpTest.class,
CallTest.class,
FalseTest.class,
IdentifierExprTest.class,
IntegerLiteralTest.class,
NewArrayTest.class,
NewObjectTest.class,
ThisTest.class,
TrueTest.class,
UnOpExpTest.class,
ArrayAssignTest.class,
AssignTest.class,
BlockTest.class,
IfTest.class,
PrintTest.class,
WhileTest.class,
BooleanTypeTest.class,
IdentifierTypeTest.class,
IntArrayTypeTest.class,
IntegerTypeTest.class,
IdentifierTest.class,
ListTest.class,
ProgramTest.class,
/* Parser */
MiniJavaLexerTest.class,
MiniJavaParserTest.class,
})
public class AllTests {
}
| [
"[email protected]"
] | |
7e2276f5714ccbf7b6f5a989710d01b91e48c0c5 | b1389dcb4d82162c207405876ca2e9a6073fa4b5 | /Aula13/Lobo.java | 3d2eb816121ab89a1272507da2c4cc6b2764b1db | [
"MIT"
] | permissive | Sebenta/Curso-de-POO-usando-o-Java | 23fe38fbf10ee4ea699c9ee1be3262c5fe4d6e0b | 69c607fe2046c9245fea362031bfb2175e26575d | refs/heads/master | 2022-04-23T16:04:40.283083 | 2020-04-11T23:54:00 | 2020-04-11T23:54:00 | 254,965,511 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 325 | java | /**
*
* @author Code36u4r60
*/
public class Lobo extends Mamifero {
public Lobo() {
}
public Lobo(String corPelo, float peso, int idade, int membros) {
super(corPelo, peso, idade, membros);
}
@Override
public void emitirSom() {
System.out.println("Auuuuuuuuuuuuuuuuuu");
}
}
| [
"[email protected]"
] | |
8c47602a829627939b310e7340530c6a1e9dbb48 | 31066a54f3e03a91d6d0096516f4cd4b7d4fdbff | /src/main/java/com/yonyou/iuap/search/analyzer/utils/Pinyin4jUtil.java | 2fb6dedb5d399aa56ff5ddd5a44016a0fea5d054 | [
"Apache-2.0"
] | permissive | zxspopo/xmAnalyzer | 78b4d351ef9c1d40bcc1447b730fae734d5fe348 | e6b8262e6e9732e9a6ac28a2232d1e27df204bc5 | refs/heads/master | 2021-01-14T02:39:44.713464 | 2017-03-27T02:35:22 | 2017-03-27T02:35:22 | 52,922,525 | 4 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,225 | java | package com.yonyou.iuap.search.analyzer.utils;
import java.util.HashSet;
import java.util.Set;
import net.sourceforge.pinyin4j.PinyinHelper;
import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType;
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat;
import net.sourceforge.pinyin4j.format.HanyuPinyinToneType;
import net.sourceforge.pinyin4j.format.HanyuPinyinVCharType;
import net.sourceforge.pinyin4j.format.exception.BadHanyuPinyinOutputFormatCombination;
/**
* @author zengxs
*/
public class Pinyin4jUtil {
static final org.slf4j.Logger LOGGER = org.slf4j.LoggerFactory.getLogger(Pinyin4jUtil.class); // auto append.
/**
* 获取中文汉字拼音 默认输出
*
* @return
*/
public static String getPinyin(String chinese) {
return getPinyinZh_CN(makeStringByStringSet(chinese));
}
/*
* 拼音大写输出
*/
public static String getPinyinToUpperCase(String chinese) {
return getPinyinZh_CN(makeStringByStringSet(chinese)).toUpperCase();
}
/**
* 拼音小写输出
*
*/
public static String getPinyinToLowerCase(String chinese) {
return getPinyinZh_CN(makeStringByStringSet(chinese)).toLowerCase();
}
/**
* 首字母大写输出
*
* @param chinese
* @return
*/
public static String getPinyinFirstToUpperCase(String chinese) {
return getPinyin(chinese);
}
/**
* 拼音简拼输出
*
*/
public static String getPinyinJianPin(String chinese) {
return getPinyinConvertJianPin(getPinyin(chinese));
}
/**
* 字符集转换
*
*/
public static Set<String> makeStringByStringSet(String chinese) {
char[] chars = chinese.toCharArray();
if (chinese != null && !chinese.trim().equalsIgnoreCase("")) {
char[] srcChar = chinese.toCharArray();
String[][] temp = new String[chinese.length()][];
for (int i = 0; i < srcChar.length; i++) {
char c = srcChar[i];
// 是中文或者a-z或者A-Z转换拼音
if (String.valueOf(c).matches("[\\u4E00-\\u9FA5]+")) {
try {
temp[i] = PinyinHelper.toHanyuPinyinStringArray(chars[i], getDefaultOutputFormat());
} catch (BadHanyuPinyinOutputFormatCombination e) {
LOGGER.error("",e);
}
} else if (((int) c >= 65 && (int) c <= 90) || ((int) c >= 97 && (int) c <= 122)) {
temp[i] = new String[] {String.valueOf(srcChar[i])};
} else {
temp[i] = new String[] {""};
}
}
String[] pingyinArray = Exchange(temp);
Set<String> zhongWenPinYin = new HashSet<String>();
for (int i = 0; i < pingyinArray.length; i++) {
zhongWenPinYin.add(pingyinArray[i]);
}
return zhongWenPinYin;
}
return null;
}
/**
* Default Format 默认输出格式
*/
public static HanyuPinyinOutputFormat getDefaultOutputFormat() {
HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
format.setCaseType(HanyuPinyinCaseType.LOWERCASE);// 小写
format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);// 没有音调数字
format.setVCharType(HanyuPinyinVCharType.WITH_U_AND_COLON);// u显示
return format;
}
/**
*
*/
public static String[] Exchange(String[][] strJaggedArray) {
String[][] temp = DoExchange(strJaggedArray);
return temp[0];
}
/**
*
*/
private static String[][] DoExchange(String[][] strJaggedArray) {
int len = strJaggedArray.length;
if (len >= 2) {
int len1 = strJaggedArray[0].length;
int len2 = strJaggedArray[1].length;
int newlen = len1 * len2;
String[] temp = new String[newlen];
int Index = 0;
for (int i = 0; i < len1; i++) {
for (int j = 0; j < len2; j++) {
temp[Index] = capitalize(strJaggedArray[0][i]) + capitalize(strJaggedArray[1][j]);
Index++;
}
}
String[][] newArray = new String[len - 1][];
for (int i = 2; i < len; i++) {
newArray[i - 1] = strJaggedArray[i];
}
newArray[0] = temp;
return DoExchange(newArray);
} else {
return strJaggedArray;
}
}
/**
* 首字母大写
*/
public static String capitalize(String s) {
char ch[];
ch = s.toCharArray();
if (ch[0] >= 'a' && ch[0] <= 'z') {
ch[0] = (char) (ch[0] - 32);
}
String newString = new String(ch);
return newString;
}
/**
* 字符串集合转换字符串(逗号分隔)
*/
public static String getPinyinZh_CN(Set<String> stringSet) {
StringBuilder str = new StringBuilder();
int i = 0;
for (String s : stringSet) {
if (i == stringSet.size() - 1) {
str.append(s);
} else {
str.append(s + ",");
}
i++;
}
return str.toString();
}
/**
* 获取每个拼音的简称
*
* @param chinese
* @return
*/
public static String getPinyinConvertJianPin(String chinese) {
String[] strArray = chinese.split(",");
String strChar = "";
for (String str : strArray) {
char arr[] = str.toCharArray(); // 将字符串转化成char型数组
for (int i = 0; i < arr.length; i++) {
if (arr[i] >= 65 && arr[i] < 91) { // 判断是否是大写字母
strChar += new String(arr[i] + "");
}
}
strChar += ",";
}
return strChar;
}
}
| [
"[email protected]"
] | |
bc5adf6c9414b4f1d5bcb4651989c1671aa5dbac | bd4fef4d4ac6bdd8b252720e1f281059dc04c465 | /demoqa/src/demoqa/AutomationPracticeForm.java | add26a8c6005d3f4e7544bc9a0c32e489806db83 | [] | no_license | PunishDave/Selenium_scripts | bff4172cdb8fc177f985e757d1aa6083b9b5ec5b | f6568a42da132b04f385fdeb5d7b7f51b3aad802 | refs/heads/main | 2023-03-23T02:34:11.398757 | 2021-03-02T11:41:18 | 2021-03-02T11:41:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,232 | java | package demoqa;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
public class AutomationPracticeForm {
public static void main(String[] args) throws InterruptedException {
// TODO Auto-generated method stub
// create driver object
System.setProperty("webdriver.chrome.driver", "C:\\Users\\insat\\Downloads\\chromedriver_win32\\chromedriver.exe");
WebDriver driver=new ChromeDriver(); // chromedriver is the class
driver.get("https://demoqa.com/automation-practice-form");
System.out.println(driver.getTitle()); // check title is correct
System.out.println(driver.getCurrentUrl()); // validate URL has been passed correctly
//Autocomplete form
//Basic details - firstname lastname
driver.findElement(By.id("firstName")).sendKeys("firstname");
driver.findElement(By.id("lastName")).sendKeys("lastname");
driver.findElement(By.id("userEmail")).sendKeys("[email protected]");
driver.findElement(By.id("userNumber")).sendKeys("07590116142");
//Gender button - male
driver.findElement(By.xpath("//label[contains(text(),'Male')]")).click();
//Date of birth - hardcoded to 31/03/86
driver.findElement(By.cssSelector("input[id='dateOfBirthInput']")).click();
driver.findElement(By.cssSelector(".react-datepicker__month-dropdown-container.react-datepicker__month-dropdown-container--select")).click();
driver.findElement(By.xpath("//option[contains(text(),'March')]")).click();
driver.findElement(By.cssSelector(".react-datepicker__year-dropdown-container.react-datepicker__year-dropdown-container--select")).click();
driver.findElement(By.xpath("//option[contains(text(),'1986')]")).click();
driver.findElement(By.cssSelector("input[id='dateOfBirthInput']")).click();
driver.findElement(By.xpath("//div[contains(text(),'31')]")).click();
//Subjects - English, Computer Science
driver.findElement(By.id("subjectsInput")).sendKeys("English");
Thread.sleep(1000);
driver.findElement(By.id("subjectsInput")).sendKeys(Keys.ENTER);
Thread.sleep(1000);
driver.findElement(By.id("subjectsInput")).sendKeys("Computer");
Thread.sleep(1000);
driver.findElement(By.id("subjectsInput")).sendKeys(Keys.ENTER);
//Hobbies
driver.findElement(By.xpath("//label[contains(text(),'Reading')]")).click();
driver.findElement(By.xpath("//label[contains(text(),'Music')]")).click();
//Picture
WebElement uploadElement = driver.findElement(By.id("uploadPicture"));
uploadElement.sendKeys("C:\\Users\\insat\\Downloads\\Image from iOS.jpg");
//Current Address
Thread.sleep(1000);
driver.findElement(By.id("currentAddress")).sendKeys("Test Address");
//State and City
driver.findElement(By.xpath("//div[@id='state']//input")).sendKeys("NCR");
Thread.sleep(1000);
driver.findElement(By.xpath("//div[@id='state']//input")).sendKeys(Keys.ENTER);
Thread.sleep(1000);
driver.findElement(By.xpath("//div[@id='city']//input")).sendKeys("Delhi");
//submission
Thread.sleep(1000);
driver.findElement(By.id("submit")).submit();
driver.quit(); // closes all the browsers including popups
}
}
| [
"[email protected]"
] | |
3e2a98e807d8704fc812ea3df9f271c776d938e4 | 21f9fd8066022aea272f89207a452aaedb96109c | /src/main/java/com/aws/codestar/projecttemplates/Reprisitory/PlayerRep.java | 63ef9208100a40d15f1afd9fcf1a36476f0dad45 | [] | no_license | ddneprov/leagueManager | bbb5aa7afda46d8cda4d6ae6eca3b19cf4824317 | a5ccd4b12d040f7cfa6a0bc4e78d4a095b796059 | refs/heads/master | 2023-04-26T18:09:37.564057 | 2021-04-13T15:31:48 | 2021-04-13T15:31:48 | 244,411,060 | 0 | 0 | null | 2023-04-14T17:43:36 | 2020-03-02T15:52:24 | Java | UTF-8 | Java | false | false | 637 | java | package com.aws.codestar.projecttemplates.Reprisitory;
import com.aws.codestar.projecttemplates.domain.Player;
import org.springframework.data.repository.CrudRepository;
import javax.persistence.criteria.CriteriaBuilder;
import java.util.List;
public interface PlayerRep extends CrudRepository<Player, String> {
public List<Player> findAll();
public Player findFirstByPlayerId(Integer playerId);
public Player findFirstByPlayerEmail(String playerEmail);
public Player findByPlayerEmailAndPlayerPassword(String playerEmail, String playerPassword);
public List<Player> findAllByPlayerTeamId(Integer playerTeamId);
}
| [
"[email protected]"
] | |
ec964e680c902ff10534ce8d26627621fdaac287 | fda8f77021890121b78a543365d6a9028f3af17d | /_KitPvP e HG/HG Torm/src/me/recenthg/stark/Comandos/Bc.java | 7005cf0c5fab2f419f8f0bb1396451353865c3d7 | [] | no_license | Caaarlowsz/plugins-internet | 54e1c5febe9caf19ddfa5224526e1724a2098752 | d3f161eaeaddbbd44e8ded682a4fa5e17f5ae6ab | refs/heads/master | 2022-09-05T02:47:18.163114 | 2020-05-27T05:22:41 | 2020-05-27T05:22:41 | 391,188,689 | 1 | 0 | null | 2021-07-30T21:11:06 | 2021-07-30T21:11:06 | null | UTF-8 | Java | false | false | 1,246 | java | package me.recenthg.stark.Comandos;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
import org.bukkit.event.Listener;
import me.recent.stark.Main;
import me.recent.stark.Strings;
public class Bc
implements CommandExecutor, Listener
{
Main main;
public Bc()
{
}
public boolean onCommand(CommandSender sender, Command cmd, String Label, String[] args)
{
if ((cmd.getName().equalsIgnoreCase("bc")) || (cmd.getName().equalsIgnoreCase("broadcast")))
{
if (!sender.hasPermission("HungerGames.c.bc"))
{
sender.sendMessage(Strings.semperm);
return true;
}
if (args.length == 0)
{
sender.sendMessage(ChatColor.GOLD + "§8\u276e§2§l!§8\u276f §7Use: /bc [mensagem]");
}
else
{
String message = "";
for (String part : args)
{
if (message != "") {
message = message + " ";
}
message = message + part;
}
Bukkit.getServer().broadcastMessage(ChatColor.BLUE + "§4§LAVISO " + ChatColor.DARK_GREEN + "§o§l" + message);
}
}
return false;
}
} | [
"[email protected]"
] | |
13579cd4992d8f412ab5ee305945efc9f0212562 | bf94f1f48b8addb44f8fffb6c658e1330008b241 | /src/main/java/com/liuwei/designpattern/builder/player/PlayerController.java | 6699081ed062ca5b7365aa8c0dc1ec5ab5c06c35 | [] | no_license | liuweiccy/designpattern | d85a2a9d31659fc3b4b673c997b7974afc74d061 | f1aa9219dac748fe6e31cebbf845248ae1e464a2 | refs/heads/master | 2020-05-29T08:49:08.579346 | 2019-08-30T09:55:48 | 2019-08-30T09:55:48 | 69,777,516 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 343 | java | package com.liuwei.designpattern.builder.player;
public class PlayerController {
public Player construct(PlayerBuilder playerBuilder) {
playerBuilder.buildControlBar();
playerBuilder.buildList();
playerBuilder.buildMenu();
playerBuilder.buildWindows();
return playerBuilder.createPlayer();
}
}
| [
"[email protected]"
] | |
a0c28c27d1283a481e3ebc50a40b66db333faae3 | 7ac36ef67af385a97d55eb991800ec0470844e4f | /src/offerPractice/_09变态跳台阶/Solution.java | 8d45f55e1bd4fbb0c63fbef25e509d940a5a3681 | [] | no_license | yu1785/project01 | 1e31733cff692b2887d1ac83d2bc980ee8a7b00d | 6cfd47c0b68f4e9fc62e0d8d394ac08df79fa034 | refs/heads/master | 2021-08-18T03:05:06.254139 | 2020-09-15T15:49:24 | 2020-09-15T15:49:24 | 222,211,605 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 982 | java | package offerPractice._09变态跳台阶;
/**
* 一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级。
* 求该青蛙跳上一个n级的台阶总共有多少种跳法。
*
* 思路: n 级台阶有f(n)种跳法,根据最后一次跳台阶的数目可以分解为:
* 最后一次一级,则前面需要跳n-1级,有f(n-1)种跳法;
* 最后一次跳两级,则前面需要跳n- 2n−2 级,有f(n-2) f(n−2) 种跳法。
* 以此类推
* f(n) = f(n-1)+f(n-2)+...+f(1)
* f(n-1)= f(n-2)+...f(1)
* 得:f(n)= 2*f(n-1)
*/
public class Solution {
public static void main(String[] args) {
int n = 4;
System.out.println(JumpFloorII(n));
}
public static int JumpFloorII(int target) {
if (target==0 || target==1 || target==2)
return target;
else if (target == 3)
return 4;
else
return 2*JumpFloorII(target-1);
}
}
| [
"[email protected]"
] | |
e04401fd56e1fc907d30ad21256075c849fa5f7b | 2b94ab0c13f0e3bfb6ffd63d4da8dae5933f4bd7 | /app/src/main/java/com/nikosval/aepp/diagwnismak5.java | bc66b767916234d5c4618af69d006aa5be5d882f | [] | no_license | theessential/Aepp2LatestVersionn | 7e2d87387f9d0bf840c33191aaed4a94d3acc1d8 | cc578755449965635fb80a467ffcf7fd27beda04 | refs/heads/master | 2020-09-03T22:22:29.401610 | 2019-11-04T20:14:47 | 2019-11-04T20:14:47 | 219,588,255 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,957 | java | package com.nikosval.aepp;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import java.io.Serializable;
import java.util.ArrayList;
public class diagwnismak5 extends AppCompatActivity {
private QuestionLibraryk5 mQuestionLibrary = new QuestionLibraryk5();
private TextView mScoreView5;
private TextView mQuestionView5;
private Button choice1;
private Button choice2;
private Button choice3;
ArrayList apotelesmata;
ArrayList apotelesmatalanthasmenes;
String epilogh;
private String manswer;
private int mscored5 = 0;
private int mQuestionNumber = 0;
private int ii;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_diagwnismak5);
mScoreView5 = (TextView) findViewById(R.id.scorenumber5);
mQuestionView5 = (TextView) findViewById(R.id.erwthsh5);
choice1 = (Button) findViewById(R.id.choice15);
choice2 = (Button) findViewById(R.id.choice25);
choice3 = (Button) findViewById(R.id.choice35);
apotelesmata=new ArrayList<String>();
Intent startIntent= getIntent();
ii= startIntent.getIntExtra("pernatoeuros5",0);
apotelesmatalanthasmenes=new ArrayList<String>();
mQuestionLibrary.suffle();
updateQuestion();
choice1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
epilogh=updateText(choice1);
if (choice1.getText() == manswer) {
mscored5 = mscored5 + 1;
Toast.makeText(diagwnismak5.this, "Σωστα!", Toast.LENGTH_SHORT).show();
} else
Toast.makeText(diagwnismak5.this, "Λάθος απάντηση!", Toast.LENGTH_SHORT).show();
updateScore(mscored5);
apotelesmata.add("Aπάντησες: "+choice1.getText().toString());
if(!(epilogh.equals(manswer))){
apotelesmatalanthasmenes.add("Η ερώτηση ήταν: "+mQuestionView5.getText().toString());
apotelesmatalanthasmenes.add("Απάντησες λανθασμένα: "+choice1.getText().toString());
apotelesmatalanthasmenes.add("Η σωστή απάντηση είναι: "+manswer.toString());
apotelesmatalanthasmenes.add(" ");
}
apotelesmata.add(" ");
updateQuestion();
}
});
choice2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
epilogh=updateText(choice2);
if (choice2.getText() == manswer) {
mscored5 = mscored5 + 1;
Toast.makeText(diagwnismak5.this, "Σωστα!", Toast.LENGTH_SHORT).show();
} else
Toast.makeText(diagwnismak5.this, "Λάθος απάντηση!", Toast.LENGTH_SHORT).show();
updateScore(mscored5);
apotelesmata.add("Aπάντησες: "+choice2.getText().toString());
if(!(epilogh.equals(manswer))){
apotelesmatalanthasmenes.add("Η ερώτηση ήταν: "+mQuestionView5.getText().toString());
apotelesmatalanthasmenes.add("Απάντησες λανθασμένα: "+choice2.getText().toString());
apotelesmatalanthasmenes.add("Η σωστή απάντηση είναι: "+manswer.toString());
apotelesmatalanthasmenes.add(" ");
}
apotelesmata.add(" ");
updateQuestion();
}
});
choice3.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
epilogh=updateText(choice3);
if (choice3.getText() == manswer) {
mscored5 = mscored5 + 1;
Toast.makeText(diagwnismak5.this, "Σωστα!", Toast.LENGTH_SHORT).show();
} else
Toast.makeText(diagwnismak5.this, "Λάθος απάντηση!", Toast.LENGTH_SHORT).show();
updateScore(mscored5);
apotelesmata.add("Aπάντησες: "+choice3.getText().toString());
if(!(epilogh.equals(manswer))){
apotelesmatalanthasmenes.add("Η ερώτηση ήταν: "+mQuestionView5.getText().toString());
apotelesmatalanthasmenes.add("Απάντησες λανθασμένα: "+choice3.getText().toString());
apotelesmatalanthasmenes.add("Η σωστή απάντηση είναι: "+manswer.toString());
apotelesmatalanthasmenes.add(" ");
}
apotelesmata.add(" ");
updateQuestion();
}
});
}
private void updateQuestion() {
if (mQuestionNumber <ii) {
if (mQuestionLibrary.getanswerslength(mQuestionNumber) == 2) {
mQuestionView5.setText(mQuestionLibrary.getquestion(mQuestionNumber));
apotelesmata.add("Η ερώτηση ήταν: "+mQuestionView5.getText().toString());
choice1.setText(mQuestionLibrary.getchoice1(mQuestionNumber));
choice2.setText(mQuestionLibrary.getchoice2(mQuestionNumber));
manswer = mQuestionLibrary.getCorrectAnswer(mQuestionNumber);
choice3.setVisibility(View.GONE);
apotelesmata.add("H σωστή απάντηση είναι: "+manswer.toString());
mQuestionNumber++;
} else if (mQuestionLibrary.getanswerslength(mQuestionNumber) == 3) {
choice3.setVisibility(View.VISIBLE);
mQuestionView5.setText(mQuestionLibrary.getquestion(mQuestionNumber));
apotelesmata.add("Η ερώτηση ήταν: "+mQuestionView5.getText().toString());
choice1.setText(mQuestionLibrary.getchoice1(mQuestionNumber));
choice2.setText(mQuestionLibrary.getchoice2(mQuestionNumber));
choice3.setText(mQuestionLibrary.getchoice3(mQuestionNumber));
manswer = mQuestionLibrary.getCorrectAnswer(mQuestionNumber);
apotelesmata.add("H σωστή απάντηση είναι: "+manswer.toString());
mQuestionNumber++;
}
} else {
AlertDialog.Builder alert = new AlertDialog.Builder(diagwnismak5.this);
alert.setTitle("Το διαγώνισμα τελείωσε!");
alert.setCancelable(false);
alert.setMessage("Το σκορ σου είναι : " + mscored5 + " πόντοι!");
alert.setPositiveButton("Δείξε μου όλες τις απαντήσεις", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Intent intent = new Intent(diagwnismak5.this, menuaskisewn5.class);
intent.putExtra("scorediagwnisma5", mscored5);
startActivity(intent);
finish();
Intent intent2 = new Intent(diagwnismak5.this, analitikak5.class);
intent2.putExtra("apotelesmata", apotelesmata);
startActivity(intent2);
}
});
alert.setNegativeButton("Δείξε μόνο τις λανθασμένες απαντήσεις", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Intent intent = new Intent(diagwnismak5.this, menuaskisewn5.class);
intent.putExtra("scorediagwnisma5", mscored5);
startActivity(intent);
finish();
Intent intentlathos = new Intent(diagwnismak5.this, analitikalanthasmenes5.class);
intentlathos.putExtra("apotelesmatalanthasmenes5", apotelesmatalanthasmenes);
startActivity(intentlathos);
}
});
alert.show();
}
}
public String updateText(View v){
Button btn = (Button) findViewById(v.getId());
String text = btn.getText().toString();
return text;
}
private void updateScore(int point) {
mScoreView5.setText("" + mscored5 + "/" + mQuestionLibrary.getlength());
}
}
| [
"[email protected]"
] | |
e74be1d1147aec1e639c5166a31895b217eb3efc | 0604a773b4519b8ae1eb53379e4079bec134b198 | /src/main/java/com/lcyzh/nmerp/common/mapper/JsonMapper.java | a9e038ecde9ecab58fbf4b4d1892ca84a470309a | [] | no_license | guanzhongheng/smErp | bd33cff4a5f53ebaff234adfb87832511cf3ea88 | e2e3a7bedff0174bbf68382d609784b35f53e447 | refs/heads/master | 2022-11-10T16:17:03.524547 | 2020-03-21T07:27:16 | 2020-03-21T07:27:16 | 190,545,650 | 1 | 1 | null | 2022-10-12T20:28:24 | 2019-06-06T08:35:08 | JavaScript | UTF-8 | Java | false | false | 9,596 | java |
package com.lcyzh.nmerp.common.mapper;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser.Feature;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.*;
import com.fasterxml.jackson.databind.util.JSONPObject;
import com.fasterxml.jackson.module.jaxb.JaxbAnnotationModule;
import com.lcyzh.nmerp.common.collect.ListUtils;
import com.lcyzh.nmerp.common.io.PropertiesUtils;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import java.util.TimeZone;
/**
* 简单封装Jackson,实现JSON String<->Java Object的Mapper.
* 封装不同的输出风格, 使用不同的builder函数创建实例.
* @author ThinkGem
* @version 2016-3-2
*/
public class JsonMapper extends ObjectMapper {
private static final long serialVersionUID = 1L;
private static Logger logger = LoggerFactory.getLogger(JsonMapper.class);
/**
* 当前类的实例持有者(静态内部类,延迟加载,懒汉式,线程安全的单例模式)
*/
private static final class JsonMapperHolder {
private static final JsonMapper INSTANCE = new JsonMapper();
}
public JsonMapper() {
// Spring ObjectMapper 初始化配置,支持 @JsonView
new Jackson2ObjectMapperBuilder().configure(this);
// 为Null时不序列化
this.setSerializationInclusion(Include.NON_NULL);
// 允许单引号
this.configure(Feature.ALLOW_SINGLE_QUOTES, true);
// 允许不带引号的字段名称
this.configure(Feature.ALLOW_UNQUOTED_FIELD_NAMES, true);
// 设置默认时区
this.setTimeZone(TimeZone.getTimeZone(PropertiesUtils.getInstance()
.getProperty("lang.defaultTimeZone", "GMT+08:00")));
// 设置输入时忽略在JSON字符串中存在但Java对象实际没有的属性
this.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
// 遇到空值处理为空串
this.getSerializerProvider().setNullValueSerializer(new JsonSerializer<Object>(){
@Override
public void serialize(Object value, JsonGenerator jgen,
SerializerProvider provider) throws IOException, JsonProcessingException {
jgen.writeString(StringUtils.EMPTY);
}
});
// // 统一默认Date类型转换格式。如果设置,Bean中的@JsonFormat将失效
// final String dataFormat = Global.getProperty("json.mapper.dataFormat");
// if (StringUtils.isNotBlank(dataFormat)){
// this.registerModule(new SimpleModule().addSerializer(Date.class, new JsonSerializer<Date>(){
// @Override
// public void serialize(Date value, JsonGenerator jgen,
// SerializerProvider provider) throws IOException, JsonProcessingException {
// if (value != null){
// jgen.writeString(DateUtils.formatDate(value, dataFormat));
// }
// }
// }));
// }
// // 进行HTML解码(先注释掉,否则会造成XSS攻击,比如菜单名称里输入<script>alert(123)</script>转josn后就会还原这个编码 ,并在浏览器中运行)。
// this.registerModule(new SimpleModule().addSerializer(String.class, new JsonSerializer<String>(){
// @Override
// public void serialize(String value, JsonGenerator jgen,
// SerializerProvider provider) throws IOException,
// JsonProcessingException {
// if (value != null){
// jgen.writeString(StringEscapeUtils.unescapeHtml4(value));
// }
// }
// }));
}
/**
* Object可以是POJO,也可以是Collection或数组。
* 如果对象为Null, 返回"null".
* 如果集合为空集合, 返回"[]".
*/
public String toJsonString(Object object) {
try {
return this.writeValueAsString(object);
} catch (IOException e) {
logger.warn("write to json string error:" + object, e);
return null;
}
}
/**
* 输出JSONP格式数据.
*/
public String toJsonpString(String functionName, Object object) {
return toJsonString(new JSONPObject(functionName, object));
}
/**
* 反序列化POJO或简单Collection如List<String>.
* 如果JSON字符串为Null或"null"字符串, 返回Null.
* 如果JSON字符串为"[]", 返回空集合.
* 如需反序列化复杂Collection如List<MyBean>, 请使用fromJson(String,JavaType)
* @see (String, JavaType)
*/
public <T> T fromJsonString(String jsonString, Class<T> clazz) {
if (StringUtils.isEmpty(jsonString) || "<CLOB>".equals(jsonString)) {
return null;
}
try {
return this.readValue(jsonString, clazz);
} catch (IOException e) {
logger.warn("parse json string error:" + jsonString, e);
return null;
}
}
/**
* 反序列化复杂Collection如List<Bean>, 先使用函数createCollectionType构造类型,然后调用本函数.
* @see #createCollectionType(Class, Class...)
*/
@SuppressWarnings("unchecked")
public <T> T fromJsonString(String jsonString, JavaType javaType) {
if (StringUtils.isEmpty(jsonString) || "<CLOB>".equals(jsonString)) {
return null;
}
try {
return (T) this.readValue(jsonString, javaType);
} catch (IOException e) {
logger.warn("parse json string error:" + jsonString, e);
return null;
}
}
/**
* 构造泛型的Collection Type如:
* ArrayList<MyBean>, 则调用constructCollectionType(ArrayList.class,MyBean.class)
* HashMap<String,MyBean>, 则调用(HashMap.class,String.class, MyBean.class)
*/
public JavaType createCollectionType(Class<?> collectionClass, Class<?>... elementClasses) {
return this.getTypeFactory().constructParametricType(collectionClass, elementClasses);
}
/**
* 当JSON里只含有Bean的部分属性時,更新一个已存在Bean,只覆盖该部分的属性.
*/
@SuppressWarnings("unchecked")
public <T> T update(String jsonString, T object) {
try {
return (T) this.readerForUpdating(object).readValue(jsonString);
} catch (JsonProcessingException e) {
logger.warn("update json string:" + jsonString + " to object:" + object + " error.", e);
} catch (IOException e) {
logger.warn("update json string:" + jsonString + " to object:" + object + " error.", e);
}
return null;
}
/**
* 设定是否使用Enum的toString函数来读写Enum,
* 为False实时使用Enum的name()函数来读写Enum, 默认为False.
* 注意本函数一定要在Mapper创建后, 所有的读写动作之前调用.
*/
public JsonMapper enableEnumUseToString() {
this.enable(SerializationFeature.WRITE_ENUMS_USING_TO_STRING);
this.enable(DeserializationFeature.READ_ENUMS_USING_TO_STRING);
return this;
}
/**
* 支持使用Jaxb的Annotation,使得POJO上的annotation不用与Jackson耦合。
* 默认会先查找jaxb的annotation,如果找不到再找jackson的。
*/
public JsonMapper enableJaxbAnnotation() {
JaxbAnnotationModule module = new JaxbAnnotationModule();
this.registerModule(module);
return this;
}
/**
* 取出Mapper做进一步的设置或使用其他序列化API.
*/
public ObjectMapper getMapper() {
return this;
}
/**
* 获取当前实例
*/
public static JsonMapper getInstance() {
return JsonMapperHolder.INSTANCE;
}
/**
* 对象转换为JSON字符串
*/
public static String toJson(Object object){
return JsonMapper.getInstance().toJsonString(object);
}
/**
* 对象转换为JSONP字符串
*/
public static String toJsonp(String functionName, Object object){
return JsonMapper.getInstance().toJsonpString(functionName, object);
}
/**
* JSON字符串转换为对象
*/
@SuppressWarnings("unchecked")
public static <T> T fromJson(String jsonString, Class<?> clazz){
return (T) JsonMapper.getInstance().fromJsonString(jsonString, clazz);
}
/**
* JSON字符串转换为 List<Map<String, Object>>
*/
public static List<Map<String, Object>> fromJsonForMapList(String jsonString){
List<Map<String, Object>> result = ListUtils.newArrayList();
if (StringUtils.startsWith(jsonString, "{")){
Map<String, Object> map = fromJson(jsonString, Map.class);
if (map != null){
result.add(map);
}
}else if (StringUtils.startsWith(jsonString, "[")){
List<Map<String, Object>> list = fromJson(jsonString, List.class);
if (list != null){
result = list;
}
}
return result;
}
// public static void main(String[] args) {
// List<Map<String, Object>> list = ListUtils.newArrayList();
// Map<String, Object> map = MapUtils.newHashMap();
// map.put("id", 1);
// map.put("pId", -1);
// map.put("name", "根节点");
// list.add(map);
// map = MapUtils.newHashMap();
// map.put("id", 2);
// map.put("pId", 1);
// map.put("name", "你好");
// map.put("open", true);
// list.add(map);
// String json = JsonMapper.toJson(list);
// System.out.println(json);
// List<Map<String, Object>> map2 = JsonMapper.fromJson(json, List.class);
// System.out.println(map2);
// Map<String, Object> map3 = JsonMapper.fromJson("{extendS1:{title:'站牌号',"
// + "sort:1,type:'text',maxlength:0,maxlength:30},extendS2:{title:'规模分类',"
// + "sort:2,type:'dict',dictType:'scope_category'}}", Map.class);
// System.out.println(map3);
// List<String> list2 = fromJson("[1,2]", List.class);
// System.out.println(list2);
// }
}
| [
"[email protected]"
] | |
9cb5b2a07899f8781bb620aa64efa87ef54b6ee6 | 4c8e865137cfa8a5f545bf021c8e8d290421be81 | /app/src/main/java/id/sch/smktelkom_mlg/learn/recyclerview2/model/Hotel.java | a3c984818b6fb580d165ef2899b613d0a8361649 | [] | no_license | Sabilla290/RecyclerView2 | b9ef1e8f366242689c7cc95752e322828331dd22 | d22fc47075b4ba9909b535dc2423ae0ea08727f5 | refs/heads/master | 2021-01-13T17:03:56.496782 | 2016-11-05T12:09:44 | 2016-11-05T12:09:44 | 72,922,198 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 417 | java | package id.sch.smktelkom_mlg.learn.recyclerview2.model;
import android.graphics.drawable.Drawable;
/**
* Created by mrs Bella on 10/31/2016.
*/
public class Hotel{
public String judul;
public String deskripsi;
public Drawable foto;
public Hotel(String judul,String deskripsi, Drawable foto)
{
this.judul = judul;
this.deskripsi = deskripsi;
this.foto = foto;
}
} | [
"[email protected]"
] | |
1dd6e131a9d283a2f5469c4e9c18bc31b9a6a8c2 | eacf4e2dfe4d5c48094586526d07f380fffebb4c | /android-support/src/main/java/android/support/annotation/RequiresPermission.java | 8cece30f3e2c51b8eb817e702c396c08ff8d6d8a | [] | no_license | bxvip/android-support | 0653dde6918702fc2164521ecb5d96803e0e5db8 | b7885edf45b18963f0a04786633e4b49476b7fe8 | refs/heads/master | 2021-06-06T21:16:53.454869 | 2020-08-08T07:33:47 | 2020-08-08T07:33:47 | 134,290,727 | 0 | 6 | null | null | null | null | UTF-8 | Java | false | false | 4,910 | java |
package android.support.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.CLASS;
/**
* Denotes that the annotated element requires (or may require) one or more permissions.
* <p>
* Example of requiring a single permission:
* <pre><code>
* @RequiresPermission(Manifest.permission.SET_WALLPAPER)
* public abstract void setWallpaper(Bitmap bitmap) throws IOException;
*
* @RequiresPermission(ACCESS_COARSE_LOCATION)
* public abstract Location getLastKnownLocation(String provider);
* </code></pre>
* Example of requiring at least one permission from a set:
* <pre><code>
* @RequiresPermission(anyOf = {ACCESS_COARSE_LOCATION, ACCESS_FINE_LOCATION})
* public abstract Location getLastKnownLocation(String provider);
* </code></pre>
* Example of requiring multiple permissions:
* <pre><code>
* @RequiresPermission(allOf = {ACCESS_COARSE_LOCATION, ACCESS_FINE_LOCATION})
* public abstract Location getLastKnownLocation(String provider);
* </code></pre>
* Example of requiring separate read and write permissions for a content provider:
* <pre><code>
* @RequiresPermission.Read(@RequiresPermission(READ_HISTORY_BOOKMARKS))
* @RequiresPermission.Write(@RequiresPermission(WRITE_HISTORY_BOOKMARKS))
* public static final Uri BOOKMARKS_URI = Uri.parse("content://browser/bookmarks");
* </code></pre>
* <p>
* When specified on a parameter, the annotation indicates that the method requires
* a permission which depends on the value of the parameter. For example, consider
* {@code android.app.Activity.startActivity(android.content.Intent)}:
* <pre>{@code
* public void startActivity(@RequiresPermission Intent intent) { ... }
* }</pre>
* Notice how there are no actual permission names listed in the annotation. The actual
* permissions required will depend on the particular intent passed in. For example,
* the code may look like this:
* <pre>{@code
* Intent intent = new Intent(Intent.ACTION_CALL);
* startActivity(intent);
* }</pre>
* and the actual permission requirement for this particular intent is described on
* the Intent name itself:
* <pre><code>
* @RequiresPermission(Manifest.permission.CALL_PHONE)
* public static final String ACTION_CALL = "android.intent.action.CALL";
* </code></pre>
*/
@Retention(CLASS)
@Target({ANNOTATION_TYPE,METHOD,CONSTRUCTOR,FIELD,PARAMETER})
public @interface RequiresPermission {
/**
* The name of the permission that is required, if precisely one permission
* is required. If more than one permission is required, specify either
* {@link #allOf()} or {@link #anyOf()} instead.
* <p>
* If specified, {@link #anyOf()} and {@link #allOf()} must both be null.
*/
String value() default "";
/**
* Specifies a list of permission names that are all required.
* <p>
* If specified, {@link #anyOf()} and {@link #value()} must both be null.
*/
String[] allOf() default {};
/**
* Specifies a list of permission names where at least one is required
* <p>
* If specified, {@link #allOf()} and {@link #value()} must both be null.
*/
String[] anyOf() default {};
/**
* If true, the permission may not be required in all cases (e.g. it may only be
* enforced on certain platforms, or for certain call parameters, etc.
*/
boolean conditional() default false;
/**
* Specifies that the given permission is required for read operations.
* <p>
* When specified on a parameter, the annotation indicates that the method requires
* a permission which depends on the value of the parameter (and typically
* the corresponding field passed in will be one of a set of constants which have
* been annotated with a {@code @RequiresPermission} annotation.)
*/
@Target({FIELD, METHOD, PARAMETER})
@interface Read {
RequiresPermission value() default @RequiresPermission;
}
/**
* Specifies that the given permission is required for write operations.
* <p>
* When specified on a parameter, the annotation indicates that the method requires
* a permission which depends on the value of the parameter (and typically
* the corresponding field passed in will be one of a set of constants which have
* been annotated with a {@code @RequiresPermission} annotation.)
*/
@Target({FIELD, METHOD, PARAMETER})
@interface Write {
RequiresPermission value() default @RequiresPermission;
}
}
| [
"[email protected]"
] | |
9924d65ceb19ebddac7a056651fbd8e88ade0a8d | 15669265efe935afbd95775af929a0d6135ee667 | /Practica5-6/src/java/Controller/Error.java | de948a3c6700fb172bfcbe27dddd8ea8e92f4403 | [] | no_license | Fernando-Alberto-1877429/LDOO_EJ_19 | 02e4c88e63144972fdf4718779d9e56f7e1acdb2 | cf52142762e73c6b38be052635d3aaac06ed141d | refs/heads/master | 2020-04-22T01:58:02.920616 | 2019-04-14T04:32:25 | 2019-04-14T04:32:25 | 170,031,508 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,180 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Controller;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
*
* @author Fernando
*/
public class Error 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>Error</title>");
out.println("</head>");
out.println("<body>");
out.println("<h1 style = font-family:Arial>Usuario no existe</h1>");
out.println("<div style = font-family:Arial><a href = 'register.jsp'>Registrarse</a></div><br>");
out.println("<div style = font-family:Arial><a href = 'login.jsp'>Intentar de nuevo</a></div>");
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 {
processRequest(request, response);
}
/**
* Handles the HTTP <code>POST</code> method.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
}
/**
* Returns a short description of the servlet.
*
* @return a String containing servlet description
*/
@Override
public String getServletInfo() {
return "Short description";
}// </editor-fold>
}
| [
"[email protected]"
] | |
1ef477368f11185162677c01c12c9aad45ff2f05 | dc9731e99ed7e27e07bc0145593d2ed11f5c56cc | /src/main/java/com/alan/hysupermarket/controller/ProductImageController.java | 1efcdf6f133dff814223d41b69e878b1d6b02981 | [] | no_license | Wang-Kaixiang/HYSupermarket | fd879dfbc7ee0c4ed51dc3db1cf3d2681ce1d8f0 | a935cfb6852ecdb99b59c983bbe8d3263d6eec3b | refs/heads/master | 2020-03-12T02:03:36.421355 | 2018-03-03T04:09:31 | 2018-03-03T04:09:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,460 | java | package com.alan.hysupermarket.controller;
import com.alan.hysupermarket.pojo.Product;
import com.alan.hysupermarket.pojo.ProductImage;
import com.alan.hysupermarket.service.IProductImageService;
import com.alan.hysupermarket.service.IProductService;
import com.alan.hysupermarket.utils.ImageUtil;
import com.alan.hysupermarket.utils.UploadedImageFile;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import javax.imageio.ImageIO;
import javax.servlet.http.HttpSession;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.List;
@Controller
@RequestMapping("")
public class ProductImageController {
@Autowired
private IProductService productService;
@Autowired
private IProductImageService productImageService;
@RequestMapping("admin_productImage_add")
public String add(ProductImage pi, HttpSession session, UploadedImageFile uploadedImageFile) {
productImageService.add(pi);
// 获取照片的名字
String fileName = pi.getID() + ".jpg";
String imageFolder;
String imageFolder_small = null;
String imageFolder_middle = null;
// 判断类型
if (IProductImageService.type_single.equals(pi.getTYPE())) {
imageFolder = session.getServletContext().getRealPath("img/productSingle");
imageFolder_small = session.getServletContext().getRealPath("img/productSingle_small");
imageFolder_middle = session.getServletContext().getRealPath("img/productSingle_middle");
} else {
imageFolder = session.getServletContext().getRealPath("img/productDetail");
}
File f = new File(imageFolder, fileName);
f.getParentFile().mkdirs();
try {
// 上传照片
uploadedImageFile.getImage().transferTo(f);
BufferedImage img = ImageUtil.change2jpg(f);
ImageIO.write(img, "jpg", f);
if (IProductImageService.type_single.equals(pi.getTYPE())) {
File f_small = new File(imageFolder_small, fileName);
File f_middle = new File(imageFolder_middle, fileName);
// 设置照片的大小
ImageUtil.resizeImage(f, 56, 56, f_small);
ImageUtil.resizeImage(f, 217, 190, f_middle);
}
} catch (Exception e) {
e.printStackTrace();
}
return "redirect:admin_productImage_list?pid=" + pi.getPID();
}
@RequestMapping("admin_productImage_delete")
public String delete(int id, HttpSession session) {
ProductImage pi = productImageService.get(id);
String fileName = pi.getID() + ".jpg";
String imageFolder;
String imageFolder_small = null;
String imageFolder_middle = null;
if (IProductImageService.type_single.equals(pi.getTYPE())) {
imageFolder = session.getServletContext().getRealPath("img/productSingle");
imageFolder_small = session.getServletContext().getRealPath("img/productSingle_small");
imageFolder_middle = session.getServletContext().getRealPath("img/productSingle_middle");
File imageFile = new File(imageFolder, fileName);
File f_small = new File(imageFolder_small, fileName);
File f_middle = new File(imageFolder_middle, fileName);
imageFile.delete();
f_small.delete();
f_middle.delete();
} else {
imageFolder = session.getServletContext().getRealPath("img/productDetail");
File imageFile = new File(imageFolder, fileName);
imageFile.delete();
}
productImageService.delete(id);
return "redirect:admin_productImage_list?pid=" + pi.getPID();
}
@RequestMapping("admin_productImage_list")
public String list(int pid, Model model) {
Product p = productService.get(pid);
List<ProductImage> pisSingle = productImageService.list(pid, IProductImageService.type_single);
List<ProductImage> pisDetail = productImageService.list(pid, IProductImageService.type_detail);
model.addAttribute("p", p);
model.addAttribute("pisSingle", pisSingle);
model.addAttribute("pisDetail", pisDetail);
return "admin/listProductImage";
}
}
| [
"[email protected]"
] | |
69639b43afe1baaeb05172664cdc771d26d67a1f | 76852b1b29410436817bafa34c6dedaedd0786cd | /sources-2020-07-19-tempmail/sources/androidx/lifecycle/CompositeGeneratedAdaptersObserver.java | 99f83ff83f83abf545de18433d57d3fa94fbfa9a | [] | no_license | zteeed/tempmail-apks | 040e64e07beadd8f5e48cd7bea8b47233e99611c | 19f8da1993c2f783b8847234afb52d94b9d1aa4c | refs/heads/master | 2023-01-09T06:43:40.830942 | 2020-11-04T18:55:05 | 2020-11-04T18:55:05 | 310,075,224 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 561 | java | package androidx.lifecycle;
import androidx.lifecycle.e;
public class CompositeGeneratedAdaptersObserver implements d {
/* renamed from: a reason: collision with root package name */
private final c[] f1584a;
CompositeGeneratedAdaptersObserver(c[] cVarArr) {
this.f1584a = cVarArr;
}
public void c(g gVar, e.a aVar) {
k kVar = new k();
for (c a2 : this.f1584a) {
a2.a(gVar, aVar, false, kVar);
}
for (c a3 : this.f1584a) {
a3.a(gVar, aVar, true, kVar);
}
}
}
| [
"[email protected]"
] | |
1bbc22342ffbde50892be074bf4b74d1a31bedd4 | 19c445c78c95e340dac3c838150c40e1580b4e92 | /src/test/java/com/fasterxml/jackson/databind/jsontype/deftyping/TestDefaultForTreeNodes.java | b196740edfa97406eaac565ea42aec3bdfcb6415 | [
"Apache-2.0"
] | permissive | FasterXML/jackson-databind | c718cf79367c61e8e56c35defe3d8a75d8969c1c | 39c4f1f5b5d1c03e183a141641021019b87e61a0 | refs/heads/2.16 | 2023-08-29T00:20:02.632707 | 2023-08-26T01:58:29 | 2023-08-26T01:58:29 | 3,038,937 | 3,270 | 1,604 | Apache-2.0 | 2023-09-12T16:54:41 | 2011-12-23T07:17:41 | Java | UTF-8 | Java | false | false | 1,365 | java | package com.fasterxml.jackson.databind.jsontype.deftyping;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.databind.*;
import com.fasterxml.jackson.databind.testutil.NoCheckSubTypeValidator;
public class TestDefaultForTreeNodes extends BaseMapTest
{
public static class Foo {
public String bar;
public Foo() { }
public Foo(String b) { bar = b; }
}
/*
/**********************************************************
/* Unit tests
/**********************************************************
*/
private final ObjectMapper DEFAULT_MAPPER = jsonMapperBuilder()
.activateDefaultTyping(NoCheckSubTypeValidator.instance,
ObjectMapper.DefaultTyping.NON_FINAL, JsonTypeInfo.As.PROPERTY)
.build();
public void testValueAsStringWithDefaultTyping() throws Exception
{
Foo foo = new Foo("baz");
String json = DEFAULT_MAPPER.writeValueAsString(foo);
JsonNode jsonNode = DEFAULT_MAPPER.readTree(json);
assertEquals(jsonNode.get("bar").textValue(), foo.bar);
}
public void testValueToTreeWithDefaultTyping() throws Exception
{
Foo foo = new Foo("baz");
JsonNode jsonNode = DEFAULT_MAPPER.valueToTree(foo);
assertEquals(jsonNode.get("bar").textValue(), foo.bar);
}
}
| [
"[email protected]"
] | |
d437dc69a01d584edf044cbc9f4c036e04eee5c9 | 66f5b9d0a6ef4c21ebdb2f0bcd82f21594129a60 | /Pokecube Core/src/main/java/pokecube/core/database/abilities/t/ToughClaws.java | f673fa946c322fa40c1b7345d493bf439ffe080a | [] | no_license | MartijnTielemans/Pokecube | 4fee4dd4512fd821c52a91a4ec314b11a8dd1acd | 3618d37ca56d9c3df2e3022782fba42bb8e6f751 | refs/heads/master | 2021-05-31T03:22:47.590067 | 2016-02-28T13:41:14 | 2016-02-28T13:41:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 654 | java | package pokecube.core.database.abilities.t;
import net.minecraft.entity.EntityLivingBase;
import pokecube.core.database.abilities.Ability;
import pokecube.core.interfaces.IPokemob;
import pokecube.core.interfaces.IPokemob.MovePacket;
public class ToughClaws extends Ability
{
@Override
public void onUpdate(IPokemob mob)
{
// TODO Auto-generated method stub
}
@Override
public void onMoveUse(IPokemob mob, MovePacket move)
{
// TODO Auto-generated method stub
}
@Override
public void onAgress(IPokemob mob, EntityLivingBase target)
{
// TODO Auto-generated method stub
}
}
| [
"[email protected]"
] | |
b8d5e0e680cdbbb98267abc4ee6661f0201b219f | fa78106a6d19ecf2e237f703b1693b00aaf14e8f | /src/main/java/org/more/util/ContextClassLoaderLocal.java | 2698f24151aa05e9954f102b33573cb66206335c | [
"Apache-2.0"
] | permissive | peng1916/hasor | 4ed57e9b55c49a8212511c7334f4b8ea97b5073b | d5c1ac28db804bb1cb1935ba888116d1266c2894 | refs/heads/master | 2020-12-20T06:41:25.252056 | 2016-09-11T15:19:00 | 2016-09-11T15:19:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,510 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.more.util;
import java.util.Map;
import java.util.WeakHashMap;
/**
* An instance of this class represents a value that is provided per (thread)
* context classloader.
*
* <p>Occasionally it is necessary to store data in "global" variables
* (including uses of the Singleton pattern). In applications which have only
* a single classloader such data can simply be stored as "static" members on
* some class. When multiple classloaders are involved, however, this approach
* can fail; in particular, this doesn't work when the code may be run within a
* servlet container or a j2ee container, and the class on which the static
* member is defined is loaded via a "shared" classloader that is visible to all
* components running within the container. This class provides a mechanism for
* associating data with a ClassLoader instance, which ensures that when the
* code runs in such a container each component gets its own copy of the
* "global" variable rather than unexpectedly sharing a single copy of the
* variable with other components that happen to be running in the same
* container at the same time (eg servlets or EJBs.)</p>
*
* <p>This class is strongly patterned after the java.lang.ThreadLocal
* class, which performs a similar task in allowing data to be associated
* with a particular thread.</p>
*
* <p>When code that uses this class is run as a "normal" application, ie
* not within a container, the effect is identical to just using a static
* member variable to store the data, because Thread.getContextClassLoader
* always returns the same classloader (the system classloader).</p>
*
* <p>Expected usage is as follows:<br>
* <pre>
* public class SomeClass {
* private static final ContextClassLoaderLocal global
* = new ContextClassLoaderLocal() {
* protected Object initialValue() {
* return new String("Initial value");
* };
*
* public void testGlobal() {
* String s = (String) global.get();
* System.out.println("global value:" + s);
* buf.set("New Value");
* }
* </pre>
* </p>
*
* <p><strong>Note:</strong> This class takes some care to ensure that when
* a component which uses this class is "undeployed" by a container the
* component-specific classloader and all its associated classes (and their
* static variables) are garbage-collected. Unfortunately there is one
* scenario in which this does <i>not</i> work correctly and there
* is unfortunately no known workaround other than ensuring that the
* component (or its container) calls the "unset" method on this class for
* each instance of this class when the component is undeployed. The problem
* occurs if:
* <ul>
* <li>the class containing a static instance of this class was loaded via
* a shared classloader, and</li>
* <li>the value stored in the instance is an object whose class was loaded
* via the component-specific classloader (or any of the objects it refers
* to were loaded via that classloader).</li>
* </ul>
* The result is that the map managed by this object still contains a strong
* reference to the stored object, which contains a strong reference to the
* classloader that loaded it, meaning that although the container has
* "undeployed" the component the component-specific classloader and all the
* related classes and static variables cannot be garbage-collected. This is
* not expected to be an issue with the commons-beanutils library as the only
* classes which use this class are BeanUtilsBean and ConvertUtilsBean and
* there is no obvious reason for a user of the beanutils library to subclass
* either of those classes.</p>
*
* <p><strong>Note:</strong> A WeakHashMap bug in several 1.3 JVMs results in
* a memory leak for those JVMs.</p>
*
* <p><strong>Note:</strong> Of course all of this would be unnecessary if
* containers required each component to load the full set of classes it
* needs, ie avoided providing classes loaded via a "shared" classloader.</p>
*
* @see java.lang.Thread#getContextClassLoader
* @author Eric Pabst
*/
public class ContextClassLoaderLocal<T> {
private Map<ClassLoader, T> valueByClassLoader = new WeakHashMap<ClassLoader, T>();
private boolean globalValueInitialized = false;
private T globalValue;
/** Construct a context classloader instance */
public ContextClassLoaderLocal() {
super();
}
/** Construct a context classloader instance */
public ContextClassLoaderLocal(T globalValue) {
super();
if (globalValue != null) {
this.set(globalValue);
}
}
/**
* Returns the initial value for this ContextClassLoaderLocal
* variable. This method will be called once per Context ClassLoader for
* each ContextClassLoaderLocal, the first time it is accessed
* with get or set. If the programmer desires ContextClassLoaderLocal variables
* to be initialized to some value other than null, ContextClassLoaderLocal must
* be subclassed, and this method overridden. Typically, an anonymous
* inner class will be used. Typical implementations of initialValue
* will call an appropriate constructor and return the newly constructed
* object.
*
* @return a new Object to be used as an initial value for this ContextClassLoaderLocal
*/
protected T initialValue() {
return null;
}
/**
* Gets the instance which provides the functionality for {@link BeanUtils}.
* This is a pseudo-singleton - an single instance is provided per (thread) context classloader.
* This mechanism provides isolation for web apps deployed in the same container.
* @return the object currently associated with the context-classloader of the current thread.
*/
public synchronized T get() {
// synchronizing the whole method is a bit slower
// but guarantees no subtle threading problems, and there's no
// need to synchronize valueByClassLoader
// make sure that the map is given a change to purge itself
this.valueByClassLoader.isEmpty();
try {
ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
if (contextClassLoader != null) {
T value = this.valueByClassLoader.get(contextClassLoader);
if (value == null && !this.valueByClassLoader.containsKey(contextClassLoader)) {
value = this.initialValue();
this.valueByClassLoader.put(contextClassLoader, value);
}
return value;
}
} catch (SecurityException e) { /* SWALLOW - should we log this? */}
// if none or exception, return the globalValue
if (!this.globalValueInitialized) {
this.globalValue = this.initialValue();
this.globalValueInitialized = true;
} //else already set
return this.globalValue;
}
/**
* Sets the value - a value is provided per (thread) context classloader.
* This mechanism provides isolation for web apps deployed in the same container.
*
* @param value the object to be associated with the entrant thread's context classloader
*/
public synchronized void set(final T value) {
// synchronizing the whole method is a bit slower
// but guarentees no subtle threading problems
// make sure that the map is given a change to purge itself
this.valueByClassLoader.isEmpty();
try {
ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
if (contextClassLoader != null) {
this.valueByClassLoader.put(contextClassLoader, value);
return;
}
} catch (SecurityException e) { /* SWALLOW - should we log this? */}
// if in doubt, set the global value
this.globalValue = value;
this.globalValueInitialized = true;
}
/**
* Unsets the value associated with the current thread's context classloader
*/
public synchronized void unset() {
try {
ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
this.unset(contextClassLoader);
} catch (SecurityException e) { /* SWALLOW - should we log this? */}
}
/**
* Unsets the value associated with the given classloader
* @param classLoader The classloader to <i>unset</i> for
*/
public synchronized void unset(final ClassLoader classLoader) {
this.valueByClassLoader.remove(classLoader);
}
} | [
"[email protected]"
] | |
1d22dbfc2b54fbb6911cdf9e2e041a5e6a7aa235 | f3bbb9ee78163bfc3b84c336538d8b71003ac047 | /Main.java | fbd8dbd0a84a74abcd77c466ac397709138a40df | [] | no_license | ghlilit/trees-java | c4c6bd25631ab753eb26564702f195df6b8e4549 | 0cebc1ddaa431671bc6c7ab5e5008917003ff9ce | refs/heads/master | 2020-04-12T19:39:10.512513 | 2018-12-21T13:01:05 | 2018-12-21T13:01:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,584 | java | import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
public class Main {
public static void KMax(int[] arr, int k) {
Heap newHeap = new Heap(arr);
for(int i =0; i<k; i++) {
System.out.println(newHeap.removeMin());
}
}
public static void main(String[] args) {
int[] intArray = new int[]{1, 6, -12, 12, 25, 17, -30, 0, 10};
KMax(intArray,3);
System.out.println("End of ex1");
Entry a = new Entry(1, "A");
Entry c = new Entry(-12, "C");
Entry b = new Entry(4, "C");
Entry j = new Entry(5, "J");
Entry a2 = new Entry(14, "A");
Entry d = new Entry(-3, "D");
Entry t = new Entry(5, "T");
Entry k = new Entry(10, "K");
Entry c2 = new Entry(6, "C");
Entry p = new Entry(8, "P");
Entry q = new Entry(20, "Q");
LinkedBinaryTree trial = new LinkedBinaryTree();
trial.insert(a);
trial.insert(c);
trial.insert(j);
trial.insert(b);
trial.insert(a2);
trial.insert(d);
trial.insert(t);
trial.insert(k);
trial.insert(c2);
trial.insert(p);
trial.insert(q);
LinkedBinaryTree.iterateRow iter = trial.iterator();
System.out.println("This thing prints it row by row: Inherited from last hw");
for (int i = 0; i < 10; i++) {
System.out.println(iter.next().getK());
}
System.out.println("End of ex2");
trial.remove(-12);
trial.remove(14);
}
}
| [
"[email protected]"
] | |
d45d954ac43ba5bde51d2ac924aec903241edb52 | da01fb8f3677c66e786a8a74955abab781921bc4 | /core/src/main/java/org/openconnectors/connect/events/ConfigEvent.java | 4e7cfae738953c18302663e52367e4025b561972 | [] | no_license | openconnectors/connectors | b66387d48d789bb4b3cf8d19d1d89ceb2a1b7da8 | 1640c2e4190051e34ab752379b53d06b74582e09 | refs/heads/master | 2021-09-06T00:19:36.730224 | 2018-01-31T23:13:58 | 2018-01-31T23:13:58 | 107,101,733 | 17 | 9 | null | 2020-10-30T05:32:59 | 2017-10-16T08:46:06 | Java | UTF-8 | Java | false | false | 953 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.openconnectors.connect.events;
import org.openconnectors.config.Config;
public interface ConfigEvent {
Config getConig();
}
| [
"[email protected]"
] | |
43874f81a425696aad79da068989aaa1175e58d5 | 279bffecb84102ab7a91726607a5e4c1d18e961f | /publicdata/publicdata-component/src/main/java/com/qcloud/component/publicdata/QQuestionnaire.java | 7f6ce481e1e56c72e97396668c4466b46b291fc7 | [] | no_license | ChiRains/forest | 8b71de51c477f66a134d9b515b58039a8c94c2ee | cf0b41ff83e4cee281078afe338bba792de05052 | refs/heads/master | 2021-01-19T07:13:19.597344 | 2016-08-18T01:35:54 | 2016-08-18T01:35:54 | 65,869,894 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 219 | java | package com.qcloud.component.publicdata;
import java.util.List;
public interface QQuestionnaire {
String getName();
QQuestion getQuestion(long questionId);
List<QQuestion> listQuestion();
}
| [
"dengfei@ed19df75-bd51-b445-9863-9e54940520a8"
] | dengfei@ed19df75-bd51-b445-9863-9e54940520a8 |
12d0f9dc9692cc8a77110eab16223835eac47f50 | d683e82754ced65192589b7f764fd450b6a956df | /矩阵中的路径/src/main.java | 602035f168c86c918b353d095bed5ae8a7aa0467 | [] | no_license | piaopiao1201/LeetCode-Record | 5cd122ec6026b756964008440e098d497ff92bfc | f0e889e18588fec7a6793c8e6f9bef5301adf9d7 | refs/heads/master | 2021-07-16T05:33:13.028370 | 2019-09-24T06:28:33 | 2019-09-24T06:28:33 | 190,679,600 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,359 | java | import java.util.Arrays;
public class main {
public static void main(String[] args) {
char[] matrix={'a','b' ,'c', 'e','s','f' ,'c','s','a', 'd' ,'e' ,'e' };
//char[] matrix={'a','b','c','b','c','d'};
char[] str={'b','c','c','e','d'};
//char[] str={'d','c','b','c','d'};
boolean res=hasPath(matrix,3,4,str);
System.out.println(1);
}
public static boolean hasPath(char[] matrix, int rows, int cols, char[] str)
{
boolean[] visited=new boolean[matrix.length];
Arrays.fill(visited,false);
String target=new String(str);
int startX=0,startY=0;
for(int i=0;i<rows;i++){
for(int j=0;j<cols;j++){
if(judgeIsTrue(matrix,j,i,rows,cols,visited,target,"")){
return true;
}else{
Arrays.fill(visited,false);
continue;
}
}
}
return false;
//return judgeIsTrue(matrix,startX,startY,rows,cols,visited,target,"");
}
public static boolean judgeIsTrue(char[] matrix,int posX,int posY,int rows,int cols,boolean[] visited,String target,String tempRes){
//写边界条件
if(posX<0||posY<0||posX>=cols||posY>=rows||visited[posY*cols+posX]){
return false;
}
if(tempRes.length()>=target.length()){
return false;
}
tempRes+=matrix[posY*cols+posX];
visited[posY*cols+posX]=true;
if(target.startsWith(tempRes)){
if(tempRes.equals(target)){
return true;
}
}else{
tempRes=tempRes.substring(0,tempRes.length()-1);
visited[posY*cols+posX]=false;
return false;
}
if(judgeIsTrue(matrix,posX+1,posY,rows,cols,visited,target,tempRes)){
return true;
}
if(judgeIsTrue(matrix,posX,posY+1,rows,cols,visited,target,tempRes)){
return true;
}
if(judgeIsTrue(matrix,posX,posY-1,rows,cols,visited,target,tempRes)){
return true;
}
if(judgeIsTrue(matrix,posX-1,posY,rows,cols,visited,target,tempRes)){
return true;
}
tempRes=tempRes.substring(0,tempRes.length()-1);
visited[posY*cols+posX]=false;
return false;
}
}
| [
"[email protected]"
] | |
91edae007e3dbe2926113e3b18d6dc77853def53 | dd1beb9118fed6ccdafa6be68d1a1a0f502e7680 | /src/main/java/com/vantibolli/inventory/service/ItemVariantsService.java | 9ecc9506dbedd87e22c58a86134abd5cb2cd1d61 | [
"Apache-2.0"
] | permissive | mukhtiarahmed/pwi | ee386c350f93c09b0c49717db2b091e14001073d | b2e81391aacb3003b0788132a0c33e38f31d86f6 | refs/heads/master | 2023-07-22T07:08:31.706211 | 2022-11-24T17:22:13 | 2022-11-24T17:22:13 | 102,382,991 | 0 | 0 | Apache-2.0 | 2023-07-07T21:55:55 | 2017-09-04T16:52:39 | Java | UTF-8 | Java | false | false | 327 | java | /*
* Copyright (C) 2017 Van Tibolli, All Rights Reserved.
*/
package com.vantibolli.inventory.service;
import com.vantibolli.inventory.model.ItemVariants;
/**
* The ItemVariants Service.
* @author mukhtiar.ahmed
* version 1.0
*/
public interface ItemVariantsService extends GenericListableService<ItemVariants> {
}
| [
"[email protected]"
] | |
7740e1a0b0b8b369ac8ad598ebadab73594614ae | 2285a98aea67c874e38b1208b3abf3947bbf906f | /zhaoxiaokeExam2/src/test/java/com/zhaoxiaokeExam2/test/AsserTest.java | fb2e1fd85e81512d64b2c8eac3164db524c5254b | [] | no_license | zxk431/studyGit | bd95d00eaf08b7708250999f9e729f2b7ce2c2dc | 79f18dddcc18e0c8ea1de34a95f12d379c9fac01 | refs/heads/master | 2022-06-25T08:49:42.344779 | 2019-08-12T02:03:40 | 2019-08-12T02:03:40 | 196,300,688 | 0 | 0 | null | 2022-06-17T02:24:42 | 2019-07-11T01:49:06 | Java | GB18030 | Java | false | false | 2,996 | java | package com.zhaoxiaokeExam2.test;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.junit.Test;
import zhaoxiaokeExam2.AsserUtil;
import zhaoxiaokeExam2.RunExcaption;
public class AsserTest {
//方法1:断言为真,如果为假,则抛出自定义异常,异常消息为第2个参数默认消息。 (5分)
@Test
public void test01(){
try {
AsserUtil.isTrue(true, "这个断言为false");
} catch (RunExcaption e) {
e.printStackTrace();
}
}
//方法2:断言为假,如果为真,则抛出自定义异常,异常消息为第2个参数默认消息。 (5分)
@Test
public void test02(){
try {
AsserUtil.isFalse(false, "这个断言为true");
} catch (RunExcaption e) {
e.printStackTrace();
}
}
//方法3:断言对象不为空,如果为空,则抛出自定义异常,异常消息为第2个参数默认消息。 (5分)
@Test
public void test03(){
String obj = "";
try {
AsserUtil.notNull(obj, "对象为空");
} catch (RunExcaption e) {
e.printStackTrace();
}
}
//方法4:断言对象必须空,如果不为空,则抛出自定义异常,异常消息为第2个参数默认消息。 (5分)
@Test
public void test04(){
String obj = "";
try {
AsserUtil.isNull(obj, "对象不为空");
} catch (RunExcaption e) {
e.printStackTrace();
}
}
//方法5:断言集合不为空,对象不能空,以及必须包含1个元素。如果为空,则抛出自定义异常,异常消息为第2个参数默认消息。 (5分)
@Test
public void test05(){
try {
List<Object> coll = new ArrayList<Object>();
AsserUtil.notEmpty(coll, "结合为空");
} catch (RunExcaption e) {
e.printStackTrace();
}
}
//方法6:断言Map集合不为空,对象不能空,以及必须包含1个元素。如果为空,则抛出自定义异常,异常消息为第2个参数默认消息。 (5分)
@Test
public void test06(){
try {
Map<Object, Object> map = new HashMap<Object, Object>();
AsserUtil.notEmpty(map, "map为空");
} catch (RunExcaption e) {
e.printStackTrace();
}
}
//方法7:断言字符串必须有值,去掉空格,然后判断字符串长度是否大于0,如果没值,则抛出自定义异常,异常消息为第2个参数默认消息。 (5分)
@Test
public void test07(){
try {
String condition = " ";
AsserUtil.hasText(condition, "字符串没有值");
} catch (RunExcaption e) {
e.printStackTrace();
}
}
//方法8:断言值必须大于0,如果小于或等于0,则抛出自定义异常,异常消息为第2个参数默认消息。 (5分)
@Test
public void test08(){
try {
BigDecimal value = new BigDecimal("-1");
AsserUtil.greaterThanZero(value, "值小于0");
} catch (RunExcaption e) {
e.printStackTrace();
}
}
}
| [
"[email protected]"
] | |
200e25a9fdbb659d96b0c2f16d1ef0b40ba7a5d8 | 24e23478747617da8fb484a804b51f7c2be9ae24 | /cs478proj2/app/build/generated/not_namespaced_r_class_sources/debug/r/androidx/legacy/coreui/R.java | 012e1c597bc4d30658bc57ac153b55200ed19bca | [] | no_license | saitejagroove/AndroidExampleProjects_UIC | f2b4d0a2005316739c81a7432c8850949c602672 | 10a556004dbccc9818dd989fc8dfeb6e49dd31b3 | refs/heads/main | 2023-01-06T19:53:47.842211 | 2020-11-02T22:52:47 | 2020-11-02T22:52:47 | 309,477,886 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,395 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* gradle plugin from the resource data it found. It
* should not be modified by hand.
*/
package androidx.legacy.coreui;
public final class R {
private R() {}
public static final class attr {
private attr() {}
public static final int alpha = 0x7f030027;
public static final int coordinatorLayoutStyle = 0x7f03009e;
public static final int font = 0x7f0300d0;
public static final int fontProviderAuthority = 0x7f0300d2;
public static final int fontProviderCerts = 0x7f0300d3;
public static final int fontProviderFetchStrategy = 0x7f0300d4;
public static final int fontProviderFetchTimeout = 0x7f0300d5;
public static final int fontProviderPackage = 0x7f0300d6;
public static final int fontProviderQuery = 0x7f0300d7;
public static final int fontStyle = 0x7f0300d8;
public static final int fontVariationSettings = 0x7f0300d9;
public static final int fontWeight = 0x7f0300da;
public static final int keylines = 0x7f030106;
public static final int layout_anchor = 0x7f03010b;
public static final int layout_anchorGravity = 0x7f03010c;
public static final int layout_behavior = 0x7f03010d;
public static final int layout_dodgeInsetEdges = 0x7f030110;
public static final int layout_insetEdge = 0x7f030111;
public static final int layout_keyline = 0x7f030112;
public static final int statusBarBackground = 0x7f03016d;
public static final int ttcIndex = 0x7f0301cf;
}
public static final class color {
private color() {}
public static final int notification_action_color_filter = 0x7f05006a;
public static final int notification_icon_bg_color = 0x7f05006b;
public static final int ripple_material_light = 0x7f050075;
public static final int secondary_text_default_material_light = 0x7f050077;
}
public static final class dimen {
private dimen() {}
public static final int compat_button_inset_horizontal_material = 0x7f06004f;
public static final int compat_button_inset_vertical_material = 0x7f060050;
public static final int compat_button_padding_horizontal_material = 0x7f060051;
public static final int compat_button_padding_vertical_material = 0x7f060052;
public static final int compat_control_corner_material = 0x7f060053;
public static final int compat_notification_large_icon_max_height = 0x7f060054;
public static final int compat_notification_large_icon_max_width = 0x7f060055;
public static final int notification_action_icon_size = 0x7f0600c2;
public static final int notification_action_text_size = 0x7f0600c3;
public static final int notification_big_circle_margin = 0x7f0600c4;
public static final int notification_content_margin_start = 0x7f0600c5;
public static final int notification_large_icon_height = 0x7f0600c6;
public static final int notification_large_icon_width = 0x7f0600c7;
public static final int notification_main_column_padding_top = 0x7f0600c8;
public static final int notification_media_narrow_margin = 0x7f0600c9;
public static final int notification_right_icon_size = 0x7f0600ca;
public static final int notification_right_side_padding_top = 0x7f0600cb;
public static final int notification_small_icon_background_padding = 0x7f0600cc;
public static final int notification_small_icon_size_as_large = 0x7f0600cd;
public static final int notification_subtext_size = 0x7f0600ce;
public static final int notification_top_pad = 0x7f0600cf;
public static final int notification_top_pad_large_text = 0x7f0600d0;
}
public static final class drawable {
private drawable() {}
public static final int notification_action_background = 0x7f07006b;
public static final int notification_bg = 0x7f07006c;
public static final int notification_bg_low = 0x7f07006d;
public static final int notification_bg_low_normal = 0x7f07006e;
public static final int notification_bg_low_pressed = 0x7f07006f;
public static final int notification_bg_normal = 0x7f070070;
public static final int notification_bg_normal_pressed = 0x7f070071;
public static final int notification_icon_background = 0x7f070072;
public static final int notification_template_icon_bg = 0x7f070073;
public static final int notification_template_icon_low_bg = 0x7f070074;
public static final int notification_tile_bg = 0x7f070075;
public static final int notify_panel_notification_icon_bg = 0x7f070076;
}
public static final class id {
private id() {}
public static final int action_container = 0x7f08000d;
public static final int action_divider = 0x7f08000f;
public static final int action_image = 0x7f080010;
public static final int action_text = 0x7f080017;
public static final int actions = 0x7f080018;
public static final int async = 0x7f08001f;
public static final int blocking = 0x7f080022;
public static final int bottom = 0x7f080023;
public static final int chronometer = 0x7f080029;
public static final int end = 0x7f08003c;
public static final int forever = 0x7f080048;
public static final int icon = 0x7f08004d;
public static final int icon_group = 0x7f08004e;
public static final int info = 0x7f080051;
public static final int italic = 0x7f080052;
public static final int left = 0x7f080056;
public static final int line1 = 0x7f080057;
public static final int line3 = 0x7f080058;
public static final int none = 0x7f080064;
public static final int normal = 0x7f080065;
public static final int notification_background = 0x7f080066;
public static final int notification_main_column = 0x7f080067;
public static final int notification_main_column_container = 0x7f080068;
public static final int right = 0x7f080071;
public static final int right_icon = 0x7f080072;
public static final int right_side = 0x7f080073;
public static final int start = 0x7f080097;
public static final int tag_transition_group = 0x7f08009c;
public static final int tag_unhandled_key_event_manager = 0x7f08009d;
public static final int tag_unhandled_key_listeners = 0x7f08009e;
public static final int text = 0x7f08009f;
public static final int text2 = 0x7f0800a0;
public static final int time = 0x7f0800a8;
public static final int title = 0x7f0800a9;
public static final int top = 0x7f0800ae;
}
public static final class integer {
private integer() {}
public static final int status_bar_notification_info_maxnum = 0x7f09000e;
}
public static final class layout {
private layout() {}
public static final int notification_action = 0x7f0b002e;
public static final int notification_action_tombstone = 0x7f0b002f;
public static final int notification_template_custom_big = 0x7f0b0030;
public static final int notification_template_icon_group = 0x7f0b0031;
public static final int notification_template_part_chronometer = 0x7f0b0032;
public static final int notification_template_part_time = 0x7f0b0033;
}
public static final class string {
private string() {}
public static final int status_bar_notification_info_overflow = 0x7f0e0038;
}
public static final class style {
private style() {}
public static final int TextAppearance_Compat_Notification = 0x7f0f0118;
public static final int TextAppearance_Compat_Notification_Info = 0x7f0f0119;
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0f011a;
public static final int TextAppearance_Compat_Notification_Time = 0x7f0f011b;
public static final int TextAppearance_Compat_Notification_Title = 0x7f0f011c;
public static final int Widget_Compat_NotificationActionContainer = 0x7f0f01c2;
public static final int Widget_Compat_NotificationActionText = 0x7f0f01c3;
public static final int Widget_Support_CoordinatorLayout = 0x7f0f01f2;
}
public static final class styleable {
private styleable() {}
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 };
public static final int ColorStateListItem_android_color = 0;
public static final int ColorStateListItem_android_alpha = 1;
public static final int ColorStateListItem_alpha = 2;
public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d };
public static final int CoordinatorLayout_keylines = 0;
public static final int CoordinatorLayout_statusBarBackground = 1;
public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 };
public static final int CoordinatorLayout_Layout_android_layout_gravity = 0;
public static final int CoordinatorLayout_Layout_layout_anchor = 1;
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2;
public static final int CoordinatorLayout_Layout_layout_behavior = 3;
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4;
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
public static final int CoordinatorLayout_Layout_layout_keyline = 6;
public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 };
public static final int FontFamily_fontProviderAuthority = 0;
public static final int FontFamily_fontProviderCerts = 1;
public static final int FontFamily_fontProviderFetchStrategy = 2;
public static final int FontFamily_fontProviderFetchTimeout = 3;
public static final int FontFamily_fontProviderPackage = 4;
public static final int FontFamily_fontProviderQuery = 5;
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf };
public static final int FontFamilyFont_android_font = 0;
public static final int FontFamilyFont_android_fontWeight = 1;
public static final int FontFamilyFont_android_fontStyle = 2;
public static final int FontFamilyFont_android_ttcIndex = 3;
public static final int FontFamilyFont_android_fontVariationSettings = 4;
public static final int FontFamilyFont_font = 5;
public static final int FontFamilyFont_fontStyle = 6;
public static final int FontFamilyFont_fontVariationSettings = 7;
public static final int FontFamilyFont_fontWeight = 8;
public static final int FontFamilyFont_ttcIndex = 9;
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
public static final int GradientColor_android_startColor = 0;
public static final int GradientColor_android_endColor = 1;
public static final int GradientColor_android_type = 2;
public static final int GradientColor_android_centerX = 3;
public static final int GradientColor_android_centerY = 4;
public static final int GradientColor_android_gradientRadius = 5;
public static final int GradientColor_android_tileMode = 6;
public static final int GradientColor_android_centerColor = 7;
public static final int GradientColor_android_startX = 8;
public static final int GradientColor_android_startY = 9;
public static final int GradientColor_android_endX = 10;
public static final int GradientColor_android_endY = 11;
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
public static final int GradientColorItem_android_color = 0;
public static final int GradientColorItem_android_offset = 1;
}
}
| [
"[email protected]"
] | |
ba650303a8115b58266f1054fc980a45212e8855 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/20/20_315f05089f51036d9c6b36710b2456df0d8b311d/XMLElementImpl/20_315f05089f51036d9c6b36710b2456df0d8b311d_XMLElementImpl_t.java | 886b7c7ccc96b2f087e80f4c79080a20dc16c479 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 1,081 | java | package br.uff.midiacom.xml;
import br.uff.midiacom.xml.datatype.string.StringType;
/**
* This class implements methods of the NCLElement interface.
*/
public class XMLElementImpl<T extends XMLIdentifiableElement, P extends XMLElement> {
protected StringType id;
protected P parent;
public void setId(String id) throws XMLException {
if(!validate(id))
throw new XMLException("Invalid identifier: " + id);
this.id = new StringType(id);
}
public String getId() {
if(id != null)
return id.getValue();
else
return null;
}
public boolean setParent(P parent) {
if(this.parent != null && parent != null)
return false;
this.parent = parent;
return true;
}
public P getParent() {
return parent;
}
public boolean compare(T other) {
return id.getValue().equals(other.getId());
}
protected boolean validate(String id) {
return true;
}
}
| [
"[email protected]"
] | |
a826d3713d98c1fab84810f85dfd6fcb692f42da | d68b3d90f210af7be905632beb736af0c9cfed77 | /Old/TheDarkKnight/src/org/usfirst/frc/team195/robot/Utilities/TrajectoryFollowingMotion/MotionProfileGoal.java | 270e0e5e9481974fca7bf38a3f3e4b093387333e | [] | no_license | frcteam195/FRC2018 | 73560af26f09bd46aecad542ee2dfe3a9542fbb9 | 7588d334b6864c52b1833007abe337af5f5b5382 | refs/heads/master | 2020-03-14T18:00:51.956799 | 2019-01-06T03:37:16 | 2019-01-06T03:37:16 | 131,733,213 | 8 | 2 | null | null | null | null | UTF-8 | Java | false | false | 5,413 | java | package org.usfirst.frc.team195.robot.Utilities.TrajectoryFollowingMotion;
import static org.usfirst.frc.team195.robot.Utilities.TrajectoryFollowingMotion.Util.epsilonEquals;
/**
* A MotionProfileGoal defines a desired position and maximum velocity (at this position), along with the behavior that
* should be used to determine if we are at the goal and what to do if it is infeasible to reach the goal within the
* desired velocity bounds.
*
*/
public class MotionProfileGoal {
/**
* A goal consists of a desired position and specified maximum velocity magnitude. But what should we do if we would
* reach the goal at a velocity greater than the maximum? This enum allows a user to specify a preference on
* behavior in this case.
*
* Example use-cases of each:
*
* OVERSHOOT - Generally used with a goal max_abs_vel of 0.0 to stop at the desired pos without violating any
* constraints.
*
* VIOLATE_MAX_ACCEL - If we absolutely do not want to pass the goal and are unwilling to violate the max_abs_vel
* (for example, there is an obstacle in front of us - slam the brakes harder than we'd like in order to avoid
* hitting it).
*
* VIOLATE_MAX_ABS_VEL - If the max velocity is just a general guideline and not a hard performance limit, it's
* better to slightly exceed it to avoid skidding wheels.
*/
public static enum CompletionBehavior {
// Overshoot the goal if necessary (at a velocity greater than max_abs_vel) and come back.
// Only valid if the goal velocity is 0.0 (otherwise VIOLATE_MAX_ACCEL will be used).
OVERSHOOT,
// If we cannot slow down to the goal velocity before crossing the goal, allow exceeding the max accel
// constraint.
VIOLATE_MAX_ACCEL,
// If we cannot slow down to the goal velocity before crossing the goal, allow exceeding the goal velocity.
VIOLATE_MAX_ABS_VEL
}
protected double pos;
protected double max_abs_vel;
protected CompletionBehavior completion_behavior = CompletionBehavior.OVERSHOOT;
protected double pos_tolerance = 1E-3;
protected double vel_tolerance = 1E-2;
public MotionProfileGoal() {
}
public MotionProfileGoal(double pos) {
this.pos = pos;
this.max_abs_vel = 0.0;
sanityCheck();
}
public MotionProfileGoal(double pos, double max_abs_vel) {
this.pos = pos;
this.max_abs_vel = max_abs_vel;
sanityCheck();
}
public MotionProfileGoal(double pos, double max_abs_vel, CompletionBehavior completion_behavior) {
this.pos = pos;
this.max_abs_vel = max_abs_vel;
this.completion_behavior = completion_behavior;
sanityCheck();
}
public MotionProfileGoal(double pos, double max_abs_vel, CompletionBehavior completion_behavior,
double pos_tolerance, double vel_tolerance) {
this.pos = pos;
this.max_abs_vel = max_abs_vel;
this.completion_behavior = completion_behavior;
this.pos_tolerance = pos_tolerance;
this.vel_tolerance = vel_tolerance;
sanityCheck();
}
public MotionProfileGoal(MotionProfileGoal other) {
this(other.pos, other.max_abs_vel, other.completion_behavior, other.pos_tolerance, other.vel_tolerance);
}
/**
* @return A flipped MotionProfileGoal (where the position is negated, but all other attributes remain the same).
*/
public MotionProfileGoal flipped() {
return new MotionProfileGoal(-pos, max_abs_vel, completion_behavior, pos_tolerance, vel_tolerance);
}
public double pos() {
return pos;
}
public double max_abs_vel() {
return max_abs_vel;
}
public double pos_tolerance() {
return pos_tolerance;
}
public double vel_tolerance() {
return vel_tolerance;
}
public CompletionBehavior completion_behavior() {
return completion_behavior;
}
public boolean atGoalState(MotionState state) {
return atGoalPos(state.pos()) && (Math.abs(state.vel()) < (max_abs_vel + vel_tolerance)
|| completion_behavior == CompletionBehavior.VIOLATE_MAX_ABS_VEL);
}
public boolean atGoalPos(double pos) {
return epsilonEquals(pos, this.pos, pos_tolerance);
}
/**
* This method makes sure that the completion behavior is compatible with the max goal velocity.
*/
protected void sanityCheck() {
if (max_abs_vel > vel_tolerance && completion_behavior == CompletionBehavior.OVERSHOOT) {
completion_behavior = CompletionBehavior.VIOLATE_MAX_ACCEL;
}
}
@Override
public String toString() {
return "pos: " + pos + " (+/- " + pos_tolerance + "), max_abs_vel: " + max_abs_vel + " (+/- " + vel_tolerance
+ "), completion behavior: " + completion_behavior.name();
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof MotionProfileGoal)) {
return false;
}
final MotionProfileGoal other = (MotionProfileGoal) obj;
return (other.completion_behavior() == completion_behavior()) && (other.pos() == pos())
&& (other.max_abs_vel() == max_abs_vel()) && (other.pos_tolerance() == pos_tolerance())
&& (other.vel_tolerance() == vel_tolerance());
}
}
| [
"[email protected]"
] | |
e8f8994b0fc34ad94938cf7b5458a86579018346 | 84c840ed7d7e5ef4aeb63d3e7671a7403655fda2 | /dao/src/main/java/com/pvt/app/dao/impl/UserDaoImpl.java | 12f9ddda491cd74ebed25ab23471b123dec7c5e4 | [] | no_license | kraskoe/MyProjectJD1Modular | bb2469dcfb483cb01052c4589178e6c7ea123961 | 8dbec26d596ed87669508aaa708b8a4ee1520633 | refs/heads/master | 2021-07-09T15:53:01.874846 | 2017-10-08T16:59:25 | 2017-10-08T16:59:25 | 105,291,623 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,517 | java | package com.pvt.app.dao.impl;
import com.pvt.app.dao.UserDao;
import com.pvt.app.entities.User;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
/**
* Class UserDaoImpl
*
* Created by ykrasko on 15/08/2017.
*/
public class UserDaoImpl extends AbstractDao implements UserDao {
private static volatile UserDao INSTANCE = null;
private static final String getUserByLogin = "SELECT * FROM users WHERE LOGIN=?";
private static final String saveUserQuery = "INSERT INTO users (login, password, role) VALUES (?, ?, ?)";
private static final String getUserQuery = "SELECT * FROM users WHERE user_id=?";
private static final String updateUserQuery = "UPDATE users SET login=?, password=?, role=? WHERE user_id=?";
private static final String deleteUserQuery = "DELETE FROM users WHERE user_id=?";
private PreparedStatement psGetByLogin;
private PreparedStatement psSave;
private PreparedStatement psGet;
private PreparedStatement psUpdate;
private PreparedStatement psDelete;
public static UserDao getInstance() {
UserDao userDao = INSTANCE;
if (userDao == null) {
synchronized (UserDaoImpl.class) {
userDao = INSTANCE;
if (userDao == null) {
INSTANCE = userDao = new UserDaoImpl();
}
}
}
return userDao;
}
@Override
public User getByLogin(String login) throws SQLException {
psGetByLogin = prepareStatement(getUserByLogin);
psGetByLogin.setString(1, login);
ResultSet rs = psGetByLogin.executeQuery();
if (rs.next()) {
return fillEntity(rs);
}
close(rs);
return null;
}
@Override
public User save(User user) throws SQLException {
psSave = prepareStatement(saveUserQuery, Statement.RETURN_GENERATED_KEYS);
psSave.setString(1, user.getLogin());
psSave.setString(2, user.getPassword());
psSave.setString(3, user.getRole());
psSave.executeUpdate();
ResultSet rs = psSave.getGeneratedKeys();
if (rs.next()) {
user.setId(rs.getLong(1));
}
close(rs);
return user;
}
@SuppressWarnings("Duplicates")
@Override
public User get(long id) throws SQLException {
psGet = prepareStatement(getUserQuery);
psGet.setLong(1, id);
psGet.executeQuery();
ResultSet rs = psGet.getResultSet();
if (rs.next()) {
return fillEntity(rs);
}
close(rs);
return null;
}
@Override
public void update(User user) throws SQLException {
psUpdate = prepareStatement(updateUserQuery);
psUpdate.setString(1, user.getLogin());
psUpdate.setString(2, user.getPassword());
psUpdate.setString(3, user.getRole());
psUpdate.setLong(4, user.getId());
psUpdate.executeUpdate();
}
@Override
public int delete(long id) throws SQLException {
psDelete = prepareStatement(deleteUserQuery);
psDelete.setLong(1, id);
return psDelete.executeUpdate();
}
private User fillEntity(ResultSet rs) throws SQLException {
User entity = new User();
entity.setId(rs.getLong(1));
entity.setLogin(rs.getString(2));
entity.setPassword(rs.getString(3));
entity.setRole(rs.getString(4));
return entity;
}
} | [
"[email protected]"
] | |
0e4d60f8ae76eb58d0a985d2a1a1944ff22a687e | 2138584cb337f70a8c82f760145760721620d0ca | /src/java/DataAccessObject/TArqueosFacade.java | 842250adbb766269c62c3e32765090f5b422d19a | [] | no_license | miguefx/SmartCoinCentral | 2b0221b1acc3d57832c5d58c155e6600edee0c46 | 9830860af3ba76119c62129f13be94b158fd7514 | refs/heads/master | 2020-04-09T09:47:21.377205 | 2019-12-24T22:25:21 | 2019-12-24T22:25:21 | 160,246,599 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,210 | 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 DataAccessObject;
import ValueObject.*;
import java.util.Calendar;
import java.util.Date;
import java.util.List;
import javax.ejb.Stateless;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.Query;
import javax.persistence.TemporalType;
import javax.persistence.TypedQuery;
/**
*
* @author matc_
*/
@Stateless
public class TArqueosFacade extends AbstractFacade<TArqueos> {
@PersistenceContext(unitName = "SmartCoinCentralPU")
private EntityManager em;
@Override
protected EntityManager getEntityManager() {
return em;
}
public TArqueosFacade() {
super(TArqueos.class);
}
public List<TArqueos> actualizarTablaArqueos(Date fechaInicio, Date fechaFinal, String idModulo, Long idSede,Long cedulaEnSession,String nombrePermiso) {
try {
String query2 = "";
int casee = 0;
if (idModulo == null && idSede == null) {
query2 = "SELECT a FROM TArqueos AS a , TPermisos as b WHERE (a.fechaInicio BETWEEN ?1 and ?2) and (b.idModulo=a.idModulo.idModulo) and (a.idSede.idCiudad.idciudad=b.idCiudad) and (b.documentoUsuario=?3) and (b.nombreControl=?4)";
casee = 1;
} else if (idModulo == null && idSede != null) {
query2 = "SELECT a FROM TArqueos AS a , TPermisos as b WHERE (a.fechaInicio BETWEEN ?1 and ?2) and (b.documentoUsuario=?3) and (b.nombreControl=?4) and (b.idModulo=a.idModulo.idModulo) and (a.idSede.idCiudad.idciudad=?5)";
casee = 2;
} else if (idModulo != null && idSede == null) {
query2 = "SELECT a FROM TArqueos AS a , TPermisos as b WHERE (a.fechaInicio BETWEEN ?1 and ?2) and (b.documentoUsuario=?3) and (b.nombreControl=?4) and (a.idModulo.idModulo=?5) and (a.idSede.idCiudad.idciudad=b.idCiudad)";
casee = 3;
} else if (idModulo != null && idSede != null) {
query2 = "SELECT DISTINCT a FROM TArqueos AS a , TPermisos as b WHERE (a.fechaInicio BETWEEN ?1 and ?2) and (b.documentoUsuario=?3) and (b.nombreControl=?4) and (a.idModulo.idModulo=?5) and (a.idSede.idCiudad.idciudad=?6)";
casee = 4;
}
Query query = em.createQuery(query2);
query.setParameter(1, fechaInicio, TemporalType.TIMESTAMP);
query.setParameter(2, fechaFinal, TemporalType.TIMESTAMP);
query.setParameter(3, cedulaEnSession);
query.setParameter(4, nombrePermiso);
switch (casee) {
case 1:
break;
case 2:
query.setParameter(5,idSede);
break;
case 3:
query.setParameter(5, idModulo);
break;
case 4:
query.setParameter(5, idModulo);
query.setParameter(6, idSede);
break;
}
List<TArqueos> listAlarmasFiltradas = query.getResultList();
return listAlarmasFiltradas;
} catch (Exception e) {
}
return null;
}
public Date retornarUltimoFechaArqueo(String idModulo, Long idSede) {
Date ultimaFecha;
try {
TypedQuery<Date> query = em.createQuery("SELECT max(a.fechaFin)FROM TArqueos a WHERE (a.idModulo.idModulo = ?1 AND a.idSede.idCiudad.idciudad = ?2) ", Date.class);
query.setParameter(1, idModulo);
query.setParameter(2, idSede);
ultimaFecha = query.getSingleResult();
return ultimaFecha;
} catch (Exception e) {
}
return null;
}
public List<TreporteArqueos> listReporte1(Date fecha) {
try {
Date fechaEmpezandoMes;
Date fechaTerminandoMes;
fecha.setHours(0);
fecha.setMinutes(0);
fecha.setSeconds(0);
Calendar a = Calendar.getInstance();
a.setTime(fecha);
a.set(a.get(Calendar.YEAR), a.get(Calendar.MONTH), a.getActualMaximum(Calendar.DAY_OF_MONTH));
fechaTerminandoMes = a.getTime();
a.set(a.get(Calendar.YEAR), a.get(Calendar.MONTH), a.getActualMinimum(Calendar.DAY_OF_MONTH));
fechaEmpezandoMes = a.getTime();
Query query = em.createNativeQuery("SELECT a.IdModulo,SUM(a.Valor) as valor2 from T_Arqueos as a , T_Configuracion as b WHERE a.IdModulo=b.IdModulo and b.estado='1' and a.FechaInicio between ? and ? GROUP BY a.IdModulo", "mapeoReporte1");
query.setParameter(1, fechaEmpezandoMes);
query.setParameter(2, fechaTerminandoMes);
List<TreporteArqueos> listReportes1 = query.getResultList();
return listReportes1;
} catch (Exception e) {
}
return null;
}
}
| [
"miguel@MigueFx"
] | miguel@MigueFx |
e6754475e9f386040cc2b1aa3bfbc33a72ca2b71 | 9da3967fafcc767bce53d67daa247f110f8d4bc8 | /app/src/main/java/com/example/lehiteixeira/banco_neon/Data/network/NeonServiceFactory.java | 498415021faa58bdb6a07a6789ddfc4c59fd96e2 | [] | no_license | LehiLima/mvp_list_chart_sample | 76d0f77855354912a2bf55148c61450ead4dad03 | 6c56c4ee2b43b711a4d8d8675a7e9f1bbb8c6f75 | refs/heads/master | 2021-07-03T11:23:01.953621 | 2017-09-25T02:00:03 | 2017-09-25T02:00:03 | 104,691,996 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,429 | java | /*
* Copyright (c) Joaquim Ley 2016. All Rights Reserved.
* <p/>
* 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
* <p/>
* http://www.apache.org/licenses/LICENSE-2.0
* <p/>
* 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.example.lehiteixeira.banco_neon.Data.network;
import com.example.lehiteixeira.banco_neon.BuildConfig;
import java.util.concurrent.TimeUnit;
import okhttp3.OkHttpClient;
import okhttp3.logging.HttpLoggingInterceptor;
import retrofit2.Retrofit;
import retrofit2.converter.jackson.JacksonConverterFactory;
/**
* Service interface factory methods
*/
public class NeonServiceFactory {
private static final String BASE_URL = "http://processoseletivoneon.azurewebsites.net/";
private static final int HTTP_READ_TIMEOUT = 10000;
private static final int HTTP_CONNECT_TIMEOUT = 6000;
public static NeonService makeNeonService() {
return makeNeonService(makeOkHttpClient());
}
private static NeonService makeNeonService(OkHttpClient okHttpClient) {
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(BASE_URL)
.addConverterFactory(JacksonConverterFactory.create())
.client(okHttpClient)
.build();
return retrofit.create(NeonService.class);
}
private static OkHttpClient makeOkHttpClient() {
OkHttpClient.Builder httpClientBuilder = new OkHttpClient().newBuilder();
httpClientBuilder.connectTimeout(HTTP_CONNECT_TIMEOUT, TimeUnit.MILLISECONDS);
httpClientBuilder.readTimeout(HTTP_READ_TIMEOUT, TimeUnit.MILLISECONDS);
httpClientBuilder.addInterceptor(makeLoggingInterceptor());
return httpClientBuilder.build();
}
private static HttpLoggingInterceptor makeLoggingInterceptor() {
HttpLoggingInterceptor logging = new HttpLoggingInterceptor();
logging.setLevel(BuildConfig.DEBUG ? HttpLoggingInterceptor.Level.BODY
: HttpLoggingInterceptor.Level.NONE);
return logging;
}
} | [
"[email protected]"
] | |
0ab96e482ca03ccc986cdf6bac35dfbdd1801aca | 2b23cf2f82eddd4e729ae98989e43bd1fa958e92 | /.metadata/.plugins/org.eclipse.wst.server.core/tmp0/work/Catalina/localhost/FrontendModule/org/apache/jsp/WEB_002dINF/views/Footer_jsp.java | 4e09a8d476de3d767c5a6230e52fa07abd4cb316 | [] | no_license | aajayoff/Onlinepurchase | eded4c3b79788a60c27894c87bb32527ff1fb046 | fc9d3b7a6b923369e54d7b4aabe2c9a5bcbfd7f2 | refs/heads/master | 2020-04-09T11:33:58.597837 | 2018-12-04T07:23:17 | 2018-12-04T07:23:17 | 160,314,986 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,144 | java | /*
* Generated by the Jasper component of Apache Tomcat
* Version: Apache Tomcat/9.0.12
* Generated at: 2018-11-23 02:08:33 UTC
* Note: The last modified time of this file was set to
* the last modified time of the source file after
* generation to assist with modification tracking.
*/
package org.apache.jsp.WEB_002dINF.views;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
public final class Footer_jsp extends org.apache.jasper.runtime.HttpJspBase
implements org.apache.jasper.runtime.JspSourceDependent,
org.apache.jasper.runtime.JspSourceImports {
private static final javax.servlet.jsp.JspFactory _jspxFactory =
javax.servlet.jsp.JspFactory.getDefaultFactory();
private static java.util.Map<java.lang.String,java.lang.Long> _jspx_dependants;
private static final java.util.Set<java.lang.String> _jspx_imports_packages;
private static final java.util.Set<java.lang.String> _jspx_imports_classes;
static {
_jspx_imports_packages = new java.util.HashSet<>();
_jspx_imports_packages.add("javax.servlet");
_jspx_imports_packages.add("javax.servlet.http");
_jspx_imports_packages.add("javax.servlet.jsp");
_jspx_imports_classes = null;
}
private volatile javax.el.ExpressionFactory _el_expressionfactory;
private volatile org.apache.tomcat.InstanceManager _jsp_instancemanager;
public java.util.Map<java.lang.String,java.lang.Long> getDependants() {
return _jspx_dependants;
}
public java.util.Set<java.lang.String> getPackageImports() {
return _jspx_imports_packages;
}
public java.util.Set<java.lang.String> getClassImports() {
return _jspx_imports_classes;
}
public javax.el.ExpressionFactory _jsp_getExpressionFactory() {
if (_el_expressionfactory == null) {
synchronized (this) {
if (_el_expressionfactory == null) {
_el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory();
}
}
}
return _el_expressionfactory;
}
public org.apache.tomcat.InstanceManager _jsp_getInstanceManager() {
if (_jsp_instancemanager == null) {
synchronized (this) {
if (_jsp_instancemanager == null) {
_jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig());
}
}
}
return _jsp_instancemanager;
}
public void _jspInit() {
}
public void _jspDestroy() {
}
public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response)
throws java.io.IOException, javax.servlet.ServletException {
if (!javax.servlet.DispatcherType.ERROR.equals(request.getDispatcherType())) {
final java.lang.String _jspx_method = request.getMethod();
if ("OPTIONS".equals(_jspx_method)) {
response.setHeader("Allow","GET, HEAD, POST, OPTIONS");
return;
}
if (!"GET".equals(_jspx_method) && !"POST".equals(_jspx_method) && !"HEAD".equals(_jspx_method)) {
response.setHeader("Allow","GET, HEAD, POST, OPTIONS");
response.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, "JSPs only permit GET, POST or HEAD. Jasper also permits OPTIONS");
return;
}
}
final javax.servlet.jsp.PageContext pageContext;
javax.servlet.http.HttpSession session = null;
final javax.servlet.ServletContext application;
final javax.servlet.ServletConfig config;
javax.servlet.jsp.JspWriter out = null;
final java.lang.Object page = this;
javax.servlet.jsp.JspWriter _jspx_out = null;
javax.servlet.jsp.PageContext _jspx_page_context = null;
try {
response.setContentType("text/html; charset=ISO-8859-1");
pageContext = _jspxFactory.getPageContext(this, request, response,
null, true, 8192, true);
_jspx_page_context = pageContext;
application = pageContext.getServletContext();
config = pageContext.getServletConfig();
session = pageContext.getSession();
out = pageContext.getOut();
_jspx_out = out;
out.write("\r\n");
out.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\r\n");
out.write("<html>\r\n");
out.write("<head>\r\n");
out.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\">\r\n");
out.write("<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css\">\r\n");
out.write("<title>Footer</title>\r\n");
out.write("<style>\r\n");
out.write(".bottomnav {\r\n");
out.write("overflow:hidden;\r\n");
out.write("background-color=#333;\r\n");
out.write("}\r\n");
out.write(".fa {\r\n");
out.write(" padding: 20px;\r\n");
out.write(" font-size: 20px;\r\n");
out.write(" width: 60px;\r\n");
out.write(" text-align: center;\r\n");
out.write(" text-decoration: none;\r\n");
out.write(" margin: 5px 2px;\r\n");
out.write(" border-radius: 50%;\r\n");
out.write("}\r\n");
out.write(".fa:hover {\r\n");
out.write(" opacity: 0.7;\r\n");
out.write("}\r\n");
out.write("\r\n");
out.write(".fa-facebook {\r\n");
out.write(" background: #3B5998;\r\n");
out.write(" color: white;\r\n");
out.write("}\r\n");
out.write("\r\n");
out.write(".fa-twitter {\r\n");
out.write(" background: #55ACEE;\r\n");
out.write(" color: white;\r\n");
out.write("}\r\n");
out.write("\r\n");
out.write(".fa-google {\r\n");
out.write(" background: #dd4b39;\r\n");
out.write(" color: white;\r\n");
out.write("}\r\n");
out.write("\r\n");
out.write(".fa-linkedin {\r\n");
out.write(" background: #007bb5;\r\n");
out.write(" color: white;\r\n");
out.write("}\r\n");
out.write("\r\n");
out.write(".fa-youtube {\r\n");
out.write(" background: #bb0000;\r\n");
out.write(" color: white;\r\n");
out.write("}\r\n");
out.write(" \t\t\t\t\t\t\r\n");
out.write(".footer {\r\n");
out.write(" position: fixed;\r\n");
out.write(" float: left;\r\n");
out.write(" display: block;\r\n");
out.write(" text-align: center;\r\n");
out.write(" padding: 14px 16px;\r\n");
out.write(" text-decoration: none;\r\n");
out.write(" font-size: 17px;\r\n");
out.write(" bottom:0;\r\n");
out.write(" width: 100%;\r\n");
out.write(" background-color: white;\r\n");
out.write(" color: white;\r\n");
out.write("}\r\n");
out.write("</style>\r\n");
out.write("</head>\r\n");
out.write("<body>\r\n");
out.write("<div class=\"footer\">\r\n");
out.write("<div class=\"bottomnav\">\r\n");
out.write("<a href=\"http://www.facebook.com\" class=\"fa fa-facebook\"></a>\r\n");
out.write("<a href=\"http://www.twitter.com\" class=\"fa fa-twitter\"></a>\r\n");
out.write("<a href=\"http://www.google.com\" class=\"fa fa-google\"></a>\r\n");
out.write("<a href=\"http://www.linkedin.com\" class=\"fa fa-linkedin\"></a>\r\n");
out.write("<a href=\"http://www.youtube.com\" class=\"fa fa-youtube\"></a>\r\n");
out.write("</div>\r\n");
out.write("</div>\r\n");
out.write("</body>\r\n");
out.write("</html>");
} catch (java.lang.Throwable t) {
if (!(t instanceof javax.servlet.jsp.SkipPageException)){
out = _jspx_out;
if (out != null && out.getBufferSize() != 0)
try {
if (response.isCommitted()) {
out.flush();
} else {
out.clearBuffer();
}
} catch (java.io.IOException e) {}
if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
else throw new ServletException(t);
}
} finally {
_jspxFactory.releasePageContext(_jspx_page_context);
}
}
}
| [
"[email protected]"
] | |
b7fcdf5046ded7e5226f806c7772823c6b864e75 | 23458bdfb7393433203985569e68bc1935a022d6 | /NDC-GraphQL-Client/src/generated-sources/java/org/iata/oo/schema/AirShoppingRS/ALaCarteOfferItemType.java | f14e08e32a4b6cc9df7c2c1e7b3de0be5a7eae84 | [] | no_license | joelmorales/NDC | 7c6baa333c0285b724e6356bd7ae808f1f74e7ec | ebddd30369ec74e078a2c9996da0402f9ac448a1 | refs/heads/master | 2021-06-30T02:49:12.522375 | 2019-06-13T14:55:05 | 2019-06-13T14:55:05 | 171,594,242 | 1 | 0 | null | 2020-10-13T12:03:33 | 2019-02-20T03:29:16 | Java | UTF-8 | Java | false | false | 42,951 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.03.05 at 04:34:49 PM CST
//
package org.iata.oo.schema.AirShoppingRS;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlIDREF;
import javax.xml.bind.annotation.XmlList;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* <p>Java class for ALaCarteOfferItemType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="ALaCarteOfferItemType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Eligibility">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="PassengerRefs" minOccurs="0">
* <complexType>
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>IDREFS">
* <attribute name="AnyPassengerInd" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </extension>
* </simpleContent>
* </complexType>
* </element>
* <element name="SegmentRefs" minOccurs="0">
* <complexType>
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>IDREFS">
* <attribute name="AnySegmentInd" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </extension>
* </simpleContent>
* </complexType>
* </element>
* <element name="PriceClassRefs" type="{http://www.w3.org/2001/XMLSchema}IDREFS" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="UnitPriceDetail">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="TotalAmount">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}AwardPricing"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}CombinationPricing"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}DetailCurrencyPrice"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}EncodedCurrencyPrice"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}SimpleCurrencyPrice"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="BaseAmount" type="{http://www.iata.org/IATA/EDIST/2017.2}CurrencyAmountOptType" minOccurs="0"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}FareFiledIn" minOccurs="0"/>
* <element name="Discount" type="{http://www.iata.org/IATA/EDIST/2017.2}DiscountType" minOccurs="0"/>
* <element name="Surcharges" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Surcharge" type="{http://www.iata.org/IATA/EDIST/2017.2}FeeSurchargeType" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="Taxes" type="{http://www.iata.org/IATA/EDIST/2017.2}TaxDetailType" minOccurs="0"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}TaxExemption" minOccurs="0"/>
* <choice minOccurs="0">
* <element name="AwardPricing" type="{http://www.iata.org/IATA/EDIST/2017.2}AwardPriceUnitType" minOccurs="0"/>
* <element name="CombinationPricing" type="{http://www.iata.org/IATA/EDIST/2017.2}CombinationPriceType" minOccurs="0"/>
* </choice>
* <element name="Fees" minOccurs="0">
* <complexType>
* <complexContent>
* <extension base="{http://www.iata.org/IATA/EDIST/2017.2}FeeSurchargeType">
* </extension>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="Service">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ServiceRef" type="{http://www.w3.org/2001/XMLSchema}IDREF" minOccurs="0"/>
* <element name="ServiceDefinitionRef" type="{http://www.w3.org/2001/XMLSchema}IDREF"/>
* </sequence>
* <attribute name="ServiceID" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* <attribute name="OfferItemID" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ALaCarteOfferItemType", propOrder = {
"eligibility",
"unitPriceDetail",
"service"
})
public class ALaCarteOfferItemType {
@XmlElement(name = "Eligibility", required = true)
protected ALaCarteOfferItemType.Eligibility eligibility;
@XmlElement(name = "UnitPriceDetail", required = true)
protected ALaCarteOfferItemType.UnitPriceDetail unitPriceDetail;
@XmlElement(name = "Service", required = true)
protected ALaCarteOfferItemType.Service service;
@XmlAttribute(name = "OfferItemID", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String offerItemID;
/**
* Gets the value of the eligibility property.
*
* @return
* possible object is
* {@link ALaCarteOfferItemType.Eligibility }
*
*/
public ALaCarteOfferItemType.Eligibility getEligibility() {
return eligibility;
}
/**
* Sets the value of the eligibility property.
*
* @param value
* allowed object is
* {@link ALaCarteOfferItemType.Eligibility }
*
*/
public void setEligibility(ALaCarteOfferItemType.Eligibility value) {
this.eligibility = value;
}
/**
* Gets the value of the unitPriceDetail property.
*
* @return
* possible object is
* {@link ALaCarteOfferItemType.UnitPriceDetail }
*
*/
public ALaCarteOfferItemType.UnitPriceDetail getUnitPriceDetail() {
return unitPriceDetail;
}
/**
* Sets the value of the unitPriceDetail property.
*
* @param value
* allowed object is
* {@link ALaCarteOfferItemType.UnitPriceDetail }
*
*/
public void setUnitPriceDetail(ALaCarteOfferItemType.UnitPriceDetail value) {
this.unitPriceDetail = value;
}
/**
* Gets the value of the service property.
*
* @return
* possible object is
* {@link ALaCarteOfferItemType.Service }
*
*/
public ALaCarteOfferItemType.Service getService() {
return service;
}
/**
* Sets the value of the service property.
*
* @param value
* allowed object is
* {@link ALaCarteOfferItemType.Service }
*
*/
public void setService(ALaCarteOfferItemType.Service value) {
this.service = value;
}
/**
* Gets the value of the offerItemID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOfferItemID() {
return offerItemID;
}
/**
* Sets the value of the offerItemID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOfferItemID(String value) {
this.offerItemID = value;
}
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="PassengerRefs" minOccurs="0">
* <complexType>
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>IDREFS">
* <attribute name="AnyPassengerInd" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </extension>
* </simpleContent>
* </complexType>
* </element>
* <element name="SegmentRefs" minOccurs="0">
* <complexType>
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>IDREFS">
* <attribute name="AnySegmentInd" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </extension>
* </simpleContent>
* </complexType>
* </element>
* <element name="PriceClassRefs" type="{http://www.w3.org/2001/XMLSchema}IDREFS" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"passengerRefs",
"segmentRefs",
"priceClassRefs"
})
public static class Eligibility {
@XmlElement(name = "PassengerRefs")
protected ALaCarteOfferItemType.Eligibility.PassengerRefs passengerRefs;
@XmlElement(name = "SegmentRefs")
protected ALaCarteOfferItemType.Eligibility.SegmentRefs segmentRefs;
@XmlList
@XmlElement(name = "PriceClassRefs")
@XmlIDREF
@XmlSchemaType(name = "IDREFS")
protected List<Object> priceClassRefs;
/**
* Gets the value of the passengerRefs property.
*
* @return
* possible object is
* {@link ALaCarteOfferItemType.Eligibility.PassengerRefs }
*
*/
public ALaCarteOfferItemType.Eligibility.PassengerRefs getPassengerRefs() {
return passengerRefs;
}
/**
* Sets the value of the passengerRefs property.
*
* @param value
* allowed object is
* {@link ALaCarteOfferItemType.Eligibility.PassengerRefs }
*
*/
public void setPassengerRefs(ALaCarteOfferItemType.Eligibility.PassengerRefs value) {
this.passengerRefs = value;
}
/**
* Gets the value of the segmentRefs property.
*
* @return
* possible object is
* {@link ALaCarteOfferItemType.Eligibility.SegmentRefs }
*
*/
public ALaCarteOfferItemType.Eligibility.SegmentRefs getSegmentRefs() {
return segmentRefs;
}
/**
* Sets the value of the segmentRefs property.
*
* @param value
* allowed object is
* {@link ALaCarteOfferItemType.Eligibility.SegmentRefs }
*
*/
public void setSegmentRefs(ALaCarteOfferItemType.Eligibility.SegmentRefs value) {
this.segmentRefs = value;
}
/**
* Gets the value of the priceClassRefs property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the priceClassRefs property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getPriceClassRefs().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Object }
*
*
*/
public List<Object> getPriceClassRefs() {
if (priceClassRefs == null) {
priceClassRefs = new ArrayList<Object>();
}
return this.priceClassRefs;
}
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>IDREFS">
* <attribute name="AnyPassengerInd" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </extension>
* </simpleContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"value"
})
public static class PassengerRefs {
@XmlValue
@XmlIDREF
@XmlSchemaType(name = "IDREFS")
protected List<Object> value;
@XmlAttribute(name = "AnyPassengerInd")
protected Boolean anyPassengerInd;
/**
* Gets the value of the value property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the value property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValue().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Object }
*
*
*/
public List<Object> getValue() {
if (value == null) {
value = new ArrayList<Object>();
}
return this.value;
}
/**
* Gets the value of the anyPassengerInd property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAnyPassengerInd() {
return anyPassengerInd;
}
/**
* Sets the value of the anyPassengerInd property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAnyPassengerInd(Boolean value) {
this.anyPassengerInd = value;
}
}
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>IDREFS">
* <attribute name="AnySegmentInd" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </extension>
* </simpleContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"value"
})
public static class SegmentRefs {
@XmlValue
@XmlIDREF
@XmlSchemaType(name = "IDREFS")
protected List<Object> value;
@XmlAttribute(name = "AnySegmentInd")
protected Boolean anySegmentInd;
/**
* Gets the value of the value property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the value property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValue().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Object }
*
*
*/
public List<Object> getValue() {
if (value == null) {
value = new ArrayList<Object>();
}
return this.value;
}
/**
* Gets the value of the anySegmentInd property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAnySegmentInd() {
return anySegmentInd;
}
/**
* Sets the value of the anySegmentInd property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAnySegmentInd(Boolean value) {
this.anySegmentInd = value;
}
}
}
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ServiceRef" type="{http://www.w3.org/2001/XMLSchema}IDREF" minOccurs="0"/>
* <element name="ServiceDefinitionRef" type="{http://www.w3.org/2001/XMLSchema}IDREF"/>
* </sequence>
* <attribute name="ServiceID" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"serviceRef",
"serviceDefinitionRef"
})
public static class Service {
@XmlElement(name = "ServiceRef")
@XmlIDREF
@XmlSchemaType(name = "IDREF")
protected Object serviceRef;
@XmlElement(name = "ServiceDefinitionRef", required = true)
@XmlIDREF
@XmlSchemaType(name = "IDREF")
protected Object serviceDefinitionRef;
@XmlAttribute(name = "ServiceID", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String serviceID;
/**
* Gets the value of the serviceRef property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getServiceRef() {
return serviceRef;
}
/**
* Sets the value of the serviceRef property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setServiceRef(Object value) {
this.serviceRef = value;
}
/**
* Gets the value of the serviceDefinitionRef property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getServiceDefinitionRef() {
return serviceDefinitionRef;
}
/**
* Sets the value of the serviceDefinitionRef property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setServiceDefinitionRef(Object value) {
this.serviceDefinitionRef = value;
}
/**
* Gets the value of the serviceID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getServiceID() {
return serviceID;
}
/**
* Sets the value of the serviceID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setServiceID(String value) {
this.serviceID = value;
}
}
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="TotalAmount">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}AwardPricing"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}CombinationPricing"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}DetailCurrencyPrice"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}EncodedCurrencyPrice"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}SimpleCurrencyPrice"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="BaseAmount" type="{http://www.iata.org/IATA/EDIST/2017.2}CurrencyAmountOptType" minOccurs="0"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}FareFiledIn" minOccurs="0"/>
* <element name="Discount" type="{http://www.iata.org/IATA/EDIST/2017.2}DiscountType" minOccurs="0"/>
* <element name="Surcharges" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Surcharge" type="{http://www.iata.org/IATA/EDIST/2017.2}FeeSurchargeType" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="Taxes" type="{http://www.iata.org/IATA/EDIST/2017.2}TaxDetailType" minOccurs="0"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}TaxExemption" minOccurs="0"/>
* <choice minOccurs="0">
* <element name="AwardPricing" type="{http://www.iata.org/IATA/EDIST/2017.2}AwardPriceUnitType" minOccurs="0"/>
* <element name="CombinationPricing" type="{http://www.iata.org/IATA/EDIST/2017.2}CombinationPriceType" minOccurs="0"/>
* </choice>
* <element name="Fees" minOccurs="0">
* <complexType>
* <complexContent>
* <extension base="{http://www.iata.org/IATA/EDIST/2017.2}FeeSurchargeType">
* </extension>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"totalAmount",
"baseAmount",
"fareFiledIn",
"discount",
"surcharges",
"taxes",
"taxExemption",
"awardPricing",
"combinationPricing",
"fees"
})
public static class UnitPriceDetail {
@XmlElement(name = "TotalAmount", required = true)
protected ALaCarteOfferItemType.UnitPriceDetail.TotalAmount totalAmount;
@XmlElement(name = "BaseAmount")
protected CurrencyAmountOptType baseAmount;
@XmlElement(name = "FareFiledIn")
protected FareFilingType fareFiledIn;
@XmlElement(name = "Discount")
protected DiscountType discount;
@XmlElement(name = "Surcharges")
protected ALaCarteOfferItemType.UnitPriceDetail.Surcharges surcharges;
@XmlElement(name = "Taxes")
protected TaxDetailType taxes;
@XmlElement(name = "TaxExemption")
protected TaxExemptionType taxExemption;
@XmlElement(name = "AwardPricing")
protected AwardPriceUnitType awardPricing;
@XmlElement(name = "CombinationPricing")
protected CombinationPriceType combinationPricing;
@XmlElement(name = "Fees")
protected ALaCarteOfferItemType.UnitPriceDetail.Fees fees;
/**
* Gets the value of the totalAmount property.
*
* @return
* possible object is
* {@link ALaCarteOfferItemType.UnitPriceDetail.TotalAmount }
*
*/
public ALaCarteOfferItemType.UnitPriceDetail.TotalAmount getTotalAmount() {
return totalAmount;
}
/**
* Sets the value of the totalAmount property.
*
* @param value
* allowed object is
* {@link ALaCarteOfferItemType.UnitPriceDetail.TotalAmount }
*
*/
public void setTotalAmount(ALaCarteOfferItemType.UnitPriceDetail.TotalAmount value) {
this.totalAmount = value;
}
/**
* Gets the value of the baseAmount property.
*
* @return
* possible object is
* {@link CurrencyAmountOptType }
*
*/
public CurrencyAmountOptType getBaseAmount() {
return baseAmount;
}
/**
* Sets the value of the baseAmount property.
*
* @param value
* allowed object is
* {@link CurrencyAmountOptType }
*
*/
public void setBaseAmount(CurrencyAmountOptType value) {
this.baseAmount = value;
}
/**
* Gets the value of the fareFiledIn property.
*
* @return
* possible object is
* {@link FareFilingType }
*
*/
public FareFilingType getFareFiledIn() {
return fareFiledIn;
}
/**
* Sets the value of the fareFiledIn property.
*
* @param value
* allowed object is
* {@link FareFilingType }
*
*/
public void setFareFiledIn(FareFilingType value) {
this.fareFiledIn = value;
}
/**
* Gets the value of the discount property.
*
* @return
* possible object is
* {@link DiscountType }
*
*/
public DiscountType getDiscount() {
return discount;
}
/**
* Sets the value of the discount property.
*
* @param value
* allowed object is
* {@link DiscountType }
*
*/
public void setDiscount(DiscountType value) {
this.discount = value;
}
/**
* Gets the value of the surcharges property.
*
* @return
* possible object is
* {@link ALaCarteOfferItemType.UnitPriceDetail.Surcharges }
*
*/
public ALaCarteOfferItemType.UnitPriceDetail.Surcharges getSurcharges() {
return surcharges;
}
/**
* Sets the value of the surcharges property.
*
* @param value
* allowed object is
* {@link ALaCarteOfferItemType.UnitPriceDetail.Surcharges }
*
*/
public void setSurcharges(ALaCarteOfferItemType.UnitPriceDetail.Surcharges value) {
this.surcharges = value;
}
/**
* Gets the value of the taxes property.
*
* @return
* possible object is
* {@link TaxDetailType }
*
*/
public TaxDetailType getTaxes() {
return taxes;
}
/**
* Sets the value of the taxes property.
*
* @param value
* allowed object is
* {@link TaxDetailType }
*
*/
public void setTaxes(TaxDetailType value) {
this.taxes = value;
}
/**
* Gets the value of the taxExemption property.
*
* @return
* possible object is
* {@link TaxExemptionType }
*
*/
public TaxExemptionType getTaxExemption() {
return taxExemption;
}
/**
* Sets the value of the taxExemption property.
*
* @param value
* allowed object is
* {@link TaxExemptionType }
*
*/
public void setTaxExemption(TaxExemptionType value) {
this.taxExemption = value;
}
/**
* Gets the value of the awardPricing property.
*
* @return
* possible object is
* {@link AwardPriceUnitType }
*
*/
public AwardPriceUnitType getAwardPricing() {
return awardPricing;
}
/**
* Sets the value of the awardPricing property.
*
* @param value
* allowed object is
* {@link AwardPriceUnitType }
*
*/
public void setAwardPricing(AwardPriceUnitType value) {
this.awardPricing = value;
}
/**
* Gets the value of the combinationPricing property.
*
* @return
* possible object is
* {@link CombinationPriceType }
*
*/
public CombinationPriceType getCombinationPricing() {
return combinationPricing;
}
/**
* Sets the value of the combinationPricing property.
*
* @param value
* allowed object is
* {@link CombinationPriceType }
*
*/
public void setCombinationPricing(CombinationPriceType value) {
this.combinationPricing = value;
}
/**
* Gets the value of the fees property.
*
* @return
* possible object is
* {@link ALaCarteOfferItemType.UnitPriceDetail.Fees }
*
*/
public ALaCarteOfferItemType.UnitPriceDetail.Fees getFees() {
return fees;
}
/**
* Sets the value of the fees property.
*
* @param value
* allowed object is
* {@link ALaCarteOfferItemType.UnitPriceDetail.Fees }
*
*/
public void setFees(ALaCarteOfferItemType.UnitPriceDetail.Fees value) {
this.fees = value;
}
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <extension base="{http://www.iata.org/IATA/EDIST/2017.2}FeeSurchargeType">
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class Fees
extends FeeSurchargeType
{
}
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Surcharge" type="{http://www.iata.org/IATA/EDIST/2017.2}FeeSurchargeType" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"surcharge"
})
public static class Surcharges {
@XmlElement(name = "Surcharge", required = true)
protected List<FeeSurchargeType> surcharge;
/**
* Gets the value of the surcharge property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the surcharge property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getSurcharge().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link FeeSurchargeType }
*
*
*/
public List<FeeSurchargeType> getSurcharge() {
if (surcharge == null) {
surcharge = new ArrayList<FeeSurchargeType>();
}
return this.surcharge;
}
}
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}AwardPricing"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}CombinationPricing"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}DetailCurrencyPrice"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}EncodedCurrencyPrice"/>
* <element ref="{http://www.iata.org/IATA/EDIST/2017.2}SimpleCurrencyPrice"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"awardPricing",
"combinationPricing",
"detailCurrencyPrice",
"encodedCurrencyPrice",
"simpleCurrencyPrice"
})
public static class TotalAmount {
@XmlElement(name = "AwardPricing")
protected AwardPriceUnitType awardPricing;
@XmlElement(name = "CombinationPricing")
protected CombinationPriceType combinationPricing;
@XmlElement(name = "DetailCurrencyPrice")
protected DetailCurrencyPriceType detailCurrencyPrice;
@XmlElement(name = "EncodedCurrencyPrice")
protected EncodedPriceType encodedCurrencyPrice;
@XmlElement(name = "SimpleCurrencyPrice")
protected SimpleCurrencyPriceType simpleCurrencyPrice;
/**
* Gets the value of the awardPricing property.
*
* @return
* possible object is
* {@link AwardPriceUnitType }
*
*/
public AwardPriceUnitType getAwardPricing() {
return awardPricing;
}
/**
* Sets the value of the awardPricing property.
*
* @param value
* allowed object is
* {@link AwardPriceUnitType }
*
*/
public void setAwardPricing(AwardPriceUnitType value) {
this.awardPricing = value;
}
/**
* Gets the value of the combinationPricing property.
*
* @return
* possible object is
* {@link CombinationPriceType }
*
*/
public CombinationPriceType getCombinationPricing() {
return combinationPricing;
}
/**
* Sets the value of the combinationPricing property.
*
* @param value
* allowed object is
* {@link CombinationPriceType }
*
*/
public void setCombinationPricing(CombinationPriceType value) {
this.combinationPricing = value;
}
/**
* Gets the value of the detailCurrencyPrice property.
*
* @return
* possible object is
* {@link DetailCurrencyPriceType }
*
*/
public DetailCurrencyPriceType getDetailCurrencyPrice() {
return detailCurrencyPrice;
}
/**
* Sets the value of the detailCurrencyPrice property.
*
* @param value
* allowed object is
* {@link DetailCurrencyPriceType }
*
*/
public void setDetailCurrencyPrice(DetailCurrencyPriceType value) {
this.detailCurrencyPrice = value;
}
/**
* Gets the value of the encodedCurrencyPrice property.
*
* @return
* possible object is
* {@link EncodedPriceType }
*
*/
public EncodedPriceType getEncodedCurrencyPrice() {
return encodedCurrencyPrice;
}
/**
* Sets the value of the encodedCurrencyPrice property.
*
* @param value
* allowed object is
* {@link EncodedPriceType }
*
*/
public void setEncodedCurrencyPrice(EncodedPriceType value) {
this.encodedCurrencyPrice = value;
}
/**
* Gets the value of the simpleCurrencyPrice property.
*
* @return
* possible object is
* {@link SimpleCurrencyPriceType }
*
*/
public SimpleCurrencyPriceType getSimpleCurrencyPrice() {
return simpleCurrencyPrice;
}
/**
* Sets the value of the simpleCurrencyPrice property.
*
* @param value
* allowed object is
* {@link SimpleCurrencyPriceType }
*
*/
public void setSimpleCurrencyPrice(SimpleCurrencyPriceType value) {
this.simpleCurrencyPrice = value;
}
}
}
}
| [
"[email protected]"
] | |
b1bad84081533b8ecfbe1dce25a6d625d0318c84 | 21d5be51a5533b492850f2b6d1430d49b4ce80d3 | /haxe-plugin/src/main/java/com/intellij/plugins/haxe/model/HaxeDocumentModel.java | 61a1567c294a552e37261611d3a46337facb2d05 | [
"Apache-2.0"
] | permissive | m0rkeulv/intellij-haxe | fe118f2f24c8f67c423b3d036c95fe15805e2536 | d5d03ffafccb5812214c304df197e165d9f7201d | refs/heads/gradle/master | 2021-08-18T04:44:15.876735 | 2018-04-16T20:02:26 | 2018-04-16T20:02:26 | 125,924,711 | 0 | 0 | Apache-2.0 | 2021-01-13T21:29:45 | 2018-03-19T21:48:58 | Java | UTF-8 | Java | false | false | 3,424 | java | /*
* Copyright 2000-2013 JetBrains s.r.o.
* Copyright 2014-2015 AS3Boyan
* Copyright 2014-2014 Elias Ku
*
* 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.intellij.plugins.haxe.model;
import com.intellij.openapi.editor.Document;
import com.intellij.openapi.util.TextRange;
import com.intellij.plugins.haxe.util.HaxeCharUtils;
import com.intellij.psi.PsiDocumentManager;
import com.intellij.psi.PsiElement;
public class HaxeDocumentModel {
private Document document;
public HaxeDocumentModel(Document document) {
this.document = document;
}
public HaxeDocumentModel(PsiElement aElementInDocument) {
this(PsiDocumentManager.getInstance(aElementInDocument.getProject()).getDocument(aElementInDocument.getContainingFile()));
}
static public HaxeDocumentModel fromElement(PsiElement aElementInDocument) {
return new HaxeDocumentModel(aElementInDocument);
}
public void replaceElementText(final PsiElement element, final String text) {
replaceElementText(element, text, StripSpaces.NONE);
}
public void replaceElementText(final TextRange textRange, final String text) {
replaceElementText(textRange, text, StripSpaces.NONE);
}
public void replaceElementText(final PsiElement element, final String text, final StripSpaces strips) {
if (element == null) return;
replaceElementText(element.getTextRange(), text, strips);
}
public void replaceElementText(final TextRange range, final String text, final StripSpaces strips) {
if (range == null) return;
int start = range.getStartOffset();
int end = range.getEndOffset();
String documentText = document.getText();
if (strips.after) {
while (end < documentText.length() && HaxeCharUtils.isSpace(documentText.charAt(end))) {
end++;
}
}
if (strips.before) {
while (start > 0 && HaxeCharUtils.isSpace(documentText.charAt(start - 1))) {
start--;
}
}
document.replaceString(start, end, text);
}
public void wrapElement(final PsiElement element, final String before, final String after) {
wrapElement(element, before, after, StripSpaces.NONE);
}
public void wrapElement(final PsiElement element, final String before, final String after, StripSpaces strip) {
if (element == null) return;
TextRange range = element.getTextRange();
this.replaceElementText(element, before + element.getText() + after, strip);
}
public void addTextBeforeElement(final PsiElement element, final String text) {
if (element == null) return;
TextRange range = element.getTextRange();
document.replaceString(range.getStartOffset(), range.getStartOffset(), text);
}
public void addTextAfterElement(final PsiElement element, final String text) {
if (element == null) return;
TextRange range = element.getTextRange();
document.replaceString(range.getEndOffset(), range.getEndOffset(), text);
}
}
| [
"[email protected]"
] | |
3274adb54e92af275c35bd9649b115522c12000a | f446fc12f8c0c7a0e3560a246d8e3c1c9526ed8d | /src/org/insightech/er/editor/model/search/SearchResult.java | b6a5284cacb277aa491c3bbfe9fe1e555d3ec6d6 | [
"Apache-2.0"
] | permissive | Heverton/ermasterr | 9afcd08c658e197f10d288cb424008d415e999e2 | 97ff3af96f2a3af2ab41f68838c3bb500c3f8fb5 | refs/heads/master | 2021-01-19T13:15:48.482140 | 2017-05-11T22:42:45 | 2017-05-11T22:42:45 | 88,079,664 | 1 | 0 | null | 2017-04-12T17:39:32 | 2017-04-12T17:39:31 | null | UTF-8 | Java | false | false | 2,197 | java | package org.insightech.er.editor.model.search;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
public class SearchResult {
public static final int SORT_TYPE_PATH = 1;
public static final int SORT_TYPE_TYPE = 2;
public static final int SORT_TYPE_NAME = 3;
public static final int SORT_TYPE_VALUE = 4;
private int sortType;
private final Object resultObject;
private final List<SearchResultRow> rows;
public SearchResult(final Object resultObject, final List<SearchResultRow> rows) {
this.resultObject = resultObject;
this.rows = rows;
}
public Object getResultObject() {
return resultObject;
}
public List<SearchResultRow> getRows() {
return rows;
}
public void addRow(final SearchResultRow row) {
rows.add(row);
}
public void sort(final int sortType) {
this.sortType = sortType;
Collections.sort(rows, new SearchResultRowComparator());
}
private class SearchResultRowComparator implements Comparator<SearchResultRow> {
@Override
public int compare(final SearchResultRow o1, final SearchResultRow o2) {
if (o1 == null) {
return 1;
}
if (o2 == null) {
return -1;
}
String value1 = null;
String value2 = null;
if (sortType == SORT_TYPE_PATH) {
value1 = o1.getPath();
value2 = o2.getPath();
} else if (sortType == SORT_TYPE_TYPE || sortType == SORT_TYPE_NAME) {
final int type1 = o1.getType();
final int type2 = o2.getType();
return type1 - type2;
} else if (sortType == SORT_TYPE_VALUE) {
value1 = o1.getText();
value2 = o2.getText();
}
if (value1 == null) {
return 1;
}
if (value2 == null) {
return -1;
}
return value1.compareTo(value2);
}
}
}
| [
"[email protected]"
] | |
48fb09d3a7c3c4d66128faa7d2aaa7e492a17c1d | 280168db0399d49d68aff77e6609432be8858990 | /src/Util.java | 7bbb29358430c1c6d113109c643cf51f7dd933c1 | [] | no_license | yudi-azvd/complex-number | 55f83e10595d9926cee475e381bd7884a9918681 | 5afd7db5cd665e0012baae0c93e7b425c137a790 | refs/heads/master | 2021-08-16T17:20:51.666553 | 2020-04-11T22:31:42 | 2020-04-11T22:31:42 | 157,051,767 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 180 | java | public class Util {
public double round(double number, int places) {
double n = Math.round(number*Math.pow(10, places))/Math.pow(10, places);
return n;
}
}
| [
"[email protected]"
] | |
92529f576d3fd47a386a6fe897579966b645bbd5 | 345eb34aebc18cfc2a204b4f884c1beab8faa58b | /BigHomework/gen/com/yinhe/bighomwork/R.java | 1cc50d6fbf0769b0042900c56f424b57412024d4 | [] | no_license | qfkongyan/YinHe | b843456da191b18f923b3f7f8a5393627205612b | f134207b7b4766504beb55d0700b4d4e0052e29a | refs/heads/master | 2023-03-15T20:25:50.344736 | 2017-08-12T02:31:25 | 2017-08-12T02:31:25 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 193,221 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package com.yinhe.bighomwork;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f040000;
public static final int abc_fade_out=0x7f040001;
public static final int abc_slide_in_bottom=0x7f040002;
public static final int abc_slide_in_top=0x7f040003;
public static final int abc_slide_out_bottom=0x7f040004;
public static final int abc_slide_out_top=0x7f040005;
}
public static final class attr {
/** Custom divider drawable to use for elements in the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01000f;
/** Custom item state list drawable background for action bar items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010010;
/** Size of the Action Bar, including the contextual
bar used to present Action Modes.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionBarSize=0x7f01000e;
/** Reference to a theme that should be used to inflate widgets
and layouts destined for the action bar. Most of the time
this will be a reference to the current theme, but when
the action bar has a significantly different contrast
profile than the rest of the activity the difference
can become important. If this is set to @null the current
theme will be used.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01000c;
/** Reference to a style for the Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f010008;
/** Default style for tabs within an action bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionBarTabTextStyle=0x7f010009;
/** Reference to a theme that should be used to inflate widgets
and layouts destined for the action bar. Most of the time
this will be a reference to the current theme, but when
the action bar has a significantly different contrast
profile than the rest of the activity the difference
can become important. If this is set to @null the current
theme will be used.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01000d;
/** Default action button style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010016;
/** Default ActionBar dropdown style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010047;
/** An optional layout to be used as an action view.
See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004e;
/** TextAppearance style that will be applied to text that
appears within action menu items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010011;
/** Color for text that appears within action menu items.
<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=0x7f010012;
/** Background drawable to use for action mode UI
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=0x7f01003b;
/** Drawable to use for the close action mode button
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003e;
/** Drawable to use for the Copy action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010040;
/** Drawable to use for the Cut action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003f;
/** Drawable to use for the Find action button in WebView selection action modes
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010044;
/** Drawable to use for the Paste action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010041;
/** PopupWindow style to use for action modes when showing as a window overlay.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010046;
/** Drawable to use for the Select all action button in Contextual Action Bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010042;
/** Drawable to use for the Share action button in WebView selection action modes
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010043;
/** Background drawable to use for action mode UI in the lower split bar
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeStyle=0x7f01003a;
/** Drawable to use for the Web Search action button in WebView selection action modes
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010045;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=0x7f01000a;
/** The name of an optional ActionProvider class to instantiate an action view
and perform operations such as default action for that menu item.
See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
for more info.
<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=0x7f010050;
/** The name of an optional View class to instantiate and use as an
action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
<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=0x7f01004f;
/** Default ActivityChooserView style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006c;
/** Specifies a background drawable for the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002f;
/** Specifies a background drawable for the bottom component of a split action bar.
<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=0x7f010031;
/** Specifies a background drawable for a second stacked row of the action bar.
<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=0x7f010030;
/** A style that may be applied to Buttons placed within a
LinearLayout with the style buttonBarStyle to form a button bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010018;
/** A style that may be applied to horizontal LinearLayouts
to form a button bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010017;
/** Specifies a layout for custom navigation. Overrides navigationMode.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010032;
/** Whether this spinner should mark child views as enabled/disabled when
the spinner itself is enabled/disabled.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int disableChildrenWhenDisabled=0x7f010054;
/** Options affecting how the action bar is displayed.
<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>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=0x7f010028;
/** Specifies the drawable used for item dividers.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002e;
/** A drawable that may be used as a horizontal divider between visual elements.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01001b;
/** Size of padding on either end of a divider.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010056;
/** A drawable that may be used as a vertical divider between visual elements.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01001a;
/** ListPopupWindow comaptibility
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010021;
/** The preferred item height for dropdown lists.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010048;
/** The drawable to show in the button for expanding the activities overflow popup.
<strong>Note:</strong> Clients would like to set this drawable
as a clue about the action the chosen activity will perform. For
example, if share activity is to be chosen the drawable should
give a clue that sharing is to be performed.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010026;
/** Specifies a drawable to use for the 'home as up' indicator.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010013;
/** Specifies a layout to use for the "home" section of the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010033;
/** Specifies the drawable used for the application icon.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002c;
/** The default state of the SearchView. If true, it will be iconified when not in
use and expanded when clicked.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01005a;
/** Specifies a style resource to use for an indeterminate progress spinner.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010035;
/** The maximal number of items initially shown in the activity list.
<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=0x7f01006a;
/** Specifies whether the theme is light, otherwise it is dark.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010059;
/** Specifies padding that should be applied to the left and right sides of
system-provided items in the bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010037;
/** Drawable used as a background for selected list items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 listPopupWindowStyle=0x7f010022;
/** The preferred list item height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01001c;
/** A larger, more robust list item height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01001e;
/** A smaller, sleeker list item height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01001d;
/** The preferred padding along the left edge of list items.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01001f;
/** The preferred padding along the right edge of list items.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010020;
/** Specifies the drawable used for the application logo.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002d;
/** The type of navigation to use.
<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> Normal static title text </td></tr>
<tr><td><code>listMode</code></td><td>1</td><td> The action bar will use a selection list for navigation. </td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td> The action bar will use a series of horizontal tabs for navigation. </td></tr>
</table>
*/
public static final int navigationMode=0x7f010027;
/** Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010039;
/** Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010038;
/** Default Panel Menu style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004b;
/** Default Panel Menu width.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01004a;
/** Default PopupMenu style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010049;
/** Reference to a layout to use for displaying a prompt in the dropdown for
spinnerMode="dropdown". This layout must contain a TextView with the id
{@code @android:id/text1} to be populated with the prompt text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupPromptView=0x7f010053;
/** Specifies the horizontal padding on either end for an embedded progress bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010036;
/** Specifies a style resource to use for an embedded progress bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010034;
/** The prompt to display when the spinner's dialog is shown.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int prompt=0x7f010051;
/** An optional query hint string to be displayed in the empty query field.
<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=0x7f01005b;
/** SearchView dropdown background
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchDropdownBackground=0x7f01005c;
/** The list item height for search results. @hide
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int searchResultListItemHeight=0x7f010065;
/** SearchView AutoCompleteTextView style
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewAutoCompleteTextView=0x7f010069;
/** SearchView close button icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewCloseIcon=0x7f01005d;
/** SearchView query refinement icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewEditQuery=0x7f010061;
/** SearchView query refinement icon background
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewEditQueryBackground=0x7f010062;
/** SearchView Go button icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewGoIcon=0x7f01005e;
/** SearchView Search icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewSearchIcon=0x7f01005f;
/** SearchView text field background for the left section
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewTextField=0x7f010063;
/** SearchView text field background for the right section
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewTextFieldRight=0x7f010064;
/** SearchView Voice button icon
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewVoiceIcon=0x7f010060;
/** A style that may be applied to buttons or other selectable items
that should react to pressed and focus states, but that do not
have a clear visual border along the edges.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010019;
/** How this item should display in the Action Bar, if present.
<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> Never show this item in an action bar, show it in the overflow menu instead.
Mutually exclusive with "ifRoom" and "always". </td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td> Show this item in an action bar if there is room for it as determined
by the system. Favor this option over "always" where possible.
Mutually exclusive with "never" and "always". </td></tr>
<tr><td><code>always</code></td><td>2</td><td> Always show this item in an actionbar, even if it would override
the system's limits of how much stuff to put there. This may make
your action bar look bad on some screens. In most cases you should
use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". </td></tr>
<tr><td><code>withText</code></td><td>4</td><td> When this item is shown as an action in the action bar, show a text
label with it even if it has an icon representation. </td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td> This item's action view collapses to a normal menu
item. When expanded, the action view takes over a
larger segment of its container. </td></tr>
</table>
*/
public static final int showAsAction=0x7f01004d;
/** Setting for which dividers to show.
<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=0x7f010055;
/** Default Spinner style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010058;
/** Display mode for spinner options.
<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>dialog</code></td><td>0</td><td> Spinner options will be presented to the user as a dialog window. </td></tr>
<tr><td><code>dropdown</code></td><td>1</td><td> Spinner options will be presented to the user as an inline dropdown
anchored to the spinner widget itself. </td></tr>
</table>
*/
public static final int spinnerMode=0x7f010052;
/** Default Spinner style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010057;
/** Specifies subtitle text used for navigationMode="normal"
<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=0x7f010029;
/** Specifies a style to use for subtitle text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002b;
/** Present the text in ALL CAPS. This may use a small-caps form when available.
<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=0x7f01006d;
/** Text color, typeface, size, and style for the text inside of a popup menu.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010014;
/** The preferred TextAppearance for the primary text of list items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010023;
/** The preferred TextAppearance for the primary text of small list items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010024;
/** Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010067;
/** Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010066;
/** Text color, typeface, size, and style for small text inside of a popup menu.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010015;
/** Text color for urls in search suggestions, used by things like global search
<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=0x7f010068;
/** <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=0x7f010025;
/** Specifies a style to use for title text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01002a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010000;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010001;
/** A fixed height for the window along the major axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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=0x7f010006;
/** A fixed height for the window along the minor axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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=0x7f010004;
/** A fixed width for the window along the major axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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=0x7f010003;
/** A fixed width for the window along the minor axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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=0x7f010005;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowSplitActionBar=0x7f010002;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs_pre_jb=0x7f050000;
public static final int abc_action_bar_expanded_action_views_exclusive=0x7f050001;
/** Whether action menu items should be displayed in ALLCAPS or not.
Defaults to true. If this is not appropriate for specific locales
it should be disabled in that locale's resources.
*/
public static final int abc_config_actionMenuItemAllCaps=0x7f050005;
/** Whether action menu items should obey the "withText" showAsAction
flag. This may be set to false for situations where space is
extremely limited.
Whether action menu items should obey the "withText" showAsAction.
This may be set to false for situations where space is
extremely limited.
*/
public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f050004;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f050003;
public static final int abc_split_action_bar_is_narrow=0x7f050002;
}
public static final class color {
public static final int abc_search_url_text_holo=0x7f06000d;
public static final int abc_search_url_text_normal=0x7f060000;
public static final int abc_search_url_text_pressed=0x7f060002;
public static final int abc_search_url_text_selected=0x7f060001;
public static final int bgColor=0x7f06000c;
public static final int blue=0x7f060003;
public static final int dark_blue=0x7f060004;
public static final int gray=0x7f060005;
public static final int gray_light=0x7f060006;
public static final int green=0x7f06000a;
public static final int pink=0x7f060008;
public static final int red=0x7f060009;
public static final int trans_gray=0x7f060007;
public static final int trans_green=0x7f06000b;
}
public static final class dimen {
/** Default height of an action bar.
Default height of an action bar.
Default height of an action bar.
Default height of an action bar.
Default height of an action bar.
*/
public static final int abc_action_bar_default_height=0x7f070002;
/** Vertical padding around action bar icons.
Vertical padding around action bar icons.
Vertical padding around action bar icons.
Vertical padding around action bar icons.
Vertical padding around action bar icons.
*/
public static final int abc_action_bar_icon_vertical_padding=0x7f070003;
/** Size of the indeterminate Progress Bar
Size of the indeterminate Progress Bar
*/
public static final int abc_action_bar_progress_bar_size=0x7f07000a;
/** Maximum height for a stacked tab bar as part of an action bar
*/
public static final int abc_action_bar_stacked_max_height=0x7f070009;
/** Maximum width for a stacked action bar tab. This prevents
action bar tabs from becoming too wide on a wide screen when only
a few are present.
*/
public static final int abc_action_bar_stacked_tab_max_width=0x7f070001;
/** Bottom margin for action bar subtitles
Bottom margin for action bar subtitles
Bottom margin for action bar subtitles
Bottom margin for action bar subtitles
Bottom margin for action bar subtitles
*/
public static final int abc_action_bar_subtitle_bottom_margin=0x7f070007;
/** Text size for action bar subtitles
Text size for action bar subtitles
Text size for action bar subtitles
Text size for action bar subtitles
Text size for action bar subtitles
*/
public static final int abc_action_bar_subtitle_text_size=0x7f070005;
/** Top margin for action bar subtitles
Top margin for action bar subtitles
Top margin for action bar subtitles
Top margin for action bar subtitles
Top margin for action bar subtitles
*/
public static final int abc_action_bar_subtitle_top_margin=0x7f070006;
/** Text size for action bar titles
Text size for action bar titles
Text size for action bar titles
Text size for action bar titles
Text size for action bar titles
*/
public static final int abc_action_bar_title_text_size=0x7f070004;
/** Minimum width for an action button in the menu area of an action bar
Minimum width for an action button in the menu area of an action bar
Minimum width for an action button in the menu area of an action bar
*/
public static final int abc_action_button_min_width=0x7f070008;
/** The maximum width we would prefer dialogs to be. 0 if there is no
maximum (let them grow as large as the screen). Actual values are
specified for -large and -xlarge configurations.
see comment in values/config.xml
see comment in values/config.xml
*/
public static final int abc_config_prefDialogWidth=0x7f070000;
/** Width of the icon in a dropdown list
*/
public static final int abc_dropdownitem_icon_width=0x7f070010;
/** Text padding for dropdown items
*/
public static final int abc_dropdownitem_text_padding_left=0x7f07000e;
public static final int abc_dropdownitem_text_padding_right=0x7f07000f;
public static final int abc_panel_menu_list_width=0x7f07000b;
/** Preferred width of the search view.
*/
public static final int abc_search_view_preferred_width=0x7f07000d;
/** Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
*/
public static final int abc_search_view_text_min_width=0x7f07000c;
/** Default screen margins, per the Android Design guidelines.
*/
public static final int activity_horizontal_margin=0x7f070015;
public static final int activity_vertical_margin=0x7f070016;
/** The platform's desired fixed height for a dialog along the major axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the major axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the major axis
(the screen is in portrait). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_height_major=0x7f070013;
/** The platform's desired fixed height for a dialog along the minor axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the minor axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the minor axis
(the screen is in landscape). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_height_minor=0x7f070014;
/** The platform's desired fixed width for a dialog along the major axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the major axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the major axis
(the screen is in landscape). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_width_major=0x7f070011;
/** The platform's desired fixed width for a dialog along the minor axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the minor axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the minor axis
(the screen is in portrait). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_width_minor=0x7f070012;
public static final int textNormal=0x7f070017;
public static final int text_s=0x7f070018;
public static final int text_s_s=0x7f070019;
}
public static final class drawable {
public static final int abc_ab_bottom_solid_dark_holo=0x7f020000;
public static final int abc_ab_bottom_solid_light_holo=0x7f020001;
public static final int abc_ab_bottom_transparent_dark_holo=0x7f020002;
public static final int abc_ab_bottom_transparent_light_holo=0x7f020003;
public static final int abc_ab_share_pack_holo_dark=0x7f020004;
public static final int abc_ab_share_pack_holo_light=0x7f020005;
public static final int abc_ab_solid_dark_holo=0x7f020006;
public static final int abc_ab_solid_light_holo=0x7f020007;
public static final int abc_ab_stacked_solid_dark_holo=0x7f020008;
public static final int abc_ab_stacked_solid_light_holo=0x7f020009;
public static final int abc_ab_stacked_transparent_dark_holo=0x7f02000a;
public static final int abc_ab_stacked_transparent_light_holo=0x7f02000b;
public static final int abc_ab_transparent_dark_holo=0x7f02000c;
public static final int abc_ab_transparent_light_holo=0x7f02000d;
public static final int abc_cab_background_bottom_holo_dark=0x7f02000e;
public static final int abc_cab_background_bottom_holo_light=0x7f02000f;
public static final int abc_cab_background_top_holo_dark=0x7f020010;
public static final int abc_cab_background_top_holo_light=0x7f020011;
public static final int abc_ic_ab_back_holo_dark=0x7f020012;
public static final int abc_ic_ab_back_holo_light=0x7f020013;
public static final int abc_ic_cab_done_holo_dark=0x7f020014;
public static final int abc_ic_cab_done_holo_light=0x7f020015;
public static final int abc_ic_clear=0x7f020016;
public static final int abc_ic_clear_disabled=0x7f020017;
public static final int abc_ic_clear_holo_light=0x7f020018;
public static final int abc_ic_clear_normal=0x7f020019;
public static final int abc_ic_clear_search_api_disabled_holo_light=0x7f02001a;
public static final int abc_ic_clear_search_api_holo_light=0x7f02001b;
public static final int abc_ic_commit_search_api_holo_dark=0x7f02001c;
public static final int abc_ic_commit_search_api_holo_light=0x7f02001d;
public static final int abc_ic_go=0x7f02001e;
public static final int abc_ic_go_search_api_holo_light=0x7f02001f;
public static final int abc_ic_menu_moreoverflow_normal_holo_dark=0x7f020020;
public static final int abc_ic_menu_moreoverflow_normal_holo_light=0x7f020021;
public static final int abc_ic_menu_share_holo_dark=0x7f020022;
public static final int abc_ic_menu_share_holo_light=0x7f020023;
public static final int abc_ic_search=0x7f020024;
public static final int abc_ic_search_api_holo_light=0x7f020025;
public static final int abc_ic_voice_search=0x7f020026;
public static final int abc_ic_voice_search_api_holo_light=0x7f020027;
public static final int abc_item_background_holo_dark=0x7f020028;
public static final int abc_item_background_holo_light=0x7f020029;
public static final int abc_list_divider_holo_dark=0x7f02002a;
public static final int abc_list_divider_holo_light=0x7f02002b;
public static final int abc_list_focused_holo=0x7f02002c;
public static final int abc_list_longpressed_holo=0x7f02002d;
public static final int abc_list_pressed_holo_dark=0x7f02002e;
public static final int abc_list_pressed_holo_light=0x7f02002f;
public static final int abc_list_selector_background_transition_holo_dark=0x7f020030;
public static final int abc_list_selector_background_transition_holo_light=0x7f020031;
public static final int abc_list_selector_disabled_holo_dark=0x7f020032;
public static final int abc_list_selector_disabled_holo_light=0x7f020033;
public static final int abc_list_selector_holo_dark=0x7f020034;
public static final int abc_list_selector_holo_light=0x7f020035;
public static final int abc_menu_dropdown_panel_holo_dark=0x7f020036;
public static final int abc_menu_dropdown_panel_holo_light=0x7f020037;
public static final int abc_menu_hardkey_panel_holo_dark=0x7f020038;
public static final int abc_menu_hardkey_panel_holo_light=0x7f020039;
public static final int abc_search_dropdown_dark=0x7f02003a;
public static final int abc_search_dropdown_light=0x7f02003b;
public static final int abc_spinner_ab_default_holo_dark=0x7f02003c;
public static final int abc_spinner_ab_default_holo_light=0x7f02003d;
public static final int abc_spinner_ab_disabled_holo_dark=0x7f02003e;
public static final int abc_spinner_ab_disabled_holo_light=0x7f02003f;
public static final int abc_spinner_ab_focused_holo_dark=0x7f020040;
public static final int abc_spinner_ab_focused_holo_light=0x7f020041;
public static final int abc_spinner_ab_holo_dark=0x7f020042;
public static final int abc_spinner_ab_holo_light=0x7f020043;
public static final int abc_spinner_ab_pressed_holo_dark=0x7f020044;
public static final int abc_spinner_ab_pressed_holo_light=0x7f020045;
public static final int abc_tab_indicator_ab_holo=0x7f020046;
public static final int abc_tab_selected_focused_holo=0x7f020047;
public static final int abc_tab_selected_holo=0x7f020048;
public static final int abc_tab_selected_pressed_holo=0x7f020049;
public static final int abc_tab_unselected_pressed_holo=0x7f02004a;
public static final int abc_textfield_search_default_holo_dark=0x7f02004b;
public static final int abc_textfield_search_default_holo_light=0x7f02004c;
public static final int abc_textfield_search_right_default_holo_dark=0x7f02004d;
public static final int abc_textfield_search_right_default_holo_light=0x7f02004e;
public static final int abc_textfield_search_right_selected_holo_dark=0x7f02004f;
public static final int abc_textfield_search_right_selected_holo_light=0x7f020050;
public static final int abc_textfield_search_selected_holo_dark=0x7f020051;
public static final int abc_textfield_search_selected_holo_light=0x7f020052;
public static final int abc_textfield_searchview_holo_dark=0x7f020053;
public static final int abc_textfield_searchview_holo_light=0x7f020054;
public static final int abc_textfield_searchview_right_holo_dark=0x7f020055;
public static final int abc_textfield_searchview_right_holo_light=0x7f020056;
public static final int back=0x7f020057;
public static final int bighomwork=0x7f020058;
public static final int ic_launcher=0x7f020059;
public static final int left=0x7f02005a;
public static final int pause=0x7f02005b;
public static final int play=0x7f02005c;
public static final int scan=0x7f02005d;
public static final int selector_focus_common=0x7f02005e;
public static final int selector_item_select=0x7f02005f;
public static final int shape_item_focus=0x7f020060;
public static final int shape_item_frame=0x7f020061;
public static final int smile=0x7f020062;
public static final int smile_grey=0x7f020063;
}
public static final class id {
public static final int action_bar=0x7f09001c;
public static final int action_bar_activity_content=0x7f090001;
public static final int action_bar_container=0x7f09001b;
public static final int action_bar_overlay_layout=0x7f09001f;
public static final int action_bar_root=0x7f09001a;
public static final int action_bar_subtitle=0x7f090023;
public static final int action_bar_title=0x7f090022;
public static final int action_context_bar=0x7f09001d;
public static final int action_menu_divider=0x7f090002;
public static final int action_menu_presenter=0x7f090003;
public static final int action_mode_close_button=0x7f090024;
public static final int actionbar=0x7f09003c;
public static final int activity_chooser_view_content=0x7f090025;
public static final int always=0x7f09000f;
public static final int auto=0x7f09005f;
public static final int beginning=0x7f090016;
public static final int blank_space=0x7f09003e;
public static final int channal=0x7f09005b;
public static final int checkbox=0x7f09002d;
public static final int collapseActionView=0x7f090010;
public static final int default_activity_button=0x7f090028;
public static final int dialog=0x7f090014;
public static final int disableHome=0x7f090009;
public static final int dropdown=0x7f090015;
public static final int duration=0x7f090056;
public static final int duration2=0x7f090059;
public static final int ecgInfoList=0x7f09004d;
public static final int edit_query=0x7f090030;
public static final int end=0x7f090017;
public static final int epgProgress=0x7f09004c;
public static final int eventListView=0x7f090043;
public static final int expand_activities_button=0x7f090026;
public static final int expanded_menu=0x7f09002c;
public static final int fEndtime=0x7f09004a;
public static final int frequency=0x7f09005c;
public static final int fserverName=0x7f090048;
public static final int ftime=0x7f090049;
public static final int home=0x7f090000;
public static final int homeAsUp=0x7f09000a;
public static final int icon=0x7f09002a;
public static final int ifRoom=0x7f090011;
public static final int image=0x7f090027;
public static final int imageView=0x7f090042;
public static final int index=0x7f09005a;
public static final int input=0x7f09005e;
public static final int leftImage=0x7f09003d;
public static final int listMode=0x7f090006;
public static final int listView=0x7f090040;
public static final int list_item=0x7f090029;
public static final int manual=0x7f090061;
public static final int middle=0x7f090018;
public static final int msgPromt=0x7f090044;
public static final int name=0x7f09005d;
public static final int never=0x7f090012;
public static final int none=0x7f090019;
public static final int normal=0x7f090007;
public static final int pEndtime=0x7f090047;
public static final int percent=0x7f090064;
public static final int progressBar=0x7f090063;
public static final int progressContainer=0x7f090062;
public static final int progress_circular=0x7f090004;
public static final int progress_horizontal=0x7f090005;
public static final int pserverName=0x7f090045;
public static final int ptime=0x7f090046;
public static final int radio=0x7f09002f;
public static final int rightImage=0x7f09003f;
public static final int search_badge=0x7f090032;
public static final int search_bar=0x7f090031;
public static final int search_button=0x7f090033;
public static final int search_close_btn=0x7f090038;
public static final int search_edit_frame=0x7f090034;
public static final int search_go_btn=0x7f09003a;
public static final int search_mag_icon=0x7f090035;
public static final int search_plate=0x7f090036;
public static final int search_src_text=0x7f090037;
public static final int search_voice_btn=0x7f09003b;
public static final int serverName=0x7f090054;
public static final int serverName2=0x7f090057;
public static final int shortcut=0x7f09002e;
public static final int showCustom=0x7f09000b;
public static final int showHome=0x7f09000c;
public static final int showTitle=0x7f09000d;
public static final int spinner=0x7f09004b;
public static final int split_action_bar=0x7f09001e;
public static final int stop=0x7f090060;
public static final int submit_area=0x7f090039;
public static final int surfaceView=0x7f090041;
public static final int tabMode=0x7f090008;
public static final int time=0x7f090055;
public static final int time2=0x7f090058;
public static final int title=0x7f09002b;
public static final int top_action_bar=0x7f090020;
public static final int tvAudioDecoder=0x7f09004f;
public static final int tvAudioPid=0x7f09004e;
public static final int tvFrequency=0x7f090052;
public static final int tvSymbolRate=0x7f090053;
public static final int tvVideoDecoder=0x7f090051;
public static final int tvVideoPid=0x7f090050;
public static final int up=0x7f090021;
public static final int useLogo=0x7f09000e;
public static final int withText=0x7f090013;
}
public static final class integer {
/** The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
*/
public static final int abc_max_action_buttons=0x7f080000;
}
public static final class layout {
public static final int abc_action_bar_decor=0x7f030000;
public static final int abc_action_bar_decor_include=0x7f030001;
public static final int abc_action_bar_decor_overlay=0x7f030002;
public static final int abc_action_bar_home=0x7f030003;
public static final int abc_action_bar_tab=0x7f030004;
public static final int abc_action_bar_tabbar=0x7f030005;
public static final int abc_action_bar_title_item=0x7f030006;
public static final int abc_action_bar_view_list_nav_layout=0x7f030007;
public static final int abc_action_menu_item_layout=0x7f030008;
public static final int abc_action_menu_layout=0x7f030009;
public static final int abc_action_mode_bar=0x7f03000a;
public static final int abc_action_mode_close_item=0x7f03000b;
public static final int abc_activity_chooser_view=0x7f03000c;
public static final int abc_activity_chooser_view_include=0x7f03000d;
public static final int abc_activity_chooser_view_list_item=0x7f03000e;
public static final int abc_expanded_menu_layout=0x7f03000f;
public static final int abc_list_menu_item_checkbox=0x7f030010;
public static final int abc_list_menu_item_icon=0x7f030011;
public static final int abc_list_menu_item_layout=0x7f030012;
public static final int abc_list_menu_item_radio=0x7f030013;
public static final int abc_popup_menu_item_layout=0x7f030014;
public static final int abc_search_dropdown_item_icons_2line=0x7f030015;
public static final int abc_search_view=0x7f030016;
public static final int abc_simple_decor=0x7f030017;
public static final int actionbar=0x7f030018;
public static final int activity_main=0x7f030019;
public static final int activity_scan=0x7f03001a;
public static final int detailecg=0x7f03001b;
public static final int follow_event=0x7f03001c;
public static final int item_channal=0x7f03001d;
public static final int item_eit=0x7f03001e;
public static final int item_epg=0x7f03001f;
public static final int scan_dialog=0x7f030020;
public static final int support_simple_spinner_dropdown_item=0x7f030021;
}
public static final class string {
/** Content description for the action bar "home" affordance. [CHAR LIMIT=NONE]
*/
public static final int abc_action_bar_home_description=0x7f0a0001;
/** Content description for the action bar "up" affordance. [CHAR LIMIT=NONE]
*/
public static final int abc_action_bar_up_description=0x7f0a0002;
/** Content description for the action menu overflow button. [CHAR LIMIT=NONE]
*/
public static final int abc_action_menu_overflow_description=0x7f0a0003;
/** Label for the "Done" button on the far left of action mode toolbars.
*/
public static final int abc_action_mode_done=0x7f0a0000;
/** Title for a button to expand the list of activities in ActivityChooserView [CHAR LIMIT=25]
*/
public static final int abc_activity_chooser_view_see_all=0x7f0a000a;
/** ActivityChooserView - accessibility support
Description of the shwoing of a popup window with activities to choose from. [CHAR LIMIT=NONE]
*/
public static final int abc_activitychooserview_choose_application=0x7f0a0009;
/** SearchView accessibility description for clear button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_clear=0x7f0a0006;
/** SearchView accessibility description for search text field [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_query=0x7f0a0005;
/** SearchView accessibility description for search button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_search=0x7f0a0004;
/** SearchView accessibility description for submit button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_submit=0x7f0a0007;
/** SearchView accessibility description for voice button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_voice=0x7f0a0008;
/** Description of the choose target button in a ShareActionProvider (share UI). [CHAR LIMIT=NONE]
*/
public static final int abc_shareactionprovider_share_with=0x7f0a000c;
/** Description of a share target (both in the list of such or the default share button) in a ShareActionProvider (share UI). [CHAR LIMIT=NONE]
*/
public static final int abc_shareactionprovider_share_with_application=0x7f0a000b;
public static final int action_settings=0x7f0a0015;
public static final int appName=0x7f0a000e;
public static final int app_name=0x7f0a000d;
public static final int cancel=0x7f0a001e;
public static final int connectFailed=0x7f0a0012;
public static final int dateFormat=0x7f0a002a;
public static final int eitFailed=0x7f0a0013;
public static final int eventDefault=0x7f0a0030;
public static final int frequentPrompt=0x7f0a0016;
public static final int hello_world=0x7f0a0010;
public static final int initPlayerError=0x7f0a0021;
public static final int menu_settings=0x7f0a000f;
public static final int noEventInfo=0x7f0a002f;
public static final int paramError=0x7f0a0020;
public static final int playEndtime=0x7f0a002e;
public static final int playTime=0x7f0a002d;
public static final int progressTime=0x7f0a002b;
public static final int prompt=0x7f0a001b;
public static final int quitApp=0x7f0a001c;
public static final int scanAuto=0x7f0a0018;
public static final int scanManual=0x7f0a0017;
public static final int scanNoFrequency=0x7f0a002c;
public static final int scanStop=0x7f0a0019;
public static final int search=0x7f0a001f;
public static final int sure=0x7f0a001d;
public static final int timeFomart=0x7f0a0029;
public static final int title_activity_scan=0x7f0a0014;
public static final int tvAudioDecoder=0x7f0a0023;
public static final int tvAudioPid=0x7f0a0022;
public static final int tvFrequency=0x7f0a0027;
public static final int tvPercent=0x7f0a0026;
public static final int tvSymbolRate=0x7f0a0028;
public static final int tvVideoDecoder=0x7f0a0025;
public static final int tvVideoPid=0x7f0a0024;
public static final int unkown=0x7f0a001a;
public static final int yinhe=0x7f0a0011;
}
public static final class style {
/**
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
*/
public static final int AppBaseTheme=0x7f0b008b;
/** Application theme.
All customizations that are NOT specific to a particular API-level can go here.
*/
public static final int AppTheme=0x7f0b008c;
/** Mimic text appearance in select_dialog_item.xml
*/
public static final int TextAppearance_AppCompat_Base_CompactMenu_Dialog=0x7f0b0063;
public static final int TextAppearance_AppCompat_Base_SearchResult=0x7f0b006d;
public static final int TextAppearance_AppCompat_Base_SearchResult_Subtitle=0x7f0b006f;
/** Search View result styles
*/
public static final int TextAppearance_AppCompat_Base_SearchResult_Title=0x7f0b006e;
public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Large=0x7f0b0069;
public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Small=0x7f0b006a;
public static final int TextAppearance_AppCompat_Light_Base_SearchResult=0x7f0b0070;
public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle=0x7f0b0072;
/**
TextAppearance.Holo.Light.SearchResult.* are private so we extend from the default
versions instead (which are exactly the same).
*/
public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Title=0x7f0b0071;
public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large=0x7f0b006b;
public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small=0x7f0b006c;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b0035;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b0034;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b0030;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0031;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b0033;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b0032;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b001a;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0006;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0008;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0005;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0007;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b001e;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b0020;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b001d;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b001f;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Menu=0x7f0b0054;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle=0x7f0b0056;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse=0x7f0b0058;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title=0x7f0b0055;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse=0x7f0b0057;
public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle=0x7f0b0051;
public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse=0x7f0b0053;
public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title=0x7f0b0050;
public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse=0x7f0b0052;
public static final int TextAppearance_AppCompat_Widget_Base_DropDownItem=0x7f0b0061;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0021;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b002e;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b002f;
public static final int TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item=0x7f0b0062;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0028;
/** Themes in the "Theme.AppCompat" family will contain an action bar by default.
If Holo themes are available on the current platform version they will be used.
A limited Holo-styled action bar will be provided on platform versions older
than 3.0. (API 11)
These theme declarations contain any version-independent specification. Items
that need to vary based on platform version should be defined in the corresponding
"Theme.Base" theme.
Platform-independent theme providing an action bar in a dark-themed activity.
*/
public static final int Theme_AppCompat=0x7f0b0077;
/** Menu/item attributes
*/
public static final int Theme_AppCompat_Base_CompactMenu=0x7f0b0083;
public static final int Theme_AppCompat_Base_CompactMenu_Dialog=0x7f0b0084;
/** Menu/item attributes
*/
public static final int Theme_AppCompat_CompactMenu=0x7f0b007c;
public static final int Theme_AppCompat_CompactMenu_Dialog=0x7f0b007d;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b007a;
/** Platform-independent theme providing an action bar in a light-themed activity.
*/
public static final int Theme_AppCompat_Light=0x7f0b0078;
/** Platform-independent theme providing an action bar in a dark-themed activity.
*/
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0079;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b007b;
/** Base platform-dependent theme
*/
public static final int Theme_Base=0x7f0b007e;
/** Base platform-dependent theme providing an action bar in a dark-themed activity.
Base platform-dependent theme providing an action bar in a dark-themed activity.
*/
public static final int Theme_Base_AppCompat=0x7f0b0080;
public static final int Theme_Base_AppCompat_Dialog_FixedSize=0x7f0b0087;
public static final int Theme_Base_AppCompat_Dialog_Light_FixedSize=0x7f0b0088;
public static final int Theme_Base_AppCompat_DialogWhenLarge=0x7f0b0085;
/**
As we have defined the theme in values-large (for compat) and values-large takes precedence
over values-v14, we need to reset back to the Holo parent in values-large-v14. As the themes
in values-v14 & values-large-v14 are exactly the same, these "double base" themes can be
inherited from in both values-v14 and values-large-v14.
*/
public static final int Theme_Base_AppCompat_DialogWhenLarge_Base=0x7f0b0089;
/** Base platform-dependent theme providing an action bar in a light-themed activity.
Base platform-dependent theme providing an action bar in a light-themed activity.
*/
public static final int Theme_Base_AppCompat_Light=0x7f0b0081;
/** Base platform-dependent theme providing a dark action bar in a light-themed activity.
Base platform-dependent theme providing a dark action bar in a light-themed activity.
*/
public static final int Theme_Base_AppCompat_Light_DarkActionBar=0x7f0b0082;
public static final int Theme_Base_AppCompat_Light_DialogWhenLarge=0x7f0b0086;
public static final int Theme_Base_AppCompat_Light_DialogWhenLarge_Base=0x7f0b008a;
/** Base platform-dependent theme providing a light-themed activity.
*/
public static final int Theme_Base_Light=0x7f0b007f;
/** Styles in here can be extended for customisation in your application. Each utilises
one of the Base styles. If Holo themes are available on the current platform version
they will be used instead of the compat styles.
*/
public static final int Widget_AppCompat_ActionBar=0x7f0b0000;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b0002;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b0011;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0017;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b0014;
public static final int Widget_AppCompat_ActionButton=0x7f0b000b;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b000d;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b000f;
public static final int Widget_AppCompat_ActionMode=0x7f0b001b;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0b0038;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b0036;
public static final int Widget_AppCompat_Base_ActionBar=0x7f0b003a;
public static final int Widget_AppCompat_Base_ActionBar_Solid=0x7f0b003c;
public static final int Widget_AppCompat_Base_ActionBar_TabBar=0x7f0b0045;
public static final int Widget_AppCompat_Base_ActionBar_TabText=0x7f0b004b;
public static final int Widget_AppCompat_Base_ActionBar_TabView=0x7f0b0048;
/** Action Button Styles
*/
public static final int Widget_AppCompat_Base_ActionButton=0x7f0b003f;
public static final int Widget_AppCompat_Base_ActionButton_CloseMode=0x7f0b0041;
public static final int Widget_AppCompat_Base_ActionButton_Overflow=0x7f0b0043;
public static final int Widget_AppCompat_Base_ActionMode=0x7f0b004e;
public static final int Widget_AppCompat_Base_ActivityChooserView=0x7f0b0075;
/** AutoCompleteTextView styles (for SearchView)
*/
public static final int Widget_AppCompat_Base_AutoCompleteTextView=0x7f0b0073;
public static final int Widget_AppCompat_Base_DropDownItem_Spinner=0x7f0b005d;
/** Popup Menu
*/
public static final int Widget_AppCompat_Base_ListPopupWindow=0x7f0b0065;
/** Spinner Widgets
*/
public static final int Widget_AppCompat_Base_ListView_DropDown=0x7f0b005f;
public static final int Widget_AppCompat_Base_ListView_Menu=0x7f0b0064;
public static final int Widget_AppCompat_Base_PopupMenu=0x7f0b0067;
public static final int Widget_AppCompat_Base_ProgressBar=0x7f0b005a;
/** Progress Bar
*/
public static final int Widget_AppCompat_Base_ProgressBar_Horizontal=0x7f0b0059;
/** Action Bar Spinner Widgets
*/
public static final int Widget_AppCompat_Base_Spinner=0x7f0b005b;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b0024;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0b0001;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0003;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b0004;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b0012;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0013;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0018;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0019;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0015;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0016;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0b000c;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b000e;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b0010;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b001c;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b0039;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b0037;
public static final int Widget_AppCompat_Light_Base_ActionBar=0x7f0b003b;
public static final int Widget_AppCompat_Light_Base_ActionBar_Solid=0x7f0b003d;
public static final int Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse=0x7f0b003e;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar=0x7f0b0046;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse=0x7f0b0047;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabText=0x7f0b004c;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse=0x7f0b004d;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabView=0x7f0b0049;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse=0x7f0b004a;
public static final int Widget_AppCompat_Light_Base_ActionButton=0x7f0b0040;
public static final int Widget_AppCompat_Light_Base_ActionButton_CloseMode=0x7f0b0042;
public static final int Widget_AppCompat_Light_Base_ActionButton_Overflow=0x7f0b0044;
public static final int Widget_AppCompat_Light_Base_ActionMode_Inverse=0x7f0b004f;
public static final int Widget_AppCompat_Light_Base_ActivityChooserView=0x7f0b0076;
public static final int Widget_AppCompat_Light_Base_AutoCompleteTextView=0x7f0b0074;
public static final int Widget_AppCompat_Light_Base_DropDownItem_Spinner=0x7f0b005e;
public static final int Widget_AppCompat_Light_Base_ListPopupWindow=0x7f0b0066;
public static final int Widget_AppCompat_Light_Base_ListView_DropDown=0x7f0b0060;
public static final int Widget_AppCompat_Light_Base_PopupMenu=0x7f0b0068;
public static final int Widget_AppCompat_Light_Base_Spinner=0x7f0b005c;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b0025;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b002a;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b0027;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b002c;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b0023;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0029;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0026;
public static final int Widget_AppCompat_ListView_Menu=0x7f0b002d;
public static final int Widget_AppCompat_PopupMenu=0x7f0b002b;
public static final int Widget_AppCompat_ProgressBar=0x7f0b000a;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0009;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0022;
}
public static final class styleable {
/** ============================================
Attributes used to style the Action Bar.
These should be set on your theme; the default actionBarStyle will
propagate them to the correct elements as needed.
Please Note: when overriding attributes for an ActionBar style
you must specify each attribute twice: once with the "android:"
namespace prefix and once without.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBar_background com.yinhe.bighomwork:background}</code></td><td> Specifies a background drawable for the action bar.</td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit com.yinhe.bighomwork:backgroundSplit}</code></td><td> Specifies a background drawable for the bottom component of a split action bar.</td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked com.yinhe.bighomwork:backgroundStacked}</code></td><td> Specifies a background drawable for a second stacked row of the action bar.</td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout com.yinhe.bighomwork:customNavigationLayout}</code></td><td> Specifies a layout for custom navigation.</td></tr>
<tr><td><code>{@link #ActionBar_displayOptions com.yinhe.bighomwork:displayOptions}</code></td><td> Options affecting how the action bar is displayed.</td></tr>
<tr><td><code>{@link #ActionBar_divider com.yinhe.bighomwork:divider}</code></td><td> Specifies the drawable used for item dividers.</td></tr>
<tr><td><code>{@link #ActionBar_height com.yinhe.bighomwork:height}</code></td><td> Specifies a fixed height.</td></tr>
<tr><td><code>{@link #ActionBar_homeLayout com.yinhe.bighomwork:homeLayout}</code></td><td> Specifies a layout to use for the "home" section of the action bar.</td></tr>
<tr><td><code>{@link #ActionBar_icon com.yinhe.bighomwork:icon}</code></td><td> Specifies the drawable used for the application icon.</td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.yinhe.bighomwork:indeterminateProgressStyle}</code></td><td> Specifies a style resource to use for an indeterminate progress spinner.</td></tr>
<tr><td><code>{@link #ActionBar_itemPadding com.yinhe.bighomwork:itemPadding}</code></td><td> Specifies padding that should be applied to the left and right sides of
system-provided items in the bar.</td></tr>
<tr><td><code>{@link #ActionBar_logo com.yinhe.bighomwork:logo}</code></td><td> Specifies the drawable used for the application logo.</td></tr>
<tr><td><code>{@link #ActionBar_navigationMode com.yinhe.bighomwork:navigationMode}</code></td><td> The type of navigation to use.</td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding com.yinhe.bighomwork:progressBarPadding}</code></td><td> Specifies the horizontal padding on either end for an embedded progress bar.</td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle com.yinhe.bighomwork:progressBarStyle}</code></td><td> Specifies a style resource to use for an embedded progress bar.</td></tr>
<tr><td><code>{@link #ActionBar_subtitle com.yinhe.bighomwork:subtitle}</code></td><td> Specifies subtitle text used for navigationMode="normal" </td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle com.yinhe.bighomwork:subtitleTextStyle}</code></td><td> Specifies a style to use for subtitle text.</td></tr>
<tr><td><code>{@link #ActionBar_title com.yinhe.bighomwork:title}</code></td><td> Specifies title text used for navigationMode="normal" </td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle com.yinhe.bighomwork:titleTextStyle}</code></td><td> Specifies a style to use for title text.</td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_customNavigationLayout
@see #ActionBar_displayOptions
@see #ActionBar_divider
@see #ActionBar_height
@see #ActionBar_homeLayout
@see #ActionBar_icon
@see #ActionBar_indeterminateProgressStyle
@see #ActionBar_itemPadding
@see #ActionBar_logo
@see #ActionBar_navigationMode
@see #ActionBar_progressBarPadding
@see #ActionBar_progressBarStyle
@see #ActionBar_subtitle
@see #ActionBar_subtitleTextStyle
@see #ActionBar_title
@see #ActionBar_titleTextStyle
*/
public static final int[] ActionBar = {
0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028,
0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c,
0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030,
0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034,
0x7f010035, 0x7f010036, 0x7f010037
};
/**
<p>
@attr description
Specifies a background drawable for the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:background
*/
public static final int ActionBar_background = 10;
/**
<p>
@attr description
Specifies a background drawable for the bottom component of a split action bar.
<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>".
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>
@attr description
Specifies a background drawable for a second stacked row of the action bar.
<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>".
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>
@attr description
Specifies a layout for custom navigation. Overrides navigationMode.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>
@attr description
Options affecting how the action bar is displayed.
<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>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>
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>
@attr description
Specifies the drawable used for item dividers.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>
@attr description
Specifies a fixed height.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.yinhe.bighomwork:height
*/
public static final int ActionBar_height = 1;
/**
<p>
@attr description
Specifies a layout to use for the "home" section of the action bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>
@attr description
Specifies the drawable used for the application icon.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>
@attr description
Specifies a style resource to use for an indeterminate progress spinner.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>
@attr description
Specifies padding that should be applied to the left and right sides of
system-provided items in the bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.yinhe.bighomwork:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>
@attr description
Specifies the drawable used for the application logo.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>
@attr description
The type of navigation to use.
<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> Normal static title text </td></tr>
<tr><td><code>listMode</code></td><td>1</td><td> The action bar will use a selection list for navigation. </td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td> The action bar will use a series of horizontal tabs for navigation. </td></tr>
</table>
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>
@attr description
Specifies the horizontal padding on either end for an embedded progress bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.yinhe.bighomwork:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>
@attr description
Specifies a style resource to use for an embedded progress bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>
@attr description
Specifies subtitle text used for navigationMode="normal"
<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.
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>
@attr description
Specifies a style to use for subtitle text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>
@attr description
Specifies title text used for navigationMode="normal"
<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.
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:title
*/
public static final int ActionBar_title = 0;
/**
<p>
@attr description
Specifies a style to use for title text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:titleTextStyle
*/
public static final int ActionBar_titleTextStyle = 5;
/** Valid LayoutParams for views placed in the action bar as custom views.
<p>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;
/** These attributes are meant to be specified and customized by the app.
The system will read and apply them as needed. These attributes control
properties of the activity window, such as whether an action bar should
be present and whether it should overlay content.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBarWindow_windowActionBar com.yinhe.bighomwork:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBarWindow_windowActionBarOverlay com.yinhe.bighomwork:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBarWindow_windowFixedHeightMajor com.yinhe.bighomwork:windowFixedHeightMajor}</code></td><td> A fixed height for the window along the major axis of the screen,
that is, when in portrait.</td></tr>
<tr><td><code>{@link #ActionBarWindow_windowFixedHeightMinor com.yinhe.bighomwork:windowFixedHeightMinor}</code></td><td> A fixed height for the window along the minor axis of the screen,
that is, when in landscape.</td></tr>
<tr><td><code>{@link #ActionBarWindow_windowFixedWidthMajor com.yinhe.bighomwork:windowFixedWidthMajor}</code></td><td> A fixed width for the window along the major axis of the screen,
that is, when in landscape.</td></tr>
<tr><td><code>{@link #ActionBarWindow_windowFixedWidthMinor com.yinhe.bighomwork:windowFixedWidthMinor}</code></td><td> A fixed width for the window along the minor axis of the screen,
that is, when in portrait.</td></tr>
<tr><td><code>{@link #ActionBarWindow_windowSplitActionBar com.yinhe.bighomwork:windowSplitActionBar}</code></td><td></td></tr>
</table>
@see #ActionBarWindow_windowActionBar
@see #ActionBarWindow_windowActionBarOverlay
@see #ActionBarWindow_windowFixedHeightMajor
@see #ActionBarWindow_windowFixedHeightMinor
@see #ActionBarWindow_windowFixedWidthMajor
@see #ActionBarWindow_windowFixedWidthMinor
@see #ActionBarWindow_windowSplitActionBar
*/
public static final int[] ActionBarWindow = {
0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003,
0x7f010004, 0x7f010005, 0x7f010006
};
/**
<p>This symbol is the offset where the {@link com.yinhe.bighomwork.R.attr#windowActionBar}
attribute's value can be found in the {@link #ActionBarWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.yinhe.bighomwork:windowActionBar
*/
public static final int ActionBarWindow_windowActionBar = 0;
/**
<p>This symbol is the offset where the {@link com.yinhe.bighomwork.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #ActionBarWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.yinhe.bighomwork:windowActionBarOverlay
*/
public static final int ActionBarWindow_windowActionBarOverlay = 1;
/**
<p>
@attr description
A fixed height for the window along the major axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:windowFixedHeightMajor
*/
public static final int ActionBarWindow_windowFixedHeightMajor = 6;
/**
<p>
@attr description
A fixed height for the window along the minor axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:windowFixedHeightMinor
*/
public static final int ActionBarWindow_windowFixedHeightMinor = 4;
/**
<p>
@attr description
A fixed width for the window along the major axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:windowFixedWidthMajor
*/
public static final int ActionBarWindow_windowFixedWidthMajor = 3;
/**
<p>
@attr description
A fixed width for the window along the minor axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:windowFixedWidthMinor
*/
public static final int ActionBarWindow_windowFixedWidthMinor = 5;
/**
<p>This symbol is the offset where the {@link com.yinhe.bighomwork.R.attr#windowSplitActionBar}
attribute's value can be found in the {@link #ActionBarWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.yinhe.bighomwork:windowSplitActionBar
*/
public static final int ActionBarWindow_windowSplitActionBar = 2;
/** 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;
/** Size of padding on either end of a divider.
*/
public static final int[] ActionMenuView = {
};
/** Attributes that can be used with a ActionMode.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMode_background com.yinhe.bighomwork:background}</code></td><td> Specifies a background for the action mode bar.</td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit com.yinhe.bighomwork:backgroundSplit}</code></td><td> Specifies a background for the split action mode bar.</td></tr>
<tr><td><code>{@link #ActionMode_height com.yinhe.bighomwork:height}</code></td><td> Specifies a fixed height for the action mode bar.</td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle com.yinhe.bighomwork:subtitleTextStyle}</code></td><td> Specifies a style to use for subtitle text.</td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle com.yinhe.bighomwork:titleTextStyle}</code></td><td> Specifies a style to use for title text.</td></tr>
</table>
@see #ActionMode_background
@see #ActionMode_backgroundSplit
@see #ActionMode_height
@see #ActionMode_subtitleTextStyle
@see #ActionMode_titleTextStyle
*/
public static final int[] ActionMode = {
0x7f010026, 0x7f01002a, 0x7f01002b, 0x7f01002f,
0x7f010031
};
/**
<p>
@attr description
Specifies a background for the action mode bar.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:background
*/
public static final int ActionMode_background = 3;
/**
<p>
@attr description
Specifies a background for the split action mode bar.
<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>".
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>
@attr description
Specifies a fixed height for the action mode bar.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.yinhe.bighomwork:height
*/
public static final int ActionMode_height = 0;
/**
<p>
@attr description
Specifies a style to use for subtitle text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>
@attr description
Specifies a style to use for title text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:titleTextStyle
*/
public static final int ActionMode_titleTextStyle = 1;
/** Attrbitutes for a ActivityChooserView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.yinhe.bighomwork:expandActivityOverflowButtonDrawable}</code></td><td> The drawable to show in the button for expanding the activities overflow popup.</td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount com.yinhe.bighomwork:initialActivityCount}</code></td><td> The maximal number of items initially shown in the activity list.</td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f01006a, 0x7f01006b
};
/**
<p>
@attr description
The drawable to show in the button for expanding the activities overflow popup.
<strong>Note:</strong> Clients would like to set this drawable
as a clue about the action the chosen activity will perform. For
example, if share activity is to be chosen the drawable should
give a clue that sharing is to be performed.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>
@attr description
The maximal number of items initially shown in the activity list.
<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.
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount = 0;
/** Attributes that can be used with a CompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompatTextView_textAllCaps com.yinhe.bighomwork:textAllCaps}</code></td><td> Present the text in ALL CAPS.</td></tr>
</table>
@see #CompatTextView_textAllCaps
*/
public static final int[] CompatTextView = {
0x7f01006d
};
/**
<p>
@attr description
Present the text in ALL CAPS. This may use a small-caps form when available.
<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>".
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:textAllCaps
*/
public static final int CompatTextView_textAllCaps = 0;
/** Attributes that can be used with a LinearLayoutICS.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutICS_divider com.yinhe.bighomwork:divider}</code></td><td> Drawable to use as a vertical divider between buttons.</td></tr>
<tr><td><code>{@link #LinearLayoutICS_dividerPadding com.yinhe.bighomwork:dividerPadding}</code></td><td> Size of padding on either end of a divider.</td></tr>
<tr><td><code>{@link #LinearLayoutICS_showDividers com.yinhe.bighomwork:showDividers}</code></td><td> Setting for which dividers to show.</td></tr>
</table>
@see #LinearLayoutICS_divider
@see #LinearLayoutICS_dividerPadding
@see #LinearLayoutICS_showDividers
*/
public static final int[] LinearLayoutICS = {
0x7f01002e, 0x7f010055, 0x7f010056
};
/**
<p>
@attr description
Drawable to use as a vertical divider between buttons.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:divider
*/
public static final int LinearLayoutICS_divider = 0;
/**
<p>
@attr description
Size of padding on either end of a divider.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.yinhe.bighomwork:dividerPadding
*/
public static final int LinearLayoutICS_dividerPadding = 2;
/**
<p>
@attr description
Setting for which dividers to show.
<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>
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:showDividers
*/
public static final int LinearLayoutICS_showDividers = 1;
/** Base attributes that are available to all groups.
<p>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> Whether the items are capable of displaying a check mark.</td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td> Whether the items are enabled.</td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td> The ID of the group.</td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td> The category applied to all items within this group.</td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td> The order within the category applied to all items within this group.</td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td> Whether the items are shown/visible.</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>
@attr description
Whether the items are capable of displaying a check mark.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#checkableBehavior}.
@attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior = 5;
/**
<p>
@attr description
Whether the items are enabled.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#enabled}.
@attr name android:enabled
*/
public static final int MenuGroup_android_enabled = 0;
/**
<p>
@attr description
The ID of the group.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#id}.
@attr name android:id
*/
public static final int MenuGroup_android_id = 1;
/**
<p>
@attr description
The category applied to all items within this group.
(This will be or'ed with the orderInCategory attribute.)
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#menuCategory}.
@attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory = 3;
/**
<p>
@attr description
The order within the category applied to all items within this group.
(This will be or'ed with the category attribute.)
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#orderInCategory}.
@attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory = 4;
/**
<p>
@attr description
Whether the items are shown/visible.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#visible}.
@attr name android:visible
*/
public static final int MenuGroup_android_visible = 2;
/** Base attributes that are available to all Item objects.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuItem_actionLayout com.yinhe.bighomwork:actionLayout}</code></td><td> An optional layout to be used as an action view.</td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass com.yinhe.bighomwork:actionProviderClass}</code></td><td> The name of an optional ActionProvider class to instantiate an action view
and perform operations such as default action for that menu item.</td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass com.yinhe.bighomwork:actionViewClass}</code></td><td> The name of an optional View class to instantiate and use as an
action view.</td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td> The alphabetic shortcut key.</td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td> Whether the item is capable of displaying a check mark.</td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td> Whether the item is checked.</td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td> Whether the item is enabled.</td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td> The icon associated with this item.</td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td> The ID of the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td> The category applied to the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td> The numeric shortcut key.</td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td> Name of a method on the Context used to inflate the menu that will be
called when the item is clicked.</td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td> The order within the category applied to the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td> The title associated with the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td> The condensed title associated with the item.</td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td> Whether the item is shown/visible.</td></tr>
<tr><td><code>{@link #MenuItem_showAsAction com.yinhe.bighomwork:showAsAction}</code></td><td> How this item should display in the Action Bar, if present.</td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_showAsAction
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f01004d, 0x7f01004e, 0x7f01004f,
0x7f010050
};
/**
<p>
@attr description
An optional layout to be used as an action view.
See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>
@attr description
The name of an optional ActionProvider class to instantiate an action view
and perform operations such as default action for that menu item.
See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
for more info.
<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.
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>
@attr description
The name of an optional View class to instantiate and use as an
action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
<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.
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:actionViewClass
*/
public static final int MenuItem_actionViewClass = 15;
/**
<p>
@attr description
The alphabetic shortcut key. This is the shortcut when using a keyboard
with alphabetic keys.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#alphabeticShortcut}.
@attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut = 9;
/**
<p>
@attr description
Whether the item is capable of displaying a check mark.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#checkable}.
@attr name android:checkable
*/
public static final int MenuItem_android_checkable = 11;
/**
<p>
@attr description
Whether the item is checked. Note that you must first have enabled checking with
the checkable attribute or else the check mark will not appear.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#checked}.
@attr name android:checked
*/
public static final int MenuItem_android_checked = 3;
/**
<p>
@attr description
Whether the item is enabled.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#enabled}.
@attr name android:enabled
*/
public static final int MenuItem_android_enabled = 1;
/**
<p>
@attr description
The icon associated with this item. This icon will not always be shown, so
the title should be sufficient in describing this item.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#icon}.
@attr name android:icon
*/
public static final int MenuItem_android_icon = 0;
/**
<p>
@attr description
The ID of the item.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#id}.
@attr name android:id
*/
public static final int MenuItem_android_id = 2;
/**
<p>
@attr description
The category applied to the item.
(This will be or'ed with the orderInCategory attribute.)
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#menuCategory}.
@attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory = 5;
/**
<p>
@attr description
The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key)
keyboard.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#numericShortcut}.
@attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut = 10;
/**
<p>
@attr description
Name of a method on the Context used to inflate the menu that will be
called when the item is clicked.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#onClick}.
@attr name android:onClick
*/
public static final int MenuItem_android_onClick = 12;
/**
<p>
@attr description
The order within the category applied to the item.
(This will be or'ed with the category attribute.)
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#orderInCategory}.
@attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory = 6;
/**
<p>
@attr description
The title associated with the item.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#title}.
@attr name android:title
*/
public static final int MenuItem_android_title = 7;
/**
<p>
@attr description
The condensed title associated with the item. This is used in situations where the
normal title may be too long to be displayed.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#titleCondensed}.
@attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed = 8;
/**
<p>
@attr description
Whether the item is shown/visible.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#visible}.
@attr name android:visible
*/
public static final int MenuItem_android_visible = 4;
/**
<p>
@attr description
How this item should display in the Action Bar, if present.
<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> Never show this item in an action bar, show it in the overflow menu instead.
Mutually exclusive with "ifRoom" and "always". </td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td> Show this item in an action bar if there is room for it as determined
by the system. Favor this option over "always" where possible.
Mutually exclusive with "never" and "always". </td></tr>
<tr><td><code>always</code></td><td>2</td><td> Always show this item in an actionbar, even if it would override
the system's limits of how much stuff to put there. This may make
your action bar look bad on some screens. In most cases you should
use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". </td></tr>
<tr><td><code>withText</code></td><td>4</td><td> When this item is shown as an action in the action bar, show a text
label with it even if it has an icon representation. </td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td> This item's action view collapses to a normal menu
item. When expanded, the action view takes over a
larger segment of its container. </td></tr>
</table>
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:showAsAction
*/
public static final int MenuItem_showAsAction = 13;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td> Default background for the menu header.</td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td> Default horizontal divider between rows of menu items.</td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td> Default background for each menu item.</td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td> Default disabled icon alpha for each menu item that shows an icon.</td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td> Default appearance of menu item text.</td></tr>
<tr><td><code>{@link #MenuView_android_preserveIconSpacing android:preserveIconSpacing}</code></td><td> Whether space should be reserved in layout when an icon is missing.</td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td> Default vertical divider between menu items.</td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td> Default animations for the menu.</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_preserveIconSpacing
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x01010438
};
/**
<p>
@attr description
Default background for the menu header.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#headerBackground}.
@attr name android:headerBackground
*/
public static final int MenuView_android_headerBackground = 4;
/**
<p>
@attr description
Default horizontal divider between rows of menu items.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#horizontalDivider}.
@attr name android:horizontalDivider
*/
public static final int MenuView_android_horizontalDivider = 2;
/**
<p>
@attr description
Default background for each menu item.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#itemBackground}.
@attr name android:itemBackground
*/
public static final int MenuView_android_itemBackground = 5;
/**
<p>
@attr description
Default disabled icon alpha for each menu item that shows an icon.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#itemIconDisabledAlpha}.
@attr name android:itemIconDisabledAlpha
*/
public static final int MenuView_android_itemIconDisabledAlpha = 6;
/**
<p>
@attr description
Default appearance of menu item text.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#itemTextAppearance}.
@attr name android:itemTextAppearance
*/
public static final int MenuView_android_itemTextAppearance = 1;
/**
<p>
@attr description
Whether space should be reserved in layout when an icon is missing.
<p>This is a private symbol.
@attr name android:preserveIconSpacing
*/
public static final int MenuView_android_preserveIconSpacing = 7;
/**
<p>
@attr description
Default vertical divider between menu items.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#verticalDivider}.
@attr name android:verticalDivider
*/
public static final int MenuView_android_verticalDivider = 3;
/**
<p>
@attr description
Default animations for the menu.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#windowAnimationStyle}.
@attr name android:windowAnimationStyle
*/
public static final int MenuView_android_windowAnimationStyle = 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_imeOptions android:imeOptions}</code></td><td> The IME options to set on the query text field.</td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td> The input type to set on the query text field.</td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td> An optional maximum width of the SearchView.</td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault com.yinhe.bighomwork:iconifiedByDefault}</code></td><td> The default state of the SearchView.</td></tr>
<tr><td><code>{@link #SearchView_queryHint com.yinhe.bighomwork:queryHint}</code></td><td> An optional query hint string to be displayed in the empty query field.</td></tr>
</table>
@see #SearchView_android_imeOptions
@see #SearchView_android_inputType
@see #SearchView_android_maxWidth
@see #SearchView_iconifiedByDefault
@see #SearchView_queryHint
*/
public static final int[] SearchView = {
0x0101011f, 0x01010220, 0x01010264, 0x7f01005a,
0x7f01005b
};
/**
<p>
@attr description
The IME options to set on the query text field.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#imeOptions}.
@attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions = 2;
/**
<p>
@attr description
The input type to set on the query text field.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#inputType}.
@attr name android:inputType
*/
public static final int SearchView_android_inputType = 1;
/**
<p>
@attr description
An optional maximum width of the SearchView.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#maxWidth}.
@attr name android:maxWidth
*/
public static final int SearchView_android_maxWidth = 0;
/**
<p>
@attr description
The default state of the SearchView. If true, it will be iconified when not in
use and expanded when clicked.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.yinhe.bighomwork:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 3;
/**
<p>
@attr description
An optional query hint string to be displayed in the empty query field.
<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.
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:queryHint
*/
public static final int SearchView_queryHint = 4;
/** 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_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td> Horizontal offset from the spinner widget for positioning the dropdown
in spinnerMode="dropdown".</td></tr>
<tr><td><code>{@link #Spinner_android_dropDownSelector android:dropDownSelector}</code></td><td> List selector to use for spinnerMode="dropdown" display.</td></tr>
<tr><td><code>{@link #Spinner_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td> Vertical offset from the spinner widget for positioning the dropdown in
spinnerMode="dropdown".</td></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td> Width of the dropdown in spinnerMode="dropdown".</td></tr>
<tr><td><code>{@link #Spinner_android_gravity android:gravity}</code></td><td> Gravity setting for positioning the currently selected item.</td></tr>
<tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td> Background drawable to use for the dropdown in spinnerMode="dropdown".</td></tr>
<tr><td><code>{@link #Spinner_disableChildrenWhenDisabled com.yinhe.bighomwork:disableChildrenWhenDisabled}</code></td><td> Whether this spinner should mark child views as enabled/disabled when
the spinner itself is enabled/disabled.</td></tr>
<tr><td><code>{@link #Spinner_popupPromptView com.yinhe.bighomwork:popupPromptView}</code></td><td> Reference to a layout to use for displaying a prompt in the dropdown for
spinnerMode="dropdown".</td></tr>
<tr><td><code>{@link #Spinner_prompt com.yinhe.bighomwork:prompt}</code></td><td> The prompt to display when the spinner's dialog is shown.</td></tr>
<tr><td><code>{@link #Spinner_spinnerMode com.yinhe.bighomwork:spinnerMode}</code></td><td> Display mode for spinner options.</td></tr>
</table>
@see #Spinner_android_dropDownHorizontalOffset
@see #Spinner_android_dropDownSelector
@see #Spinner_android_dropDownVerticalOffset
@see #Spinner_android_dropDownWidth
@see #Spinner_android_gravity
@see #Spinner_android_popupBackground
@see #Spinner_disableChildrenWhenDisabled
@see #Spinner_popupPromptView
@see #Spinner_prompt
@see #Spinner_spinnerMode
*/
public static final int[] Spinner = {
0x010100af, 0x01010175, 0x01010176, 0x01010262,
0x010102ac, 0x010102ad, 0x7f010051, 0x7f010052,
0x7f010053, 0x7f010054
};
/**
<p>
@attr description
Horizontal offset from the spinner widget for positioning the dropdown
in spinnerMode="dropdown".
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#dropDownHorizontalOffset}.
@attr name android:dropDownHorizontalOffset
*/
public static final int Spinner_android_dropDownHorizontalOffset = 4;
/**
<p>
@attr description
List selector to use for spinnerMode="dropdown" display.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#dropDownSelector}.
@attr name android:dropDownSelector
*/
public static final int Spinner_android_dropDownSelector = 1;
/**
<p>
@attr description
Vertical offset from the spinner widget for positioning the dropdown in
spinnerMode="dropdown".
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#dropDownVerticalOffset}.
@attr name android:dropDownVerticalOffset
*/
public static final int Spinner_android_dropDownVerticalOffset = 5;
/**
<p>
@attr description
Width of the dropdown in spinnerMode="dropdown".
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#dropDownWidth}.
@attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth = 3;
/**
<p>
@attr description
Gravity setting for positioning the currently selected item.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#gravity}.
@attr name android:gravity
*/
public static final int Spinner_android_gravity = 0;
/**
<p>
@attr description
Background drawable to use for the dropdown in spinnerMode="dropdown".
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#popupBackground}.
@attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground = 2;
/**
<p>
@attr description
Whether this spinner should mark child views as enabled/disabled when
the spinner itself is enabled/disabled.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.yinhe.bighomwork:disableChildrenWhenDisabled
*/
public static final int Spinner_disableChildrenWhenDisabled = 9;
/**
<p>
@attr description
Reference to a layout to use for displaying a prompt in the dropdown for
spinnerMode="dropdown". This layout must contain a TextView with the id
{@code @android:id/text1} to be populated with the prompt text.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:popupPromptView
*/
public static final int Spinner_popupPromptView = 8;
/**
<p>
@attr description
The prompt to display when the spinner's dialog is shown.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:prompt
*/
public static final int Spinner_prompt = 6;
/**
<p>
@attr description
Display mode for spinner options.
<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>dialog</code></td><td>0</td><td> Spinner options will be presented to the user as a dialog window. </td></tr>
<tr><td><code>dropdown</code></td><td>1</td><td> Spinner options will be presented to the user as an inline dropdown
anchored to the spinner widget itself. </td></tr>
</table>
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:spinnerMode
*/
public static final int Spinner_spinnerMode = 7;
/** These are the standard attributes that make up a complete theme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Theme_actionDropDownStyle com.yinhe.bighomwork:actionDropDownStyle}</code></td><td> Default ActionBar dropdown style.</td></tr>
<tr><td><code>{@link #Theme_dropdownListPreferredItemHeight com.yinhe.bighomwork:dropdownListPreferredItemHeight}</code></td><td> The preferred item height for dropdown lists.</td></tr>
<tr><td><code>{@link #Theme_listChoiceBackgroundIndicator com.yinhe.bighomwork:listChoiceBackgroundIndicator}</code></td><td> Drawable used as a background for selected list items.</td></tr>
<tr><td><code>{@link #Theme_panelMenuListTheme com.yinhe.bighomwork:panelMenuListTheme}</code></td><td> Default Panel Menu style.</td></tr>
<tr><td><code>{@link #Theme_panelMenuListWidth com.yinhe.bighomwork:panelMenuListWidth}</code></td><td> Default Panel Menu width.</td></tr>
<tr><td><code>{@link #Theme_popupMenuStyle com.yinhe.bighomwork:popupMenuStyle}</code></td><td> Default PopupMenu style.</td></tr>
</table>
@see #Theme_actionDropDownStyle
@see #Theme_dropdownListPreferredItemHeight
@see #Theme_listChoiceBackgroundIndicator
@see #Theme_panelMenuListTheme
@see #Theme_panelMenuListWidth
@see #Theme_popupMenuStyle
*/
public static final int[] Theme = {
0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a,
0x7f01004b, 0x7f01004c
};
/**
<p>
@attr description
Default ActionBar dropdown style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:actionDropDownStyle
*/
public static final int Theme_actionDropDownStyle = 0;
/**
<p>
@attr description
The preferred item height for dropdown lists.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.yinhe.bighomwork:dropdownListPreferredItemHeight
*/
public static final int Theme_dropdownListPreferredItemHeight = 1;
/**
<p>
@attr description
Drawable used as a background for selected list items.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:listChoiceBackgroundIndicator
*/
public static final int Theme_listChoiceBackgroundIndicator = 5;
/**
<p>
@attr description
Default Panel Menu style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:panelMenuListTheme
*/
public static final int Theme_panelMenuListTheme = 4;
/**
<p>
@attr description
Default Panel Menu width.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.yinhe.bighomwork:panelMenuListWidth
*/
public static final int Theme_panelMenuListWidth = 3;
/**
<p>
@attr description
Default PopupMenu style.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>This is a private symbol.
@attr name com.yinhe.bighomwork:popupMenuStyle
*/
public static final int Theme_popupMenuStyle = 2;
/** 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> Boolean that controls whether a view can take focus.</td></tr>
<tr><td><code>{@link #View_paddingEnd com.yinhe.bighomwork:paddingEnd}</code></td><td> Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.</td></tr>
<tr><td><code>{@link #View_paddingStart com.yinhe.bighomwork:paddingStart}</code></td><td> Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.</td></tr>
</table>
@see #View_android_focusable
@see #View_paddingEnd
@see #View_paddingStart
*/
public static final int[] View = {
0x010100da, 0x7f010038, 0x7f010039
};
/**
<p>
@attr description
Boolean that controls whether a view can take focus. By default the user can not
move focus to a view; by setting this attribute to true the view is
allowed to take focus. This value does not impact the behavior of
directly calling {@link android.view.View#requestFocus}, which will
always request focus regardless of this view. It only impacts where
focus navigation will try to move focus.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#focusable}.
@attr name android:focusable
*/
public static final int View_android_focusable = 0;
/**
<p>
@attr description
Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.yinhe.bighomwork:paddingEnd
*/
public static final int View_paddingEnd = 2;
/**
<p>
@attr description
Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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>This is a private symbol.
@attr name com.yinhe.bighomwork:paddingStart
*/
public static final int View_paddingStart = 1;
};
}
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBarWindow_windowActionBar com.yinhe.bighomwork:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBarWindow_windowActionBarOverlay com.yinhe.bighomwork:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBarWindow_windowFixedHeightMajor com.yinhe.bighomwork:windowFixedHeightMajor}</code></td><td> A fixed height for the window along the major axis of the screen,
that is, when in portrait.</td></tr>
<tr><td><code>{@link #ActionBarWindow_windowFixedHeightMinor com.yinhe.bighomwork:windowFixedHeightMinor}</code></td><td> A fixed height for the window along the minor axis of the screen,
that is, when in landscape.</td></tr>
<tr><td><code>{@link #ActionBarWindow_windowFixedWidthMajor com.yinhe.bighomwork:windowFixedWidthMajor}</code></td><td> A fixed width for the window along the major axis of the screen,
that is, when in landscape.</td></tr>
<tr><td><code>{@link #ActionBarWindow_windowFixedWidthMinor com.yinhe.bighomwork:windowFixedWidthMinor}</code></td><td> A fixed width for the window along the minor axis of the screen,
that is, when in portrait.</td></tr>
<tr><td><code>{@link #ActionBarWindow_windowSplitActionBar com.yinhe.bighomwork:windowSplitActionBar}</code></td><td></td></tr>
</table>
@see #ActionBarWindow_windowActionBar
@see #ActionBarWindow_windowActionBarOverlay
@see #ActionBarWindow_windowFixedHeightMajor
@see #ActionBarWindow_windowFixedHeightMinor
@see #ActionBarWindow_windowFixedWidthMajor
@see #ActionBarWindow_windowFixedWidthMinor
@see #ActionBarWindow_windowSplitActionBar
*/
public static final int[] ActionBarWindow = {
0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003,
0x7f010004, 0x7f010005, 0x7f010006
};
/**
<p>This symbol is the offset where the {@link com.yinhe.bighomwork.R.attr#windowActionBar}
attribute's value can be found in the {@link #ActionBarWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.yinhe.bighomwork:windowActionBar
*/
public static final int ActionBarWindow_windowActionBar = 0;
/**
<p>This symbol is the offset where the {@link com.yinhe.bighomwork.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #ActionBarWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.yinhe.bighomwork:windowActionBarOverlay
*/
public static final int ActionBarWindow_windowActionBarOverlay = 1;
/**
<p>
@attr description
A fixed height for the window along the major axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:windowFixedHeightMajor
*/
public static final int ActionBarWindow_windowFixedHeightMajor = 6;
/**
<p>
@attr description
A fixed height for the window along the minor axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:windowFixedHeightMinor
*/
public static final int ActionBarWindow_windowFixedHeightMinor = 4;
/**
<p>
@attr description
A fixed width for the window along the major axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:windowFixedWidthMajor
*/
public static final int ActionBarWindow_windowFixedWidthMajor = 3;
/**
<p>
@attr description
A fixed width for the window along the minor axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
<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.
<p>This is a private symbol.
@attr name com.yinhe.bighomwork:windowFixedWidthMinor
*/
public static final int ActionBarWindow_windowFixedWidthMinor = 5;
/**
<p>This symbol is the offset where the {@link com.yinhe.bighomwork.R.attr#windowSplitActionBar}
attribute's value can be found in the {@link #ActionBarWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.yinhe.bighomwork:windowSplitActionBar
*/
public static final int ActionBarWindow_windowSplitActionBar = 2;
/** 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;
/** Size of padding on either end of a divider.
*/
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="lef | [
"[email protected]"
] | |
1d123209cfab6fc523ee50102ce998e0319e405b | 75ec6c6aa6edf6770b7e240e0e2abdffbccb74bb | /mobile/src/main/java/sketchagram/chalmers/com/sketchagram/AddContactFragment.java | 45f62b8b70b13e967fa1d0d4c7c08d4b9473f568 | [] | no_license | frapperino/sketchagram | 332674fa6815519ec30cd55116e7cf5f67e4d4f2 | e560622c269c24b89833eb076c5b0f68359762be | refs/heads/master | 2021-06-05T00:39:06.977980 | 2016-10-04T18:04:29 | 2016-10-04T18:04:29 | 29,531,499 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,284 | java | package sketchagram.chalmers.com.sketchagram;
import android.app.Activity;
import android.app.ListFragment;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AbsListView;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListAdapter;
import android.widget.TextView;
import java.util.ArrayList;
import java.util.Arrays;
import sketchagram.chalmers.com.model.UserManager;
/**
* A fragment representing a list of Items.
* <p/>
* Large screen devices (such as tablets) are supported by replacing the ListView
* with a GridView.
* <p/>
* Activities containing this fragment MUST implement the {@link OnFragmentInteractionListener}
* interface.
* @deprecated Couldn't find any usage of this class. Redundant.
*/
public class AddContactFragment extends ListFragment implements AbsListView.OnItemClickListener {
// TODO: Rename parameter arguments, choose names that match
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
private static final String ARG_PARAM1 = "param1";
private static final String ARG_PARAM2 = "param2";
// TODO: Rename and change types of parameters
private String mParam1;
private String mParam2;
private OnFragmentInteractionListener mListener;
/**
* The fragment's ListView/GridView.
*/
private AbsListView mListView;
/**
* The Adapter which will be used to populate the ListView/GridView with
* Views.
*/
private ListAdapter mAdapter;
// TODO: Rename and change types of parameters
public static AddContactFragment newInstance(String param1, String param2) {
AddContactFragment fragment = new AddContactFragment();
Bundle args = new Bundle();
args.putString(ARG_PARAM1, param1);
args.putString(ARG_PARAM2, param2);
fragment.setArguments(args);
return fragment;
}
/**
* Mandatory empty constructor for the fragment manager to instantiate the
* fragment (e.g. upon screen orientation changes).
*/
public AddContactFragment() {
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (getArguments() != null) {
mParam1 = getArguments().getString(ARG_PARAM1);
mParam2 = getArguments().getString(ARG_PARAM2);
}
// Sets the adapter to customized one which enables our layout of items.
//TODO: replace with real found contacts.
mAdapter = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_list_item_1, new ArrayList<>(Arrays.asList("Contact 1", "Contact 2")));
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_add_contact, container, false);
// Set the adapter
mListView = (AbsListView) view.findViewById(android.R.id.list);
((AdapterView<ListAdapter>) mListView).setAdapter(mAdapter);
// Set OnItemClickListener so we can be notified on item clicks
mListView.setOnItemClickListener(this);
return view;
}
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
try {
mListener = (OnFragmentInteractionListener) activity;
} catch (ClassCastException e) {
throw new ClassCastException(activity.toString()
+ " must implement OnFragmentInteractionListener");
}
}
@Override
public void onDetach() {
super.onDetach();
mListener = null;
}
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
if (null != mListener) {
// Notify the active callbacks interface (the activity, if the
// fragment is attached to one) that an item has been selected.
mListener.onFragmentInteraction(UserManager.getInstance().getAllContacts().get(position).toString());
}
}
/**
* The default content for this Fragment has a TextView that is shown when
* the list is empty. If you would like to change the text, call this method
* to supply the text it should use.
*/
public void setEmptyText(CharSequence emptyText) {
View emptyView = mListView.getEmptyView();
if (emptyView instanceof TextView) {
((TextView) emptyView).setText(emptyText);
}
}
/**
* This interface must be implemented by activities that contain this
* fragment to allow an interaction in this fragment to be communicated
* to the activity and potentially other fragments contained in that
* activity.
* <p/>
* See the Android Training lesson <a href=
* "http://developer.android.com/training/basics/fragments/communicating.html"
* >Communicating with Other Fragments</a> for more information.
*/
public interface OnFragmentInteractionListener {
// TODO: Update argument type and name
public void onFragmentInteraction(String id);
}
}
| [
"[email protected]"
] | |
aff1268705244df870267a2d74e8d3f1dde1827c | c7b3d524992342066c23410a7879ac0ff8875f99 | /src/test/java/com/revature/pirate/ApplicationTests.java | 451c2c07e17e88b732ab2b263b4ac91d025b8acf | [] | no_license | 2011JavaReact/7w-PirateServer-SpringBoot | 11700fa9440e596c6a55be84934f3e11e6953722 | 23d7dc9eb10778833ac9bb9fa77de93c7c7c6a15 | refs/heads/main | 2023-02-05T20:51:51.172007 | 2020-12-31T01:02:52 | 2020-12-31T01:02:52 | 323,383,542 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 205 | java | package com.revature.pirate;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class ApplicationTests {
@Test
void contextLoads() {
}
}
| [
"[email protected]"
] | |
5d03f623115b917a1e72ec1c00cac4a1ecd3cbaa | 60dbe74497dc130ede3fb61d0b00e5e13637f9c6 | /TileWorld/Agent1.java | 5536415390c4e39e2c289b64ac744199f3031d76 | [] | no_license | marianadlv/TileWorld | e74c4274445c982cfb480b91d1a78b6f58b11c90 | 6070f21129f7a01b5a407ce3a65067282180cd3b | refs/heads/main | 2023-01-02T12:07:30.728420 | 2020-10-24T01:22:26 | 2020-10-24T01:22:26 | 306,780,704 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,751 | java |
/**
* Write a description of class Agent1 here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Agent1 extends Agent
{
private static Agent1 a = null;
private static int dir;
private static boolean bloque;
private static boolean hoyo;
private Agent1() {}
public static Agent1 getInstance() {
if (a == null) a = new Agent1();
return a;
}
public void sense() {
for (int i=0; i<sizeMatrix; i++) { // tener mapa
for (int j=0; j<sizeMatrix; j++) {
matrix[i][j] = Game.getInstance().getMatrix(i,j);
//System.out.println(matrix[i][j]);
}
}
}
public void update() {
sense();
decide();
}
public void decide() {
if (matrix[rPos][cPos].getType() == 3) {
alive = false;
return;
}
matrix[rPos][cPos].setType(4);
boolean mover = false;
if (rPos!=0 && rPos!=1 && matrix[rPos-1][cPos].getType()==2) { // si arriba es bloque
if (matrix[rPos-2][cPos].getType()!=2 && matrix[rPos-2][cPos].getType()!=1) {
mover = true;
if (matrix[rPos-2][cPos].getType()==0) actFirst(1,true,false); // mover arriba el bloque
else if (matrix[rPos-2][cPos].getType()==3) actFirst (1,true,true); // tapar hoyo arriba
return;
}
} if (cPos!=sizeMatrix-1 && cPos!=sizeMatrix-2 && matrix[rPos][cPos+1].getType()==2) { // si derecha es bloque
if (matrix[rPos][cPos+2].getType()!=2 && matrix[rPos][cPos+2].getType()!=1) {
mover = true;
if (matrix[rPos][cPos+2].getType()==0) actFirst(4,true,false); // mover derecha el bloque
else if (matrix[rPos][cPos+2].getType()==3) actFirst (4,true,true); // tapar hoyo derecha
return;
}
} if (rPos!=sizeMatrix-1 && rPos!=sizeMatrix-2 && matrix[rPos+1][cPos].getType()==2) { // si abajo es bloque
if (matrix[rPos+2][cPos].getType()!=2 && matrix[rPos+2][cPos].getType()!=1) {
mover = true;
if (matrix[rPos+2][cPos].getType()==0) actFirst(2,true,false); // mover abajo el bloque
else if (matrix[rPos+2][cPos].getType()==3) actFirst (2,true,true); // tapar hoyo abajo
return;
}
} if (cPos!=0 && cPos!=1 && matrix[rPos][cPos-1].getType()==2) { // si izquierda es bloque
if (matrix[rPos][cPos-2].getType()!=2 && matrix[rPos][cPos-2].getType()!=1) {
mover = true;
if (matrix[rPos][cPos-2].getType()==0) actFirst(3,true,false); // mover izquierda el bloque
else if (matrix[rPos][cPos-2].getType()==3) actFirst (3,true,true); // tapar hoyo izquierda
return;
}
}
if ( (rPos!=0 && matrix[rPos-1][cPos].getType()==0)||(cPos!=sizeMatrix-1 && matrix[rPos][cPos+1].getType()==0)||(rPos!=sizeMatrix-1 && matrix[rPos+1][cPos].getType()==0)||(cPos!=0 && matrix[rPos][cPos-1].getType()==0) ) {
while (true) {
int dir = (int)(Math.random()*4+1);
if (rPos!=0 && dir == 1 && matrix[rPos-1][cPos].getType()==0) { // si arriba está libre
mover = true;
actFirst(1,false,false);
return;
} else if (cPos!=sizeMatrix-1 && dir == 4 && matrix[rPos][cPos+1].getType()==0) { // si derecha está libre
mover = true;
actFirst(4,false,false);
return;
} else if (rPos!=sizeMatrix-1 && dir == 2 && matrix[rPos+1][cPos].getType()==0) { // si abajo está libre
mover = true;
actFirst(2,false,false);
return;
} else if (cPos!=0 && dir == 3 && matrix[rPos][cPos-1].getType()==0) { // si izquierda está libre
mover = true;
actFirst(3,false,false);
return;
}
}
} else alive = false;
}
// 1 = arriba, 2 = abajo, 3 = izquierda, 4 = derecha
public void actFirst(int d, boolean b, boolean h) {
dir = d;
bloque = b;
hoyo = h;
act();
}
public void act() {
if (dir == 1) {
if (bloque && !hoyo) {
Game.getInstance().matrix[rPos-2][cPos].setType(2);
Game.getInstance().matrix[rPos-1][cPos].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
moves++;
} else if (bloque && hoyo) {
if (matrix[rPos-2][cPos].getHoyo() == 1) {
Game.getInstance().matrix[rPos-2][cPos].setType(0);
Game.getInstance().matrix[rPos-1][cPos].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
Game.getInstance().matrix[rPos-2][cPos].decHoyo();
points++;
moves++;
} else {
Game.getInstance().matrix[rPos-1][cPos].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
Game.getInstance().matrix[rPos-2][cPos].decHoyo();
points++;
moves++;
}
} else if (!bloque && !hoyo) {
Game.getInstance().matrix[rPos-1][cPos].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
moves++;
}
} else if (dir == 2) { // abajo
if (bloque && !hoyo) {
Game.getInstance().matrix[rPos+2][cPos].setType(2);
Game.getInstance().matrix[rPos+1][cPos].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
moves++;
} else if (bloque && hoyo) {
if (matrix[rPos+2][cPos].getHoyo() == 1) {
Game.getInstance().matrix[rPos+2][cPos].setType(0);
Game.getInstance().matrix[rPos+1][cPos].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
Game.getInstance().matrix[rPos+2][cPos].decHoyo();
points++;
moves++;
} else {
Game.getInstance().matrix[rPos+1][cPos].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
Game.getInstance().matrix[rPos+2][cPos].decHoyo();
points++;
moves++;
}
} else if (!bloque && !hoyo) {
Game.getInstance().matrix[rPos+1][cPos].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
moves++;
}
} else if (dir == 3) {
if (bloque && !hoyo) {
Game.getInstance().matrix[rPos][cPos-2].setType(2);
Game.getInstance().matrix[rPos][cPos-1].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
moves++;
} else if (bloque && hoyo) {
if (matrix[rPos][cPos-2].getHoyo() == 1) {
Game.getInstance().matrix[rPos][cPos-2].setType(0);
Game.getInstance().matrix[rPos][cPos-1].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
Game.getInstance().matrix[rPos][cPos-2].decHoyo();
points++;
moves++;
} else {
Game.getInstance().matrix[rPos][cPos-1].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
Game.getInstance().matrix[rPos][cPos-2].decHoyo();
points++;
moves++;
}
} else if (!bloque && !hoyo) {
Game.getInstance().matrix[rPos][cPos-1].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
moves++;
}
} else if (dir == 4) {
if (bloque && !hoyo) {
Game.getInstance().matrix[rPos][cPos+2].setType(2);
Game.getInstance().matrix[rPos][cPos+1].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
moves++;
} else if (bloque && hoyo) {
if (matrix[rPos][cPos+2].getHoyo() == 1) {
Game.getInstance().matrix[rPos][cPos+2].setType(0);
Game.getInstance().matrix[rPos][cPos+1].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
Game.getInstance().matrix[rPos][cPos+2].decHoyo();
points++;
moves++;
} else {
Game.getInstance().matrix[rPos][cPos+1].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
Game.getInstance().matrix[rPos][cPos+2].decHoyo();
points++;
moves++;
}
} else if (!bloque && !hoyo) {
Game.getInstance().matrix[rPos][cPos+1].setType(4);
Game.getInstance().matrix[rPos][cPos].setType(0);
moves++;
}
}
}
}
| [
"[email protected]"
] | |
5c87d4efc58af45c7fc356f8eb0480ea0518619b | 932d0794570db14742e6c65ed672e262a7b18954 | /src/com/zj/middleware/zookeeper/TestMainClient.java | 806ffbc71d10fc348c1ab9902a21543bd3b91a33 | [] | no_license | hnzhouzhoujay/SelfLearn | e628505a7157eb81d214e562cc4cafff353f326a | 28dbbc29d2230daa5f508735df72fcbcd3c1f49d | refs/heads/master | 2021-01-10T10:05:15.291744 | 2015-12-28T10:19:59 | 2015-12-28T10:19:59 | 48,687,061 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,169 | java | package com.zj.middleware.zookeeper;
import org.apache.log4j.xml.DOMConfigurator;
import org.apache.zookeeper.WatchedEvent;
import org.apache.zookeeper.Watcher;
import org.apache.zookeeper.ZooKeeper;
import java.io.IOException;
/**
* TestMainClient
* <p/>
* Author By: junshan
* Created Date: 2010-9-7 14:11:44
*/
public class TestMainClient implements Watcher {
protected static ZooKeeper zk = null;
protected static Integer mutex;
int sessionTimeout = 10000;
protected String root;
public TestMainClient(String connectString) {
if(zk == null){
try {
String configFile = this.getClass().getResource("").getPath()+"log4j.xml";
DOMConfigurator.configure(configFile);
System.out.println("创建一个新的连接:");
zk = new ZooKeeper(connectString, sessionTimeout, this);
mutex = new Integer(-1);
} catch (IOException e) {
zk = null;
}
}
}
synchronized public void process(WatchedEvent event) {
synchronized (mutex) {
mutex.notify();
}
}
}
| [
"[email protected]"
] | |
6ab7892090e45457dfde913c87317980e43f7d62 | e106d9379e87ebe1d12d5cf4a60f166572de3fd4 | /Trie/src/Solution.java | add63736d79a503593365069815b7936e4ae697a | [] | no_license | sagar-shah/Interview-Questions-Prep | 04d1268f54b976d14c072bfbd26b4ffaf08baf53 | 98a5547da3998588ddfd7f77b2a7f596c06f8503 | refs/heads/master | 2021-01-12T05:26:40.489347 | 2017-03-23T19:48:33 | 2017-03-23T19:48:33 | 77,927,863 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 282 | java |
public class Solution {
public static void main(String[] args) {
// TODO Auto-generated method stub
Trie t = new Trie();
t.addWord("test");
t.addWord("tesla");
// System.out.println(t.getNoOfWordsWithPrefix("tesla"));
System.out.println(t.isWord("tesl"));
}
}
| [
"[email protected]"
] | |
79b573f2c9bbaec547d317a92fcdb049a50724ea | 1b87858f5f83af5a050b3b7b29bc0a9b8e082992 | /app/src/main/java/com/tuquyet/soundcloud/service/TrackReceiver.java | 7f79adb4414b1e414eae90c21497e455fc995996 | [] | no_license | ducbet/SoundClound_04 | 3f38381c3af893aecd6f22d89fa56c82483f1d8d | 6bb2165796c933bb4285a6fd250a0cc46b447eb0 | refs/heads/master | 2021-06-07T01:11:17.906155 | 2020-06-30T15:10:02 | 2020-06-30T15:10:02 | 91,163,659 | 0 | 0 | null | 2020-06-30T15:10:03 | 2017-05-13T09:32:07 | Java | UTF-8 | Java | false | false | 2,019 | java | package com.tuquyet.soundcloud.service;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import static com.tuquyet.soundcloud.service.PlayBackGroundService.ACTION_SEEK;
/**
* Created by tmd on 23/05/2017.
*/
public class TrackReceiver extends BroadcastReceiver {
private static final String TAG = "MY_TrackReceiver";
public static final String ACTION_PLAY = "com.example.tmd.service.ACTION_PLAY";
public static final String ACTION_PAUSE = "com.example.tmd.service.ACTION_PAUSE";
public static final String ACTION_UPDATE_PROGRESSBAR = "com.example.tmd.service.ACTION_UPDATE_PROGRESSBAR";
public static final String ACTION_RETURN_TRACK = "com.example.tmd.service.ACTION_RETURN_TRACK";
public static final String ACTION_RETURN_SONG_STATUS = "com.example.tmd.service.ACTION_RETURN_SONG_STATUS";
private OnReceiverListener mListener;
public TrackReceiver(OnReceiverListener listener) {
mListener = listener;
}
@Override
public void onReceive(Context context, Intent intent) {
switch (intent.getAction()) {
case ACTION_PLAY:
mListener.onPause(intent);
break;
case ACTION_PAUSE:
mListener.onPlay(intent);
break;
case ACTION_UPDATE_PROGRESSBAR:
mListener.onUpdateProgressBar(intent);
break;
case ACTION_RETURN_TRACK:
mListener.onReturnTrackFromService(intent);
break;
case ACTION_RETURN_SONG_STATUS:
mListener.onReturnSongStatus(intent);
break;
default:
break;
}
}
public interface OnReceiverListener {
void onPause(Intent intent);
void onPlay(Intent intent);
void onUpdateProgressBar(Intent intent);
void onReturnTrackFromService(Intent intent);
void onReturnSongStatus(Intent intent);
}
}
| [
"[email protected]"
] | |
3fe286fd147447443686c5e14556b73dd185bd7a | faa39de6e7cb89ccd4600e10a23a56e71ff6ec6d | /src/main/java/com/ragul/car/Controller/UserController.java | 68605a08f72a2fdd7c762b0fa814ceb77fe4d6a4 | [] | no_license | Pubuduboteju/AutoMaster-Backend-Server | ee9f3274658df6dbbcc838c9c1d6b6e971f075c0 | b3b16061d0b36902bc7304fdee97c65fccfa6c02 | refs/heads/master | 2021-06-19T20:25:18.116702 | 2020-02-28T20:14:39 | 2020-02-28T20:14:39 | 218,555,250 | 0 | 0 | null | 2021-06-04T02:28:50 | 2019-10-30T15:08:24 | Java | UTF-8 | Java | false | false | 1,588 | java | package com.ragul.car.Controller;
import com.ragul.car.Model.User;
import com.ragul.car.Service.UserService;
import com.ragul.car.payload.ApiResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
@RestController
@RequestMapping("/api/user")
public class UserController {
@Autowired
UserService userService;
// @GetMapping("")
// public ResponseEntity<ApiResponse<User>> getUserById(@RequestParam Long id){
// User user = userService.findUserById(id);
// return new ResponseEntity<>(new ApiResponse<>(user), HttpStatus.OK);
//
// }
@PostMapping("")
public ResponseEntity<ApiResponse<User>> saveUser(@RequestBody User user){
try{
userService.saveUser(user);
return new ResponseEntity<>(new ApiResponse<>(user), HttpStatus.OK);
}catch (Exception ex){
return new ResponseEntity<>(new ApiResponse<>(user), HttpStatus.CONFLICT);
}
}
// @PostMapping("/login")
// public ResponseEntity<ApiResponse<User>> login(@RequestParam String userName, @RequestBody String password){
// User user = userService.findUserByUserName(userName);
// if(user.getPassword().equals(password)){
// return new ResponseEntity<>(new ApiResponse<>(user), HttpStatus.ACCEPTED);
// }else{
// return new ResponseEntity<>(new ApiResponse<>(new User()), HttpStatus.UNAUTHORIZED);
// }
//
// }
}
| [
"[email protected]"
] | |
eff230a72adff125c11b982b5a5d88234cd78dc3 | 147d25e89172ae076e57799b84b3e407eaee7d74 | /src/java/incomingCMDao/incomingCMDao.java | 93d267382d98e8e53d6b112e8a8133e65a4ea823 | [] | no_license | PaurashKumar/StateWareHouseCorporation | 49b6db056e4480756e60d9715fbe3e09eda3b7f1 | d99b9c57403bdd2ffdad6ce3a8bb9cbbd01fc181 | refs/heads/master | 2023-05-10T06:58:44.573446 | 2021-06-08T16:59:40 | 2021-06-08T16:59:40 | 375,083,727 | 4 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,796 | java |
package incomingCMDao;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
public class incomingCMDao {
private String dburl="jdbc:mysql://localhost:3306/paurash";
private String dbnane="root";
private String dbpassword="root";
private String dbDriver="com.mysql.jdbc.Driver";
public void loadDriver(String dbDriver){
try {
Class.forName(dbDriver);
} catch (ClassNotFoundException ex) {
Logger.getLogger(incomingCMDao.class.getName()).log(Level.SEVERE, null, ex);
}
}
public Connection getConnection() throws SQLException{
return DriverManager.getConnection(dburl, dbnane, dbpassword);
}
public String insert(incomingCMGETSET member) throws SQLException{
loadDriver(dbDriver);
Connection con=getConnection();
System.out.println("Connnection is:"+con);
String result="data entered successfully";
String sql="insert into incomingcm values(?,?,?,?,?,?)";
try{
PreparedStatement ps=con.prepareStatement(sql);
ps.setString(1,member.getMid());
ps.setString(2,member.getOrdername());
ps.setString(3,member.getBags());
ps.setString(4,member.getDate());
ps.setString(5,member.getVnumber());
ps.setString(6,member.getDname());
ps.executeUpdate();
}catch(SQLException e){
e.printStackTrace();
result="date not entered";
}
return result;
}
}
| [
"paurashdewangan"
] | paurashdewangan |
3f1754f6872843da1e33496fc9495afc6ccfbad1 | b893149bec9ce4c745dea7d671c83b9bdc247508 | /DBS_GUI/src/gui/FormDataObject.java | 5b1ea006145ae5ef16951561ae1f9b46a404b6f0 | [] | no_license | kuste/JavaOOP_Vjezbe | 4468e280661820e7647f46566038a0b1ade2a09a | 04ae6174efa7bf775c7f2304c119919cf0e9db4c | refs/heads/master | 2020-04-03T13:25:39.191296 | 2019-02-13T19:11:06 | 2019-02-13T19:11:06 | 155,284,379 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 791 | java | package gui;
import java.util.EventObject;
public class FormDataObject extends EventObject {
private String name;
private String mail;
private String education;
private String region;
private String employment;
public FormDataObject(Object source, String name, String mail, String education, String region, String employment) {
super(source);
this.name = name;
this.mail = mail;
this.education = education;
this.region = region;
this.employment = employment;
}
public String getName() {
return name;
}
public String getMail() {
return mail;
}
public String getEducation() {
return education;
}
public String getRegion() {
return region;
}
public String getEmployment() {
return employment;
}
}
| [
"student@PC-16"
] | student@PC-16 |
a1f00eb589555b3821a0337523d26c9fdf1fb7e2 | 90942762d5ddd89f0e9f6916cc6ae8c59b71b917 | /Bloco 1/Eclipse/12-07-2021/Preguica.java | 84f254c9d7d1a04eb1bc935aba3183cfc1b94082 | [] | no_license | arydsr/Bootcamp-Generation | 1864156e0477e374851653b0b23216f95daa1a05 | 36a206cbbc9182af548f3bfd1d1c350d022a7163 | refs/heads/main | 2023-07-14T19:10:56.743888 | 2021-08-27T12:50:16 | 2021-08-27T12:50:16 | 389,167,546 | 0 | 1 | null | null | null | null | ISO-8859-3 | Java | false | false | 442 | java | package br.com.generation.exerciciospolimorfismo;
public class Preguica implements Animal{
public void som() {
System.out.println("......zzzRROONC");
}
@Override
public void correr() {
System.out.println("~ s l o w m o t i o n ~");
}
@Override
public void idade() {
System.out.println("tem 8 anos");
}
@Override
public void nome() {
System.out.println("Araci, a preguiça");
}
}
| [
"[email protected]"
] | |
0c53284fba4ff6388c5636ae40c5803390b5f581 | 4366af37587cd642b260ff8aab4e19a7ba1499e1 | /src/com/hepengju/java09/new11_other/_Multijar.java | 5dcf13f135212bcf30940a444a097d30a22d610f | [
"Apache-2.0"
] | permissive | hepengju/java-new-features | f78575fbc3c114a21718074c62680df8d1c72e3c | d7a1f389ccc84144ef4875faaa9bb7949b67da4d | refs/heads/master | 2022-07-02T23:29:13.836880 | 2022-06-17T08:06:59 | 2022-06-17T08:06:59 | 175,573,869 | 33 | 16 | Apache-2.0 | 2020-10-13T12:22:35 | 2019-03-14T07:52:33 | Java | UTF-8 | Java | false | false | 761 | java | package com.hepengju.java09.new11_other;
import org.junit.Test;
/**
* 多版本兼容jar包
*
* <pre>
*
* 使用说明:多版本兼容jar功能能让你创建仅在特定版本的Java环境中运行库程序选择使用的class版本。
*
* </pre>
*
* @author WGR
*
*/
public class _Multijar {
/**
*
* 根据不同的jdk,执行不同的class版本
* 当环境为jdk8时,输出:Generated strings: [Java, 8]
* 当环境为jdk9时,输出:Generated strings: [Java, 9]
*
* 说明:由于项目改成maven项目,之前测试用的自定义jar不方便使用,故这里只做演示阐述。
*/
@Test
public void testMultijatr() {
//Application.testMultiJar();
}
}
| [
"[email protected]"
] | |
af6edad84dc20850aeddafd85ac442577876ff31 | 6b87d6b9280e24e54aa916c15d0a46539dc79985 | /src/com/company/Main.java | 7ff63210ab0e2877e096a8d08c375221530c1923 | [] | no_license | McMyers411/pairProgramming | 74ae438ce8976bd5c2168ef42565341019c25df6 | be85b401d94a8d2fdbc0c95206375e67cad97978 | refs/heads/master | 2021-01-11T03:48:50.810039 | 2016-10-19T18:31:52 | 2016-10-19T18:31:52 | 71,387,437 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 308 | java | package com.company;
public class Main {
public static void main(String[] args) {
Food cost = new Food(2.50);
cost.nextFood(2.80);
cost.nextFood2(2.00);
cost.nextFood1(1.80);
double addPrices = cost.callID();
System.out.println(addPrices);
}
}
| [
"[email protected]"
] | |
22a53c0b0061d308c741ec7129ecc438b4b7d9dd | bf2966abae57885c29e70852243a22abc8ba8eb0 | /aws-java-sdk-ssm/src/main/java/com/amazonaws/services/simplesystemsmanagement/model/transform/DescribeMaintenanceWindowScheduleRequestProtocolMarshaller.java | aa00f783c7af17eac67a4961c440c6972b2452ac | [
"Apache-2.0"
] | permissive | kmbotts/aws-sdk-java | ae20b3244131d52b9687eb026b9c620da8b49935 | 388f6427e00fb1c2f211abda5bad3a75d29eef62 | refs/heads/master | 2021-12-23T14:39:26.369661 | 2021-07-26T20:09:07 | 2021-07-26T20:09:07 | 246,296,939 | 0 | 0 | Apache-2.0 | 2020-03-10T12:37:34 | 2020-03-10T12:37:33 | null | UTF-8 | Java | false | false | 2,995 | java | /*
* Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.simplesystemsmanagement.model.transform;
import javax.annotation.Generated;
import com.amazonaws.SdkClientException;
import com.amazonaws.Request;
import com.amazonaws.http.HttpMethodName;
import com.amazonaws.services.simplesystemsmanagement.model.*;
import com.amazonaws.transform.Marshaller;
import com.amazonaws.protocol.*;
import com.amazonaws.protocol.Protocol;
import com.amazonaws.annotation.SdkInternalApi;
/**
* DescribeMaintenanceWindowScheduleRequest Marshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
@SdkInternalApi
public class DescribeMaintenanceWindowScheduleRequestProtocolMarshaller implements
Marshaller<Request<DescribeMaintenanceWindowScheduleRequest>, DescribeMaintenanceWindowScheduleRequest> {
private static final OperationInfo SDK_OPERATION_BINDING = OperationInfo.builder().protocol(Protocol.AWS_JSON).requestUri("/")
.httpMethodName(HttpMethodName.POST).hasExplicitPayloadMember(false).hasPayloadMembers(true)
.operationIdentifier("AmazonSSM.DescribeMaintenanceWindowSchedule").serviceName("AWSSimpleSystemsManagement").build();
private final com.amazonaws.protocol.json.SdkJsonProtocolFactory protocolFactory;
public DescribeMaintenanceWindowScheduleRequestProtocolMarshaller(com.amazonaws.protocol.json.SdkJsonProtocolFactory protocolFactory) {
this.protocolFactory = protocolFactory;
}
public Request<DescribeMaintenanceWindowScheduleRequest> marshall(DescribeMaintenanceWindowScheduleRequest describeMaintenanceWindowScheduleRequest) {
if (describeMaintenanceWindowScheduleRequest == null) {
throw new SdkClientException("Invalid argument passed to marshall(...)");
}
try {
final ProtocolRequestMarshaller<DescribeMaintenanceWindowScheduleRequest> protocolMarshaller = protocolFactory.createProtocolMarshaller(
SDK_OPERATION_BINDING, describeMaintenanceWindowScheduleRequest);
protocolMarshaller.startMarshalling();
DescribeMaintenanceWindowScheduleRequestMarshaller.getInstance().marshall(describeMaintenanceWindowScheduleRequest, protocolMarshaller);
return protocolMarshaller.finishMarshalling();
} catch (Exception e) {
throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
}
}
}
| [
""
] | |
b2273da680fdc939b57614a35c6d72b2500b4272 | 7e43a18ae52c16104ba96ef2f9de98604045c74f | /src/com/actelion/research/gwt/chemlib/com/actelion/research/util/hash/HashSetInt.java | e936499d9e78eff65837a3163c5d3955f95568ad | [
"BSD-3-Clause"
] | permissive | SPKorhonen/openchemlib-js | 07e25ece486201f8a974ed33f7aba492fb205bd6 | 25c6fbdc93a6d7dbe588a43e794af85c52eeaa47 | refs/heads/master | 2023-08-28T03:35:01.642961 | 2021-11-06T09:10:35 | 2021-11-06T09:10:35 | 276,291,293 | 0 | 0 | null | 2020-07-01T06:06:13 | 2020-07-01T06:06:12 | null | UTF-8 | Java | false | false | 5,891 | java | package com.actelion.research.util.hash;
import java.util.List;
import com.actelion.research.calc.ArrayUtilsCalc;
/**
*
* HashSetInt
* <p>Copyright: Actelion Ltd., Inc. All Rights Reserved
* This software is the proprietary information of Actelion Pharmaceuticals, Ltd.
* Use is subject to license terms.</p>
* @author Modest von Korff
* @version 1.0
* 4 Mar 2010 MvK: Start implementation
*/
public class HashSetInt {
private int [][] data;
/**
* The default initial capacity - MUST be a power of two.
*/
private static final int DEFAULT_INITIAL_CAPACITY = 256;
/**
* The maximum capacity, used if a higher value is implicitly specified
* by either of the constructors with arguments.
* MUST be a power of two <= 1<<30.
*/
private static final int MAXIMUM_CAPACITY = 1 << 30;
/**
* The load factor used when none specified in constructor.
**/
private static final float DEFAULT_LOAD_FACTOR = 0.75f;
private int threshold;
private int size;
private double loadFactor;
public HashSetInt() {
data = new int [DEFAULT_INITIAL_CAPACITY][];
loadFactor = DEFAULT_LOAD_FACTOR;
threshold = (int)(DEFAULT_INITIAL_CAPACITY * loadFactor);
}
public HashSetInt(int capacity) {
double log2 = Math.log10(capacity)/Math.log10(2);
int capPowOf2 = (int)(Math.pow(2, (int)(log2+1)));
data = new int [capPowOf2][];
loadFactor = DEFAULT_LOAD_FACTOR;
threshold = (int)(capPowOf2 * loadFactor);
}
public HashSetInt(List<Integer> li) {
this(li.size());
for (Integer v : li) {
add(v);
}
}
public HashSetInt(int [] a) {
this(a.length);
for (int v : a) {
add(v);
}
}
/**
* Returns index for hash code h.
*/
static int indexFor(int h, int length) {
return h & (length-1);
}
public void clear(){
for (int i = 0; i < data.length; i++) {
data[i]=null;
}
size=0;
}
/**
* If the key is already present nothing will happen.
* @param v
* @return false if key is already present.
*/
public boolean add(int v) {
if(isEntry(v)){
return false;
}
int hash = v;
int indexMap = indexFor(hash, data.length);
int [] arrRowNew = null;
if(data[indexMap]==null) {
arrRowNew = new int [1];
} else {
arrRowNew = new int [data[indexMap].length+1];
System.arraycopy(data[indexMap], 0, arrRowNew, 0, data[indexMap].length);
}
arrRowNew[arrRowNew.length-1]=v;
data[indexMap] = arrRowNew;
size++;
if(size>threshold){
resize(data.length * 2);
}
return true;
}
public boolean add(int [] a) {
boolean allAdded = true;
for (int i = 0; i < a.length; i++) {
if(!add(a[i])){
allAdded = false;
}
}
return allAdded;
}
public boolean add(List<Integer> li) {
boolean allAdded = true;
for (int i = 0; i < li.size(); i++) {
if(!add(li.get(i))){
allAdded = false;
}
}
return allAdded;
}
void resize(int newCapacity) {
// System.err.println("Resize");
int [][] dataNew = new int [newCapacity][];
transfer(dataNew);
int oldCapacity = data.length;
if (oldCapacity == MAXIMUM_CAPACITY) {
threshold = Integer.MAX_VALUE;
return;
}
threshold = (int)(newCapacity * loadFactor);
}
public void remove(int v) {
int index = indexFor(v, data.length);
int [] arr = data[index];
if(arr==null){
return;
}
int indRow = -1;
for (int i = 0; i < arr.length; i++) {
if(arr[i]==v){
indRow=i;
break;
}
}
if(indRow==-1)
return;
if(arr.length==1){
data[index]=null;
} else {
int [] arrNew = new int [arr.length-1];
int cc=0;
for (int i = 0; i < arr.length; i++) {
if(arr[i]!=v){
arrNew[cc++]=arr[i];
}
}
data[index]=arrNew;
}
size--;
}
void transfer(int [][] dataNew) {
int size = data.length;
for (int i = 0; i < size; i++) {
int [] arr = data[i];
if(arr==null)
continue;
for (int j = 0; j < arr.length; j++) {
int indexNew = indexFor(arr[j], dataNew.length);
int [] arrRowNew = null;
if(dataNew[indexNew]==null) {
arrRowNew = new int [1];
} else {
arrRowNew = new int [dataNew[indexNew].length+1];
System.arraycopy(dataNew[indexNew], 0, arrRowNew, 0, dataNew[indexNew].length);
}
arrRowNew[arrRowNew.length-1]=arr[j];
dataNew[indexNew]= arrRowNew;
}
}
data = dataNew;
}
public boolean contains(int v) {
return isEntry(v);
}
private boolean isEntry(int v) {
int indexMap = indexFor(v, data.length);
int [] arr = data[indexMap];
if(arr==null)
return false;
boolean keyfound=false;
for (int i = 0; i < arr.length; i++) {
if(arr[i] == v) {
keyfound=true;
break;
}
}
return keyfound;
}
public int size(){
return size;
}
/**
* Deep copy.
* @return
*/
public int [] getValues(){
int [] a = new int [size];
int cc=0;
for (int i = 0; i < data.length; i++) {
if(data[i]==null)
continue;
for (int j = 0; j < data[i].length; j++) {
a[cc++]=data[i][j];
}
}
return a;
}
public List<Integer> toList(){
return ArrayUtilsCalc.toList(getValues());
}
}
| [
"[email protected]"
] | |
d37c5394c6434ce4e6fc01b86cefe3416525ec30 | 9f4e0ba804b42ff21cd67c38448c578850f5187e | /services/src/main/java/admin/commands/AddWriteCommand.java | 770997ef3332d251a9972b7333b3df052133602a | [] | no_license | followhappyq/News | ebf9480e3bb2328ba601fed491ab60e58aedd321 | 0296cab7bf6e3373876eefaea17ae0ad41cec8ce | refs/heads/master | 2020-05-05T06:20:46.782807 | 2015-06-10T10:16:40 | 2015-06-10T10:16:40 | 35,234,445 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,841 | java | package admin.commands;
import dao.Dao;
import dao.MyDao;
import data.Page;
import data.PagesEntity;
import org.apache.log4j.Logger;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
public class AddWriteCommand extends Command {
private static final Logger log = Logger.getLogger(AddWriteCommand.class);
@Override
public void execute(HttpServletRequest request, HttpServletResponse response) {
PagesEntity page = new PagesEntity();
Dao dao = MyDao.getDao();
try {
page.setId(request.getParameter("id"));
page.setParentid(request.getParameter("parentid"));
page.setTitle(request.getParameter("title"));
page.setTitle4Menu(request.getParameter("title4menu"));
page.setUser(Integer.parseInt(request.getParameter("user")));
page.setDate(request.getParameter("date"));
page.setMaintext(request.getParameter("maintext"));
dao.addPage(page);
response.sendRedirect("index.jsp");
} catch (IOException e) {
log.error("IOException � ������ execute ������ AddWriteCommand! -- " + e); // ������ � ���-����
e.printStackTrace();
} catch (NumberFormatException e2) {
log.error("NumberFormatException � ������ execute ������ AddWriteCommand! -- " + e2); // ������ � ���-����
e2.printStackTrace();
} catch (NullPointerException e1) {
log.error("NullPointerException � ������ execute ������ AddWriteCommand! -- " + e1); // ������ � ���-����
e1.printStackTrace();
}
}
}
| [
"[email protected]"
] | |
e13bccf7dc5f0b4723db3885d5de46771c5a12c0 | 880600150dc09c76ab7e6ad5d1bca59c1a7adf08 | /src/main/java/reports/TeamManagerReport.java | ba7160881f14ba4206e8b226eab24ba195d83de8 | [] | no_license | archonth/jaksiemasz | 5d7365de185de2777474547a99dda20038d7aa49 | eca9df815689b55f8ad28351fb5bdb98b3b59330 | refs/heads/master | 2021-08-30T18:14:04.661881 | 2017-12-18T22:52:01 | 2017-12-18T22:52:01 | 114,695,276 | 0 | 0 | null | 2017-12-18T22:47:38 | 2017-12-18T22:47:38 | null | UTF-8 | Java | false | false | 539 | java | package reports;
import employees.TeamManager;
import structures.PrintEmployeeService;
public class TeamManagerReport extends AbstractReport {
private final TeamManager teamManager;
public TeamManagerReport(TeamManager teamManager) {
this.teamManager = teamManager;
}
@Override
public void show() {
teamManager.getAllSubordinatesList()
.stream()
.sorted(ReportComparator.employeeLexicalSort())
.forEach(PrintEmployeeService::printEmployee);
}
}
| [
"[email protected]"
] | |
957ca33e82347eb432c9e922e5525075d2a5d713 | f993d230932c5aaf46e2e6585e537f7b9fcb6fe6 | /core/src/test/java/vrampal/connectfour/core/data/PlayerDataTest.java | c4ebf2b793ce0596bdfce07eb91baa253a5d4230 | [
"MIT"
] | permissive | vrampal/connectfour | 480106d5a84716f38aa114adc84f9109182bb610 | 466abaab4bf764b18d19f6e36a66285241d7fb43 | refs/heads/master | 2023-09-01T17:53:55.255065 | 2022-05-06T11:35:11 | 2022-05-06T11:35:11 | 19,424,199 | 4 | 0 | MIT | 2023-03-12T19:43:23 | 2014-05-04T10:27:33 | Java | UTF-8 | Java | false | false | 1,907 | java | package vrampal.connectfour.core.data;
import static org.junit.Assert.assertTrue;
import java.io.IOException;
import org.junit.Before;
import org.junit.Test;
import vrampal.connectfour.core.GenericSerializeTester;
public class PlayerDataTest {
// Object under test
private PlayerData playerData;
@Before
public void setUp() {
playerData = new PlayerData("Test player", 'T');
}
/**
* Not very useful but required to check we do not broke API.
*/
@Test
public void testToString() {
String string = playerData.toString();
assertTrue(string.contains("Test player"));
}
@Test
public void testJavaSerialize() throws IOException, ClassNotFoundException {
GenericSerializeTester serializeTester = new GenericSerializeTester();
serializeTester.testJavaSerialize(playerData, PlayerData.class);
}
@Test
public void testGoogleGson() {
GenericSerializeTester serializeTester = new GenericSerializeTester();
serializeTester.testGoogleGson(playerData, PlayerData.class);
}
@Test
public void testJacksonJson() throws IOException {
GenericSerializeTester serializeTester = new GenericSerializeTester();
serializeTester.testJacksonJson(playerData, PlayerData.class);
}
@Test
public void testJacksonXml() throws IOException {
GenericSerializeTester serializeTester = new GenericSerializeTester();
serializeTester.testJacksonXml(playerData, PlayerData.class);
}
@Test
public void testJacksonYaml() throws IOException {
GenericSerializeTester serializeTester = new GenericSerializeTester();
serializeTester.testJacksonYaml(playerData, PlayerData.class);
}
@Test
public void testXstream() {
GenericSerializeTester serializeTester = new GenericSerializeTester();
serializeTester.testXstream(playerData, PlayerData.class);
}
}
| [
"[email protected]"
] | |
493c113c1b20de72ea34e791534ea64d1b09156a | d799a4bc1b00200d3589060cc5624ccfdca4d885 | /fisa-backend/src/main/java/de/fraunhofer/iosb/ilt/fisabackend/service/mapper/external/geojson/GeoJsonObjectMapper.java | 03c81e0836b148c2f1ffe02952ef24bd8d249ef4 | [
"MIT"
] | permissive | FISA-Team/FISA | 0e0142cb971fdc7d250d8b7abe7030dc41c5fb04 | 0508841e70aaa66220e75016cf1166647184b02a | refs/heads/master | 2023-01-02T10:59:17.366300 | 2020-10-23T16:32:57 | 2020-10-23T16:32:57 | 294,176,043 | 0 | 2 | MIT | 2020-10-23T16:32:59 | 2020-09-09T17:00:05 | TypeScript | UTF-8 | Java | false | false | 2,010 | java | package de.fraunhofer.iosb.ilt.fisabackend.service.mapper.external.geojson;
import de.fraunhofer.iosb.ilt.fisabackend.service.mapper.Mapper;
import de.fraunhofer.iosb.ilt.fisabackend.service.mapper.sta.StaComplexAttributeMapper;
import de.fraunhofer.iosb.ilt.sta.model.Entity;
import de.fraunhofer.iosb.ilt.sta.model.EntityType;
import org.geojson.GeoJsonObject;
import org.geojson.Point;
import java.util.HashMap;
import java.util.Map;
import java.util.function.BiConsumer;
import java.util.function.Function;
public class GeoJsonObjectMapper<T extends Entity<T>> extends StaComplexAttributeMapper<T, GeoJsonObject> {
private final Map<String, Mapper> mappers;
/**
* Create a new mapper for {@link GeoJsonObject} attributes.
*
* @param attributeName the name of the attribute.
* @param getter the function to access the attribute.
* @param setter the setter to create a new {@link GeoJsonObject}.
* @param entityType the entity type the attribute belongs to.
*/
public GeoJsonObjectMapper(String attributeName, Function<T, GeoJsonObject> getter,
BiConsumer<T, GeoJsonObject> setter, EntityType entityType) {
super(attributeName, getter, entityType);
this.mappers = new HashMap<>();
this.mappers.put("point", new PointMapper<T>(entityType, "point", getter.andThen(gjo -> {
if (!(gjo instanceof Point)) {
return new Point();
}
return (Point) gjo;
}), setter::accept));
this.mappers.put("polygon", new PolygonMapper<T>(entityType, "polygon", setter::accept));
}
@Override
public Mapper resolve(String mapsTo) {
int delimiterIndex = mapsTo.indexOf(DELIMITER);
if (delimiterIndex == -1) {
// TODO handle properly
return mappers.get(mapsTo);
}
return mappers.get(mapsTo.substring(0, delimiterIndex)).resolve(mapsTo.substring(delimiterIndex + 1));
}
}
| [
"[email protected]"
] | |
9524ec874ec43ecf922ba22724bff9e0fefecb33 | 6eeb5e13a292080ab2089161a668d1a0e4b8e17d | /Support System For Project Team Formation/src/QuadCentriod.java | 92803d8ccf7723d055c12f7be59bafabe02a6b04 | [] | no_license | Omar-Hassan-37/Genetic-Algorithms | febfd2c4df88016326d438cc6cff2f06cde743a1 | c57617167a3d57a4019cf5e3ca335975757bc21b | refs/heads/main | 2023-06-01T19:33:48.206921 | 2021-06-17T19:10:14 | 2021-06-17T19:10:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,300 | java | import java.util.ArrayList;
import java.util.HashMap;
public class QuadCentriod extends Centriod{
public QuadCentriod(HashMap<String, ArrayList<Set>> ruleSets) {
super(ruleSets);
// TODO Auto-generated constructor stub
}
@Override
HashMap<String, Double> getCentriod()
{
HashMap<String, Double> centriodSet = new HashMap<String, Double>();
ArrayList<Set> points = getRuleSets().get(getRuleSets().values());
for(Set set : points)
{
double centriod = calcCentriod(set.getPoints(), set.getY_axis());
centriodSet.put(set.getSetName(), centriod);
}
return centriodSet;
}
@Override
double calcCentriod(ArrayList<Integer> x_axis, int[] y_axis)
{
double centriodSum = 0;
double centriod = 0;
double signedArea = calcSignedArea(x_axis, y_axis);
for(int i = 0; i < (x_axis.size() - 1); i++)
{
centriodSum += (x_axis.get(i) + x_axis.get(i+1)) * ((x_axis.get(i) * y_axis[i + 1]) - (x_axis.get(i + 1) * y_axis[i]));
}
centriod = centriodSum / (6 * signedArea);
return centriod;
}
double calcSignedArea(ArrayList<Integer> x_axis, int[] y_axis)
{
double signedArea = 0;
for(int i = 0; i < (x_axis.size() - 1); i++)
{
signedArea += (x_axis.get(i) * y_axis[i + 1]) - (x_axis.get(i + 1) * y_axis[i]);
}
return (signedArea / 2);
}
}
| [
"[email protected]"
] | |
b686524ee23336fd2c0b4beb6877a69e06668831 | d74783c8fc3c01ee1cef3f9e47eef88934b144f9 | /app/src/main/java/com/blibli/demo/company/model/web/CreateUserResponse.java | fb00b8e1edf441d61d100e7303dbfb8e3f34af91 | [] | no_license | ramadhanriandi/bantosan-backend | d1249a3a6a88df333841c208628ee28355ee4db6 | 003e0dbb5d5ef795ccc9be05e1433a38eabb41d6 | refs/heads/master | 2021-01-03T07:55:56.913152 | 2020-08-01T11:15:59 | 2020-08-01T11:15:59 | 239,988,741 | 0 | 0 | null | 2020-08-01T11:16:00 | 2020-02-12T10:46:14 | Java | UTF-8 | Java | false | false | 296 | java | package com.blibli.demo.company.model.web;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class CreateUserResponse {
private String username;
private String email;
}
| [
"[email protected]"
] | |
03f32047f3d15de56895e9232100672029ce8f40 | 3c91c2400904cac4767e1ba2acaca477b1b78184 | /wuliuxm/src/main/java/com/hlp/services/BiglogLogisticscontroltableService.java | c27552feef68c7ca7d380a38aa8f9b33c600536e | [] | no_license | lhwtl/WuLiu | f69042603695206f42325596933accd4e250d944 | 460eabd26900822612105b281702cda2e749b84f | refs/heads/master | 2022-06-25T09:43:02.368566 | 2019-12-04T01:28:02 | 2019-12-04T01:28:02 | 222,389,529 | 0 | 0 | null | 2022-06-17T02:39:15 | 2019-11-18T07:37:10 | Java | UTF-8 | Java | false | false | 544 | java | package com.hlp.services;
import com.hlp.model.BiglogLogisticscontroltable;
import java.util.List;
public interface BiglogLogisticscontroltableService {
List<BiglogLogisticscontroltable> selectBiglogLogisticscontroltable();
int insertBiglogLogisticscontroltable(BiglogLogisticscontroltable b);
int updateBiglogLogisticscontroltable(BiglogLogisticscontroltable b);
int deleteBiglogLogisticscontroltable(Short id);
List<BiglogLogisticscontroltable> selectBiglogLogisticscontroltablemh(BiglogLogisticscontroltable b);
}
| [
"[email protected]"
] | |
e041810ca3c7799dc20d318a626960bfb3b6b00f | b4a557174523100183a96ad42cfb7b2a87e6428e | /app/src/main/java/com/mc/books/fragments/notification/INotificationPresenter.java | 20eeb46c9048533724e5be0a8005e23408be6313 | [] | no_license | atuyen/mcbook_android_test | fe9b35ddb02f41933e352188b7ed012b378e550b | befa1156b1474ace15e7f08f2821b44f3ac02296 | refs/heads/master | 2022-09-09T07:26:23.877307 | 2020-06-03T08:27:43 | 2020-06-03T08:27:43 | 269,031,867 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 305 | java | package com.mc.books.fragments.notification;
import com.hannesdorfmann.mosby3.mvp.MvpPresenter;
import com.hannesdorfmann.mosby3.mvp.MvpView;
public interface INotificationPresenter<V extends MvpView> extends MvpPresenter<V> {
void getListNotification(int start);
void getUnReadNoti(int id);
}
| [
"[email protected]"
] |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.