R.txt 64.1 KB
Newer Older
冷佳娟's avatar
冷佳娟 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
int anim abc_fade_in 0x7f040000
int anim abc_fade_out 0x7f040001
int anim abc_grow_fade_in_from_bottom 0x7f040002
int anim abc_popup_enter 0x7f040003
int anim abc_popup_exit 0x7f040004
int anim abc_shrink_fade_out_from_bottom 0x7f040005
int anim abc_slide_in_bottom 0x7f040006
int anim abc_slide_in_top 0x7f040007
int anim abc_slide_out_bottom 0x7f040008
int anim abc_slide_out_top 0x7f040009
int anim catalyst_push_up_in 0x7f04000a
int anim catalyst_push_up_out 0x7f04000b
int attr actionBarDivider 0x7f01007e
int attr actionBarItemBackground 0x7f01007f
int attr actionBarPopupTheme 0x7f010078
int attr actionBarSize 0x7f01007d
int attr actionBarSplitStyle 0x7f01007a
int attr actionBarStyle 0x7f010079
int attr actionBarTabBarStyle 0x7f010074
int attr actionBarTabStyle 0x7f010073
int attr actionBarTabTextStyle 0x7f010075
int attr actionBarTheme 0x7f01007b
int attr actionBarWidgetTheme 0x7f01007c
int attr actionButtonStyle 0x7f010098
int attr actionDropDownStyle 0x7f010094
int attr actionLayout 0x7f01004b
int attr actionMenuTextAppearance 0x7f010080
int attr actionMenuTextColor 0x7f010081
int attr actionModeBackground 0x7f010084
int attr actionModeCloseButtonStyle 0x7f010083
int attr actionModeCloseDrawable 0x7f010086
int attr actionModeCopyDrawable 0x7f010088
int attr actionModeCutDrawable 0x7f010087
int attr actionModeFindDrawable 0x7f01008c
int attr actionModePasteDrawable 0x7f010089
int attr actionModePopupWindowStyle 0x7f01008e
int attr actionModeSelectAllDrawable 0x7f01008a
int attr actionModeShareDrawable 0x7f01008b
int attr actionModeSplitBackground 0x7f010085
int attr actionModeStyle 0x7f010082
int attr actionModeWebSearchDrawable 0x7f01008d
int attr actionOverflowButtonStyle 0x7f010076
int attr actionOverflowMenuStyle 0x7f010077
int attr actionProviderClass 0x7f01004d
int attr actionViewClass 0x7f01004c
int attr activityChooserViewStyle 0x7f0100a0
int attr actualImageScaleType 0x7f01003a
int attr alertDialogButtonGroupStyle 0x7f0100c2
int attr alertDialogCenterButtons 0x7f0100c3
int attr alertDialogStyle 0x7f0100c1
int attr alertDialogTheme 0x7f0100c4
int attr arrowHeadLength 0x7f01002b
int attr arrowShaftLength 0x7f01002c
int attr autoCompleteTextViewStyle 0x7f0100c9
int attr background 0x7f01000c
int attr backgroundImage 0x7f01003b
int attr backgroundSplit 0x7f01000e
int attr backgroundStacked 0x7f01000d
int attr backgroundTint 0x7f0100e5
int attr backgroundTintMode 0x7f0100e6
int attr barLength 0x7f01002d
int attr borderlessButtonStyle 0x7f01009d
int attr buttonBarButtonStyle 0x7f01009a
int attr buttonBarNegativeButtonStyle 0x7f0100c7
int attr buttonBarNeutralButtonStyle 0x7f0100c8
int attr buttonBarPositiveButtonStyle 0x7f0100c6
int attr buttonBarStyle 0x7f010099
int attr buttonPanelSideLayout 0x7f01001f
int attr buttonStyle 0x7f0100ca
int attr buttonStyleSmall 0x7f0100cb
int attr buttonTint 0x7f010025
int attr buttonTintMode 0x7f010026
int attr checkboxStyle 0x7f0100cc
int attr checkedTextViewStyle 0x7f0100cd
int attr closeIcon 0x7f010059
int attr closeItemLayout 0x7f01001c
int attr collapseContentDescription 0x7f0100dc
int attr collapseIcon 0x7f0100db
int attr color 0x7f010027
int attr colorAccent 0x7f0100ba
int attr colorButtonNormal 0x7f0100be
int attr colorControlActivated 0x7f0100bc
int attr colorControlHighlight 0x7f0100bd
int attr colorControlNormal 0x7f0100bb
int attr colorPrimary 0x7f0100b8
int attr colorPrimaryDark 0x7f0100b9
int attr colorSwitchThumbNormal 0x7f0100bf
int attr commitIcon 0x7f01005e
int attr contentInsetEnd 0x7f010017
int attr contentInsetLeft 0x7f010018
int attr contentInsetRight 0x7f010019
int attr contentInsetStart 0x7f010016
int attr controlBackground 0x7f0100c0
int attr customNavigationLayout 0x7f01000f
int attr defaultQueryHint 0x7f010058
int attr dialogPreferredPadding 0x7f010092
int attr dialogTheme 0x7f010091
int attr displayOptions 0x7f010005
int attr divider 0x7f01000b
int attr dividerHorizontal 0x7f01009f
int attr dividerPadding 0x7f010049
int attr dividerVertical 0x7f01009e
int attr drawableSize 0x7f010029
int attr drawerArrowStyle 0x7f010000
int attr dropDownListViewStyle 0x7f0100b0
int attr dropdownListPreferredItemHeight 0x7f010095
int attr editTextBackground 0x7f0100a6
int attr editTextColor 0x7f0100a5
int attr editTextStyle 0x7f0100ce
int attr elevation 0x7f01001a
int attr expandActivityOverflowButtonDrawable 0x7f01001e
int attr fadeDuration 0x7f01002f
int attr failureImage 0x7f010035
int attr failureImageScaleType 0x7f010036
int attr gapBetweenBars 0x7f01002a
int attr goIcon 0x7f01005a
int attr height 0x7f010001
int attr hideOnContentScroll 0x7f010015
int attr homeAsUpIndicator 0x7f010097
int attr homeLayout 0x7f010010
int attr icon 0x7f010009
int attr iconifiedByDefault 0x7f010056
int attr indeterminateProgressStyle 0x7f010012
int attr initialActivityCount 0x7f01001d
int attr isLightTheme 0x7f010002
int attr itemPadding 0x7f010014
int attr layout 0x7f010055
int attr layoutManager 0x7f010051
int attr listChoiceBackgroundIndicator 0x7f0100b7
int attr listDividerAlertDialog 0x7f010093
int attr listItemLayout 0x7f010023
int attr listLayout 0x7f010020
int attr listPopupWindowStyle 0x7f0100b1
int attr listPreferredItemHeight 0x7f0100ab
int attr listPreferredItemHeightLarge 0x7f0100ad
int attr listPreferredItemHeightSmall 0x7f0100ac
int attr listPreferredItemPaddingLeft 0x7f0100ae
int attr listPreferredItemPaddingRight 0x7f0100af
int attr logo 0x7f01000a
int attr logoDescription 0x7f0100df
int attr maxButtonHeight 0x7f0100da
int attr measureWithLargestChild 0x7f010047
int attr multiChoiceItemLayout 0x7f010021
int attr navigationContentDescription 0x7f0100de
int attr navigationIcon 0x7f0100dd
int attr navigationMode 0x7f010004
int attr overlapAnchor 0x7f01004f
int attr overlayImage 0x7f01003c
int attr paddingEnd 0x7f0100e3
int attr paddingStart 0x7f0100e2
int attr panelBackground 0x7f0100b4
int attr panelMenuListTheme 0x7f0100b6
int attr panelMenuListWidth 0x7f0100b5
int attr placeholderImage 0x7f010031
int attr placeholderImageScaleType 0x7f010032
int attr popupMenuStyle 0x7f0100a3
int attr popupTheme 0x7f01001b
int attr popupWindowStyle 0x7f0100a4
int attr preserveIconSpacing 0x7f01004e
int attr pressedStateOverlayImage 0x7f01003d
int attr progressBarAutoRotateInterval 0x7f010039
int attr progressBarImage 0x7f010037
int attr progressBarImageScaleType 0x7f010038
int attr progressBarPadding 0x7f010013
int attr progressBarStyle 0x7f010011
int attr queryBackground 0x7f010060
int attr queryHint 0x7f010057
int attr radioButtonStyle 0x7f0100cf
int attr ratingBarStyle 0x7f0100d0
int attr retryImage 0x7f010033
int attr retryImageScaleType 0x7f010034
int attr reverseLayout 0x7f010053
int attr roundAsCircle 0x7f01003e
int attr roundBottomLeft 0x7f010043
int attr roundBottomRight 0x7f010042
int attr roundTopLeft 0x7f010040
int attr roundTopRight 0x7f010041
int attr roundWithOverlayColor 0x7f010044
int attr roundedCornerRadius 0x7f01003f
int attr roundingBorderColor 0x7f010046
int attr roundingBorderWidth 0x7f010045
int attr searchHintIcon 0x7f01005c
int attr searchIcon 0x7f01005b
int attr searchViewStyle 0x7f0100aa
int attr selectableItemBackground 0x7f01009b
int attr selectableItemBackgroundBorderless 0x7f01009c
int attr showAsAction 0x7f01004a
int attr showDividers 0x7f010048
int attr showText 0x7f010068
int attr singleChoiceItemLayout 0x7f010022
int attr spanCount 0x7f010052
int attr spinBars 0x7f010028
int attr spinnerDropDownItemStyle 0x7f010096
int attr spinnerStyle 0x7f0100d1
int attr splitTrack 0x7f010067
int attr stackFromEnd 0x7f010054
int attr state_above_anchor 0x7f010050
int attr submitBackground 0x7f010061
int attr subtitle 0x7f010006
int attr subtitleTextAppearance 0x7f0100d4
int attr subtitleTextColor 0x7f0100e1
int attr subtitleTextStyle 0x7f010008
int attr suggestionRowLayout 0x7f01005f
int attr switchMinWidth 0x7f010065
int attr switchPadding 0x7f010066
int attr switchStyle 0x7f0100d2
int attr switchTextAppearance 0x7f010064
int attr textAllCaps 0x7f010024
int attr textAppearanceLargePopupMenu 0x7f01008f
int attr textAppearanceListItem 0x7f0100b2
int attr textAppearanceListItemSmall 0x7f0100b3
int attr textAppearanceSearchResultSubtitle 0x7f0100a8
int attr textAppearanceSearchResultTitle 0x7f0100a7
int attr textAppearanceSmallPopupMenu 0x7f010090
int attr textColorAlertDialogListItem 0x7f0100c5
int attr textColorSearchUrl 0x7f0100a9
int attr theme 0x7f0100e4
int attr thickness 0x7f01002e
int attr thumbTextPadding 0x7f010063
int attr title 0x7f010003
int attr titleMarginBottom 0x7f0100d9
int attr titleMarginEnd 0x7f0100d7
int attr titleMarginStart 0x7f0100d6
int attr titleMarginTop 0x7f0100d8
int attr titleMargins 0x7f0100d5
int attr titleTextAppearance 0x7f0100d3
int attr titleTextColor 0x7f0100e0
int attr titleTextStyle 0x7f010007
int attr toolbarNavigationButtonStyle 0x7f0100a2
int attr toolbarStyle 0x7f0100a1
int attr track 0x7f010062
int attr viewAspectRatio 0x7f010030
int attr voiceIcon 0x7f01005d
int attr windowActionBar 0x7f010069
int attr windowActionBarOverlay 0x7f01006b
int attr windowActionModeOverlay 0x7f01006c
int attr windowFixedHeightMajor 0x7f010070
int attr windowFixedHeightMinor 0x7f01006e
int attr windowFixedWidthMajor 0x7f01006d
int attr windowFixedWidthMinor 0x7f01006f
int attr windowMinWidthMajor 0x7f010071
int attr windowMinWidthMinor 0x7f010072
int attr windowNoTitle 0x7f01006a
int bool abc_action_bar_embed_tabs 0x7f090002
int bool abc_action_bar_embed_tabs_pre_jb 0x7f090000
int bool abc_action_bar_expanded_action_views_exclusive 0x7f090003
int bool abc_config_actionMenuItemAllCaps 0x7f090004
int bool abc_config_allowActionMenuItemTextWithIcon 0x7f090001
int bool abc_config_closeDialogWhenTouchOutside 0x7f090005
int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f090006
int color abc_background_cache_hint_selector_material_dark 0x7f0b003b
int color abc_background_cache_hint_selector_material_light 0x7f0b003c
int color abc_color_highlight_material 0x7f0b003d
int color abc_input_method_navigation_guard 0x7f0b0000
int color abc_primary_text_disable_only_material_dark 0x7f0b003e
int color abc_primary_text_disable_only_material_light 0x7f0b003f
int color abc_primary_text_material_dark 0x7f0b0040
int color abc_primary_text_material_light 0x7f0b0041
int color abc_search_url_text 0x7f0b0042
int color abc_search_url_text_normal 0x7f0b0001
int color abc_search_url_text_pressed 0x7f0b0002
int color abc_search_url_text_selected 0x7f0b0003
int color abc_secondary_text_material_dark 0x7f0b0043
int color abc_secondary_text_material_light 0x7f0b0044
int color accent_material_dark 0x7f0b0004
int color accent_material_light 0x7f0b0005
int color background_floating_material_dark 0x7f0b0006
int color background_floating_material_light 0x7f0b0007
int color background_material_dark 0x7f0b0008
int color background_material_light 0x7f0b0009
int color bright_foreground_disabled_material_dark 0x7f0b000a
int color bright_foreground_disabled_material_light 0x7f0b000b
int color bright_foreground_inverse_material_dark 0x7f0b000c
int color bright_foreground_inverse_material_light 0x7f0b000d
int color bright_foreground_material_dark 0x7f0b000e
int color bright_foreground_material_light 0x7f0b000f
int color button_material_dark 0x7f0b0010
int color button_material_light 0x7f0b0011
int color catalyst_redbox_background 0x7f0b0012
int color dim_foreground_disabled_material_dark 0x7f0b0013
int color dim_foreground_disabled_material_light 0x7f0b0014
int color dim_foreground_material_dark 0x7f0b0015
int color dim_foreground_material_light 0x7f0b0016
int color foreground_material_dark 0x7f0b0017
int color foreground_material_light 0x7f0b0018
int color highlighted_text_material_dark 0x7f0b0019
int color highlighted_text_material_light 0x7f0b001a
int color hint_foreground_material_dark 0x7f0b001b
int color hint_foreground_material_light 0x7f0b001c
int color material_blue_grey_800 0x7f0b001d
int color material_blue_grey_900 0x7f0b001e
int color material_blue_grey_950 0x7f0b001f
int color material_deep_teal_200 0x7f0b0020
int color material_deep_teal_500 0x7f0b0021
int color material_grey_100 0x7f0b0022
int color material_grey_300 0x7f0b0023
int color material_grey_50 0x7f0b0024
int color material_grey_600 0x7f0b0025
int color material_grey_800 0x7f0b0026
int color material_grey_850 0x7f0b0027
int color material_grey_900 0x7f0b0028
int color primary_dark_material_dark 0x7f0b0029
int color primary_dark_material_light 0x7f0b002a
int color primary_material_dark 0x7f0b002b
int color primary_material_light 0x7f0b002c
int color primary_text_default_material_dark 0x7f0b002d
int color primary_text_default_material_light 0x7f0b002e
int color primary_text_disabled_material_dark 0x7f0b002f
int color primary_text_disabled_material_light 0x7f0b0030
int color ripple_material_dark 0x7f0b0031
int color ripple_material_light 0x7f0b0032
int color secondary_text_default_material_dark 0x7f0b0033
int color secondary_text_default_material_light 0x7f0b0034
int color secondary_text_disabled_material_dark 0x7f0b0035
int color secondary_text_disabled_material_light 0x7f0b0036
int color switch_thumb_disabled_material_dark 0x7f0b0037
int color switch_thumb_disabled_material_light 0x7f0b0038
int color switch_thumb_material_dark 0x7f0b0045
int color switch_thumb_material_light 0x7f0b0046
int color switch_thumb_normal_material_dark 0x7f0b0039
int color switch_thumb_normal_material_light 0x7f0b003a
int dimen abc_action_bar_content_inset_material 0x7f07000b
int dimen abc_action_bar_default_height_material 0x7f070001
int dimen abc_action_bar_default_padding_end_material 0x7f07000c
int dimen abc_action_bar_default_padding_start_material 0x7f07000d
int dimen abc_action_bar_icon_vertical_padding_material 0x7f07000f
int dimen abc_action_bar_overflow_padding_end_material 0x7f070010
int dimen abc_action_bar_overflow_padding_start_material 0x7f070011
int dimen abc_action_bar_progress_bar_size 0x7f070002
int dimen abc_action_bar_stacked_max_height 0x7f070012
int dimen abc_action_bar_stacked_tab_max_width 0x7f070013
int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f070014
int dimen abc_action_bar_subtitle_top_margin_material 0x7f070015
int dimen abc_action_button_min_height_material 0x7f070016
int dimen abc_action_button_min_width_material 0x7f070017
int dimen abc_action_button_min_width_overflow_material 0x7f070018
int dimen abc_alert_dialog_button_bar_height 0x7f070000
int dimen abc_button_inset_horizontal_material 0x7f070019
int dimen abc_button_inset_vertical_material 0x7f07001a
int dimen abc_button_padding_horizontal_material 0x7f07001b
int dimen abc_button_padding_vertical_material 0x7f07001c
int dimen abc_config_prefDialogWidth 0x7f070005
int dimen abc_control_corner_material 0x7f07001d
int dimen abc_control_inset_material 0x7f07001e
int dimen abc_control_padding_material 0x7f07001f
int dimen abc_dialog_list_padding_vertical_material 0x7f070020
int dimen abc_dialog_min_width_major 0x7f070021
int dimen abc_dialog_min_width_minor 0x7f070022
int dimen abc_dialog_padding_material 0x7f070023
int dimen abc_dialog_padding_top_material 0x7f070024
int dimen abc_disabled_alpha_material_dark 0x7f070025
int dimen abc_disabled_alpha_material_light 0x7f070026
int dimen abc_dropdownitem_icon_width 0x7f070027
int dimen abc_dropdownitem_text_padding_left 0x7f070028
int dimen abc_dropdownitem_text_padding_right 0x7f070029
int dimen abc_edit_text_inset_bottom_material 0x7f07002a
int dimen abc_edit_text_inset_horizontal_material 0x7f07002b
int dimen abc_edit_text_inset_top_material 0x7f07002c
int dimen abc_floating_window_z 0x7f07002d
int dimen abc_list_item_padding_horizontal_material 0x7f07002e
int dimen abc_panel_menu_list_width 0x7f07002f
int dimen abc_search_view_preferred_width 0x7f070030
int dimen abc_search_view_text_min_width 0x7f070006
int dimen abc_switch_padding 0x7f07000e
int dimen abc_text_size_body_1_material 0x7f070031
int dimen abc_text_size_body_2_material 0x7f070032
int dimen abc_text_size_button_material 0x7f070033
int dimen abc_text_size_caption_material 0x7f070034
int dimen abc_text_size_display_1_material 0x7f070035
int dimen abc_text_size_display_2_material 0x7f070036
int dimen abc_text_size_display_3_material 0x7f070037
int dimen abc_text_size_display_4_material 0x7f070038
int dimen abc_text_size_headline_material 0x7f070039
int dimen abc_text_size_large_material 0x7f07003a
int dimen abc_text_size_medium_material 0x7f07003b
int dimen abc_text_size_menu_material 0x7f07003c
int dimen abc_text_size_small_material 0x7f07003d
int dimen abc_text_size_subhead_material 0x7f07003e
int dimen abc_text_size_subtitle_material_toolbar 0x7f070003
int dimen abc_text_size_title_material 0x7f07003f
int dimen abc_text_size_title_material_toolbar 0x7f070004
int dimen dialog_fixed_height_major 0x7f070007
int dimen dialog_fixed_height_minor 0x7f070008
int dimen dialog_fixed_width_major 0x7f070009
int dimen dialog_fixed_width_minor 0x7f07000a
int dimen disabled_alpha_material_dark 0x7f070040
int dimen disabled_alpha_material_light 0x7f070041
int dimen highlight_alpha_material_colored 0x7f070042
int dimen highlight_alpha_material_dark 0x7f070043
int dimen highlight_alpha_material_light 0x7f070044
int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070045
int dimen notification_large_icon_height 0x7f070046
int dimen notification_large_icon_width 0x7f070047
int dimen notification_subtext_size 0x7f070048
int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
int drawable abc_action_bar_item_background_material 0x7f020001
int drawable abc_btn_borderless_material 0x7f020002
int drawable abc_btn_check_material 0x7f020003
int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
int drawable abc_btn_colored_material 0x7f020006
int drawable abc_btn_default_mtrl_shape 0x7f020007
int drawable abc_btn_radio_material 0x7f020008
int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b
int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c
int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d
int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e
int drawable abc_cab_background_internal_bg 0x7f02000f
int drawable abc_cab_background_top_material 0x7f020010
int drawable abc_cab_background_top_mtrl_alpha 0x7f020011
int drawable abc_control_background_material 0x7f020012
int drawable abc_dialog_material_background_dark 0x7f020013
int drawable abc_dialog_material_background_light 0x7f020014
int drawable abc_edit_text_material 0x7f020015
int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016
int drawable abc_ic_clear_mtrl_alpha 0x7f020017
int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018
int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019
int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a
int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b
int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c
int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d
int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e
int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f
int drawable abc_ic_search_api_mtrl_alpha 0x7f020020
int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020021
int drawable abc_item_background_holo_dark 0x7f020022
int drawable abc_item_background_holo_light 0x7f020023
int drawable abc_list_divider_mtrl_alpha 0x7f020024
int drawable abc_list_focused_holo 0x7f020025
int drawable abc_list_longpressed_holo 0x7f020026
int drawable abc_list_pressed_holo_dark 0x7f020027
int drawable abc_list_pressed_holo_light 0x7f020028
int drawable abc_list_selector_background_transition_holo_dark 0x7f020029
int drawable abc_list_selector_background_transition_holo_light 0x7f02002a
int drawable abc_list_selector_disabled_holo_dark 0x7f02002b
int drawable abc_list_selector_disabled_holo_light 0x7f02002c
int drawable abc_list_selector_holo_dark 0x7f02002d
int drawable abc_list_selector_holo_light 0x7f02002e
int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002f
int drawable abc_popup_background_mtrl_mult 0x7f020030
int drawable abc_ratingbar_full_material 0x7f020031
int drawable abc_spinner_mtrl_am_alpha 0x7f020032
int drawable abc_spinner_textfield_background_material 0x7f020033
int drawable abc_switch_thumb_material 0x7f020034
int drawable abc_switch_track_mtrl_alpha 0x7f020035
int drawable abc_tab_indicator_material 0x7f020036
int drawable abc_tab_indicator_mtrl_alpha 0x7f020037
int drawable abc_text_cursor_material 0x7f020038
int drawable abc_textfield_activated_mtrl_alpha 0x7f020039
int drawable abc_textfield_default_mtrl_alpha 0x7f02003a
int drawable abc_textfield_search_activated_mtrl_alpha 0x7f02003b
int drawable abc_textfield_search_default_mtrl_alpha 0x7f02003c
int drawable abc_textfield_search_material 0x7f02003d
int drawable notification_template_icon_bg 0x7f02003e
int id action0 0x7f0c0057
int id action_bar 0x7f0c0047
int id action_bar_activity_content 0x7f0c0000
int id action_bar_container 0x7f0c0046
int id action_bar_root 0x7f0c0042
int id action_bar_spinner 0x7f0c0001
int id action_bar_subtitle 0x7f0c002b
int id action_bar_title 0x7f0c002a
int id action_context_bar 0x7f0c0048
int id action_divider 0x7f0c005b
int id action_menu_divider 0x7f0c0002
int id action_menu_presenter 0x7f0c0003
int id action_mode_bar 0x7f0c0044
int id action_mode_bar_stub 0x7f0c0043
int id action_mode_close_button 0x7f0c002c
int id activity_chooser_view_content 0x7f0c002d
int id alertTitle 0x7f0c0037
int id always 0x7f0c0024
int id beginning 0x7f0c0021
int id buttonPanel 0x7f0c003d
int id cancel_action 0x7f0c0058
int id catalyst_redbox_title 0x7f0c0066
int id center 0x7f0c0019
int id centerCrop 0x7f0c001a
int id centerInside 0x7f0c001b
int id checkbox 0x7f0c003f
int id chronometer 0x7f0c005e
int id collapseActionView 0x7f0c0025
int id contentPanel 0x7f0c0038
int id custom 0x7f0c003c
int id customPanel 0x7f0c003b
int id decor_content_parent 0x7f0c0045
int id default_activity_button 0x7f0c0030
int id disableHome 0x7f0c000d
int id edit_query 0x7f0c0049
int id end 0x7f0c0022
int id end_padder 0x7f0c0063
int id expand_activities_button 0x7f0c002e
int id expanded_menu 0x7f0c003e
int id fitCenter 0x7f0c001c
int id fitEnd 0x7f0c001d
int id fitStart 0x7f0c001e
int id fitXY 0x7f0c001f
int id focusCrop 0x7f0c0020
int id fps_text 0x7f0c0056
int id home 0x7f0c0004
int id homeAsUp 0x7f0c000e
int id icon 0x7f0c0032
int id ifRoom 0x7f0c0026
int id image 0x7f0c002f
int id info 0x7f0c0062
int id item_touch_helper_previous_elevation 0x7f0c0005
int id line1 0x7f0c005c
int id line3 0x7f0c0060
int id listMode 0x7f0c000a
int id list_item 0x7f0c0031
int id media_actions 0x7f0c005a
int id middle 0x7f0c0023
int id multiply 0x7f0c0014
int id never 0x7f0c0027
int id none 0x7f0c000f
int id normal 0x7f0c000b
int id parentPanel 0x7f0c0034
int id progress_circular 0x7f0c0006
int id progress_horizontal 0x7f0c0007
int id radio 0x7f0c0041
int id rn_frame_file 0x7f0c0065
int id rn_frame_method 0x7f0c0064
int id rn_redbox_reloadjs 0x7f0c0068
int id rn_redbox_stack 0x7f0c0067
int id screen 0x7f0c0015
int id scrollView 0x7f0c0039
int id search_badge 0x7f0c004b
int id search_bar 0x7f0c004a
int id search_button 0x7f0c004c
int id search_close_btn 0x7f0c0051
int id search_edit_frame 0x7f0c004d
int id search_go_btn 0x7f0c0053
int id search_mag_icon 0x7f0c004e
int id search_plate 0x7f0c004f
int id search_src_text 0x7f0c0050
int id search_voice_btn 0x7f0c0054
int id select_dialog_listview 0x7f0c0055
int id shortcut 0x7f0c0040
int id showCustom 0x7f0c0010
int id showHome 0x7f0c0011
int id showTitle 0x7f0c0012
int id split_action_bar 0x7f0c0008
int id src_atop 0x7f0c0016
int id src_in 0x7f0c0017
int id src_over 0x7f0c0018
int id status_bar_latest_event_content 0x7f0c0059
int id submit_area 0x7f0c0052
int id tabMode 0x7f0c000c
int id text 0x7f0c0061
int id text2 0x7f0c005f
int id textSpacerNoButtons 0x7f0c003a
int id time 0x7f0c005d
int id title 0x7f0c0033
int id title_template 0x7f0c0036
int id topPanel 0x7f0c0035
int id up 0x7f0c0009
int id useLogo 0x7f0c0013
int id withText 0x7f0c0028
int id wrap_content 0x7f0c0029
int integer abc_config_activityDefaultDur 0x7f0a0001
int integer abc_config_activityShortDur 0x7f0a0002
int integer abc_max_action_buttons 0x7f0a0000
int integer cancel_button_image_alpha 0x7f0a0003
int integer status_bar_notification_info_maxnum 0x7f0a0004
int layout abc_action_bar_title_item 0x7f030000
int layout abc_action_bar_up_container 0x7f030001
int layout abc_action_bar_view_list_nav_layout 0x7f030002
int layout abc_action_menu_item_layout 0x7f030003
int layout abc_action_menu_layout 0x7f030004
int layout abc_action_mode_bar 0x7f030005
int layout abc_action_mode_close_item_material 0x7f030006
int layout abc_activity_chooser_view 0x7f030007
int layout abc_activity_chooser_view_list_item 0x7f030008
int layout abc_alert_dialog_material 0x7f030009
int layout abc_dialog_title_material 0x7f03000a
int layout abc_expanded_menu_layout 0x7f03000b
int layout abc_list_menu_item_checkbox 0x7f03000c
int layout abc_list_menu_item_icon 0x7f03000d
int layout abc_list_menu_item_layout 0x7f03000e
int layout abc_list_menu_item_radio 0x7f03000f
int layout abc_popup_menu_item_layout 0x7f030010
int layout abc_screen_content_include 0x7f030011
int layout abc_screen_simple 0x7f030012
int layout abc_screen_simple_overlay_action_mode 0x7f030013
int layout abc_screen_toolbar 0x7f030014
int layout abc_search_dropdown_item_icons_2line 0x7f030015
int layout abc_search_view 0x7f030016
int layout abc_select_dialog_material 0x7f030017
int layout fps_view 0x7f030018
int layout notification_media_action 0x7f030019
int layout notification_media_cancel_action 0x7f03001a
int layout notification_template_big_media 0x7f03001b
int layout notification_template_big_media_narrow 0x7f03001c
int layout notification_template_lines 0x7f03001d
int layout notification_template_media 0x7f03001e
int layout notification_template_part_chronometer 0x7f03001f
int layout notification_template_part_time 0x7f030020
int layout redbox_item_frame 0x7f030021
int layout redbox_item_title 0x7f030022
int layout redbox_view 0x7f030023
int layout select_dialog_item_material 0x7f030024
int layout select_dialog_multichoice_material 0x7f030025
int layout select_dialog_singlechoice_material 0x7f030026
int layout support_simple_spinner_dropdown_item 0x7f030027
int string abc_action_bar_home_description 0x7f060000
int string abc_action_bar_home_description_format 0x7f060001
int string abc_action_bar_home_subtitle_description_format 0x7f060002
int string abc_action_bar_up_description 0x7f060003
int string abc_action_menu_overflow_description 0x7f060004
int string abc_action_mode_done 0x7f060005
int string abc_activity_chooser_view_see_all 0x7f060006
int string abc_activitychooserview_choose_application 0x7f060007
int string abc_search_hint 0x7f060008
int string abc_searchview_description_clear 0x7f060009
int string abc_searchview_description_query 0x7f06000a
int string abc_searchview_description_search 0x7f06000b
int string abc_searchview_description_submit 0x7f06000c
int string abc_searchview_description_voice 0x7f06000d
int string abc_shareactionprovider_share_with 0x7f06000e
int string abc_shareactionprovider_share_with_application 0x7f06000f
int string abc_toolbar_collapse_description 0x7f060010
int string catalyst_debugjs 0x7f060012
int string catalyst_debugjs_off 0x7f06001a
int string catalyst_element_inspector 0x7f060013
int string catalyst_element_inspector_off 0x7f06001b
int string catalyst_hot_module_replacement 0x7f06001c
int string catalyst_hot_module_replacement_off 0x7f06001d
int string catalyst_jsload_error 0x7f060014
int string catalyst_jsload_message 0x7f060015
int string catalyst_jsload_title 0x7f060016
int string catalyst_live_reload 0x7f06001e
int string catalyst_live_reload_off 0x7f06001f
int string catalyst_perf_monitor 0x7f060020
int string catalyst_perf_monitor_off 0x7f060021
int string catalyst_reloadjs 0x7f060017
int string catalyst_remotedbg_error 0x7f060022
int string catalyst_remotedbg_message 0x7f060023
int string catalyst_settings 0x7f060018
int string catalyst_settings_title 0x7f060019
int string catalyst_start_profile 0x7f060024
int string catalyst_stop_profile 0x7f060025
int string status_bar_notification_info_overflow 0x7f060011
int style AlertDialog_AppCompat 0x7f08007a
int style AlertDialog_AppCompat_Light 0x7f08007b
int style Animation_AppCompat_Dialog 0x7f08007c
int style Animation_AppCompat_DropDownUp 0x7f08007d
int style Animation_Catalyst_RedBox 0x7f08007e
int style Base_AlertDialog_AppCompat 0x7f08007f
int style Base_AlertDialog_AppCompat_Light 0x7f080080
int style Base_Animation_AppCompat_Dialog 0x7f080081
int style Base_Animation_AppCompat_DropDownUp 0x7f080082
int style Base_DialogWindowTitle_AppCompat 0x7f080083
int style Base_DialogWindowTitleBackground_AppCompat 0x7f080084
int style Base_TextAppearance_AppCompat 0x7f08002d
int style Base_TextAppearance_AppCompat_Body1 0x7f08002e
int style Base_TextAppearance_AppCompat_Body2 0x7f08002f
int style Base_TextAppearance_AppCompat_Button 0x7f080018
int style Base_TextAppearance_AppCompat_Caption 0x7f080030
int style Base_TextAppearance_AppCompat_Display1 0x7f080031
int style Base_TextAppearance_AppCompat_Display2 0x7f080032
int style Base_TextAppearance_AppCompat_Display3 0x7f080033
int style Base_TextAppearance_AppCompat_Display4 0x7f080034
int style Base_TextAppearance_AppCompat_Headline 0x7f080035
int style Base_TextAppearance_AppCompat_Inverse 0x7f080003
int style Base_TextAppearance_AppCompat_Large 0x7f080036
int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f080004
int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f080037
int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f080038
int style Base_TextAppearance_AppCompat_Medium 0x7f080039
int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f080005
int style Base_TextAppearance_AppCompat_Menu 0x7f08003a
int style Base_TextAppearance_AppCompat_SearchResult 0x7f080085
int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f08003b
int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f08003c
int style Base_TextAppearance_AppCompat_Small 0x7f08003d
int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f080006
int style Base_TextAppearance_AppCompat_Subhead 0x7f08003e
int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f080007
int style Base_TextAppearance_AppCompat_Title 0x7f08003f
int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f080008
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f080040
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f080041
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f080042
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f080043
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f080044
int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f080045
int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f080046
int style Base_TextAppearance_AppCompat_Widget_Button 0x7f080047
int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f080076
int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f080086
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f080048
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f080049
int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f08004a
int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f08004b
int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f080087
int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f08004c
int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f08004d
int style Base_Theme_AppCompat 0x7f08004e
int style Base_Theme_AppCompat_CompactMenu 0x7f080088
int style Base_Theme_AppCompat_Dialog 0x7f080009
int style Base_Theme_AppCompat_Dialog_Alert 0x7f080089
int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f08008a
int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f08008b
int style Base_Theme_AppCompat_DialogWhenLarge 0x7f080001
int style Base_Theme_AppCompat_Light 0x7f08004f
int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f08008c
int style Base_Theme_AppCompat_Light_Dialog 0x7f08000a
int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f08008d
int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f08008e
int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f08008f
int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f080002
int style Base_ThemeOverlay_AppCompat 0x7f080090
int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f080091
int style Base_ThemeOverlay_AppCompat_Dark 0x7f080092
int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f080093
int style Base_ThemeOverlay_AppCompat_Light 0x7f080094
int style Base_V11_Theme_AppCompat_Dialog 0x7f08000b
int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f08000c
int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f080014
int style Base_V12_Widget_AppCompat_EditText 0x7f080015
int style Base_V21_Theme_AppCompat 0x7f080050
int style Base_V21_Theme_AppCompat_Dialog 0x7f080051
int style Base_V21_Theme_AppCompat_Light 0x7f080052
int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f080053
int style Base_V22_Theme_AppCompat 0x7f080074
int style Base_V22_Theme_AppCompat_Light 0x7f080075
int style Base_V23_Theme_AppCompat 0x7f080077
int style Base_V23_Theme_AppCompat_Light 0x7f080078
int style Base_V7_Theme_AppCompat 0x7f080095
int style Base_V7_Theme_AppCompat_Dialog 0x7f080096
int style Base_V7_Theme_AppCompat_Light 0x7f080097
int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f080098
int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f080099
int style Base_V7_Widget_AppCompat_EditText 0x7f08009a
int style Base_Widget_AppCompat_ActionBar 0x7f08009b
int style Base_Widget_AppCompat_ActionBar_Solid 0x7f08009c
int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f08009d
int style Base_Widget_AppCompat_ActionBar_TabText 0x7f080054
int style Base_Widget_AppCompat_ActionBar_TabView 0x7f080055
int style Base_Widget_AppCompat_ActionButton 0x7f080056
int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f080057
int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f080058
int style Base_Widget_AppCompat_ActionMode 0x7f08009e
int style Base_Widget_AppCompat_ActivityChooserView 0x7f08009f
int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f080016
int style Base_Widget_AppCompat_Button 0x7f080059
int style Base_Widget_AppCompat_Button_Borderless 0x7f08005a
int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f08005b
int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800a0
int style Base_Widget_AppCompat_Button_Colored 0x7f080079
int style Base_Widget_AppCompat_Button_Small 0x7f08005c
int style Base_Widget_AppCompat_ButtonBar 0x7f08005d
int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0800a1
int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f08005e
int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f08005f
int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0800a2
int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f080000
int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0800a3
int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f080060
int style Base_Widget_AppCompat_EditText 0x7f080017
int style Base_Widget_AppCompat_Light_ActionBar 0x7f0800a4
int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0800a5
int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0800a6
int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f080061
int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080062
int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f080063
int style Base_Widget_AppCompat_Light_PopupMenu 0x7f080064
int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f080065
int style Base_Widget_AppCompat_ListPopupWindow 0x7f080066
int style Base_Widget_AppCompat_ListView 0x7f080067
int style Base_Widget_AppCompat_ListView_DropDown 0x7f080068
int style Base_Widget_AppCompat_ListView_Menu 0x7f080069
int style Base_Widget_AppCompat_PopupMenu 0x7f08006a
int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f08006b
int style Base_Widget_AppCompat_PopupWindow 0x7f0800a7
int style Base_Widget_AppCompat_ProgressBar 0x7f08000d
int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f08000e
int style Base_Widget_AppCompat_RatingBar 0x7f08006c
int style Base_Widget_AppCompat_SearchView 0x7f0800a8
int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0800a9
int style Base_Widget_AppCompat_Spinner 0x7f08006d
int style Base_Widget_AppCompat_Spinner_Underlined 0x7f08006e
int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f08006f
int style Base_Widget_AppCompat_Toolbar 0x7f0800aa
int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f080070
int style Platform_AppCompat 0x7f08000f
int style Platform_AppCompat_Light 0x7f080010
int style Platform_ThemeOverlay_AppCompat 0x7f080071
int style Platform_ThemeOverlay_AppCompat_Dark 0x7f080072
int style Platform_ThemeOverlay_AppCompat_Light 0x7f080073
int style Platform_V11_AppCompat 0x7f080011
int style Platform_V11_AppCompat_Light 0x7f080012
int style Platform_V14_AppCompat 0x7f080019
int style Platform_V14_AppCompat_Light 0x7f08001a
int style Platform_Widget_AppCompat_Spinner 0x7f080013
int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f080020
int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f080021
int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f080022
int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f080023
int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f080024
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f080025
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f080026
int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f080027
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f080028
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f080029
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f08002a
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f08002b
int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f08002c
int style TextAppearance_AppCompat 0x7f0800ab
int style TextAppearance_AppCompat_Body1 0x7f0800ac
int style TextAppearance_AppCompat_Body2 0x7f0800ad
int style TextAppearance_AppCompat_Button 0x7f0800ae
int style TextAppearance_AppCompat_Caption 0x7f0800af
int style TextAppearance_AppCompat_Display1 0x7f0800b0
int style TextAppearance_AppCompat_Display2 0x7f0800b1
int style TextAppearance_AppCompat_Display3 0x7f0800b2
int style TextAppearance_AppCompat_Display4 0x7f0800b3
int style TextAppearance_AppCompat_Headline 0x7f0800b4
int style TextAppearance_AppCompat_Inverse 0x7f0800b5
int style TextAppearance_AppCompat_Large 0x7f0800b6
int style TextAppearance_AppCompat_Large_Inverse 0x7f0800b7
int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0800b8
int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0800b9
int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0800ba
int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0800bb
int style TextAppearance_AppCompat_Medium 0x7f0800bc
int style TextAppearance_AppCompat_Medium_Inverse 0x7f0800bd
int style TextAppearance_AppCompat_Menu 0x7f0800be
int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0800bf
int style TextAppearance_AppCompat_SearchResult_Title 0x7f0800c0
int style TextAppearance_AppCompat_Small 0x7f0800c1
int style TextAppearance_AppCompat_Small_Inverse 0x7f0800c2
int style TextAppearance_AppCompat_Subhead 0x7f0800c3
int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0800c4
int style TextAppearance_AppCompat_Title 0x7f0800c5
int style TextAppearance_AppCompat_Title_Inverse 0x7f0800c6
int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0800c7
int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0800c8
int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0800c9
int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0800ca
int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0800cb
int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0800cc
int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0800cd
int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0800ce
int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0800cf
int style TextAppearance_AppCompat_Widget_Button 0x7f0800d0
int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0800d1
int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0800d2
int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0800d3
int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0800d4
int style TextAppearance_AppCompat_Widget_Switch 0x7f0800d5
int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0800d6
int style TextAppearance_StatusBar_EventContent 0x7f08001b
int style TextAppearance_StatusBar_EventContent_Info 0x7f08001c
int style TextAppearance_StatusBar_EventContent_Line2 0x7f08001d
int style TextAppearance_StatusBar_EventContent_Time 0x7f08001e
int style TextAppearance_StatusBar_EventContent_Title 0x7f08001f
int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0800d7
int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0800d8
int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0800d9
int style Theme 0x7f0800da
int style Theme_AppCompat 0x7f0800db
int style Theme_AppCompat_CompactMenu 0x7f0800dc
int style Theme_AppCompat_Dialog 0x7f0800dd
int style Theme_AppCompat_Dialog_Alert 0x7f0800de
int style Theme_AppCompat_Dialog_MinWidth 0x7f0800df
int style Theme_AppCompat_DialogWhenLarge 0x7f0800e0
int style Theme_AppCompat_Light 0x7f0800e1
int style Theme_AppCompat_Light_DarkActionBar 0x7f0800e2
int style Theme_AppCompat_Light_Dialog 0x7f0800e3
int style Theme_AppCompat_Light_Dialog_Alert 0x7f0800e4
int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0800e5
int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0800e6
int style Theme_AppCompat_Light_NoActionBar 0x7f0800e7
int style Theme_AppCompat_NoActionBar 0x7f0800e8
int style Theme_Catalyst 0x7f0800e9
int style Theme_Catalyst_RedBox 0x7f0800ea
int style Theme_ReactNative_AppCompat_Light 0x7f0800eb
int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x7f0800ec
int style ThemeOverlay_AppCompat 0x7f0800ed
int style ThemeOverlay_AppCompat_ActionBar 0x7f0800ee
int style ThemeOverlay_AppCompat_Dark 0x7f0800ef
int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0800f0
int style ThemeOverlay_AppCompat_Light 0x7f0800f1
int style Widget_AppCompat_ActionBar 0x7f0800f2
int style Widget_AppCompat_ActionBar_Solid 0x7f0800f3
int style Widget_AppCompat_ActionBar_TabBar 0x7f0800f4
int style Widget_AppCompat_ActionBar_TabText 0x7f0800f5
int style Widget_AppCompat_ActionBar_TabView 0x7f0800f6
int style Widget_AppCompat_ActionButton 0x7f0800f7
int style Widget_AppCompat_ActionButton_CloseMode 0x7f0800f8
int style Widget_AppCompat_ActionButton_Overflow 0x7f0800f9
int style Widget_AppCompat_ActionMode 0x7f0800fa
int style Widget_AppCompat_ActivityChooserView 0x7f0800fb
int style Widget_AppCompat_AutoCompleteTextView 0x7f0800fc
int style Widget_AppCompat_Button 0x7f0800fd
int style Widget_AppCompat_Button_Borderless 0x7f0800fe
int style Widget_AppCompat_Button_Borderless_Colored 0x7f0800ff
int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f080100
int style Widget_AppCompat_Button_Colored 0x7f080101
int style Widget_AppCompat_Button_Small 0x7f080102
int style Widget_AppCompat_ButtonBar 0x7f080103
int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f080104
int style Widget_AppCompat_CompoundButton_CheckBox 0x7f080105
int style Widget_AppCompat_CompoundButton_RadioButton 0x7f080106
int style Widget_AppCompat_CompoundButton_Switch 0x7f080107
int style Widget_AppCompat_DrawerArrowToggle 0x7f080108
int style Widget_AppCompat_DropDownItem_Spinner 0x7f080109
int style Widget_AppCompat_EditText 0x7f08010a
int style Widget_AppCompat_Light_ActionBar 0x7f08010b
int style Widget_AppCompat_Light_ActionBar_Solid 0x7f08010c
int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f08010d
int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f08010e
int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f08010f
int style Widget_AppCompat_Light_ActionBar_TabText 0x7f080110
int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080111
int style Widget_AppCompat_Light_ActionBar_TabView 0x7f080112
int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f080113
int style Widget_AppCompat_Light_ActionButton 0x7f080114
int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f080115
int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f080116
int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f080117
int style Widget_AppCompat_Light_ActivityChooserView 0x7f080118
int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f080119
int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f08011a
int style Widget_AppCompat_Light_ListPopupWindow 0x7f08011b
int style Widget_AppCompat_Light_ListView_DropDown 0x7f08011c
int style Widget_AppCompat_Light_PopupMenu 0x7f08011d
int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f08011e
int style Widget_AppCompat_Light_SearchView 0x7f08011f
int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f080120
int style Widget_AppCompat_ListPopupWindow 0x7f080121
int style Widget_AppCompat_ListView 0x7f080122
int style Widget_AppCompat_ListView_DropDown 0x7f080123
int style Widget_AppCompat_ListView_Menu 0x7f080124
int style Widget_AppCompat_PopupMenu 0x7f080125
int style Widget_AppCompat_PopupMenu_Overflow 0x7f080126
int style Widget_AppCompat_PopupWindow 0x7f080127
int style Widget_AppCompat_ProgressBar 0x7f080128
int style Widget_AppCompat_ProgressBar_Horizontal 0x7f080129
int style Widget_AppCompat_RatingBar 0x7f08012a
int style Widget_AppCompat_SearchView 0x7f08012b
int style Widget_AppCompat_SearchView_ActionBar 0x7f08012c
int style Widget_AppCompat_Spinner 0x7f08012d
int style Widget_AppCompat_Spinner_DropDown 0x7f08012e
int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f08012f
int style Widget_AppCompat_Spinner_Underlined 0x7f080130
int style Widget_AppCompat_TextView_SpinnerItem 0x7f080131
int style Widget_AppCompat_Toolbar 0x7f080132
int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f080133
int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010097 }
int styleable ActionBar_background 10
int styleable ActionBar_backgroundSplit 12
int styleable ActionBar_backgroundStacked 11
int styleable ActionBar_contentInsetEnd 21
int styleable ActionBar_contentInsetLeft 22
int styleable ActionBar_contentInsetRight 23
int styleable ActionBar_contentInsetStart 20
int styleable ActionBar_customNavigationLayout 13
int styleable ActionBar_displayOptions 3
int styleable ActionBar_divider 9
int styleable ActionBar_elevation 24
int styleable ActionBar_height 0
int styleable ActionBar_hideOnContentScroll 19
int styleable ActionBar_homeAsUpIndicator 26
int styleable ActionBar_homeLayout 14
int styleable ActionBar_icon 7
int styleable ActionBar_indeterminateProgressStyle 16
int styleable ActionBar_itemPadding 18
int styleable ActionBar_logo 8
int styleable ActionBar_navigationMode 2
int styleable ActionBar_popupTheme 25
int styleable ActionBar_progressBarPadding 17
int styleable ActionBar_progressBarStyle 15
int styleable ActionBar_subtitle 4
int styleable ActionBar_subtitleTextStyle 6
int styleable ActionBar_title 1
int styleable ActionBar_titleTextStyle 5
int[] styleable ActionBarLayout { 0x010100b3 }
int styleable ActionBarLayout_android_layout_gravity 0
int[] styleable ActionMenuItemView { 0x0101013f }
int styleable ActionMenuItemView_android_minWidth 0
int[] styleable ActionMenuView { }
int[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
int styleable ActionMode_background 3
int styleable ActionMode_backgroundSplit 4
int styleable ActionMode_closeItemLayout 5
int styleable ActionMode_height 0
int styleable ActionMode_subtitleTextStyle 2
int styleable ActionMode_titleTextStyle 1
int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
int styleable ActivityChooserView_initialActivityCount 0
int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
int styleable AlertDialog_android_layout 0
int styleable AlertDialog_buttonPanelSideLayout 1
int styleable AlertDialog_listItemLayout 5
int styleable AlertDialog_listLayout 2
int styleable AlertDialog_multiChoiceItemLayout 3
int styleable AlertDialog_singleChoiceItemLayout 4
int[] styleable AppCompatTextView { 0x01010034, 0x7f010024 }
int styleable AppCompatTextView_android_textAppearance 0
int styleable AppCompatTextView_textAllCaps 1
int[] styleable CompoundButton { 0x01010107, 0x7f010025, 0x7f010026 }
int styleable CompoundButton_android_button 0
int styleable CompoundButton_buttonTint 1
int styleable CompoundButton_buttonTintMode 2
int[] styleable DrawerArrowToggle { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }
int styleable DrawerArrowToggle_arrowHeadLength 4
int styleable DrawerArrowToggle_arrowShaftLength 5
int styleable DrawerArrowToggle_barLength 6
int styleable DrawerArrowToggle_color 0
int styleable DrawerArrowToggle_drawableSize 2
int styleable DrawerArrowToggle_gapBetweenBars 3
int styleable DrawerArrowToggle_spinBars 1
int styleable DrawerArrowToggle_thickness 7
int[] styleable GenericDraweeView { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046 }
int styleable GenericDraweeView_actualImageScaleType 11
int styleable GenericDraweeView_backgroundImage 12
int styleable GenericDraweeView_fadeDuration 0
int styleable GenericDraweeView_failureImage 6
int styleable GenericDraweeView_failureImageScaleType 7
int styleable GenericDraweeView_overlayImage 13
int styleable GenericDraweeView_placeholderImage 2
int styleable GenericDraweeView_placeholderImageScaleType 3
int styleable GenericDraweeView_pressedStateOverlayImage 14
int styleable GenericDraweeView_progressBarAutoRotateInterval 10
int styleable GenericDraweeView_progressBarImage 8
int styleable GenericDraweeView_progressBarImageScaleType 9
int styleable GenericDraweeView_retryImage 4
int styleable GenericDraweeView_retryImageScaleType 5
int styleable GenericDraweeView_roundAsCircle 15
int styleable GenericDraweeView_roundBottomLeft 20
int styleable GenericDraweeView_roundBottomRight 19
int styleable GenericDraweeView_roundTopLeft 17
int styleable GenericDraweeView_roundTopRight 18
int styleable GenericDraweeView_roundWithOverlayColor 21
int styleable GenericDraweeView_roundedCornerRadius 16
int styleable GenericDraweeView_roundingBorderColor 23
int styleable GenericDraweeView_roundingBorderWidth 22
int styleable GenericDraweeView_viewAspectRatio 1
int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010047, 0x7f010048, 0x7f010049 }
int styleable LinearLayoutCompat_android_baselineAligned 2
int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
int styleable LinearLayoutCompat_android_gravity 0
int styleable LinearLayoutCompat_android_orientation 1
int styleable LinearLayoutCompat_android_weightSum 4
int styleable LinearLayoutCompat_divider 5
int styleable LinearLayoutCompat_dividerPadding 8
int styleable LinearLayoutCompat_measureWithLargestChild 6
int styleable LinearLayoutCompat_showDividers 7
int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
int styleable LinearLayoutCompat_Layout_android_layout_height 2
int styleable LinearLayoutCompat_Layout_android_layout_weight 3
int styleable LinearLayoutCompat_Layout_android_layout_width 1
int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
int styleable ListPopupWindow_android_dropDownVerticalOffset 1
int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
int styleable MenuGroup_android_checkableBehavior 5
int styleable MenuGroup_android_enabled 0
int styleable MenuGroup_android_id 1
int styleable MenuGroup_android_menuCategory 3
int styleable MenuGroup_android_orderInCategory 4
int styleable MenuGroup_android_visible 2
int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d }
int styleable MenuItem_actionLayout 14
int styleable MenuItem_actionProviderClass 16
int styleable MenuItem_actionViewClass 15
int styleable MenuItem_android_alphabeticShortcut 9
int styleable MenuItem_android_checkable 11
int styleable MenuItem_android_checked 3
int styleable MenuItem_android_enabled 1
int styleable MenuItem_android_icon 0
int styleable MenuItem_android_id 2
int styleable MenuItem_android_menuCategory 5
int styleable MenuItem_android_numericShortcut 10
int styleable MenuItem_android_onClick 12
int styleable MenuItem_android_orderInCategory 6
int styleable MenuItem_android_title 7
int styleable MenuItem_android_titleCondensed 8
int styleable MenuItem_android_visible 4
int styleable MenuItem_showAsAction 13
int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01004e }
int styleable MenuView_android_headerBackground 4
int styleable MenuView_android_horizontalDivider 2
int styleable MenuView_android_itemBackground 5
int styleable MenuView_android_itemIconDisabledAlpha 6
int styleable MenuView_android_itemTextAppearance 1
int styleable MenuView_android_verticalDivider 3
int styleable MenuView_android_windowAnimationStyle 0
int styleable MenuView_preserveIconSpacing 7
int[] styleable PopupWindow { 0x01010176, 0x7f01004f }
int styleable PopupWindow_android_popupBackground 0
int styleable PopupWindow_overlapAnchor 1
int[] styleable PopupWindowBackgroundState { 0x7f010050 }
int styleable PopupWindowBackgroundState_state_above_anchor 0
int[] styleable RecyclerView { 0x010100c4, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054 }
int styleable RecyclerView_android_orientation 0
int styleable RecyclerView_layoutManager 1
int styleable RecyclerView_reverseLayout 3
int styleable RecyclerView_spanCount 2
int styleable RecyclerView_stackFromEnd 4
int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061 }
int styleable SearchView_android_focusable 0
int styleable SearchView_android_imeOptions 3
int styleable SearchView_android_inputType 2
int styleable SearchView_android_maxWidth 1
int styleable SearchView_closeIcon 8
int styleable SearchView_commitIcon 13
int styleable SearchView_defaultQueryHint 7
int styleable SearchView_goIcon 9
int styleable SearchView_iconifiedByDefault 5
int styleable SearchView_layout 4
int styleable SearchView_queryBackground 15
int styleable SearchView_queryHint 6
int styleable SearchView_searchHintIcon 11
int styleable SearchView_searchIcon 10
int styleable SearchView_submitBackground 16
int styleable SearchView_suggestionRowLayout 14
int styleable SearchView_voiceIcon 12
int[] styleable Spinner { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }
int styleable Spinner_android_dropDownWidth 2
int styleable Spinner_android_popupBackground 0
int styleable Spinner_android_prompt 1
int styleable Spinner_popupTheme 3
int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068 }
int styleable SwitchCompat_android_textOff 1
int styleable SwitchCompat_android_textOn 0
int styleable SwitchCompat_android_thumb 2
int styleable SwitchCompat_showText 9
int styleable SwitchCompat_splitTrack 8
int styleable SwitchCompat_switchMinWidth 6
int styleable SwitchCompat_switchPadding 7
int styleable SwitchCompat_switchTextAppearance 5
int styleable SwitchCompat_thumbTextPadding 4
int styleable SwitchCompat_track 3
int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f010024 }
int styleable TextAppearance_android_textColor 3
int styleable TextAppearance_android_textSize 0
int styleable TextAppearance_android_textStyle 2
int styleable TextAppearance_android_typeface 1
int styleable TextAppearance_textAllCaps 4
int[] styleable Theme { 0x01010057, 0x010100ae, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2 }
int styleable Theme_actionBarDivider 23
int styleable Theme_actionBarItemBackground 24
int styleable Theme_actionBarPopupTheme 17
int styleable Theme_actionBarSize 22
int styleable Theme_actionBarSplitStyle 19
int styleable Theme_actionBarStyle 18
int styleable Theme_actionBarTabBarStyle 13
int styleable Theme_actionBarTabStyle 12
int styleable Theme_actionBarTabTextStyle 14
int styleable Theme_actionBarTheme 20
int styleable Theme_actionBarWidgetTheme 21
int styleable Theme_actionButtonStyle 49
int styleable Theme_actionDropDownStyle 45
int styleable Theme_actionMenuTextAppearance 25
int styleable Theme_actionMenuTextColor 26
int styleable Theme_actionModeBackground 29
int styleable Theme_actionModeCloseButtonStyle 28
int styleable Theme_actionModeCloseDrawable 31
int styleable Theme_actionModeCopyDrawable 33
int styleable Theme_actionModeCutDrawable 32
int styleable Theme_actionModeFindDrawable 37
int styleable Theme_actionModePasteDrawable 34
int styleable Theme_actionModePopupWindowStyle 39
int styleable Theme_actionModeSelectAllDrawable 35
int styleable Theme_actionModeShareDrawable 36
int styleable Theme_actionModeSplitBackground 30
int styleable Theme_actionModeStyle 27
int styleable Theme_actionModeWebSearchDrawable 38
int styleable Theme_actionOverflowButtonStyle 15
int styleable Theme_actionOverflowMenuStyle 16
int styleable Theme_activityChooserViewStyle 57
int styleable Theme_alertDialogButtonGroupStyle 91
int styleable Theme_alertDialogCenterButtons 92
int styleable Theme_alertDialogStyle 90
int styleable Theme_alertDialogTheme 93
int styleable Theme_android_windowAnimationStyle 1
int styleable Theme_android_windowIsFloating 0
int styleable Theme_autoCompleteTextViewStyle 98
int styleable Theme_borderlessButtonStyle 54
int styleable Theme_buttonBarButtonStyle 51
int styleable Theme_buttonBarNegativeButtonStyle 96
int styleable Theme_buttonBarNeutralButtonStyle 97
int styleable Theme_buttonBarPositiveButtonStyle 95
int styleable Theme_buttonBarStyle 50
int styleable Theme_buttonStyle 99
int styleable Theme_buttonStyleSmall 100
int styleable Theme_checkboxStyle 101
int styleable Theme_checkedTextViewStyle 102
int styleable Theme_colorAccent 83
int styleable Theme_colorButtonNormal 87
int styleable Theme_colorControlActivated 85
int styleable Theme_colorControlHighlight 86
int styleable Theme_colorControlNormal 84
int styleable Theme_colorPrimary 81
int styleable Theme_colorPrimaryDark 82
int styleable Theme_colorSwitchThumbNormal 88
int styleable Theme_controlBackground 89
int styleable Theme_dialogPreferredPadding 43
int styleable Theme_dialogTheme 42
int styleable Theme_dividerHorizontal 56
int styleable Theme_dividerVertical 55
int styleable Theme_dropDownListViewStyle 73
int styleable Theme_dropdownListPreferredItemHeight 46
int styleable Theme_editTextBackground 63
int styleable Theme_editTextColor 62
int styleable Theme_editTextStyle 103
int styleable Theme_homeAsUpIndicator 48
int styleable Theme_listChoiceBackgroundIndicator 80
int styleable Theme_listDividerAlertDialog 44
int styleable Theme_listPopupWindowStyle 74
int styleable Theme_listPreferredItemHeight 68
int styleable Theme_listPreferredItemHeightLarge 70
int styleable Theme_listPreferredItemHeightSmall 69
int styleable Theme_listPreferredItemPaddingLeft 71
int styleable Theme_listPreferredItemPaddingRight 72
int styleable Theme_panelBackground 77
int styleable Theme_panelMenuListTheme 79
int styleable Theme_panelMenuListWidth 78
int styleable Theme_popupMenuStyle 60
int styleable Theme_popupWindowStyle 61
int styleable Theme_radioButtonStyle 104
int styleable Theme_ratingBarStyle 105
int styleable Theme_searchViewStyle 67
int styleable Theme_selectableItemBackground 52
int styleable Theme_selectableItemBackgroundBorderless 53
int styleable Theme_spinnerDropDownItemStyle 47
int styleable Theme_spinnerStyle 106
int styleable Theme_switchStyle 107
int styleable Theme_textAppearanceLargePopupMenu 40
int styleable Theme_textAppearanceListItem 75
int styleable Theme_textAppearanceListItemSmall 76
int styleable Theme_textAppearanceSearchResultSubtitle 65
int styleable Theme_textAppearanceSearchResultTitle 64
int styleable Theme_textAppearanceSmallPopupMenu 41
int styleable Theme_textColorAlertDialogListItem 94
int styleable Theme_textColorSearchUrl 66
int styleable Theme_toolbarNavigationButtonStyle 59
int styleable Theme_toolbarStyle 58
int styleable Theme_windowActionBar 2
int styleable Theme_windowActionBarOverlay 4
int styleable Theme_windowActionModeOverlay 5
int styleable Theme_windowFixedHeightMajor 9
int styleable Theme_windowFixedHeightMinor 7
int styleable Theme_windowFixedWidthMajor 6
int styleable Theme_windowFixedWidthMinor 8
int styleable Theme_windowMinWidthMajor 10
int styleable Theme_windowMinWidthMinor 11
int styleable Theme_windowNoTitle 3
int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1 }
int styleable Toolbar_android_gravity 0
int styleable Toolbar_android_minHeight 1
int styleable Toolbar_collapseContentDescription 19
int styleable Toolbar_collapseIcon 18
int styleable Toolbar_contentInsetEnd 6
int styleable Toolbar_contentInsetLeft 7
int styleable Toolbar_contentInsetRight 8
int styleable Toolbar_contentInsetStart 5
int styleable Toolbar_logo 4
int styleable Toolbar_logoDescription 22
int styleable Toolbar_maxButtonHeight 17
int styleable Toolbar_navigationContentDescription 21
int styleable Toolbar_navigationIcon 20
int styleable Toolbar_popupTheme 9
int styleable Toolbar_subtitle 3
int styleable Toolbar_subtitleTextAppearance 11
int styleable Toolbar_subtitleTextColor 24
int styleable Toolbar_title 2
int styleable Toolbar_titleMarginBottom 16
int styleable Toolbar_titleMarginEnd 14
int styleable Toolbar_titleMarginStart 13
int styleable Toolbar_titleMarginTop 15
int styleable Toolbar_titleMargins 12
int styleable Toolbar_titleTextAppearance 10
int styleable Toolbar_titleTextColor 23
int[] styleable View { 0x01010000, 0x010100da, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 }
int styleable View_android_focusable 1
int styleable View_android_theme 0
int styleable View_paddingEnd 3
int styleable View_paddingStart 2
int styleable View_theme 4
int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f0100e5, 0x7f0100e6 }
int styleable ViewBackgroundHelper_android_background 0
int styleable ViewBackgroundHelper_backgroundTint 1
int styleable ViewBackgroundHelper_backgroundTintMode 2
int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
int styleable ViewStubCompat_android_id 0
int styleable ViewStubCompat_android_inflatedId 2
int styleable ViewStubCompat_android_layout 1
int xml preferences 0x7f050000