R.txt 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604
  1. int anim abc_fade_in 0x7f010001
  2. int anim abc_fade_out 0x7f010002
  3. int anim abc_grow_fade_in_from_bottom 0x7f010003
  4. int anim abc_popup_enter 0x7f010004
  5. int anim abc_popup_exit 0x7f010005
  6. int anim abc_shrink_fade_out_from_bottom 0x7f010006
  7. int anim abc_slide_in_bottom 0x7f010007
  8. int anim abc_slide_in_top 0x7f010008
  9. int anim abc_slide_out_bottom 0x7f010009
  10. int anim abc_slide_out_top 0x7f01000a
  11. int anim abc_tooltip_enter 0x7f01000b
  12. int anim abc_tooltip_exit 0x7f01000c
  13. int anim slide_in_left 0x7f01000d
  14. int anim slide_in_right 0x7f01000e
  15. int anim slide_out_left 0x7f01000f
  16. int anim slide_out_right 0x7f010010
  17. int animator card_flip_left_in 0x7f020001
  18. int animator card_flip_left_out 0x7f020002
  19. int animator card_flip_right_in 0x7f020003
  20. int animator card_flip_right_out 0x7f020004
  21. int attr ItemPickerCurrentItemValue 0x7f040001
  22. int attr ItemPickerDecrementBackground 0x7f040002
  23. int attr ItemPickerDecrementSrc 0x7f040003
  24. int attr ItemPickerDisplayedValue 0x7f040004
  25. int attr ItemPickerEditTextBackground 0x7f040005
  26. int attr ItemPickerIncrementBackground 0x7f040006
  27. int attr ItemPickerIncrementSrc 0x7f040007
  28. int attr ItemPickerMaxItemValue 0x7f040008
  29. int attr ItemPickerMinItemValue 0x7f040009
  30. int attr ItemPickerSpeed 0x7f04000a
  31. int attr TimePickerDefaultValue 0x7f04000b
  32. int attr actionBarDivider 0x7f04000c
  33. int attr actionBarItemBackground 0x7f04000d
  34. int attr actionBarPopupTheme 0x7f04000e
  35. int attr actionBarSize 0x7f04000f
  36. int attr actionBarSplitStyle 0x7f040010
  37. int attr actionBarStyle 0x7f040011
  38. int attr actionBarTabBarStyle 0x7f040012
  39. int attr actionBarTabStyle 0x7f040013
  40. int attr actionBarTabTextStyle 0x7f040014
  41. int attr actionBarTheme 0x7f040015
  42. int attr actionBarWidgetTheme 0x7f040016
  43. int attr actionButtonStyle 0x7f040017
  44. int attr actionDropDownStyle 0x7f040018
  45. int attr actionLayout 0x7f040019
  46. int attr actionMenuTextAppearance 0x7f04001a
  47. int attr actionMenuTextColor 0x7f04001b
  48. int attr actionModeBackground 0x7f04001c
  49. int attr actionModeCloseButtonStyle 0x7f04001d
  50. int attr actionModeCloseDrawable 0x7f04001e
  51. int attr actionModeCopyDrawable 0x7f04001f
  52. int attr actionModeCutDrawable 0x7f040020
  53. int attr actionModeFindDrawable 0x7f040021
  54. int attr actionModePasteDrawable 0x7f040022
  55. int attr actionModePopupWindowStyle 0x7f040023
  56. int attr actionModeSelectAllDrawable 0x7f040024
  57. int attr actionModeShareDrawable 0x7f040025
  58. int attr actionModeSplitBackground 0x7f040026
  59. int attr actionModeStyle 0x7f040027
  60. int attr actionModeWebSearchDrawable 0x7f040028
  61. int attr actionOverflowButtonStyle 0x7f040029
  62. int attr actionOverflowMenuStyle 0x7f04002a
  63. int attr actionProviderClass 0x7f04002b
  64. int attr actionViewClass 0x7f04002c
  65. int attr activityChooserViewStyle 0x7f04002d
  66. int attr adjustable 0x7f04002e
  67. int attr alertDialogButtonGroupStyle 0x7f04002f
  68. int attr alertDialogCenterButtons 0x7f040030
  69. int attr alertDialogStyle 0x7f040031
  70. int attr alertDialogTheme 0x7f040032
  71. int attr allowDividerAbove 0x7f040033
  72. int attr allowDividerAfterLastItem 0x7f040034
  73. int attr allowDividerBelow 0x7f040035
  74. int attr allowStacking 0x7f040036
  75. int attr alpha 0x7f040037
  76. int attr alphabeticModifiers 0x7f040038
  77. int attr arrowHeadLength 0x7f040039
  78. int attr arrowShaftLength 0x7f04003a
  79. int attr aspect_ratio 0x7f04003b
  80. int attr autoCompleteTextViewStyle 0x7f04003c
  81. int attr autoSizeMaxTextSize 0x7f04003d
  82. int attr autoSizeMinTextSize 0x7f04003e
  83. int attr autoSizePresetSizes 0x7f04003f
  84. int attr autoSizeStepGranularity 0x7f040040
  85. int attr autoSizeTextType 0x7f040041
  86. int attr background 0x7f040042
  87. int attr backgroundSplit 0x7f040043
  88. int attr backgroundStacked 0x7f040044
  89. int attr backgroundTint 0x7f040045
  90. int attr backgroundTintMode 0x7f040046
  91. int attr barLength 0x7f040047
  92. int attr borderlessButtonStyle 0x7f040048
  93. int attr buttonBarButtonStyle 0x7f040049
  94. int attr buttonBarNegativeButtonStyle 0x7f04004a
  95. int attr buttonBarNeutralButtonStyle 0x7f04004b
  96. int attr buttonBarPositiveButtonStyle 0x7f04004c
  97. int attr buttonBarStyle 0x7f04004d
  98. int attr buttonGravity 0x7f04004e
  99. int attr buttonIconDimen 0x7f04004f
  100. int attr buttonPanelSideLayout 0x7f040050
  101. int attr buttonStyle 0x7f040051
  102. int attr buttonStyleSmall 0x7f040052
  103. int attr buttonTint 0x7f040053
  104. int attr buttonTintMode 0x7f040054
  105. int attr checkBoxPreferenceStyle 0x7f040055
  106. int attr checkboxStyle 0x7f040056
  107. int attr checkedTextViewStyle 0x7f040057
  108. int attr closeIcon 0x7f040058
  109. int attr closeItemLayout 0x7f040059
  110. int attr collapseContentDescription 0x7f04005a
  111. int attr collapseIcon 0x7f04005b
  112. int attr color 0x7f04005c
  113. int attr colorAccent 0x7f04005d
  114. int attr colorBackgroundFloating 0x7f04005e
  115. int attr colorButtonNormal 0x7f04005f
  116. int attr colorControlActivated 0x7f040060
  117. int attr colorControlHighlight 0x7f040061
  118. int attr colorControlNormal 0x7f040062
  119. int attr colorError 0x7f040063
  120. int attr colorPrimary 0x7f040064
  121. int attr colorPrimaryDark 0x7f040065
  122. int attr colorSwitchThumbNormal 0x7f040066
  123. int attr commitIcon 0x7f040067
  124. int attr contentDescription 0x7f040068
  125. int attr contentInsetEnd 0x7f040069
  126. int attr contentInsetEndWithActions 0x7f04006a
  127. int attr contentInsetLeft 0x7f04006b
  128. int attr contentInsetRight 0x7f04006c
  129. int attr contentInsetStart 0x7f04006d
  130. int attr contentInsetStartWithNavigation 0x7f04006e
  131. int attr controlBackground 0x7f04006f
  132. int attr coordinatorLayoutStyle 0x7f040070
  133. int attr customNavigationLayout 0x7f040071
  134. int attr defaultQueryHint 0x7f040072
  135. int attr defaultValue 0x7f040073
  136. int attr default_value 0x7f040074
  137. int attr dependency 0x7f040075
  138. int attr dialogIcon 0x7f040076
  139. int attr dialogLayout 0x7f040077
  140. int attr dialogMessage 0x7f040078
  141. int attr dialogPreferenceStyle 0x7f040079
  142. int attr dialogPreferredPadding 0x7f04007a
  143. int attr dialogTheme 0x7f04007b
  144. int attr dialogTitle 0x7f04007c
  145. int attr disableDependentsState 0x7f04007d
  146. int attr displayMode 0x7f04007e
  147. int attr displayOptions 0x7f04007f
  148. int attr divider 0x7f040080
  149. int attr dividerHorizontal 0x7f040081
  150. int attr dividerPadding 0x7f040082
  151. int attr dividerVertical 0x7f040083
  152. int attr drawableSize 0x7f040084
  153. int attr drawerArrowStyle 0x7f040085
  154. int attr dropDownListViewStyle 0x7f040086
  155. int attr dropdownListPreferredItemHeight 0x7f040087
  156. int attr dropdownPreferenceStyle 0x7f040088
  157. int attr editTextBackground 0x7f040089
  158. int attr editTextColor 0x7f04008a
  159. int attr editTextPreferenceStyle 0x7f04008b
  160. int attr editTextStyle 0x7f04008c
  161. int attr elevation 0x7f04008d
  162. int attr enableSubWindow 0x7f04008e
  163. int attr enabled 0x7f04008f
  164. int attr entries 0x7f040090
  165. int attr entryValues 0x7f040091
  166. int attr expandActivityOverflowButtonDrawable 0x7f040092
  167. int attr fastScrollEnabled 0x7f040093
  168. int attr fastScrollHorizontalThumbDrawable 0x7f040094
  169. int attr fastScrollHorizontalTrackDrawable 0x7f040095
  170. int attr fastScrollVerticalThumbDrawable 0x7f040096
  171. int attr fastScrollVerticalTrackDrawable 0x7f040097
  172. int attr flipChildPos 0x7f040098
  173. int attr font 0x7f040099
  174. int attr fontFamily 0x7f04009a
  175. int attr fontProviderAuthority 0x7f04009b
  176. int attr fontProviderCerts 0x7f04009c
  177. int attr fontProviderFetchStrategy 0x7f04009d
  178. int attr fontProviderFetchTimeout 0x7f04009e
  179. int attr fontProviderPackage 0x7f04009f
  180. int attr fontProviderQuery 0x7f0400a0
  181. int attr fontStyle 0x7f0400a1
  182. int attr fontWeight 0x7f0400a2
  183. int attr fragment 0x7f0400a3
  184. int attr frame_color 0x7f0400a4
  185. int attr frame_type 0x7f0400a5
  186. int attr frame_width 0x7f0400a6
  187. int attr gapBetweenBars 0x7f0400a7
  188. int attr goIcon 0x7f0400a8
  189. int attr handle_touch_event 0x7f0400a9
  190. int attr height 0x7f0400aa
  191. int attr hideOnContentScroll 0x7f0400ab
  192. int attr homeAsUpIndicator 0x7f0400ac
  193. int attr homeLayout 0x7f0400ad
  194. int attr icon 0x7f0400ae
  195. int attr iconSpaceReserved 0x7f0400af
  196. int attr iconTint 0x7f0400b0
  197. int attr iconTintMode 0x7f0400b1
  198. int attr iconifiedByDefault 0x7f0400b2
  199. int attr imageButtonStyle 0x7f0400b3
  200. int attr indeterminateProgressStyle 0x7f0400b4
  201. int attr initialActivityCount 0x7f0400b5
  202. int attr initialExpandedChildrenCount 0x7f0400b6
  203. int attr isLightTheme 0x7f0400b7
  204. int attr itemPadding 0x7f0400b8
  205. int attr key 0x7f0400b9
  206. int attr keylines 0x7f0400ba
  207. int attr layout 0x7f0400bb
  208. int attr layoutManager 0x7f0400bc
  209. int attr layout_anchor 0x7f0400bd
  210. int attr layout_anchorGravity 0x7f0400be
  211. int attr layout_behavior 0x7f0400bf
  212. int attr layout_dodgeInsetEdges 0x7f0400c0
  213. int attr layout_insetEdge 0x7f0400c1
  214. int attr layout_keyline 0x7f0400c2
  215. int attr listChoiceBackgroundIndicator 0x7f0400c3
  216. int attr listDivider 0x7f0400c4
  217. int attr listDividerAlertDialog 0x7f0400c5
  218. int attr listItemLayout 0x7f0400c6
  219. int attr listLayout 0x7f0400c7
  220. int attr listMenuViewStyle 0x7f0400c8
  221. int attr listPopupWindowStyle 0x7f0400c9
  222. int attr listPreferredItemHeight 0x7f0400ca
  223. int attr listPreferredItemHeightLarge 0x7f0400cb
  224. int attr listPreferredItemHeightSmall 0x7f0400cc
  225. int attr listPreferredItemPaddingLeft 0x7f0400cd
  226. int attr listPreferredItemPaddingRight 0x7f0400ce
  227. int attr logo 0x7f0400cf
  228. int attr logoDescription 0x7f0400d0
  229. int attr maxButtonHeight 0x7f0400d1
  230. int attr maxHeight 0x7f0400d2
  231. int attr maxWidth 0x7f0400d3
  232. int attr max_value 0x7f0400d4
  233. int attr measureWithLargestChild 0x7f0400d5
  234. int attr min 0x7f0400d6
  235. int attr min_value 0x7f0400d7
  236. int attr multiChoiceItemLayout 0x7f0400d8
  237. int attr navigationContentDescription 0x7f0400d9
  238. int attr navigationIcon 0x7f0400da
  239. int attr navigationMode 0x7f0400db
  240. int attr negativeButtonText 0x7f0400dc
  241. int attr numericModifiers 0x7f0400dd
  242. int attr order 0x7f0400de
  243. int attr orderingFromXml 0x7f0400df
  244. int attr orientation 0x7f0400e0
  245. int attr overlapAnchor 0x7f0400e1
  246. int attr paddingBottomNoButtons 0x7f0400e2
  247. int attr paddingEnd 0x7f0400e3
  248. int attr paddingStart 0x7f0400e4
  249. int attr paddingTopNoTitle 0x7f0400e5
  250. int attr panelBackground 0x7f0400e6
  251. int attr panelMenuListTheme 0x7f0400e7
  252. int attr panelMenuListWidth 0x7f0400e8
  253. int attr persistent 0x7f0400e9
  254. int attr popupMenuStyle 0x7f0400ea
  255. int attr popupTheme 0x7f0400eb
  256. int attr popupWindowStyle 0x7f0400ec
  257. int attr positiveButtonText 0x7f0400ed
  258. int attr preferenceActivityStyle 0x7f0400ee
  259. int attr preferenceCategoryStyle 0x7f0400ef
  260. int attr preferenceFragmentCompatStyle 0x7f0400f0
  261. int attr preferenceFragmentListStyle 0x7f0400f1
  262. int attr preferenceFragmentPaddingSide 0x7f0400f2
  263. int attr preferenceFragmentStyle 0x7f0400f3
  264. int attr preferenceHeaderPanelStyle 0x7f0400f4
  265. int attr preferenceInformationStyle 0x7f0400f5
  266. int attr preferenceLayoutChild 0x7f0400f6
  267. int attr preferenceListStyle 0x7f0400f7
  268. int attr preferencePanelStyle 0x7f0400f8
  269. int attr preferenceScreenStyle 0x7f0400f9
  270. int attr preferenceStyle 0x7f0400fa
  271. int attr preferenceTheme 0x7f0400fb
  272. int attr preserveIconSpacing 0x7f0400fc
  273. int attr progressBarPadding 0x7f0400fd
  274. int attr progressBarStyle 0x7f0400fe
  275. int attr queryBackground 0x7f0400ff
  276. int attr queryHint 0x7f040100
  277. int attr radioButtonStyle 0x7f040101
  278. int attr ratingBarStyle 0x7f040102
  279. int attr ratingBarStyleIndicator 0x7f040103
  280. int attr ratingBarStyleSmall 0x7f040104
  281. int attr reverseLayout 0x7f040105
  282. int attr ringtonePreferenceStyle 0x7f040106
  283. int attr scale_color 0x7f040107
  284. int attr scale_mode 0x7f040108
  285. int attr scale_rotation 0x7f040109
  286. int attr scale_scale 0x7f04010a
  287. int attr scale_type 0x7f04010b
  288. int attr scale_value 0x7f04010c
  289. int attr scale_width 0x7f04010d
  290. int attr searchHintIcon 0x7f04010e
  291. int attr searchIcon 0x7f04010f
  292. int attr searchViewStyle 0x7f040110
  293. int attr seekBarIncrement 0x7f040111
  294. int attr seekBarPreferenceStyle 0x7f040112
  295. int attr seekBarStyle 0x7f040113
  296. int attr seekbar_id 0x7f040114
  297. int attr seekbar_label_id 0x7f040115
  298. int attr seekbar_layout 0x7f040116
  299. int attr selectable 0x7f040117
  300. int attr selectableItemBackground 0x7f040118
  301. int attr selectableItemBackgroundBorderless 0x7f040119
  302. int attr shouldDisableView 0x7f04011a
  303. int attr showAsAction 0x7f04011b
  304. int attr showDividers 0x7f04011c
  305. int attr showSeekBarValue 0x7f04011d
  306. int attr showText 0x7f04011e
  307. int attr showTitle 0x7f04011f
  308. int attr singleChoiceItemLayout 0x7f040120
  309. int attr singleLineTitle 0x7f040121
  310. int attr spanCount 0x7f040122
  311. int attr spinBars 0x7f040123
  312. int attr spinnerDropDownItemStyle 0x7f040124
  313. int attr spinnerStyle 0x7f040125
  314. int attr splitTrack 0x7f040126
  315. int attr srcCompat 0x7f040127
  316. int attr stackFromEnd 0x7f040128
  317. int attr state_above_anchor 0x7f040129
  318. int attr statusBarBackground 0x7f04012a
  319. int attr subMenuArrow 0x7f04012b
  320. int attr subWindowScale 0x7f04012c
  321. int attr submitBackground 0x7f04012d
  322. int attr subtitle 0x7f04012e
  323. int attr subtitleTextAppearance 0x7f04012f
  324. int attr subtitleTextColor 0x7f040130
  325. int attr subtitleTextStyle 0x7f040131
  326. int attr suggestionRowLayout 0x7f040132
  327. int attr summary 0x7f040133
  328. int attr summaryOff 0x7f040134
  329. int attr summaryOn 0x7f040135
  330. int attr switchMinWidth 0x7f040136
  331. int attr switchPadding 0x7f040137
  332. int attr switchPreferenceCompatStyle 0x7f040138
  333. int attr switchPreferenceStyle 0x7f040139
  334. int attr switchStyle 0x7f04013a
  335. int attr switchTextAppearance 0x7f04013b
  336. int attr switchTextOff 0x7f04013c
  337. int attr switchTextOn 0x7f04013d
  338. int attr textAllCaps 0x7f04013e
  339. int attr textAppearanceLargePopupMenu 0x7f04013f
  340. int attr textAppearanceListItem 0x7f040140
  341. int attr textAppearanceListItemSecondary 0x7f040141
  342. int attr textAppearanceListItemSmall 0x7f040142
  343. int attr textAppearancePopupMenuHeader 0x7f040143
  344. int attr textAppearanceSearchResultSubtitle 0x7f040144
  345. int attr textAppearanceSearchResultTitle 0x7f040145
  346. int attr textAppearanceSmallPopupMenu 0x7f040146
  347. int attr textColorAlertDialogListItem 0x7f040147
  348. int attr textColorSearchUrl 0x7f040148
  349. int attr theme 0x7f040149
  350. int attr thickness 0x7f04014a
  351. int attr thumbTextPadding 0x7f04014b
  352. int attr thumbTint 0x7f04014c
  353. int attr thumbTintMode 0x7f04014d
  354. int attr tickMark 0x7f04014e
  355. int attr tickMarkTint 0x7f04014f
  356. int attr tickMarkTintMode 0x7f040150
  357. int attr tick_color 0x7f040151
  358. int attr tint 0x7f040152
  359. int attr tintMode 0x7f040153
  360. int attr title 0x7f040154
  361. int attr titleMargin 0x7f040155
  362. int attr titleMarginBottom 0x7f040156
  363. int attr titleMarginEnd 0x7f040157
  364. int attr titleMarginStart 0x7f040158
  365. int attr titleMarginTop 0x7f040159
  366. int attr titleMargins 0x7f04015a
  367. int attr titleTextAppearance 0x7f04015b
  368. int attr titleTextColor 0x7f04015c
  369. int attr titleTextStyle 0x7f04015d
  370. int attr toolbarNavigationButtonStyle 0x7f04015e
  371. int attr toolbarStyle 0x7f04015f
  372. int attr tooltipForegroundColor 0x7f040160
  373. int attr tooltipFrameBackground 0x7f040161
  374. int attr tooltipText 0x7f040162
  375. int attr track 0x7f040163
  376. int attr trackTint 0x7f040164
  377. int attr trackTintMode 0x7f040165
  378. int attr value_format 0x7f040166
  379. int attr viewInflaterClass 0x7f040167
  380. int attr voiceIcon 0x7f040168
  381. int attr widgetLayout 0x7f040169
  382. int attr windowActionBar 0x7f04016a
  383. int attr windowActionBarOverlay 0x7f04016b
  384. int attr windowActionModeOverlay 0x7f04016c
  385. int attr windowFixedHeightMajor 0x7f04016d
  386. int attr windowFixedHeightMinor 0x7f04016e
  387. int attr windowFixedWidthMajor 0x7f04016f
  388. int attr windowFixedWidthMinor 0x7f040170
  389. int attr windowMinWidthMajor 0x7f040171
  390. int attr windowMinWidthMinor 0x7f040172
  391. int attr windowNoTitle 0x7f040173
  392. int attr yesNoPreferenceStyle 0x7f040174
  393. int bool abc_action_bar_embed_tabs 0x7f050001
  394. int bool abc_allow_stacked_button_bar 0x7f050002
  395. int bool abc_config_actionMenuItemAllCaps 0x7f050003
  396. int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050004
  397. int color ALICEBLUE 0x7f060001
  398. int color ANTIQUEWHITE 0x7f060002
  399. int color AQUA 0x7f060003
  400. int color AQUAMARINE 0x7f060004
  401. int color AZURE 0x7f060005
  402. int color BEIGE 0x7f060006
  403. int color BISQUE 0x7f060007
  404. int color BLACK 0x7f060008
  405. int color BLACK_A010 0x7f060009
  406. int color BLACK_A020 0x7f06000a
  407. int color BLACK_A030 0x7f06000b
  408. int color BLACK_A040 0x7f06000c
  409. int color BLACK_A050 0x7f06000d
  410. int color BLACK_A060 0x7f06000e
  411. int color BLACK_A070 0x7f06000f
  412. int color BLACK_A080 0x7f060010
  413. int color BLACK_A090 0x7f060011
  414. int color BLACK_A100 0x7f060012
  415. int color BLANCHEDALMOND 0x7f060013
  416. int color BLUE 0x7f060014
  417. int color BLUEVIOLET 0x7f060015
  418. int color BLUE_A010 0x7f060016
  419. int color BLUE_A020 0x7f060017
  420. int color BLUE_A030 0x7f060018
  421. int color BLUE_A040 0x7f060019
  422. int color BLUE_A050 0x7f06001a
  423. int color BLUE_A060 0x7f06001b
  424. int color BLUE_A070 0x7f06001c
  425. int color BLUE_A080 0x7f06001d
  426. int color BLUE_A090 0x7f06001e
  427. int color BLUE_A100 0x7f06001f
  428. int color BROWN 0x7f060020
  429. int color BURLYWOOD 0x7f060021
  430. int color CADETBLUE 0x7f060022
  431. int color CHARTREUSE 0x7f060023
  432. int color CHOCOLATE 0x7f060024
  433. int color CLEAR 0x7f060025
  434. int color CORAL 0x7f060026
  435. int color CORNFLOWERBLUE 0x7f060027
  436. int color CORNSILK 0x7f060028
  437. int color CRIMSON 0x7f060029
  438. int color CYAN 0x7f06002a
  439. int color DARKBLUE 0x7f06002b
  440. int color DARKCYAN 0x7f06002c
  441. int color DARKGOLDENROD 0x7f06002d
  442. int color DARKGRAY 0x7f06002e
  443. int color DARKGREEN 0x7f06002f
  444. int color DARKKHAKI 0x7f060030
  445. int color DARKMAGENTA 0x7f060031
  446. int color DARKOLIVEGREEN 0x7f060032
  447. int color DARKORANGE 0x7f060033
  448. int color DARKORCHID 0x7f060034
  449. int color DARKRED 0x7f060035
  450. int color DARKSALMON 0x7f060036
  451. int color DARKSEAGREEN 0x7f060037
  452. int color DARKSLATEBLUE 0x7f060038
  453. int color DARKSLATEGRAY 0x7f060039
  454. int color DARKTURQUOISE 0x7f06003a
  455. int color DARKVIOLET 0x7f06003b
  456. int color DEEPPINK 0x7f06003c
  457. int color DEEPSKYBLUE 0x7f06003d
  458. int color DIMGRAY 0x7f06003e
  459. int color DODGERBLUE 0x7f06003f
  460. int color FIREBRICK 0x7f060040
  461. int color FLORALWHITE 0x7f060041
  462. int color FORESTGREEN 0x7f060042
  463. int color FUCHSIA 0x7f060043
  464. int color GAINSBORO 0x7f060044
  465. int color GHOSTWHITE 0x7f060045
  466. int color GOLD 0x7f060046
  467. int color GOLDENROD 0x7f060047
  468. int color GRAY 0x7f060048
  469. int color GRAY_050_A010 0x7f060049
  470. int color GRAY_050_A020 0x7f06004a
  471. int color GRAY_050_A030 0x7f06004b
  472. int color GRAY_050_A040 0x7f06004c
  473. int color GRAY_050_A050 0x7f06004d
  474. int color GRAY_050_A060 0x7f06004e
  475. int color GRAY_050_A070 0x7f06004f
  476. int color GRAY_050_A080 0x7f060050
  477. int color GRAY_050_A090 0x7f060051
  478. int color GRAY_050_A100 0x7f060052
  479. int color GRAY_100_A010 0x7f060053
  480. int color GRAY_100_A020 0x7f060054
  481. int color GRAY_100_A030 0x7f060055
  482. int color GRAY_100_A040 0x7f060056
  483. int color GRAY_100_A050 0x7f060057
  484. int color GRAY_100_A060 0x7f060058
  485. int color GRAY_100_A070 0x7f060059
  486. int color GRAY_100_A080 0x7f06005a
  487. int color GRAY_100_A090 0x7f06005b
  488. int color GRAY_100_A100 0x7f06005c
  489. int color GRAY_200_A010 0x7f06005d
  490. int color GRAY_200_A020 0x7f06005e
  491. int color GRAY_200_A030 0x7f06005f
  492. int color GRAY_200_A040 0x7f060060
  493. int color GRAY_200_A050 0x7f060061
  494. int color GRAY_200_A060 0x7f060062
  495. int color GRAY_200_A070 0x7f060063
  496. int color GRAY_200_A080 0x7f060064
  497. int color GRAY_200_A090 0x7f060065
  498. int color GRAY_200_A100 0x7f060066
  499. int color GRAY_300_A010 0x7f060067
  500. int color GRAY_300_A020 0x7f060068
  501. int color GRAY_300_A030 0x7f060069
  502. int color GRAY_300_A040 0x7f06006a
  503. int color GRAY_300_A050 0x7f06006b
  504. int color GRAY_300_A060 0x7f06006c
  505. int color GRAY_300_A070 0x7f06006d
  506. int color GRAY_300_A080 0x7f06006e
  507. int color GRAY_300_A090 0x7f06006f
  508. int color GRAY_300_A100 0x7f060070
  509. int color GRAY_400_A010 0x7f060071
  510. int color GRAY_400_A020 0x7f060072
  511. int color GRAY_400_A030 0x7f060073
  512. int color GRAY_400_A040 0x7f060074
  513. int color GRAY_400_A050 0x7f060075
  514. int color GRAY_400_A060 0x7f060076
  515. int color GRAY_400_A070 0x7f060077
  516. int color GRAY_400_A080 0x7f060078
  517. int color GRAY_400_A090 0x7f060079
  518. int color GRAY_400_A100 0x7f06007a
  519. int color GRAY_500_A010 0x7f06007b
  520. int color GRAY_500_A020 0x7f06007c
  521. int color GRAY_500_A030 0x7f06007d
  522. int color GRAY_500_A040 0x7f06007e
  523. int color GRAY_500_A050 0x7f06007f
  524. int color GRAY_500_A060 0x7f060080
  525. int color GRAY_500_A070 0x7f060081
  526. int color GRAY_500_A080 0x7f060082
  527. int color GRAY_500_A090 0x7f060083
  528. int color GRAY_500_A100 0x7f060084
  529. int color GRAY_600_A010 0x7f060085
  530. int color GRAY_600_A020 0x7f060086
  531. int color GRAY_600_A030 0x7f060087
  532. int color GRAY_600_A040 0x7f060088
  533. int color GRAY_600_A050 0x7f060089
  534. int color GRAY_600_A060 0x7f06008a
  535. int color GRAY_600_A070 0x7f06008b
  536. int color GRAY_600_A080 0x7f06008c
  537. int color GRAY_600_A090 0x7f06008d
  538. int color GRAY_600_A100 0x7f06008e
  539. int color GRAY_700_A010 0x7f06008f
  540. int color GRAY_700_A020 0x7f060090
  541. int color GRAY_700_A030 0x7f060091
  542. int color GRAY_700_A040 0x7f060092
  543. int color GRAY_700_A050 0x7f060093
  544. int color GRAY_700_A060 0x7f060094
  545. int color GRAY_700_A070 0x7f060095
  546. int color GRAY_700_A080 0x7f060096
  547. int color GRAY_700_A090 0x7f060097
  548. int color GRAY_700_A100 0x7f060098
  549. int color GRAY_800_A010 0x7f060099
  550. int color GRAY_800_A020 0x7f06009a
  551. int color GRAY_800_A030 0x7f06009b
  552. int color GRAY_800_A040 0x7f06009c
  553. int color GRAY_800_A050 0x7f06009d
  554. int color GRAY_800_A060 0x7f06009e
  555. int color GRAY_800_A070 0x7f06009f
  556. int color GRAY_800_A080 0x7f0600a0
  557. int color GRAY_800_A090 0x7f0600a1
  558. int color GRAY_800_A100 0x7f0600a2
  559. int color GRAY_900_A010 0x7f0600a3
  560. int color GRAY_900_A020 0x7f0600a4
  561. int color GRAY_900_A030 0x7f0600a5
  562. int color GRAY_900_A040 0x7f0600a6
  563. int color GRAY_900_A050 0x7f0600a7
  564. int color GRAY_900_A060 0x7f0600a8
  565. int color GRAY_900_A070 0x7f0600a9
  566. int color GRAY_900_A080 0x7f0600aa
  567. int color GRAY_900_A090 0x7f0600ab
  568. int color GRAY_900_A100 0x7f0600ac
  569. int color GREEN 0x7f0600ad
  570. int color GREENYELLOW 0x7f0600ae
  571. int color GREEN_A010 0x7f0600af
  572. int color GREEN_A020 0x7f0600b0
  573. int color GREEN_A030 0x7f0600b1
  574. int color GREEN_A040 0x7f0600b2
  575. int color GREEN_A050 0x7f0600b3
  576. int color GREEN_A060 0x7f0600b4
  577. int color GREEN_A070 0x7f0600b5
  578. int color GREEN_A080 0x7f0600b6
  579. int color GREEN_A090 0x7f0600b7
  580. int color GREEN_A100 0x7f0600b8
  581. int color HALF_CLEAR_ALICEBLUE 0x7f0600b9
  582. int color HALF_CLEAR_BLACK 0x7f0600ba
  583. int color HALF_CLEAR_GRAY 0x7f0600bb
  584. int color HALF_CLEAR_WHITE 0x7f0600bc
  585. int color HONEYDEW 0x7f0600bd
  586. int color HOTPINK 0x7f0600be
  587. int color INDIANRED 0x7f0600bf
  588. int color INDIGO 0x7f0600c0
  589. int color IVORY 0x7f0600c1
  590. int color KHAKI 0x7f0600c2
  591. int color LAVENDER 0x7f0600c3
  592. int color LAVENDERBLUSH 0x7f0600c4
  593. int color LAWNGREEN 0x7f0600c5
  594. int color LEMONCHIFFON 0x7f0600c6
  595. int color LIGHTBLUE 0x7f0600c7
  596. int color LIGHTCORAL 0x7f0600c8
  597. int color LIGHTCYAN 0x7f0600c9
  598. int color LIGHTGOLDENRODYELLOW 0x7f0600ca
  599. int color LIGHTGRAY 0x7f0600cb
  600. int color LIGHTGREEN 0x7f0600cc
  601. int color LIGHTPINK 0x7f0600cd
  602. int color LIGHTSALMON 0x7f0600ce
  603. int color LIGHTSEAGREEN 0x7f0600cf
  604. int color LIGHTSKYBLUE 0x7f0600d0
  605. int color LIGHTSLATEGRAY 0x7f0600d1
  606. int color LIGHTSTEELBLUE 0x7f0600d2
  607. int color LIGHTYELLOW 0x7f0600d3
  608. int color LIME 0x7f0600d4
  609. int color LIMEGREEN 0x7f0600d5
  610. int color LINEN 0x7f0600d6
  611. int color MAGENTA 0x7f0600d7
  612. int color MAROON 0x7f0600d8
  613. int color MEDIUMAQUAMARINE 0x7f0600d9
  614. int color MEDIUMBLUE 0x7f0600da
  615. int color MEDIUMORCHID 0x7f0600db
  616. int color MEDIUMPURPLE 0x7f0600dc
  617. int color MEDIUMSEAGREEN 0x7f0600dd
  618. int color MEDIUMSLATEBLUE 0x7f0600de
  619. int color MEDIUMSPRINGGREEN 0x7f0600df
  620. int color MEDIUMTURQUOISE 0x7f0600e0
  621. int color MEDIUMVIOLETRED 0x7f0600e1
  622. int color MIDNIGHTBLUE 0x7f0600e2
  623. int color MINTCREAM 0x7f0600e3
  624. int color MISTYROSE 0x7f0600e4
  625. int color MOCCASIN 0x7f0600e5
  626. int color NAVAJOWHITE 0x7f0600e6
  627. int color NAVY 0x7f0600e7
  628. int color OLDLACE 0x7f0600e8
  629. int color OLIVE 0x7f0600e9
  630. int color OLIVEDRAB 0x7f0600ea
  631. int color ORANGE 0x7f0600eb
  632. int color ORANGERED 0x7f0600ec
  633. int color ORCHID 0x7f0600ed
  634. int color PALEGOLDENROD 0x7f0600ee
  635. int color PALEGREEN 0x7f0600ef
  636. int color PALETURQUOISE 0x7f0600f0
  637. int color PALEVIOLETRED 0x7f0600f1
  638. int color PAPAYAWHIP 0x7f0600f2
  639. int color PEACHPUFF 0x7f0600f3
  640. int color PERU 0x7f0600f4
  641. int color PINK 0x7f0600f5
  642. int color PLUM 0x7f0600f6
  643. int color POWDERBLUE 0x7f0600f7
  644. int color PURPLE 0x7f0600f8
  645. int color PURPLE_A010 0x7f0600f9
  646. int color PURPLE_A020 0x7f0600fa
  647. int color PURPLE_A030 0x7f0600fb
  648. int color PURPLE_A040 0x7f0600fc
  649. int color PURPLE_A050 0x7f0600fd
  650. int color PURPLE_A060 0x7f0600fe
  651. int color PURPLE_A070 0x7f0600ff
  652. int color PURPLE_A080 0x7f060100
  653. int color PURPLE_A090 0x7f060101
  654. int color PURPLE_A100 0x7f060102
  655. int color QUARTER_CLEAR_BLACK 0x7f060103
  656. int color QUARTER_CLEAR_GRAY 0x7f060104
  657. int color QUARTER_CLEAR_WHITE 0x7f060105
  658. int color RED 0x7f060106
  659. int color RED_050_A010 0x7f060107
  660. int color RED_050_A020 0x7f060108
  661. int color RED_050_A030 0x7f060109
  662. int color RED_050_A040 0x7f06010a
  663. int color RED_050_A050 0x7f06010b
  664. int color RED_050_A060 0x7f06010c
  665. int color RED_050_A070 0x7f06010d
  666. int color RED_050_A080 0x7f06010e
  667. int color RED_050_A090 0x7f06010f
  668. int color RED_050_A100 0x7f060110
  669. int color RED_100_A010 0x7f060111
  670. int color RED_100_A020 0x7f060112
  671. int color RED_100_A030 0x7f060113
  672. int color RED_100_A040 0x7f060114
  673. int color RED_100_A050 0x7f060115
  674. int color RED_100_A060 0x7f060116
  675. int color RED_100_A070 0x7f060117
  676. int color RED_100_A080 0x7f060118
  677. int color RED_100_A090 0x7f060119
  678. int color RED_100_A100 0x7f06011a
  679. int color RED_200_A010 0x7f06011b
  680. int color RED_200_A020 0x7f06011c
  681. int color RED_200_A030 0x7f06011d
  682. int color RED_200_A040 0x7f06011e
  683. int color RED_200_A050 0x7f06011f
  684. int color RED_200_A060 0x7f060120
  685. int color RED_200_A070 0x7f060121
  686. int color RED_200_A080 0x7f060122
  687. int color RED_200_A090 0x7f060123
  688. int color RED_200_A100 0x7f060124
  689. int color RED_300_A010 0x7f060125
  690. int color RED_300_A020 0x7f060126
  691. int color RED_300_A030 0x7f060127
  692. int color RED_300_A040 0x7f060128
  693. int color RED_300_A050 0x7f060129
  694. int color RED_300_A060 0x7f06012a
  695. int color RED_300_A070 0x7f06012b
  696. int color RED_300_A080 0x7f06012c
  697. int color RED_300_A090 0x7f06012d
  698. int color RED_300_A100 0x7f06012e
  699. int color RED_400_A010 0x7f06012f
  700. int color RED_400_A020 0x7f060130
  701. int color RED_400_A030 0x7f060131
  702. int color RED_400_A040 0x7f060132
  703. int color RED_400_A050 0x7f060133
  704. int color RED_400_A060 0x7f060134
  705. int color RED_400_A070 0x7f060135
  706. int color RED_400_A080 0x7f060136
  707. int color RED_400_A090 0x7f060137
  708. int color RED_400_A100 0x7f060138
  709. int color RED_500_A010 0x7f060139
  710. int color RED_500_A020 0x7f06013a
  711. int color RED_500_A030 0x7f06013b
  712. int color RED_500_A040 0x7f06013c
  713. int color RED_500_A050 0x7f06013d
  714. int color RED_500_A060 0x7f06013e
  715. int color RED_500_A070 0x7f06013f
  716. int color RED_500_A080 0x7f060140
  717. int color RED_500_A090 0x7f060141
  718. int color RED_500_A100 0x7f060142
  719. int color RED_600_A010 0x7f060143
  720. int color RED_600_A020 0x7f060144
  721. int color RED_600_A030 0x7f060145
  722. int color RED_600_A040 0x7f060146
  723. int color RED_600_A050 0x7f060147
  724. int color RED_600_A060 0x7f060148
  725. int color RED_600_A070 0x7f060149
  726. int color RED_600_A080 0x7f06014a
  727. int color RED_600_A090 0x7f06014b
  728. int color RED_600_A100 0x7f06014c
  729. int color RED_700_A010 0x7f06014d
  730. int color RED_700_A020 0x7f06014e
  731. int color RED_700_A030 0x7f06014f
  732. int color RED_700_A040 0x7f060150
  733. int color RED_700_A050 0x7f060151
  734. int color RED_700_A060 0x7f060152
  735. int color RED_700_A070 0x7f060153
  736. int color RED_700_A080 0x7f060154
  737. int color RED_700_A090 0x7f060155
  738. int color RED_700_A100 0x7f060156
  739. int color RED_800_A010 0x7f060157
  740. int color RED_800_A020 0x7f060158
  741. int color RED_800_A030 0x7f060159
  742. int color RED_800_A040 0x7f06015a
  743. int color RED_800_A050 0x7f06015b
  744. int color RED_800_A060 0x7f06015c
  745. int color RED_800_A070 0x7f06015d
  746. int color RED_800_A080 0x7f06015e
  747. int color RED_800_A090 0x7f06015f
  748. int color RED_800_A100 0x7f060160
  749. int color RED_900_A010 0x7f060161
  750. int color RED_900_A020 0x7f060162
  751. int color RED_900_A030 0x7f060163
  752. int color RED_900_A040 0x7f060164
  753. int color RED_900_A050 0x7f060165
  754. int color RED_900_A060 0x7f060166
  755. int color RED_900_A070 0x7f060167
  756. int color RED_900_A080 0x7f060168
  757. int color RED_900_A090 0x7f060169
  758. int color RED_900_A100 0x7f06016a
  759. int color RED_A010 0x7f06016b
  760. int color RED_A020 0x7f06016c
  761. int color RED_A030 0x7f06016d
  762. int color RED_A040 0x7f06016e
  763. int color RED_A050 0x7f06016f
  764. int color RED_A060 0x7f060170
  765. int color RED_A070 0x7f060171
  766. int color RED_A080 0x7f060172
  767. int color RED_A090 0x7f060173
  768. int color RED_A100 0x7f060174
  769. int color ROSYBROWN 0x7f060175
  770. int color ROYALBLUE 0x7f060176
  771. int color SADDLEBROWN 0x7f060177
  772. int color SALMON 0x7f060178
  773. int color SANDYBROWN 0x7f060179
  774. int color SEAGREEN 0x7f06017a
  775. int color SEASHELL 0x7f06017b
  776. int color SIENNA 0x7f06017c
  777. int color SILVER 0x7f06017d
  778. int color SKYBLUE 0x7f06017e
  779. int color SLATEBLUE 0x7f06017f
  780. int color SLATEGRAY 0x7f060180
  781. int color SNOW 0x7f060181
  782. int color SPRINGGREEN 0x7f060182
  783. int color STEELBLUE 0x7f060183
  784. int color TAN 0x7f060184
  785. int color TEAL 0x7f060185
  786. int color TEAL_050_A010 0x7f060186
  787. int color TEAL_050_A020 0x7f060187
  788. int color TEAL_050_A030 0x7f060188
  789. int color TEAL_050_A040 0x7f060189
  790. int color TEAL_050_A050 0x7f06018a
  791. int color TEAL_050_A060 0x7f06018b
  792. int color TEAL_050_A070 0x7f06018c
  793. int color TEAL_050_A080 0x7f06018d
  794. int color TEAL_050_A090 0x7f06018e
  795. int color TEAL_050_A100 0x7f06018f
  796. int color TEAL_100_A010 0x7f060190
  797. int color TEAL_100_A020 0x7f060191
  798. int color TEAL_100_A030 0x7f060192
  799. int color TEAL_100_A040 0x7f060193
  800. int color TEAL_100_A050 0x7f060194
  801. int color TEAL_100_A060 0x7f060195
  802. int color TEAL_100_A070 0x7f060196
  803. int color TEAL_100_A080 0x7f060197
  804. int color TEAL_100_A090 0x7f060198
  805. int color TEAL_100_A100 0x7f060199
  806. int color TEAL_200_A010 0x7f06019a
  807. int color TEAL_200_A020 0x7f06019b
  808. int color TEAL_200_A030 0x7f06019c
  809. int color TEAL_200_A040 0x7f06019d
  810. int color TEAL_200_A050 0x7f06019e
  811. int color TEAL_200_A060 0x7f06019f
  812. int color TEAL_200_A070 0x7f0601a0
  813. int color TEAL_200_A080 0x7f0601a1
  814. int color TEAL_200_A090 0x7f0601a2
  815. int color TEAL_200_A100 0x7f0601a3
  816. int color TEAL_300_A010 0x7f0601a4
  817. int color TEAL_300_A020 0x7f0601a5
  818. int color TEAL_300_A030 0x7f0601a6
  819. int color TEAL_300_A040 0x7f0601a7
  820. int color TEAL_300_A050 0x7f0601a8
  821. int color TEAL_300_A060 0x7f0601a9
  822. int color TEAL_300_A070 0x7f0601aa
  823. int color TEAL_300_A080 0x7f0601ab
  824. int color TEAL_300_A090 0x7f0601ac
  825. int color TEAL_300_A100 0x7f0601ad
  826. int color TEAL_400_A010 0x7f0601ae
  827. int color TEAL_400_A020 0x7f0601af
  828. int color TEAL_400_A030 0x7f0601b0
  829. int color TEAL_400_A040 0x7f0601b1
  830. int color TEAL_400_A050 0x7f0601b2
  831. int color TEAL_400_A060 0x7f0601b3
  832. int color TEAL_400_A070 0x7f0601b4
  833. int color TEAL_400_A080 0x7f0601b5
  834. int color TEAL_400_A090 0x7f0601b6
  835. int color TEAL_400_A100 0x7f0601b7
  836. int color TEAL_500_A010 0x7f0601b8
  837. int color TEAL_500_A020 0x7f0601b9
  838. int color TEAL_500_A030 0x7f0601ba
  839. int color TEAL_500_A040 0x7f0601bb
  840. int color TEAL_500_A050 0x7f0601bc
  841. int color TEAL_500_A060 0x7f0601bd
  842. int color TEAL_500_A070 0x7f0601be
  843. int color TEAL_500_A080 0x7f0601bf
  844. int color TEAL_500_A090 0x7f0601c0
  845. int color TEAL_500_A100 0x7f0601c1
  846. int color TEAL_600_A010 0x7f0601c2
  847. int color TEAL_600_A020 0x7f0601c3
  848. int color TEAL_600_A030 0x7f0601c4
  849. int color TEAL_600_A040 0x7f0601c5
  850. int color TEAL_600_A050 0x7f0601c6
  851. int color TEAL_600_A060 0x7f0601c7
  852. int color TEAL_600_A070 0x7f0601c8
  853. int color TEAL_600_A080 0x7f0601c9
  854. int color TEAL_600_A090 0x7f0601ca
  855. int color TEAL_600_A100 0x7f0601cb
  856. int color TEAL_700_A010 0x7f0601cc
  857. int color TEAL_700_A020 0x7f0601cd
  858. int color TEAL_700_A030 0x7f0601ce
  859. int color TEAL_700_A040 0x7f0601cf
  860. int color TEAL_700_A050 0x7f0601d0
  861. int color TEAL_700_A060 0x7f0601d1
  862. int color TEAL_700_A070 0x7f0601d2
  863. int color TEAL_700_A080 0x7f0601d3
  864. int color TEAL_700_A090 0x7f0601d4
  865. int color TEAL_700_A100 0x7f0601d5
  866. int color TEAL_800_A010 0x7f0601d6
  867. int color TEAL_800_A020 0x7f0601d7
  868. int color TEAL_800_A030 0x7f0601d8
  869. int color TEAL_800_A040 0x7f0601d9
  870. int color TEAL_800_A050 0x7f0601da
  871. int color TEAL_800_A060 0x7f0601db
  872. int color TEAL_800_A070 0x7f0601dc
  873. int color TEAL_800_A080 0x7f0601dd
  874. int color TEAL_800_A090 0x7f0601de
  875. int color TEAL_800_A100 0x7f0601df
  876. int color TEAL_900_A010 0x7f0601e0
  877. int color TEAL_900_A020 0x7f0601e1
  878. int color TEAL_900_A030 0x7f0601e2
  879. int color TEAL_900_A040 0x7f0601e3
  880. int color TEAL_900_A050 0x7f0601e4
  881. int color TEAL_900_A060 0x7f0601e5
  882. int color TEAL_900_A070 0x7f0601e6
  883. int color TEAL_900_A080 0x7f0601e7
  884. int color TEAL_900_A090 0x7f0601e8
  885. int color TEAL_900_A100 0x7f0601e9
  886. int color THISTLE 0x7f0601ea
  887. int color TOMATO 0x7f0601eb
  888. int color TRANSPARENT 0x7f0601ec
  889. int color TURQUOISE 0x7f0601ed
  890. int color VIOLET 0x7f0601ee
  891. int color WHEAT 0x7f0601ef
  892. int color WHITE 0x7f0601f0
  893. int color WHITESMOKE 0x7f0601f1
  894. int color WHITE_A010 0x7f0601f2
  895. int color WHITE_A020 0x7f0601f3
  896. int color WHITE_A030 0x7f0601f4
  897. int color WHITE_A040 0x7f0601f5
  898. int color WHITE_A050 0x7f0601f6
  899. int color WHITE_A060 0x7f0601f7
  900. int color WHITE_A070 0x7f0601f8
  901. int color WHITE_A080 0x7f0601f9
  902. int color WHITE_A090 0x7f0601fa
  903. int color WHITE_A100 0x7f0601fb
  904. int color YELLOW 0x7f0601fc
  905. int color YELLOWGREEN 0x7f0601fd
  906. int color YELLOW_A010 0x7f0601fe
  907. int color YELLOW_A020 0x7f0601ff
  908. int color YELLOW_A030 0x7f060200
  909. int color YELLOW_A040 0x7f060201
  910. int color YELLOW_A050 0x7f060202
  911. int color YELLOW_A060 0x7f060203
  912. int color YELLOW_A070 0x7f060204
  913. int color YELLOW_A080 0x7f060205
  914. int color YELLOW_A090 0x7f060206
  915. int color YELLOW_A100 0x7f060207
  916. int color abc_background_cache_hint_selector_material_dark 0x7f060208
  917. int color abc_background_cache_hint_selector_material_light 0x7f060209
  918. int color abc_btn_colored_borderless_text_material 0x7f06020a
  919. int color abc_btn_colored_text_material 0x7f06020b
  920. int color abc_color_highlight_material 0x7f06020c
  921. int color abc_hint_foreground_material_dark 0x7f06020d
  922. int color abc_hint_foreground_material_light 0x7f06020e
  923. int color abc_input_method_navigation_guard 0x7f06020f
  924. int color abc_primary_text_disable_only_material_dark 0x7f060210
  925. int color abc_primary_text_disable_only_material_light 0x7f060211
  926. int color abc_primary_text_material_dark 0x7f060212
  927. int color abc_primary_text_material_light 0x7f060213
  928. int color abc_search_url_text 0x7f060214
  929. int color abc_search_url_text_normal 0x7f060215
  930. int color abc_search_url_text_pressed 0x7f060216
  931. int color abc_search_url_text_selected 0x7f060217
  932. int color abc_secondary_text_material_dark 0x7f060218
  933. int color abc_secondary_text_material_light 0x7f060219
  934. int color abc_tint_btn_checkable 0x7f06021a
  935. int color abc_tint_default 0x7f06021b
  936. int color abc_tint_edittext 0x7f06021c
  937. int color abc_tint_seek_thumb 0x7f06021d
  938. int color abc_tint_spinner 0x7f06021e
  939. int color abc_tint_switch_track 0x7f06021f
  940. int color accent_material_dark 0x7f060220
  941. int color accent_material_light 0x7f060221
  942. int color background_floating_material_dark 0x7f060222
  943. int color background_floating_material_light 0x7f060223
  944. int color background_material_dark 0x7f060224
  945. int color background_material_light 0x7f060225
  946. int color bright_foreground_disabled_material_dark 0x7f060226
  947. int color bright_foreground_disabled_material_light 0x7f060227
  948. int color bright_foreground_inverse_material_dark 0x7f060228
  949. int color bright_foreground_inverse_material_light 0x7f060229
  950. int color bright_foreground_material_dark 0x7f06022a
  951. int color bright_foreground_material_light 0x7f06022b
  952. int color button_material_dark 0x7f06022c
  953. int color button_material_light 0x7f06022d
  954. int color contents_text 0x7f06022e
  955. int color dim_foreground_disabled_material_dark 0x7f06022f
  956. int color dim_foreground_disabled_material_light 0x7f060230
  957. int color dim_foreground_material_dark 0x7f060231
  958. int color dim_foreground_material_light 0x7f060232
  959. int color encode_view 0x7f060233
  960. int color error_color_material 0x7f060234
  961. int color foreground_material_dark 0x7f060235
  962. int color foreground_material_light 0x7f060236
  963. int color highlighted_text_material_dark 0x7f060237
  964. int color highlighted_text_material_light 0x7f060238
  965. int color material_blue_grey_800 0x7f060239
  966. int color material_blue_grey_900 0x7f06023a
  967. int color material_blue_grey_950 0x7f06023b
  968. int color material_deep_teal_200 0x7f06023c
  969. int color material_deep_teal_500 0x7f06023d
  970. int color material_grey_100 0x7f06023e
  971. int color material_grey_300 0x7f06023f
  972. int color material_grey_50 0x7f060240
  973. int color material_grey_600 0x7f060241
  974. int color material_grey_800 0x7f060242
  975. int color material_grey_850 0x7f060243
  976. int color material_grey_900 0x7f060244
  977. int color notification_action_color_filter 0x7f060245
  978. int color notification_icon_bg_color 0x7f060246
  979. int color notification_material_background_media_default_color 0x7f060247
  980. int color possible_result_points 0x7f060248
  981. int color preference_fallback_accent_color 0x7f060249
  982. int color primary_dark_material_dark 0x7f06024a
  983. int color primary_dark_material_light 0x7f06024b
  984. int color primary_material_dark 0x7f06024c
  985. int color primary_material_light 0x7f06024d
  986. int color primary_text_default_material_dark 0x7f06024e
  987. int color primary_text_default_material_light 0x7f06024f
  988. int color primary_text_disabled_material_dark 0x7f060250
  989. int color primary_text_disabled_material_light 0x7f060251
  990. int color result_minor_text 0x7f060252
  991. int color result_points 0x7f060253
  992. int color result_text 0x7f060254
  993. int color result_view 0x7f060255
  994. int color ripple_material_dark 0x7f060256
  995. int color ripple_material_light 0x7f060257
  996. int color secondary_text_default_material_dark 0x7f060258
  997. int color secondary_text_default_material_light 0x7f060259
  998. int color secondary_text_disabled_material_dark 0x7f06025a
  999. int color secondary_text_disabled_material_light 0x7f06025b
  1000. int color status_text 0x7f06025c
  1001. int color switch_thumb_disabled_material_dark 0x7f06025d
  1002. int color switch_thumb_disabled_material_light 0x7f06025e
  1003. int color switch_thumb_material_dark 0x7f06025f
  1004. int color switch_thumb_material_light 0x7f060260
  1005. int color switch_thumb_normal_material_dark 0x7f060261
  1006. int color switch_thumb_normal_material_light 0x7f060262
  1007. int color tooltip_background_dark 0x7f060263
  1008. int color tooltip_background_light 0x7f060264
  1009. int color viewfinder_laser 0x7f060265
  1010. int color viewfinder_mask 0x7f060266
  1011. int dimen abc_action_bar_content_inset_material 0x7f070001
  1012. int dimen abc_action_bar_content_inset_with_nav 0x7f070002
  1013. int dimen abc_action_bar_default_height_material 0x7f070003
  1014. int dimen abc_action_bar_default_padding_end_material 0x7f070004
  1015. int dimen abc_action_bar_default_padding_start_material 0x7f070005
  1016. int dimen abc_action_bar_elevation_material 0x7f070006
  1017. int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007
  1018. int dimen abc_action_bar_overflow_padding_end_material 0x7f070008
  1019. int dimen abc_action_bar_overflow_padding_start_material 0x7f070009
  1020. int dimen abc_action_bar_progress_bar_size 0x7f07000a
  1021. int dimen abc_action_bar_stacked_max_height 0x7f07000b
  1022. int dimen abc_action_bar_stacked_tab_max_width 0x7f07000c
  1023. int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000d
  1024. int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000e
  1025. int dimen abc_action_button_min_height_material 0x7f07000f
  1026. int dimen abc_action_button_min_width_material 0x7f070010
  1027. int dimen abc_action_button_min_width_overflow_material 0x7f070011
  1028. int dimen abc_alert_dialog_button_bar_height 0x7f070012
  1029. int dimen abc_alert_dialog_button_dimen 0x7f070013
  1030. int dimen abc_button_inset_horizontal_material 0x7f070014
  1031. int dimen abc_button_inset_vertical_material 0x7f070015
  1032. int dimen abc_button_padding_horizontal_material 0x7f070016
  1033. int dimen abc_button_padding_vertical_material 0x7f070017
  1034. int dimen abc_cascading_menus_min_smallest_width 0x7f070018
  1035. int dimen abc_config_prefDialogWidth 0x7f070019
  1036. int dimen abc_control_corner_material 0x7f07001a
  1037. int dimen abc_control_inset_material 0x7f07001b
  1038. int dimen abc_control_padding_material 0x7f07001c
  1039. int dimen abc_dialog_fixed_height_major 0x7f07001d
  1040. int dimen abc_dialog_fixed_height_minor 0x7f07001e
  1041. int dimen abc_dialog_fixed_width_major 0x7f07001f
  1042. int dimen abc_dialog_fixed_width_minor 0x7f070020
  1043. int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070021
  1044. int dimen abc_dialog_list_padding_top_no_title 0x7f070022
  1045. int dimen abc_dialog_min_width_major 0x7f070023
  1046. int dimen abc_dialog_min_width_minor 0x7f070024
  1047. int dimen abc_dialog_padding_material 0x7f070025
  1048. int dimen abc_dialog_padding_top_material 0x7f070026
  1049. int dimen abc_dialog_title_divider_material 0x7f070027
  1050. int dimen abc_disabled_alpha_material_dark 0x7f070028
  1051. int dimen abc_disabled_alpha_material_light 0x7f070029
  1052. int dimen abc_dropdownitem_icon_width 0x7f07002a
  1053. int dimen abc_dropdownitem_text_padding_left 0x7f07002b
  1054. int dimen abc_dropdownitem_text_padding_right 0x7f07002c
  1055. int dimen abc_edit_text_inset_bottom_material 0x7f07002d
  1056. int dimen abc_edit_text_inset_horizontal_material 0x7f07002e
  1057. int dimen abc_edit_text_inset_top_material 0x7f07002f
  1058. int dimen abc_floating_window_z 0x7f070030
  1059. int dimen abc_list_item_padding_horizontal_material 0x7f070031
  1060. int dimen abc_panel_menu_list_width 0x7f070032
  1061. int dimen abc_progress_bar_height_material 0x7f070033
  1062. int dimen abc_search_view_preferred_height 0x7f070034
  1063. int dimen abc_search_view_preferred_width 0x7f070035
  1064. int dimen abc_seekbar_track_background_height_material 0x7f070036
  1065. int dimen abc_seekbar_track_progress_height_material 0x7f070037
  1066. int dimen abc_select_dialog_padding_start_material 0x7f070038
  1067. int dimen abc_switch_padding 0x7f070039
  1068. int dimen abc_text_size_body_1_material 0x7f07003a
  1069. int dimen abc_text_size_body_2_material 0x7f07003b
  1070. int dimen abc_text_size_button_material 0x7f07003c
  1071. int dimen abc_text_size_caption_material 0x7f07003d
  1072. int dimen abc_text_size_display_1_material 0x7f07003e
  1073. int dimen abc_text_size_display_2_material 0x7f07003f
  1074. int dimen abc_text_size_display_3_material 0x7f070040
  1075. int dimen abc_text_size_display_4_material 0x7f070041
  1076. int dimen abc_text_size_headline_material 0x7f070042
  1077. int dimen abc_text_size_large_material 0x7f070043
  1078. int dimen abc_text_size_medium_material 0x7f070044
  1079. int dimen abc_text_size_menu_header_material 0x7f070045
  1080. int dimen abc_text_size_menu_material 0x7f070046
  1081. int dimen abc_text_size_small_material 0x7f070047
  1082. int dimen abc_text_size_subhead_material 0x7f070048
  1083. int dimen abc_text_size_subtitle_material_toolbar 0x7f070049
  1084. int dimen abc_text_size_title_material 0x7f07004a
  1085. int dimen abc_text_size_title_material_toolbar 0x7f07004b
  1086. int dimen button_size 0x7f07004c
  1087. int dimen color_picker_margin_horizontal 0x7f07004d
  1088. int dimen color_picker_margin_vertical 0x7f07004e
  1089. int dimen color_swatch_large 0x7f07004f
  1090. int dimen color_swatch_margins_large 0x7f070050
  1091. int dimen color_swatch_margins_small 0x7f070051
  1092. int dimen color_swatch_small 0x7f070052
  1093. int dimen compat_button_inset_horizontal_material 0x7f070053
  1094. int dimen compat_button_inset_vertical_material 0x7f070054
  1095. int dimen compat_button_padding_horizontal_material 0x7f070055
  1096. int dimen compat_button_padding_vertical_material 0x7f070056
  1097. int dimen compat_control_corner_material 0x7f070057
  1098. int dimen disabled_alpha_material_dark 0x7f070058
  1099. int dimen disabled_alpha_material_light 0x7f070059
  1100. int dimen fastscroll_default_thickness 0x7f07005a
  1101. int dimen fastscroll_margin 0x7f07005b
  1102. int dimen fastscroll_minimum_range 0x7f07005c
  1103. int dimen highlight_alpha_material_colored 0x7f07005d
  1104. int dimen highlight_alpha_material_dark 0x7f07005e
  1105. int dimen highlight_alpha_material_light 0x7f07005f
  1106. int dimen hint_alpha_material_dark 0x7f070060
  1107. int dimen hint_alpha_material_light 0x7f070061
  1108. int dimen hint_pressed_alpha_material_dark 0x7f070062
  1109. int dimen hint_pressed_alpha_material_light 0x7f070063
  1110. int dimen horizontal_margin 0x7f070064
  1111. int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070065
  1112. int dimen item_touch_helper_swipe_escape_max_velocity 0x7f070066
  1113. int dimen item_touch_helper_swipe_escape_velocity 0x7f070067
  1114. int dimen list_font_size 0x7f070068
  1115. int dimen list_height_min 0x7f070069
  1116. int dimen list_item_bluetooth_info_padding 0x7f07006a
  1117. int dimen notification_action_icon_size 0x7f07006b
  1118. int dimen notification_action_text_size 0x7f07006c
  1119. int dimen notification_big_circle_margin 0x7f07006d
  1120. int dimen notification_content_margin_start 0x7f07006e
  1121. int dimen notification_large_icon_height 0x7f07006f
  1122. int dimen notification_large_icon_width 0x7f070070
  1123. int dimen notification_main_column_padding_top 0x7f070071
  1124. int dimen notification_media_narrow_margin 0x7f070072
  1125. int dimen notification_right_icon_size 0x7f070073
  1126. int dimen notification_right_side_padding_top 0x7f070074
  1127. int dimen notification_small_icon_background_padding 0x7f070075
  1128. int dimen notification_small_icon_size_as_large 0x7f070076
  1129. int dimen notification_subtext_size 0x7f070077
  1130. int dimen notification_top_pad 0x7f070078
  1131. int dimen notification_top_pad_large_text 0x7f070079
  1132. int dimen preference_icon_minWidth 0x7f07007a
  1133. int dimen preference_seekbar_padding_end 0x7f07007b
  1134. int dimen preference_seekbar_padding_start 0x7f07007c
  1135. int dimen preference_seekbar_value_width 0x7f07007d
  1136. int dimen scale_type_margin_top 0x7f07007e
  1137. int dimen scale_type_padding 0x7f07007f
  1138. int dimen text_sz_scale_type 0x7f070080
  1139. int dimen tooltip_corner_radius 0x7f070081
  1140. int dimen tooltip_horizontal_padding 0x7f070082
  1141. int dimen tooltip_margin 0x7f070083
  1142. int dimen tooltip_precise_anchor_extra_offset 0x7f070084
  1143. int dimen tooltip_precise_anchor_threshold 0x7f070085
  1144. int dimen tooltip_vertical_padding 0x7f070086
  1145. int dimen tooltip_y_offset_non_touch 0x7f070087
  1146. int dimen tooltip_y_offset_touch 0x7f070088
  1147. int dimen vertical_margin 0x7f070089
  1148. int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001
  1149. int drawable abc_action_bar_item_background_material 0x7f080002
  1150. int drawable abc_btn_borderless_material 0x7f080003
  1151. int drawable abc_btn_check_material 0x7f080004
  1152. int drawable abc_btn_check_to_on_mtrl_000 0x7f080005
  1153. int drawable abc_btn_check_to_on_mtrl_015 0x7f080006
  1154. int drawable abc_btn_colored_material 0x7f080007
  1155. int drawable abc_btn_default_mtrl_shape 0x7f080008
  1156. int drawable abc_btn_radio_material 0x7f080009
  1157. int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000a
  1158. int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000b
  1159. int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000c
  1160. int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000d
  1161. int drawable abc_cab_background_internal_bg 0x7f08000e
  1162. int drawable abc_cab_background_top_material 0x7f08000f
  1163. int drawable abc_cab_background_top_mtrl_alpha 0x7f080010
  1164. int drawable abc_control_background_material 0x7f080011
  1165. int drawable abc_dialog_material_background 0x7f080012
  1166. int drawable abc_edit_text_material 0x7f080013
  1167. int drawable abc_ic_ab_back_material 0x7f080014
  1168. int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080015
  1169. int drawable abc_ic_clear_material 0x7f080016
  1170. int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080017
  1171. int drawable abc_ic_go_search_api_material 0x7f080018
  1172. int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f080019
  1173. int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001a
  1174. int drawable abc_ic_menu_overflow_material 0x7f08001b
  1175. int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f08001c
  1176. int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f08001d
  1177. int drawable abc_ic_menu_share_mtrl_alpha 0x7f08001e
  1178. int drawable abc_ic_search_api_material 0x7f08001f
  1179. int drawable abc_ic_star_black_16dp 0x7f080020
  1180. int drawable abc_ic_star_black_36dp 0x7f080021
  1181. int drawable abc_ic_star_black_48dp 0x7f080022
  1182. int drawable abc_ic_star_half_black_16dp 0x7f080023
  1183. int drawable abc_ic_star_half_black_36dp 0x7f080024
  1184. int drawable abc_ic_star_half_black_48dp 0x7f080025
  1185. int drawable abc_ic_voice_search_api_material 0x7f080026
  1186. int drawable abc_item_background_holo_dark 0x7f080027
  1187. int drawable abc_item_background_holo_light 0x7f080028
  1188. int drawable abc_list_divider_mtrl_alpha 0x7f080029
  1189. int drawable abc_list_focused_holo 0x7f08002a
  1190. int drawable abc_list_longpressed_holo 0x7f08002b
  1191. int drawable abc_list_pressed_holo_dark 0x7f08002c
  1192. int drawable abc_list_pressed_holo_light 0x7f08002d
  1193. int drawable abc_list_selector_background_transition_holo_dark 0x7f08002e
  1194. int drawable abc_list_selector_background_transition_holo_light 0x7f08002f
  1195. int drawable abc_list_selector_disabled_holo_dark 0x7f080030
  1196. int drawable abc_list_selector_disabled_holo_light 0x7f080031
  1197. int drawable abc_list_selector_holo_dark 0x7f080032
  1198. int drawable abc_list_selector_holo_light 0x7f080033
  1199. int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080034
  1200. int drawable abc_popup_background_mtrl_mult 0x7f080035
  1201. int drawable abc_ratingbar_indicator_material 0x7f080036
  1202. int drawable abc_ratingbar_material 0x7f080037
  1203. int drawable abc_ratingbar_small_material 0x7f080038
  1204. int drawable abc_scrubber_control_off_mtrl_alpha 0x7f080039
  1205. int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003a
  1206. int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f08003b
  1207. int drawable abc_scrubber_primary_mtrl_alpha 0x7f08003c
  1208. int drawable abc_scrubber_track_mtrl_alpha 0x7f08003d
  1209. int drawable abc_seekbar_thumb_material 0x7f08003e
  1210. int drawable abc_seekbar_tick_mark_material 0x7f08003f
  1211. int drawable abc_seekbar_track_material 0x7f080040
  1212. int drawable abc_spinner_mtrl_am_alpha 0x7f080041
  1213. int drawable abc_spinner_textfield_background_material 0x7f080042
  1214. int drawable abc_switch_thumb_material 0x7f080043
  1215. int drawable abc_switch_track_mtrl_alpha 0x7f080044
  1216. int drawable abc_tab_indicator_material 0x7f080045
  1217. int drawable abc_tab_indicator_mtrl_alpha 0x7f080046
  1218. int drawable abc_text_cursor_material 0x7f080047
  1219. int drawable abc_text_select_handle_left_mtrl_dark 0x7f080048
  1220. int drawable abc_text_select_handle_left_mtrl_light 0x7f080049
  1221. int drawable abc_text_select_handle_middle_mtrl_dark 0x7f08004a
  1222. int drawable abc_text_select_handle_middle_mtrl_light 0x7f08004b
  1223. int drawable abc_text_select_handle_right_mtrl_dark 0x7f08004c
  1224. int drawable abc_text_select_handle_right_mtrl_light 0x7f08004d
  1225. int drawable abc_textfield_activated_mtrl_alpha 0x7f08004e
  1226. int drawable abc_textfield_default_mtrl_alpha 0x7f08004f
  1227. int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080050
  1228. int drawable abc_textfield_search_default_mtrl_alpha 0x7f080051
  1229. int drawable abc_textfield_search_material 0x7f080052
  1230. int drawable abc_vector_test 0x7f080053
  1231. int drawable border 0x7f080054
  1232. int drawable border_black 0x7f080055
  1233. int drawable border_gray 0x7f080056
  1234. int drawable btn_new_shutter 0x7f080057
  1235. int drawable btn_new_shutter_video 0x7f080058
  1236. int drawable btn_repeat_shutter_recording 0x7f080059
  1237. int drawable btn_shutter_video_recording 0x7f08005a
  1238. int drawable frame 0x7f08005b
  1239. int drawable frame_cross 0x7f08005c
  1240. int drawable ic_arrow_down_24dp 0x7f08005d
  1241. int drawable ic_notification 0x7f08005e
  1242. int drawable mask_circle 0x7f08005f
  1243. int drawable notification_action_background 0x7f080060
  1244. int drawable notification_bg 0x7f080061
  1245. int drawable notification_bg_low 0x7f080062
  1246. int drawable notification_bg_low_normal 0x7f080063
  1247. int drawable notification_bg_low_pressed 0x7f080064
  1248. int drawable notification_bg_normal 0x7f080065
  1249. int drawable notification_bg_normal_pressed 0x7f080066
  1250. int drawable notification_icon_background 0x7f080067
  1251. int drawable notification_template_icon_bg 0x7f080068
  1252. int drawable notification_template_icon_low_bg 0x7f080069
  1253. int drawable notification_tile_bg 0x7f08006a
  1254. int drawable notify_panel_notification_icon_bg 0x7f08006b
  1255. int drawable preference_list_divider_material 0x7f08006c
  1256. int drawable quater_clear_rect 0x7f08006d
  1257. int drawable recordingtime 0x7f08006e
  1258. int drawable star 0x7f08006f
  1259. int drawable toggle 0x7f080070
  1260. int drawable toggle_button_base 0x7f080071
  1261. int drawable toggle_slide 0x7f080072
  1262. int drawable tooltip_frame_dark 0x7f080073
  1263. int drawable tooltip_frame_light 0x7f080074
  1264. int drawable transparent_rect 0x7f080075
  1265. int id LinearLayout1 0x7f0b0001
  1266. int id action0 0x7f0b0002
  1267. int id action_bar 0x7f0b0003
  1268. int id action_bar_activity_content 0x7f0b0004
  1269. int id action_bar_container 0x7f0b0005
  1270. int id action_bar_root 0x7f0b0006
  1271. int id action_bar_spinner 0x7f0b0007
  1272. int id action_bar_subtitle 0x7f0b0008
  1273. int id action_bar_title 0x7f0b0009
  1274. int id action_container 0x7f0b000a
  1275. int id action_context_bar 0x7f0b000b
  1276. int id action_divider 0x7f0b000c
  1277. int id action_image 0x7f0b000d
  1278. int id action_menu_divider 0x7f0b000e
  1279. int id action_menu_presenter 0x7f0b000f
  1280. int id action_mode_bar 0x7f0b0010
  1281. int id action_mode_bar_stub 0x7f0b0011
  1282. int id action_mode_close_button 0x7f0b0012
  1283. int id action_text 0x7f0b0013
  1284. int id actions 0x7f0b0014
  1285. int id activity_chooser_view_content 0x7f0b0015
  1286. int id add 0x7f0b0016
  1287. int id address 0x7f0b0017
  1288. int id alertTitle 0x7f0b0018
  1289. int id anim_duration 0x7f0b0019
  1290. int id anim_listener 0x7f0b001a
  1291. int id anim_type 0x7f0b001b
  1292. int id async 0x7f0b001c
  1293. int id blocking 0x7f0b001d
  1294. int id bottom 0x7f0b001e
  1295. int id buttonPanel 0x7f0b001f
  1296. int id cancel_action 0x7f0b0020
  1297. int id checkbox 0x7f0b0021
  1298. int id chronometer 0x7f0b0022
  1299. int id color1_button 0x7f0b0023
  1300. int id color2_button 0x7f0b0024
  1301. int id color3_button 0x7f0b0025
  1302. int id color4_button 0x7f0b0026
  1303. int id color5_button 0x7f0b0027
  1304. int id color6_button 0x7f0b0028
  1305. int id color7_button 0x7f0b0029
  1306. int id color8_button 0x7f0b002a
  1307. int id color_picker 0x7f0b002b
  1308. int id color_picker_frame 0x7f0b002c
  1309. int id color_select_button 0x7f0b002d
  1310. int id contentPanel 0x7f0b002e
  1311. int id crop_center 0x7f0b002f
  1312. int id custom 0x7f0b0030
  1313. int id customPanel 0x7f0b0031
  1314. int id decor_content_parent 0x7f0b0032
  1315. int id decrement 0x7f0b0033
  1316. int id default_activity_button 0x7f0b0034
  1317. int id dummy_radiobutton 0x7f0b0035
  1318. int id edit_query 0x7f0b0036
  1319. int id end 0x7f0b0037
  1320. int id end_padder 0x7f0b0038
  1321. int id expand_activities_button 0x7f0b0039
  1322. int id expanded_menu 0x7f0b003a
  1323. int id forever 0x7f0b003b
  1324. int id frame_circle2_button 0x7f0b003c
  1325. int id frame_circle_button 0x7f0b003d
  1326. int id frame_cross_button 0x7f0b003e
  1327. int id frame_cross_circle2_button 0x7f0b003f
  1328. int id frame_cross_circle_button 0x7f0b0040
  1329. int id frame_cross_quarter_button 0x7f0b0041
  1330. int id frame_frame_button 0x7f0b0042
  1331. int id frame_type_circle 0x7f0b0043
  1332. int id frame_type_circle2 0x7f0b0044
  1333. int id frame_type_cross_circle 0x7f0b0045
  1334. int id frame_type_cross_circle2 0x7f0b0046
  1335. int id frame_type_cross_full 0x7f0b0047
  1336. int id frame_type_cross_quarter 0x7f0b0048
  1337. int id frame_type_frame 0x7f0b0049
  1338. int id frame_type_none 0x7f0b004a
  1339. int id has_divider 0x7f0b004b
  1340. int id home 0x7f0b004c
  1341. int id horizontal 0x7f0b004d
  1342. int id icon 0x7f0b004e
  1343. int id icon_frame 0x7f0b004f
  1344. int id icon_group 0x7f0b0050
  1345. int id image 0x7f0b0051
  1346. int id increment 0x7f0b0052
  1347. int id info 0x7f0b0053
  1348. int id input 0x7f0b0054
  1349. int id italic 0x7f0b0055
  1350. int id item_touch_helper_previous_elevation 0x7f0b0056
  1351. int id keep_aspect 0x7f0b0057
  1352. int id left 0x7f0b0058
  1353. int id line1 0x7f0b0059
  1354. int id line3 0x7f0b005a
  1355. int id line_width_seekbar 0x7f0b005b
  1356. int id line_width_textview 0x7f0b005c
  1357. int id list 0x7f0b005d
  1358. int id listMode 0x7f0b005e
  1359. int id list_item 0x7f0b005f
  1360. int id media_actions 0x7f0b0060
  1361. int id mediastorephotoadapter 0x7f0b0061
  1362. int id message 0x7f0b0062
  1363. int id multiply 0x7f0b0063
  1364. int id name 0x7f0b0064
  1365. int id name_text 0x7f0b0065
  1366. int id none 0x7f0b0066
  1367. int id normal 0x7f0b0067
  1368. int id notification_background 0x7f0b0068
  1369. int id notification_main_column 0x7f0b0069
  1370. int id notification_main_column_container 0x7f0b006a
  1371. int id parentPanel 0x7f0b006b
  1372. int id position 0x7f0b006c
  1373. int id progress_circular 0x7f0b006d
  1374. int id progress_horizontal 0x7f0b006e
  1375. int id radio 0x7f0b006f
  1376. int id right 0x7f0b0070
  1377. int id right_icon 0x7f0b0071
  1378. int id right_side 0x7f0b0072
  1379. int id scale_inch 0x7f0b0073
  1380. int id scale_mm 0x7f0b0074
  1381. int id scale_none 0x7f0b0075
  1382. int id scale_type_inch_radiobutton 0x7f0b0076
  1383. int id scale_type_mm_radiobutton 0x7f0b0077
  1384. int id scale_type_non_radiobutton 0x7f0b0078
  1385. int id scale_type_radiogroup 0x7f0b0079
  1386. int id screen 0x7f0b007a
  1387. int id scrollIndicatorDown 0x7f0b007b
  1388. int id scrollIndicatorUp 0x7f0b007c
  1389. int id scrollView 0x7f0b007d
  1390. int id search_badge 0x7f0b007e
  1391. int id search_bar 0x7f0b007f
  1392. int id search_button 0x7f0b0080
  1393. int id search_close_btn 0x7f0b0081
  1394. int id search_edit_frame 0x7f0b0082
  1395. int id search_go_btn 0x7f0b0083
  1396. int id search_mag_icon 0x7f0b0084
  1397. int id search_plate 0x7f0b0085
  1398. int id search_src_text 0x7f0b0086
  1399. int id search_voice_btn 0x7f0b0087
  1400. int id seekbar 0x7f0b0088
  1401. int id seekbar_value 0x7f0b0089
  1402. int id seekbar_value_label 0x7f0b008a
  1403. int id select1 0x7f0b008b
  1404. int id select2 0x7f0b008c
  1405. int id select_dialog_listview 0x7f0b008d
  1406. int id shortcut 0x7f0b008e
  1407. int id single1 0x7f0b008f
  1408. int id single2 0x7f0b0090
  1409. int id spacer 0x7f0b0091
  1410. int id spinner 0x7f0b0092
  1411. int id spinner1 0x7f0b0093
  1412. int id split 0x7f0b0094
  1413. int id split_action_bar 0x7f0b0095
  1414. int id src_atop 0x7f0b0096
  1415. int id src_in 0x7f0b0097
  1416. int id src_over 0x7f0b0098
  1417. int id start 0x7f0b0099
  1418. int id status_bar_latest_event_content 0x7f0b009a
  1419. int id stretch_to_fit 0x7f0b009b
  1420. int id submenuarrow 0x7f0b009c
  1421. int id submit_area 0x7f0b009d
  1422. int id switchWidget 0x7f0b009e
  1423. int id tabMode 0x7f0b009f
  1424. int id tag_transition_group 0x7f0b00a0
  1425. int id text 0x7f0b00a1
  1426. int id text2 0x7f0b00a2
  1427. int id textSpacerNoButtons 0x7f0b00a3
  1428. int id textSpacerNoTitle 0x7f0b00a4
  1429. int id textView1 0x7f0b00a5
  1430. int id thumbnail 0x7f0b00a6
  1431. int id time 0x7f0b00a7
  1432. int id title 0x7f0b00a8
  1433. int id titleDividerNoCustom 0x7f0b00a9
  1434. int id title_template 0x7f0b00aa
  1435. int id top 0x7f0b00ab
  1436. int id topPanel 0x7f0b00ac
  1437. int id uniform 0x7f0b00ad
  1438. int id up 0x7f0b00ae
  1439. int id vertical 0x7f0b00af
  1440. int id wrap_content 0x7f0b00b0
  1441. int integer abc_config_activityDefaultDur 0x7f0c0001
  1442. int integer abc_config_activityShortDur 0x7f0c0002
  1443. int integer cancel_button_image_alpha 0x7f0c0003
  1444. int integer card_flip_time_full 0x7f0c0004
  1445. int integer card_flip_time_half 0x7f0c0005
  1446. int integer config_tooltipAnimTime 0x7f0c0006
  1447. int integer status_bar_notification_info_maxnum 0x7f0c0007
  1448. int layout abc_action_bar_title_item 0x7f0e0001
  1449. int layout abc_action_bar_up_container 0x7f0e0002
  1450. int layout abc_action_menu_item_layout 0x7f0e0003
  1451. int layout abc_action_menu_layout 0x7f0e0004
  1452. int layout abc_action_mode_bar 0x7f0e0005
  1453. int layout abc_action_mode_close_item_material 0x7f0e0006
  1454. int layout abc_activity_chooser_view 0x7f0e0007
  1455. int layout abc_activity_chooser_view_list_item 0x7f0e0008
  1456. int layout abc_alert_dialog_button_bar_material 0x7f0e0009
  1457. int layout abc_alert_dialog_material 0x7f0e000a
  1458. int layout abc_alert_dialog_title_material 0x7f0e000b
  1459. int layout abc_dialog_title_material 0x7f0e000c
  1460. int layout abc_expanded_menu_layout 0x7f0e000d
  1461. int layout abc_list_menu_item_checkbox 0x7f0e000e
  1462. int layout abc_list_menu_item_icon 0x7f0e000f
  1463. int layout abc_list_menu_item_layout 0x7f0e0010
  1464. int layout abc_list_menu_item_radio 0x7f0e0011
  1465. int layout abc_popup_menu_header_item_layout 0x7f0e0012
  1466. int layout abc_popup_menu_item_layout 0x7f0e0013
  1467. int layout abc_screen_content_include 0x7f0e0014
  1468. int layout abc_screen_simple 0x7f0e0015
  1469. int layout abc_screen_simple_overlay_action_mode 0x7f0e0016
  1470. int layout abc_screen_toolbar 0x7f0e0017
  1471. int layout abc_search_dropdown_item_icons_2line 0x7f0e0018
  1472. int layout abc_search_view 0x7f0e0019
  1473. int layout abc_select_dialog_material 0x7f0e001a
  1474. int layout abc_tooltip 0x7f0e001b
  1475. int layout color_picker 0x7f0e001c
  1476. int layout color_picker_dialog 0x7f0e001d
  1477. int layout dialog_camera 0x7f0e001e
  1478. int layout expand_button 0x7f0e001f
  1479. int layout item_picker 0x7f0e0020
  1480. int layout list_item_bluetooth_device_info 0x7f0e0021
  1481. int layout listitem_device 0x7f0e0022
  1482. int layout notification_action 0x7f0e0023
  1483. int layout notification_action_tombstone 0x7f0e0024
  1484. int layout notification_media_action 0x7f0e0025
  1485. int layout notification_media_cancel_action 0x7f0e0026
  1486. int layout notification_template_big_media 0x7f0e0027
  1487. int layout notification_template_big_media_custom 0x7f0e0028
  1488. int layout notification_template_big_media_narrow 0x7f0e0029
  1489. int layout notification_template_big_media_narrow_custom 0x7f0e002a
  1490. int layout notification_template_custom_big 0x7f0e002b
  1491. int layout notification_template_icon_group 0x7f0e002c
  1492. int layout notification_template_lines_media 0x7f0e002d
  1493. int layout notification_template_media 0x7f0e002e
  1494. int layout notification_template_media_custom 0x7f0e002f
  1495. int layout notification_template_part_chronometer 0x7f0e0030
  1496. int layout notification_template_part_time 0x7f0e0031
  1497. int layout preference 0x7f0e0032
  1498. int layout preference_category 0x7f0e0033
  1499. int layout preference_category_material 0x7f0e0034
  1500. int layout preference_dialog_edittext 0x7f0e0035
  1501. int layout preference_dropdown 0x7f0e0036
  1502. int layout preference_dropdown_material 0x7f0e0037
  1503. int layout preference_information 0x7f0e0038
  1504. int layout preference_information_material 0x7f0e0039
  1505. int layout preference_list_fragment 0x7f0e003a
  1506. int layout preference_material 0x7f0e003b
  1507. int layout preference_recyclerview 0x7f0e003c
  1508. int layout preference_widget_checkbox 0x7f0e003d
  1509. int layout preference_widget_seekbar 0x7f0e003e
  1510. int layout preference_widget_seekbar_material 0x7f0e003f
  1511. int layout preference_widget_switch 0x7f0e0040
  1512. int layout preference_widget_switch_compat 0x7f0e0041
  1513. int layout seekbar_preference 0x7f0e0042
  1514. int layout select_dialog_item_material 0x7f0e0043
  1515. int layout select_dialog_multichoice_material 0x7f0e0044
  1516. int layout select_dialog_singlechoice_material 0x7f0e0045
  1517. int layout support_simple_spinner_dropdown_item 0x7f0e0046
  1518. int layout view_frame_selector 0x7f0e0047
  1519. int mipmap btn_repeat_shutter_default 0x7f100001
  1520. int mipmap btn_repeat_shutter_pressed 0x7f100002
  1521. int mipmap btn_repeat_shutter_recording_holo 0x7f100003
  1522. int mipmap btn_repeat_shutter_recording_pressed_holo 0x7f100004
  1523. int mipmap btn_shutter_default 0x7f100005
  1524. int mipmap btn_shutter_pressed 0x7f100006
  1525. int mipmap btn_shutter_video_default 0x7f100007
  1526. int mipmap btn_shutter_video_pressed 0x7f100008
  1527. int mipmap btn_video_shutter_recording_holo 0x7f100009
  1528. int mipmap btn_video_shutter_recording_pressed_holo 0x7f10000a
  1529. int mipmap ic_color_circle 0x7f10000b
  1530. int mipmap ic_decrement 0x7f10000c
  1531. int mipmap ic_drawer 0x7f10000d
  1532. int mipmap ic_frame_circle 0x7f10000e
  1533. int mipmap ic_frame_circle_2 0x7f10000f
  1534. int mipmap ic_frame_cross 0x7f100010
  1535. int mipmap ic_frame_cross_circle 0x7f100011
  1536. int mipmap ic_frame_cross_circle2 0x7f100012
  1537. int mipmap ic_frame_cross_quarter 0x7f100013
  1538. int mipmap ic_frame_frame 0x7f100014
  1539. int mipmap ic_increment 0x7f100015
  1540. int mipmap ic_transparent 0x7f100016
  1541. int string abc_action_bar_home_description 0x7f140001
  1542. int string abc_action_bar_up_description 0x7f140002
  1543. int string abc_action_menu_overflow_description 0x7f140003
  1544. int string abc_action_mode_done 0x7f140004
  1545. int string abc_activity_chooser_view_see_all 0x7f140005
  1546. int string abc_activitychooserview_choose_application 0x7f140006
  1547. int string abc_capital_off 0x7f140007
  1548. int string abc_capital_on 0x7f140008
  1549. int string abc_font_family_body_1_material 0x7f140009
  1550. int string abc_font_family_body_2_material 0x7f14000a
  1551. int string abc_font_family_button_material 0x7f14000b
  1552. int string abc_font_family_caption_material 0x7f14000c
  1553. int string abc_font_family_display_1_material 0x7f14000d
  1554. int string abc_font_family_display_2_material 0x7f14000e
  1555. int string abc_font_family_display_3_material 0x7f14000f
  1556. int string abc_font_family_display_4_material 0x7f140010
  1557. int string abc_font_family_headline_material 0x7f140011
  1558. int string abc_font_family_menu_material 0x7f140012
  1559. int string abc_font_family_subhead_material 0x7f140013
  1560. int string abc_font_family_title_material 0x7f140014
  1561. int string abc_search_hint 0x7f140015
  1562. int string abc_searchview_description_clear 0x7f140016
  1563. int string abc_searchview_description_query 0x7f140017
  1564. int string abc_searchview_description_search 0x7f140018
  1565. int string abc_searchview_description_submit 0x7f140019
  1566. int string abc_searchview_description_voice 0x7f14001a
  1567. int string abc_shareactionprovider_share_with 0x7f14001b
  1568. int string abc_shareactionprovider_share_with_application 0x7f14001c
  1569. int string abc_toolbar_collapse_description 0x7f14001d
  1570. int string camera 0x7f14001e
  1571. int string color_picker_cancel 0x7f14001f
  1572. int string color_picker_default_title 0x7f140020
  1573. int string color_picker_select 0x7f140021
  1574. int string color_swatch_description 0x7f140022
  1575. int string color_swatch_description_selected 0x7f140023
  1576. int string expand_button_title 0x7f140024
  1577. int string no_device 0x7f140025
  1578. int string permission_audio 0x7f140026
  1579. int string permission_audio_recording_reason 0x7f140027
  1580. int string permission_audio_recording_request 0x7f140028
  1581. int string permission_audio_streaming_reason 0x7f140029
  1582. int string permission_audio_streaming_request 0x7f14002a
  1583. int string permission_camera 0x7f14002b
  1584. int string permission_camera_finish 0x7f14002c
  1585. int string permission_camera_reason 0x7f14002d
  1586. int string permission_camera_request 0x7f14002e
  1587. int string permission_ext_storage 0x7f14002f
  1588. int string permission_ext_storage_finish 0x7f140030
  1589. int string permission_ext_storage_reason 0x7f140031
  1590. int string permission_ext_storage_request 0x7f140032
  1591. int string permission_location 0x7f140033
  1592. int string permission_location_finish 0x7f140034
  1593. int string permission_location_reason 0x7f140035
  1594. int string permission_location_request 0x7f140036
  1595. int string permission_network 0x7f140037
  1596. int string permission_network_finish 0x7f140038
  1597. int string permission_network_reason 0x7f140039
  1598. int string permission_network_request 0x7f14003a
  1599. int string permission_title 0x7f14003b
  1600. int string refresh 0x7f14003c
  1601. int string scale_type_inch 0x7f14003d
  1602. int string scale_type_mm 0x7f14003e
  1603. int string scale_type_none 0x7f14003f
  1604. int string search_menu_title 0x7f140040
  1605. int string select 0x7f140041
  1606. int string service_name 0x7f140042
  1607. int string service_start 0x7f140043
  1608. int string service_stop 0x7f140044
  1609. int string status_bar_notification_info_overflow 0x7f140045
  1610. int string summary_collapsed_preference_list 0x7f140046
  1611. int string v7_preference_off 0x7f140047
  1612. int string v7_preference_on 0x7f140048
  1613. int style AlertDialog_AppCompat 0x7f150001
  1614. int style AlertDialog_AppCompat_Light 0x7f150002
  1615. int style Animation_AppCompat_Dialog 0x7f150003
  1616. int style Animation_AppCompat_DropDownUp 0x7f150004
  1617. int style Animation_AppCompat_Tooltip 0x7f150005
  1618. int style Base_AlertDialog_AppCompat 0x7f150006
  1619. int style Base_AlertDialog_AppCompat_Light 0x7f150007
  1620. int style Base_Animation_AppCompat_Dialog 0x7f150008
  1621. int style Base_Animation_AppCompat_DropDownUp 0x7f150009
  1622. int style Base_Animation_AppCompat_Tooltip 0x7f15000a
  1623. int style Base_DialogWindowTitleBackground_AppCompat 0x7f15000b
  1624. int style Base_DialogWindowTitle_AppCompat 0x7f15000c
  1625. int style Base_TextAppearance_AppCompat 0x7f15000d
  1626. int style Base_TextAppearance_AppCompat_Body1 0x7f15000e
  1627. int style Base_TextAppearance_AppCompat_Body2 0x7f15000f
  1628. int style Base_TextAppearance_AppCompat_Button 0x7f150010
  1629. int style Base_TextAppearance_AppCompat_Caption 0x7f150011
  1630. int style Base_TextAppearance_AppCompat_Display1 0x7f150012
  1631. int style Base_TextAppearance_AppCompat_Display2 0x7f150013
  1632. int style Base_TextAppearance_AppCompat_Display3 0x7f150014
  1633. int style Base_TextAppearance_AppCompat_Display4 0x7f150015
  1634. int style Base_TextAppearance_AppCompat_Headline 0x7f150016
  1635. int style Base_TextAppearance_AppCompat_Inverse 0x7f150017
  1636. int style Base_TextAppearance_AppCompat_Large 0x7f150018
  1637. int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f150019
  1638. int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15001a
  1639. int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15001b
  1640. int style Base_TextAppearance_AppCompat_Medium 0x7f15001c
  1641. int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f15001d
  1642. int style Base_TextAppearance_AppCompat_Menu 0x7f15001e
  1643. int style Base_TextAppearance_AppCompat_SearchResult 0x7f15001f
  1644. int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150020
  1645. int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f150021
  1646. int style Base_TextAppearance_AppCompat_Small 0x7f150022
  1647. int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f150023
  1648. int style Base_TextAppearance_AppCompat_Subhead 0x7f150024
  1649. int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f150025
  1650. int style Base_TextAppearance_AppCompat_Title 0x7f150026
  1651. int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f150027
  1652. int style Base_TextAppearance_AppCompat_Tooltip 0x7f150028
  1653. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150029
  1654. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15002a
  1655. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15002b
  1656. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15002c
  1657. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15002d
  1658. int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f15002e
  1659. int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f15002f
  1660. int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150030
  1661. int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150031
  1662. int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f150032
  1663. int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150033
  1664. int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f150034
  1665. int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150035
  1666. int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150036
  1667. int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150037
  1668. int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f150038
  1669. int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f150039
  1670. int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15003a
  1671. int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15003b
  1672. int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15003c
  1673. int style Base_ThemeOverlay_AppCompat 0x7f15003d
  1674. int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f15003e
  1675. int style Base_ThemeOverlay_AppCompat_Dark 0x7f15003f
  1676. int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150040
  1677. int style Base_ThemeOverlay_AppCompat_Dialog 0x7f150041
  1678. int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f150042
  1679. int style Base_ThemeOverlay_AppCompat_Light 0x7f150043
  1680. int style Base_Theme_AppCompat 0x7f150044
  1681. int style Base_Theme_AppCompat_CompactMenu 0x7f150045
  1682. int style Base_Theme_AppCompat_Dialog 0x7f150046
  1683. int style Base_Theme_AppCompat_DialogWhenLarge 0x7f150047
  1684. int style Base_Theme_AppCompat_Dialog_Alert 0x7f150048
  1685. int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f150049
  1686. int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15004a
  1687. int style Base_Theme_AppCompat_Light 0x7f15004b
  1688. int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f15004c
  1689. int style Base_Theme_AppCompat_Light_Dialog 0x7f15004d
  1690. int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f15004e
  1691. int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f15004f
  1692. int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150050
  1693. int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150051
  1694. int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150052
  1695. int style Base_V21_Theme_AppCompat 0x7f150053
  1696. int style Base_V21_Theme_AppCompat_Dialog 0x7f150054
  1697. int style Base_V21_Theme_AppCompat_Light 0x7f150055
  1698. int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150056
  1699. int style Base_V22_Theme_AppCompat 0x7f150057
  1700. int style Base_V22_Theme_AppCompat_Light 0x7f150058
  1701. int style Base_V23_Theme_AppCompat 0x7f150059
  1702. int style Base_V23_Theme_AppCompat_Light 0x7f15005a
  1703. int style Base_V26_Theme_AppCompat 0x7f15005b
  1704. int style Base_V26_Theme_AppCompat_Light 0x7f15005c
  1705. int style Base_V26_Widget_AppCompat_Toolbar 0x7f15005d
  1706. int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f15005e
  1707. int style Base_V7_Theme_AppCompat 0x7f15005f
  1708. int style Base_V7_Theme_AppCompat_Dialog 0x7f150060
  1709. int style Base_V7_Theme_AppCompat_Light 0x7f150061
  1710. int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f150062
  1711. int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f150063
  1712. int style Base_V7_Widget_AppCompat_EditText 0x7f150064
  1713. int style Base_V7_Widget_AppCompat_Toolbar 0x7f150065
  1714. int style Base_Widget_AppCompat_ActionBar 0x7f150066
  1715. int style Base_Widget_AppCompat_ActionBar_Solid 0x7f150067
  1716. int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f150068
  1717. int style Base_Widget_AppCompat_ActionBar_TabText 0x7f150069
  1718. int style Base_Widget_AppCompat_ActionBar_TabView 0x7f15006a
  1719. int style Base_Widget_AppCompat_ActionButton 0x7f15006b
  1720. int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f15006c
  1721. int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f15006d
  1722. int style Base_Widget_AppCompat_ActionMode 0x7f15006e
  1723. int style Base_Widget_AppCompat_ActivityChooserView 0x7f15006f
  1724. int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f150070
  1725. int style Base_Widget_AppCompat_Button 0x7f150071
  1726. int style Base_Widget_AppCompat_ButtonBar 0x7f150072
  1727. int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f150073
  1728. int style Base_Widget_AppCompat_Button_Borderless 0x7f150074
  1729. int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f150075
  1730. int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150076
  1731. int style Base_Widget_AppCompat_Button_Colored 0x7f150077
  1732. int style Base_Widget_AppCompat_Button_Small 0x7f150078
  1733. int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f150079
  1734. int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f15007a
  1735. int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f15007b
  1736. int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f15007c
  1737. int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f15007d
  1738. int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f15007e
  1739. int style Base_Widget_AppCompat_EditText 0x7f15007f
  1740. int style Base_Widget_AppCompat_ImageButton 0x7f150080
  1741. int style Base_Widget_AppCompat_Light_ActionBar 0x7f150081
  1742. int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f150082
  1743. int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f150083
  1744. int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f150084
  1745. int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150085
  1746. int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f150086
  1747. int style Base_Widget_AppCompat_Light_PopupMenu 0x7f150087
  1748. int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f150088
  1749. int style Base_Widget_AppCompat_ListMenuView 0x7f150089
  1750. int style Base_Widget_AppCompat_ListPopupWindow 0x7f15008a
  1751. int style Base_Widget_AppCompat_ListView 0x7f15008b
  1752. int style Base_Widget_AppCompat_ListView_DropDown 0x7f15008c
  1753. int style Base_Widget_AppCompat_ListView_Menu 0x7f15008d
  1754. int style Base_Widget_AppCompat_PopupMenu 0x7f15008e
  1755. int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f15008f
  1756. int style Base_Widget_AppCompat_PopupWindow 0x7f150090
  1757. int style Base_Widget_AppCompat_ProgressBar 0x7f150091
  1758. int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f150092
  1759. int style Base_Widget_AppCompat_RatingBar 0x7f150093
  1760. int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f150094
  1761. int style Base_Widget_AppCompat_RatingBar_Small 0x7f150095
  1762. int style Base_Widget_AppCompat_SearchView 0x7f150096
  1763. int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f150097
  1764. int style Base_Widget_AppCompat_SeekBar 0x7f150098
  1765. int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f150099
  1766. int style Base_Widget_AppCompat_Spinner 0x7f15009a
  1767. int style Base_Widget_AppCompat_Spinner_Underlined 0x7f15009b
  1768. int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f15009c
  1769. int style Base_Widget_AppCompat_Toolbar 0x7f15009d
  1770. int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f15009e
  1771. int style Platform_AppCompat 0x7f15009f
  1772. int style Platform_AppCompat_Light 0x7f1500a0
  1773. int style Platform_ThemeOverlay_AppCompat 0x7f1500a1
  1774. int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1500a2
  1775. int style Platform_ThemeOverlay_AppCompat_Light 0x7f1500a3
  1776. int style Platform_V21_AppCompat 0x7f1500a4
  1777. int style Platform_V21_AppCompat_Light 0x7f1500a5
  1778. int style Platform_V25_AppCompat 0x7f1500a6
  1779. int style Platform_V25_AppCompat_Light 0x7f1500a7
  1780. int style Platform_Widget_AppCompat_Spinner 0x7f1500a8
  1781. int style Preference 0x7f1500a9
  1782. int style PreferenceFragment 0x7f1500aa
  1783. int style PreferenceFragmentList 0x7f1500ab
  1784. int style PreferenceFragmentList_Material 0x7f1500ac
  1785. int style PreferenceFragment_Material 0x7f1500ad
  1786. int style PreferenceThemeOverlay 0x7f1500ae
  1787. int style PreferenceThemeOverlay_v14 0x7f1500af
  1788. int style PreferenceThemeOverlay_v14_Material 0x7f1500b0
  1789. int style Preference_Category 0x7f1500b1
  1790. int style Preference_Category_Material 0x7f1500b2
  1791. int style Preference_CheckBoxPreference 0x7f1500b3
  1792. int style Preference_CheckBoxPreference_Material 0x7f1500b4
  1793. int style Preference_DialogPreference 0x7f1500b5
  1794. int style Preference_DialogPreference_EditTextPreference 0x7f1500b6
  1795. int style Preference_DialogPreference_EditTextPreference_Material 0x7f1500b7
  1796. int style Preference_DialogPreference_Material 0x7f1500b8
  1797. int style Preference_DropDown 0x7f1500b9
  1798. int style Preference_DropDown_Material 0x7f1500ba
  1799. int style Preference_Information 0x7f1500bb
  1800. int style Preference_Information_Material 0x7f1500bc
  1801. int style Preference_Material 0x7f1500bd
  1802. int style Preference_PreferenceScreen 0x7f1500be
  1803. int style Preference_PreferenceScreen_Material 0x7f1500bf
  1804. int style Preference_SeekBarPreference 0x7f1500c0
  1805. int style Preference_SeekBarPreference_Material 0x7f1500c1
  1806. int style Preference_SwitchPreference 0x7f1500c2
  1807. int style Preference_SwitchPreferenceCompat 0x7f1500c3
  1808. int style Preference_SwitchPreferenceCompat_Material 0x7f1500c4
  1809. int style Preference_SwitchPreference_Material 0x7f1500c5
  1810. int style Preference_TextAppearanceMaterialBody2 0x7f1500c6
  1811. int style Preference_TextAppearanceMaterialSubhead 0x7f1500c7
  1812. int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f1500c8
  1813. int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f1500c9
  1814. int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f1500ca
  1815. int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f1500cb
  1816. int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f1500cc
  1817. int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f1500cd
  1818. int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f1500ce
  1819. int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f1500cf
  1820. int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f1500d0
  1821. int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f1500d1
  1822. int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f1500d2
  1823. int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f1500d3
  1824. int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f1500d4
  1825. int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f1500d5
  1826. int style SeekBarPreference_summary 0x7f1500d6
  1827. int style SeekBarPreference_title 0x7f1500d7
  1828. int style TextAppearance_AppCompat 0x7f1500d8
  1829. int style TextAppearance_AppCompat_Body1 0x7f1500d9
  1830. int style TextAppearance_AppCompat_Body2 0x7f1500da
  1831. int style TextAppearance_AppCompat_Button 0x7f1500db
  1832. int style TextAppearance_AppCompat_Caption 0x7f1500dc
  1833. int style TextAppearance_AppCompat_Display1 0x7f1500dd
  1834. int style TextAppearance_AppCompat_Display2 0x7f1500de
  1835. int style TextAppearance_AppCompat_Display3 0x7f1500df
  1836. int style TextAppearance_AppCompat_Display4 0x7f1500e0
  1837. int style TextAppearance_AppCompat_Headline 0x7f1500e1
  1838. int style TextAppearance_AppCompat_Inverse 0x7f1500e2
  1839. int style TextAppearance_AppCompat_Large 0x7f1500e3
  1840. int style TextAppearance_AppCompat_Large_Inverse 0x7f1500e4
  1841. int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1500e5
  1842. int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1500e6
  1843. int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1500e7
  1844. int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1500e8
  1845. int style TextAppearance_AppCompat_Medium 0x7f1500e9
  1846. int style TextAppearance_AppCompat_Medium_Inverse 0x7f1500ea
  1847. int style TextAppearance_AppCompat_Menu 0x7f1500eb
  1848. int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f1500ec
  1849. int style TextAppearance_AppCompat_SearchResult_Title 0x7f1500ed
  1850. int style TextAppearance_AppCompat_Small 0x7f1500ee
  1851. int style TextAppearance_AppCompat_Small_Inverse 0x7f1500ef
  1852. int style TextAppearance_AppCompat_Subhead 0x7f1500f0
  1853. int style TextAppearance_AppCompat_Subhead_Inverse 0x7f1500f1
  1854. int style TextAppearance_AppCompat_Title 0x7f1500f2
  1855. int style TextAppearance_AppCompat_Title_Inverse 0x7f1500f3
  1856. int style TextAppearance_AppCompat_Tooltip 0x7f1500f4
  1857. int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f1500f5
  1858. int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f1500f6
  1859. int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f1500f7
  1860. int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f1500f8
  1861. int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f1500f9
  1862. int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f1500fa
  1863. int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f1500fb
  1864. int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f1500fc
  1865. int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f1500fd
  1866. int style TextAppearance_AppCompat_Widget_Button 0x7f1500fe
  1867. int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f1500ff
  1868. int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f150100
  1869. int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150101
  1870. int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f150102
  1871. int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150103
  1872. int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150104
  1873. int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150105
  1874. int style TextAppearance_AppCompat_Widget_Switch 0x7f150106
  1875. int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f150107
  1876. int style TextAppearance_Compat_Notification 0x7f150108
  1877. int style TextAppearance_Compat_Notification_Info 0x7f150109
  1878. int style TextAppearance_Compat_Notification_Info_Media 0x7f15010a
  1879. int style TextAppearance_Compat_Notification_Line2 0x7f15010b
  1880. int style TextAppearance_Compat_Notification_Line2_Media 0x7f15010c
  1881. int style TextAppearance_Compat_Notification_Media 0x7f15010d
  1882. int style TextAppearance_Compat_Notification_Time 0x7f15010e
  1883. int style TextAppearance_Compat_Notification_Time_Media 0x7f15010f
  1884. int style TextAppearance_Compat_Notification_Title 0x7f150110
  1885. int style TextAppearance_Compat_Notification_Title_Media 0x7f150111
  1886. int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f150112
  1887. int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f150113
  1888. int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f150114
  1889. int style ThemeOverlay_AppCompat 0x7f150115
  1890. int style ThemeOverlay_AppCompat_ActionBar 0x7f150116
  1891. int style ThemeOverlay_AppCompat_Dark 0x7f150117
  1892. int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150118
  1893. int style ThemeOverlay_AppCompat_Dialog 0x7f150119
  1894. int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f15011a
  1895. int style ThemeOverlay_AppCompat_Light 0x7f15011b
  1896. int style Theme_AppCompat 0x7f15011c
  1897. int style Theme_AppCompat_CompactMenu 0x7f15011d
  1898. int style Theme_AppCompat_DayNight 0x7f15011e
  1899. int style Theme_AppCompat_DayNight_DarkActionBar 0x7f15011f
  1900. int style Theme_AppCompat_DayNight_Dialog 0x7f150120
  1901. int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f150121
  1902. int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f150122
  1903. int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f150123
  1904. int style Theme_AppCompat_DayNight_NoActionBar 0x7f150124
  1905. int style Theme_AppCompat_Dialog 0x7f150125
  1906. int style Theme_AppCompat_DialogWhenLarge 0x7f150126
  1907. int style Theme_AppCompat_Dialog_Alert 0x7f150127
  1908. int style Theme_AppCompat_Dialog_MinWidth 0x7f150128
  1909. int style Theme_AppCompat_Light 0x7f150129
  1910. int style Theme_AppCompat_Light_DarkActionBar 0x7f15012a
  1911. int style Theme_AppCompat_Light_Dialog 0x7f15012b
  1912. int style Theme_AppCompat_Light_DialogWhenLarge 0x7f15012c
  1913. int style Theme_AppCompat_Light_Dialog_Alert 0x7f15012d
  1914. int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f15012e
  1915. int style Theme_AppCompat_Light_NoActionBar 0x7f15012f
  1916. int style Theme_AppCompat_NoActionBar 0x7f150130
  1917. int style Widget_AppCompat_ActionBar 0x7f150131
  1918. int style Widget_AppCompat_ActionBar_Solid 0x7f150132
  1919. int style Widget_AppCompat_ActionBar_TabBar 0x7f150133
  1920. int style Widget_AppCompat_ActionBar_TabText 0x7f150134
  1921. int style Widget_AppCompat_ActionBar_TabView 0x7f150135
  1922. int style Widget_AppCompat_ActionButton 0x7f150136
  1923. int style Widget_AppCompat_ActionButton_CloseMode 0x7f150137
  1924. int style Widget_AppCompat_ActionButton_Overflow 0x7f150138
  1925. int style Widget_AppCompat_ActionMode 0x7f150139
  1926. int style Widget_AppCompat_ActivityChooserView 0x7f15013a
  1927. int style Widget_AppCompat_AutoCompleteTextView 0x7f15013b
  1928. int style Widget_AppCompat_Button 0x7f15013c
  1929. int style Widget_AppCompat_ButtonBar 0x7f15013d
  1930. int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f15013e
  1931. int style Widget_AppCompat_Button_Borderless 0x7f15013f
  1932. int style Widget_AppCompat_Button_Borderless_Colored 0x7f150140
  1933. int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150141
  1934. int style Widget_AppCompat_Button_Colored 0x7f150142
  1935. int style Widget_AppCompat_Button_Small 0x7f150143
  1936. int style Widget_AppCompat_CompoundButton_CheckBox 0x7f150144
  1937. int style Widget_AppCompat_CompoundButton_RadioButton 0x7f150145
  1938. int style Widget_AppCompat_CompoundButton_Switch 0x7f150146
  1939. int style Widget_AppCompat_DrawerArrowToggle 0x7f150147
  1940. int style Widget_AppCompat_DropDownItem_Spinner 0x7f150148
  1941. int style Widget_AppCompat_EditText 0x7f150149
  1942. int style Widget_AppCompat_ImageButton 0x7f15014a
  1943. int style Widget_AppCompat_Light_ActionBar 0x7f15014b
  1944. int style Widget_AppCompat_Light_ActionBar_Solid 0x7f15014c
  1945. int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f15014d
  1946. int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f15014e
  1947. int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f15014f
  1948. int style Widget_AppCompat_Light_ActionBar_TabText 0x7f150150
  1949. int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150151
  1950. int style Widget_AppCompat_Light_ActionBar_TabView 0x7f150152
  1951. int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f150153
  1952. int style Widget_AppCompat_Light_ActionButton 0x7f150154
  1953. int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f150155
  1954. int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f150156
  1955. int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f150157
  1956. int style Widget_AppCompat_Light_ActivityChooserView 0x7f150158
  1957. int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f150159
  1958. int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f15015a
  1959. int style Widget_AppCompat_Light_ListPopupWindow 0x7f15015b
  1960. int style Widget_AppCompat_Light_ListView_DropDown 0x7f15015c
  1961. int style Widget_AppCompat_Light_PopupMenu 0x7f15015d
  1962. int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f15015e
  1963. int style Widget_AppCompat_Light_SearchView 0x7f15015f
  1964. int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f150160
  1965. int style Widget_AppCompat_ListMenuView 0x7f150161
  1966. int style Widget_AppCompat_ListPopupWindow 0x7f150162
  1967. int style Widget_AppCompat_ListView 0x7f150163
  1968. int style Widget_AppCompat_ListView_DropDown 0x7f150164
  1969. int style Widget_AppCompat_ListView_Menu 0x7f150165
  1970. int style Widget_AppCompat_PopupMenu 0x7f150166
  1971. int style Widget_AppCompat_PopupMenu_Overflow 0x7f150167
  1972. int style Widget_AppCompat_PopupWindow 0x7f150168
  1973. int style Widget_AppCompat_ProgressBar 0x7f150169
  1974. int style Widget_AppCompat_ProgressBar_Horizontal 0x7f15016a
  1975. int style Widget_AppCompat_RatingBar 0x7f15016b
  1976. int style Widget_AppCompat_RatingBar_Indicator 0x7f15016c
  1977. int style Widget_AppCompat_RatingBar_Small 0x7f15016d
  1978. int style Widget_AppCompat_SearchView 0x7f15016e
  1979. int style Widget_AppCompat_SearchView_ActionBar 0x7f15016f
  1980. int style Widget_AppCompat_SeekBar 0x7f150170
  1981. int style Widget_AppCompat_SeekBar_Discrete 0x7f150171
  1982. int style Widget_AppCompat_Spinner 0x7f150172
  1983. int style Widget_AppCompat_Spinner_DropDown 0x7f150173
  1984. int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f150174
  1985. int style Widget_AppCompat_Spinner_Underlined 0x7f150175
  1986. int style Widget_AppCompat_TextView_SpinnerItem 0x7f150176
  1987. int style Widget_AppCompat_Toolbar 0x7f150177
  1988. int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f150178
  1989. int style Widget_Compat_NotificationActionContainer 0x7f150179
  1990. int style Widget_Compat_NotificationActionText 0x7f15017a
  1991. int style Widget_Support_CoordinatorLayout 0x7f15017b
  1992. int[] styleable ActionBar { 0x7f040042, 0x7f040043, 0x7f040044, 0x7f040069, 0x7f04006a, 0x7f04006b, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f040071, 0x7f04007f, 0x7f040080, 0x7f04008d, 0x7f0400aa, 0x7f0400ab, 0x7f0400ac, 0x7f0400ad, 0x7f0400ae, 0x7f0400b4, 0x7f0400b8, 0x7f0400cf, 0x7f0400db, 0x7f0400eb, 0x7f0400fd, 0x7f0400fe, 0x7f04012e, 0x7f040131, 0x7f040154, 0x7f04015d }
  1993. int styleable ActionBar_background 0
  1994. int styleable ActionBar_backgroundSplit 1
  1995. int styleable ActionBar_backgroundStacked 2
  1996. int styleable ActionBar_contentInsetEnd 3
  1997. int styleable ActionBar_contentInsetEndWithActions 4
  1998. int styleable ActionBar_contentInsetLeft 5
  1999. int styleable ActionBar_contentInsetRight 6
  2000. int styleable ActionBar_contentInsetStart 7
  2001. int styleable ActionBar_contentInsetStartWithNavigation 8
  2002. int styleable ActionBar_customNavigationLayout 9
  2003. int styleable ActionBar_displayOptions 10
  2004. int styleable ActionBar_divider 11
  2005. int styleable ActionBar_elevation 12
  2006. int styleable ActionBar_height 13
  2007. int styleable ActionBar_hideOnContentScroll 14
  2008. int styleable ActionBar_homeAsUpIndicator 15
  2009. int styleable ActionBar_homeLayout 16
  2010. int styleable ActionBar_icon 17
  2011. int styleable ActionBar_indeterminateProgressStyle 18
  2012. int styleable ActionBar_itemPadding 19
  2013. int styleable ActionBar_logo 20
  2014. int styleable ActionBar_navigationMode 21
  2015. int styleable ActionBar_popupTheme 22
  2016. int styleable ActionBar_progressBarPadding 23
  2017. int styleable ActionBar_progressBarStyle 24
  2018. int styleable ActionBar_subtitle 25
  2019. int styleable ActionBar_subtitleTextStyle 26
  2020. int styleable ActionBar_title 27
  2021. int styleable ActionBar_titleTextStyle 28
  2022. int[] styleable ActionBarLayout { 0x10100b3 }
  2023. int styleable ActionBarLayout_android_layout_gravity 0
  2024. int[] styleable ActionMenuItemView { 0x101013f }
  2025. int styleable ActionMenuItemView_android_minWidth 0
  2026. int[] styleable ActionMode { 0x7f040042, 0x7f040043, 0x7f040059, 0x7f0400aa, 0x7f040131, 0x7f04015d }
  2027. int styleable ActionMode_background 0
  2028. int styleable ActionMode_backgroundSplit 1
  2029. int styleable ActionMode_closeItemLayout 2
  2030. int styleable ActionMode_height 3
  2031. int styleable ActionMode_subtitleTextStyle 4
  2032. int styleable ActionMode_titleTextStyle 5
  2033. int[] styleable ActivityChooserView { 0x7f040092, 0x7f0400b5 }
  2034. int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
  2035. int styleable ActivityChooserView_initialActivityCount 1
  2036. int[] styleable AlertDialog { 0x10100f2, 0x7f04004f, 0x7f040050, 0x7f0400c6, 0x7f0400c7, 0x7f0400d8, 0x7f04011f, 0x7f040120 }
  2037. int styleable AlertDialog_android_layout 0
  2038. int styleable AlertDialog_buttonIconDimen 1
  2039. int styleable AlertDialog_buttonPanelSideLayout 2
  2040. int styleable AlertDialog_listItemLayout 3
  2041. int styleable AlertDialog_listLayout 4
  2042. int styleable AlertDialog_multiChoiceItemLayout 5
  2043. int styleable AlertDialog_showTitle 6
  2044. int styleable AlertDialog_singleChoiceItemLayout 7
  2045. int[] styleable AppCompatImageView { 0x1010119, 0x7f040127, 0x7f040152, 0x7f040153 }
  2046. int styleable AppCompatImageView_android_src 0
  2047. int styleable AppCompatImageView_srcCompat 1
  2048. int styleable AppCompatImageView_tint 2
  2049. int styleable AppCompatImageView_tintMode 3
  2050. int[] styleable AppCompatSeekBar { 0x1010142, 0x7f04014e, 0x7f04014f, 0x7f040150 }
  2051. int styleable AppCompatSeekBar_android_thumb 0
  2052. int styleable AppCompatSeekBar_tickMark 1
  2053. int styleable AppCompatSeekBar_tickMarkTint 2
  2054. int styleable AppCompatSeekBar_tickMarkTintMode 3
  2055. int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 }
  2056. int styleable AppCompatTextHelper_android_drawableBottom 0
  2057. int styleable AppCompatTextHelper_android_drawableEnd 1
  2058. int styleable AppCompatTextHelper_android_drawableLeft 2
  2059. int styleable AppCompatTextHelper_android_drawableRight 3
  2060. int styleable AppCompatTextHelper_android_drawableStart 4
  2061. int styleable AppCompatTextHelper_android_drawableTop 5
  2062. int styleable AppCompatTextHelper_android_textAppearance 6
  2063. int[] styleable AppCompatTextView { 0x1010034, 0x7f04003d, 0x7f04003e, 0x7f04003f, 0x7f040040, 0x7f040041, 0x7f04009a, 0x7f04013e }
  2064. int styleable AppCompatTextView_android_textAppearance 0
  2065. int styleable AppCompatTextView_autoSizeMaxTextSize 1
  2066. int styleable AppCompatTextView_autoSizeMinTextSize 2
  2067. int styleable AppCompatTextView_autoSizePresetSizes 3
  2068. int styleable AppCompatTextView_autoSizeStepGranularity 4
  2069. int styleable AppCompatTextView_autoSizeTextType 5
  2070. int styleable AppCompatTextView_fontFamily 6
  2071. int styleable AppCompatTextView_textAllCaps 7
  2072. int[] styleable AppCompatTheme { 0x7f04000c, 0x7f04000d, 0x7f04000e, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040020, 0x7f040021, 0x7f040022, 0x7f040023, 0x7f040024, 0x7f040025, 0x7f040026, 0x7f040027, 0x7f040028, 0x7f040029, 0x7f04002a, 0x7f04002d, 0x7f04002f, 0x7f040030, 0x7f040031, 0x7f040032, 0x10100ae, 0x1010057, 0x7f04003c, 0x7f040048, 0x7f040049, 0x7f04004a, 0x7f04004b, 0x7f04004c, 0x7f04004d, 0x7f040051, 0x7f040052, 0x7f040056, 0x7f040057, 0x7f04005d, 0x7f04005e, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f040065, 0x7f040066, 0x7f04006f, 0x7f04007a, 0x7f04007b, 0x7f040081, 0x7f040083, 0x7f040086, 0x7f040087, 0x7f040089, 0x7f04008a, 0x7f04008c, 0x7f0400ac, 0x7f0400b3, 0x7f0400c3, 0x7f0400c5, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400cc, 0x7f0400cd, 0x7f0400ce, 0x7f0400e6, 0x7f0400e7, 0x7f0400e8, 0x7f0400ea, 0x7f0400ec, 0x7f040101, 0x7f040102, 0x7f040103, 0x7f040104, 0x7f040110, 0x7f040113, 0x7f040118, 0x7f040119, 0x7f040124, 0x7f040125, 0x7f04013a, 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040142, 0x7f040143, 0x7f040144, 0x7f040145, 0x7f040146, 0x7f040147, 0x7f040148, 0x7f04015e, 0x7f04015f, 0x7f040160, 0x7f040161, 0x7f040167, 0x7f04016a, 0x7f04016b, 0x7f04016c, 0x7f04016d, 0x7f04016e, 0x7f04016f, 0x7f040170, 0x7f040171, 0x7f040172, 0x7f040173 }
  2073. int styleable AppCompatTheme_actionBarDivider 0
  2074. int styleable AppCompatTheme_actionBarItemBackground 1
  2075. int styleable AppCompatTheme_actionBarPopupTheme 2
  2076. int styleable AppCompatTheme_actionBarSize 3
  2077. int styleable AppCompatTheme_actionBarSplitStyle 4
  2078. int styleable AppCompatTheme_actionBarStyle 5
  2079. int styleable AppCompatTheme_actionBarTabBarStyle 6
  2080. int styleable AppCompatTheme_actionBarTabStyle 7
  2081. int styleable AppCompatTheme_actionBarTabTextStyle 8
  2082. int styleable AppCompatTheme_actionBarTheme 9
  2083. int styleable AppCompatTheme_actionBarWidgetTheme 10
  2084. int styleable AppCompatTheme_actionButtonStyle 11
  2085. int styleable AppCompatTheme_actionDropDownStyle 12
  2086. int styleable AppCompatTheme_actionMenuTextAppearance 13
  2087. int styleable AppCompatTheme_actionMenuTextColor 14
  2088. int styleable AppCompatTheme_actionModeBackground 15
  2089. int styleable AppCompatTheme_actionModeCloseButtonStyle 16
  2090. int styleable AppCompatTheme_actionModeCloseDrawable 17
  2091. int styleable AppCompatTheme_actionModeCopyDrawable 18
  2092. int styleable AppCompatTheme_actionModeCutDrawable 19
  2093. int styleable AppCompatTheme_actionModeFindDrawable 20
  2094. int styleable AppCompatTheme_actionModePasteDrawable 21
  2095. int styleable AppCompatTheme_actionModePopupWindowStyle 22
  2096. int styleable AppCompatTheme_actionModeSelectAllDrawable 23
  2097. int styleable AppCompatTheme_actionModeShareDrawable 24
  2098. int styleable AppCompatTheme_actionModeSplitBackground 25
  2099. int styleable AppCompatTheme_actionModeStyle 26
  2100. int styleable AppCompatTheme_actionModeWebSearchDrawable 27
  2101. int styleable AppCompatTheme_actionOverflowButtonStyle 28
  2102. int styleable AppCompatTheme_actionOverflowMenuStyle 29
  2103. int styleable AppCompatTheme_activityChooserViewStyle 30
  2104. int styleable AppCompatTheme_alertDialogButtonGroupStyle 31
  2105. int styleable AppCompatTheme_alertDialogCenterButtons 32
  2106. int styleable AppCompatTheme_alertDialogStyle 33
  2107. int styleable AppCompatTheme_alertDialogTheme 34
  2108. int styleable AppCompatTheme_android_windowAnimationStyle 35
  2109. int styleable AppCompatTheme_android_windowIsFloating 36
  2110. int styleable AppCompatTheme_autoCompleteTextViewStyle 37
  2111. int styleable AppCompatTheme_borderlessButtonStyle 38
  2112. int styleable AppCompatTheme_buttonBarButtonStyle 39
  2113. int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
  2114. int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
  2115. int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
  2116. int styleable AppCompatTheme_buttonBarStyle 43
  2117. int styleable AppCompatTheme_buttonStyle 44
  2118. int styleable AppCompatTheme_buttonStyleSmall 45
  2119. int styleable AppCompatTheme_checkboxStyle 46
  2120. int styleable AppCompatTheme_checkedTextViewStyle 47
  2121. int styleable AppCompatTheme_colorAccent 48
  2122. int styleable AppCompatTheme_colorBackgroundFloating 49
  2123. int styleable AppCompatTheme_colorButtonNormal 50
  2124. int styleable AppCompatTheme_colorControlActivated 51
  2125. int styleable AppCompatTheme_colorControlHighlight 52
  2126. int styleable AppCompatTheme_colorControlNormal 53
  2127. int styleable AppCompatTheme_colorError 54
  2128. int styleable AppCompatTheme_colorPrimary 55
  2129. int styleable AppCompatTheme_colorPrimaryDark 56
  2130. int styleable AppCompatTheme_colorSwitchThumbNormal 57
  2131. int styleable AppCompatTheme_controlBackground 58
  2132. int styleable AppCompatTheme_dialogPreferredPadding 59
  2133. int styleable AppCompatTheme_dialogTheme 60
  2134. int styleable AppCompatTheme_dividerHorizontal 61
  2135. int styleable AppCompatTheme_dividerVertical 62
  2136. int styleable AppCompatTheme_dropDownListViewStyle 63
  2137. int styleable AppCompatTheme_dropdownListPreferredItemHeight 64
  2138. int styleable AppCompatTheme_editTextBackground 65
  2139. int styleable AppCompatTheme_editTextColor 66
  2140. int styleable AppCompatTheme_editTextStyle 67
  2141. int styleable AppCompatTheme_homeAsUpIndicator 68
  2142. int styleable AppCompatTheme_imageButtonStyle 69
  2143. int styleable AppCompatTheme_listChoiceBackgroundIndicator 70
  2144. int styleable AppCompatTheme_listDividerAlertDialog 71
  2145. int styleable AppCompatTheme_listMenuViewStyle 72
  2146. int styleable AppCompatTheme_listPopupWindowStyle 73
  2147. int styleable AppCompatTheme_listPreferredItemHeight 74
  2148. int styleable AppCompatTheme_listPreferredItemHeightLarge 75
  2149. int styleable AppCompatTheme_listPreferredItemHeightSmall 76
  2150. int styleable AppCompatTheme_listPreferredItemPaddingLeft 77
  2151. int styleable AppCompatTheme_listPreferredItemPaddingRight 78
  2152. int styleable AppCompatTheme_panelBackground 79
  2153. int styleable AppCompatTheme_panelMenuListTheme 80
  2154. int styleable AppCompatTheme_panelMenuListWidth 81
  2155. int styleable AppCompatTheme_popupMenuStyle 82
  2156. int styleable AppCompatTheme_popupWindowStyle 83
  2157. int styleable AppCompatTheme_radioButtonStyle 84
  2158. int styleable AppCompatTheme_ratingBarStyle 85
  2159. int styleable AppCompatTheme_ratingBarStyleIndicator 86
  2160. int styleable AppCompatTheme_ratingBarStyleSmall 87
  2161. int styleable AppCompatTheme_searchViewStyle 88
  2162. int styleable AppCompatTheme_seekBarStyle 89
  2163. int styleable AppCompatTheme_selectableItemBackground 90
  2164. int styleable AppCompatTheme_selectableItemBackgroundBorderless 91
  2165. int styleable AppCompatTheme_spinnerDropDownItemStyle 92
  2166. int styleable AppCompatTheme_spinnerStyle 93
  2167. int styleable AppCompatTheme_switchStyle 94
  2168. int styleable AppCompatTheme_textAppearanceLargePopupMenu 95
  2169. int styleable AppCompatTheme_textAppearanceListItem 96
  2170. int styleable AppCompatTheme_textAppearanceListItemSecondary 97
  2171. int styleable AppCompatTheme_textAppearanceListItemSmall 98
  2172. int styleable AppCompatTheme_textAppearancePopupMenuHeader 99
  2173. int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 100
  2174. int styleable AppCompatTheme_textAppearanceSearchResultTitle 101
  2175. int styleable AppCompatTheme_textAppearanceSmallPopupMenu 102
  2176. int styleable AppCompatTheme_textColorAlertDialogListItem 103
  2177. int styleable AppCompatTheme_textColorSearchUrl 104
  2178. int styleable AppCompatTheme_toolbarNavigationButtonStyle 105
  2179. int styleable AppCompatTheme_toolbarStyle 106
  2180. int styleable AppCompatTheme_tooltipForegroundColor 107
  2181. int styleable AppCompatTheme_tooltipFrameBackground 108
  2182. int styleable AppCompatTheme_viewInflaterClass 109
  2183. int styleable AppCompatTheme_windowActionBar 110
  2184. int styleable AppCompatTheme_windowActionBarOverlay 111
  2185. int styleable AppCompatTheme_windowActionModeOverlay 112
  2186. int styleable AppCompatTheme_windowFixedHeightMajor 113
  2187. int styleable AppCompatTheme_windowFixedHeightMinor 114
  2188. int styleable AppCompatTheme_windowFixedWidthMajor 115
  2189. int styleable AppCompatTheme_windowFixedWidthMinor 116
  2190. int styleable AppCompatTheme_windowMinWidthMajor 117
  2191. int styleable AppCompatTheme_windowMinWidthMinor 118
  2192. int styleable AppCompatTheme_windowNoTitle 119
  2193. int[] styleable AspectScaledTextureView { 0x7f04003b, 0x7f040108 }
  2194. int styleable AspectScaledTextureView_aspect_ratio 0
  2195. int styleable AspectScaledTextureView_scale_mode 1
  2196. int[] styleable BackgroundStyle { 0x101030e, 0x7f040118 }
  2197. int styleable BackgroundStyle_android_selectableItemBackground 0
  2198. int styleable BackgroundStyle_selectableItemBackground 1
  2199. int[] styleable ButtonBarLayout { 0x7f040036 }
  2200. int styleable ButtonBarLayout_allowStacking 0
  2201. int[] styleable CheckBoxPreference { 0x10101f1, 0x10101f0, 0x10101ef, 0x7f04007d, 0x7f040134, 0x7f040135 }
  2202. int styleable CheckBoxPreference_android_disableDependentsState 0
  2203. int styleable CheckBoxPreference_android_summaryOff 1
  2204. int styleable CheckBoxPreference_android_summaryOn 2
  2205. int styleable CheckBoxPreference_disableDependentsState 3
  2206. int styleable CheckBoxPreference_summaryOff 4
  2207. int styleable CheckBoxPreference_summaryOn 5
  2208. int[] styleable ColorStateListItem { 0x7f040037, 0x101031f, 0x10101a5 }
  2209. int styleable ColorStateListItem_alpha 0
  2210. int styleable ColorStateListItem_android_alpha 1
  2211. int styleable ColorStateListItem_android_color 2
  2212. int[] styleable CompoundButton { 0x1010107, 0x7f040053, 0x7f040054 }
  2213. int styleable CompoundButton_android_button 0
  2214. int styleable CompoundButton_buttonTint 1
  2215. int styleable CompoundButton_buttonTintMode 2
  2216. int[] styleable CoordinatorLayout { 0x7f0400ba, 0x7f04012a }
  2217. int styleable CoordinatorLayout_keylines 0
  2218. int styleable CoordinatorLayout_statusBarBackground 1
  2219. int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f0400bd, 0x7f0400be, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2 }
  2220. int styleable CoordinatorLayout_Layout_android_layout_gravity 0
  2221. int styleable CoordinatorLayout_Layout_layout_anchor 1
  2222. int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
  2223. int styleable CoordinatorLayout_Layout_layout_behavior 3
  2224. int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
  2225. int styleable CoordinatorLayout_Layout_layout_insetEdge 5
  2226. int styleable CoordinatorLayout_Layout_layout_keyline 6
  2227. int[] styleable DialogPreference { 0x10101f4, 0x10101f7, 0x10101f3, 0x10101f2, 0x10101f6, 0x10101f5, 0x7f040076, 0x7f040077, 0x7f040078, 0x7f04007c, 0x7f0400dc, 0x7f0400ed }
  2228. int styleable DialogPreference_android_dialogIcon 0
  2229. int styleable DialogPreference_android_dialogLayout 1
  2230. int styleable DialogPreference_android_dialogMessage 2
  2231. int styleable DialogPreference_android_dialogTitle 3
  2232. int styleable DialogPreference_android_negativeButtonText 4
  2233. int styleable DialogPreference_android_positiveButtonText 5
  2234. int styleable DialogPreference_dialogIcon 6
  2235. int styleable DialogPreference_dialogLayout 7
  2236. int styleable DialogPreference_dialogMessage 8
  2237. int styleable DialogPreference_dialogTitle 9
  2238. int styleable DialogPreference_negativeButtonText 10
  2239. int styleable DialogPreference_positiveButtonText 11
  2240. int[] styleable DrawerArrowToggle { 0x7f040039, 0x7f04003a, 0x7f040047, 0x7f04005c, 0x7f040084, 0x7f0400a7, 0x7f040123, 0x7f04014a }
  2241. int styleable DrawerArrowToggle_arrowHeadLength 0
  2242. int styleable DrawerArrowToggle_arrowShaftLength 1
  2243. int styleable DrawerArrowToggle_barLength 2
  2244. int styleable DrawerArrowToggle_color 3
  2245. int styleable DrawerArrowToggle_drawableSize 4
  2246. int styleable DrawerArrowToggle_gapBetweenBars 5
  2247. int styleable DrawerArrowToggle_spinBars 6
  2248. int styleable DrawerArrowToggle_thickness 7
  2249. int[] styleable FontFamily { 0x7f04009b, 0x7f04009c, 0x7f04009d, 0x7f04009e, 0x7f04009f, 0x7f0400a0 }
  2250. int styleable FontFamily_fontProviderAuthority 0
  2251. int styleable FontFamily_fontProviderCerts 1
  2252. int styleable FontFamily_fontProviderFetchStrategy 2
  2253. int styleable FontFamily_fontProviderFetchTimeout 3
  2254. int styleable FontFamily_fontProviderPackage 4
  2255. int styleable FontFamily_fontProviderQuery 5
  2256. int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010533, 0x7f040099, 0x7f0400a1, 0x7f0400a2 }
  2257. int styleable FontFamilyFont_android_font 0
  2258. int styleable FontFamilyFont_android_fontStyle 1
  2259. int styleable FontFamilyFont_android_fontWeight 2
  2260. int styleable FontFamilyFont_font 3
  2261. int styleable FontFamilyFont_fontStyle 4
  2262. int styleable FontFamilyFont_fontWeight 5
  2263. int[] styleable FrameView { 0x7f0400a4, 0x7f0400a5, 0x7f0400a6, 0x7f040107, 0x7f040109, 0x7f04010a, 0x7f04010b, 0x7f04010d, 0x7f040151 }
  2264. int styleable FrameView_frame_color 0
  2265. int styleable FrameView_frame_type 1
  2266. int styleable FrameView_frame_width 2
  2267. int styleable FrameView_scale_color 3
  2268. int styleable FrameView_scale_rotation 4
  2269. int styleable FrameView_scale_scale 5
  2270. int styleable FrameView_scale_type 6
  2271. int styleable FrameView_scale_width 7
  2272. int styleable FrameView_tick_color 8
  2273. int[] styleable IAspectRatioView { 0x7f04003b }
  2274. int styleable IAspectRatioView_aspect_ratio 0
  2275. int[] styleable IScaledView { 0x7f040108 }
  2276. int styleable IScaledView_scale_mode 0
  2277. int[] styleable ItemPicker { 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a }
  2278. int styleable ItemPicker_ItemPickerCurrentItemValue 0
  2279. int styleable ItemPicker_ItemPickerDecrementBackground 1
  2280. int styleable ItemPicker_ItemPickerDecrementSrc 2
  2281. int styleable ItemPicker_ItemPickerDisplayedValue 3
  2282. int styleable ItemPicker_ItemPickerEditTextBackground 4
  2283. int styleable ItemPicker_ItemPickerIncrementBackground 5
  2284. int styleable ItemPicker_ItemPickerIncrementSrc 6
  2285. int styleable ItemPicker_ItemPickerMaxItemValue 7
  2286. int styleable ItemPicker_ItemPickerMinItemValue 8
  2287. int styleable ItemPicker_ItemPickerSpeed 9
  2288. int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f040080, 0x7f040082, 0x7f0400d5, 0x7f04011c }
  2289. int styleable LinearLayoutCompat_android_baselineAligned 0
  2290. int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1
  2291. int styleable LinearLayoutCompat_android_gravity 2
  2292. int styleable LinearLayoutCompat_android_orientation 3
  2293. int styleable LinearLayoutCompat_android_weightSum 4
  2294. int styleable LinearLayoutCompat_divider 5
  2295. int styleable LinearLayoutCompat_dividerPadding 6
  2296. int styleable LinearLayoutCompat_measureWithLargestChild 7
  2297. int styleable LinearLayoutCompat_showDividers 8
  2298. int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 }
  2299. int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
  2300. int styleable LinearLayoutCompat_Layout_android_layout_height 1
  2301. int styleable LinearLayoutCompat_Layout_android_layout_weight 2
  2302. int styleable LinearLayoutCompat_Layout_android_layout_width 3
  2303. int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad }
  2304. int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
  2305. int styleable ListPopupWindow_android_dropDownVerticalOffset 1
  2306. int[] styleable ListPreference { 0x10100b2, 0x10101f8, 0x7f040090, 0x7f040091 }
  2307. int styleable ListPreference_android_entries 0
  2308. int styleable ListPreference_android_entryValues 1
  2309. int styleable ListPreference_entries 2
  2310. int styleable ListPreference_entryValues 3
  2311. int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 }
  2312. int styleable MenuGroup_android_checkableBehavior 0
  2313. int styleable MenuGroup_android_enabled 1
  2314. int styleable MenuGroup_android_id 2
  2315. int styleable MenuGroup_android_menuCategory 3
  2316. int styleable MenuGroup_android_orderInCategory 4
  2317. int styleable MenuGroup_android_visible 5
  2318. int[] styleable MenuItem { 0x7f040019, 0x7f04002b, 0x7f04002c, 0x7f040038, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f040068, 0x7f0400b0, 0x7f0400b1, 0x7f0400dd, 0x7f04011b, 0x7f040162 }
  2319. int styleable MenuItem_actionLayout 0
  2320. int styleable MenuItem_actionProviderClass 1
  2321. int styleable MenuItem_actionViewClass 2
  2322. int styleable MenuItem_alphabeticModifiers 3
  2323. int styleable MenuItem_android_alphabeticShortcut 4
  2324. int styleable MenuItem_android_checkable 5
  2325. int styleable MenuItem_android_checked 6
  2326. int styleable MenuItem_android_enabled 7
  2327. int styleable MenuItem_android_icon 8
  2328. int styleable MenuItem_android_id 9
  2329. int styleable MenuItem_android_menuCategory 10
  2330. int styleable MenuItem_android_numericShortcut 11
  2331. int styleable MenuItem_android_onClick 12
  2332. int styleable MenuItem_android_orderInCategory 13
  2333. int styleable MenuItem_android_title 14
  2334. int styleable MenuItem_android_titleCondensed 15
  2335. int styleable MenuItem_android_visible 16
  2336. int styleable MenuItem_contentDescription 17
  2337. int styleable MenuItem_iconTint 18
  2338. int styleable MenuItem_iconTintMode 19
  2339. int styleable MenuItem_numericModifiers 20
  2340. int styleable MenuItem_showAsAction 21
  2341. int styleable MenuItem_tooltipText 22
  2342. int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f0400fc, 0x7f04012b }
  2343. int styleable MenuView_android_headerBackground 0
  2344. int styleable MenuView_android_horizontalDivider 1
  2345. int styleable MenuView_android_itemBackground 2
  2346. int styleable MenuView_android_itemIconDisabledAlpha 3
  2347. int styleable MenuView_android_itemTextAppearance 4
  2348. int styleable MenuView_android_verticalDivider 5
  2349. int styleable MenuView_android_windowAnimationStyle 6
  2350. int styleable MenuView_preserveIconSpacing 7
  2351. int styleable MenuView_subMenuArrow 8
  2352. int[] styleable MultiSelectListPreference { 0x10100b2, 0x10101f8, 0x7f040090, 0x7f040091 }
  2353. int styleable MultiSelectListPreference_android_entries 0
  2354. int styleable MultiSelectListPreference_android_entryValues 1
  2355. int styleable MultiSelectListPreference_entries 2
  2356. int styleable MultiSelectListPreference_entryValues 3
  2357. int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f0400e1 }
  2358. int styleable PopupWindow_android_popupAnimationStyle 0
  2359. int styleable PopupWindow_android_popupBackground 1
  2360. int styleable PopupWindow_overlapAnchor 2
  2361. int[] styleable PopupWindowBackgroundState { 0x7f040129 }
  2362. int styleable PopupWindowBackgroundState_state_above_anchor 0
  2363. int[] styleable Preference { 0x7f040033, 0x7f040035, 0x10101ed, 0x10101ec, 0x101000e, 0x10102e3, 0x1010002, 0x1010561, 0x10101e8, 0x10100f2, 0x10101ea, 0x101000d, 0x10101e6, 0x10101ee, 0x101055c, 0x10101e9, 0x10101e1, 0x10101eb, 0x7f040073, 0x7f040075, 0x7f04008f, 0x7f0400a3, 0x7f0400ae, 0x7f0400af, 0x7f0400b9, 0x7f0400bb, 0x7f0400de, 0x7f0400e9, 0x7f040117, 0x7f04011a, 0x7f040121, 0x7f040133, 0x7f040154, 0x7f040169 }
  2364. int styleable Preference_allowDividerAbove 0
  2365. int styleable Preference_allowDividerBelow 1
  2366. int styleable Preference_android_defaultValue 2
  2367. int styleable Preference_android_dependency 3
  2368. int styleable Preference_android_enabled 4
  2369. int styleable Preference_android_fragment 5
  2370. int styleable Preference_android_icon 6
  2371. int styleable Preference_android_iconSpaceReserved 7
  2372. int styleable Preference_android_key 8
  2373. int styleable Preference_android_layout 9
  2374. int styleable Preference_android_order 10
  2375. int styleable Preference_android_persistent 11
  2376. int styleable Preference_android_selectable 12
  2377. int styleable Preference_android_shouldDisableView 13
  2378. int styleable Preference_android_singleLineTitle 14
  2379. int styleable Preference_android_summary 15
  2380. int styleable Preference_android_title 16
  2381. int styleable Preference_android_widgetLayout 17
  2382. int styleable Preference_defaultValue 18
  2383. int styleable Preference_dependency 19
  2384. int styleable Preference_enabled 20
  2385. int styleable Preference_fragment 21
  2386. int styleable Preference_icon 22
  2387. int styleable Preference_iconSpaceReserved 23
  2388. int styleable Preference_key 24
  2389. int styleable Preference_layout 25
  2390. int styleable Preference_order 26
  2391. int styleable Preference_persistent 27
  2392. int styleable Preference_selectable 28
  2393. int styleable Preference_shouldDisableView 29
  2394. int styleable Preference_singleLineTitle 30
  2395. int styleable Preference_summary 31
  2396. int styleable Preference_title 32
  2397. int styleable Preference_widgetLayout 33
  2398. int[] styleable PreferenceFragment { 0x7f040034, 0x1010129, 0x101012a, 0x10100f2 }
  2399. int styleable PreferenceFragment_allowDividerAfterLastItem 0
  2400. int styleable PreferenceFragment_android_divider 1
  2401. int styleable PreferenceFragment_android_dividerHeight 2
  2402. int styleable PreferenceFragment_android_layout 3
  2403. int[] styleable PreferenceFragmentCompat { 0x7f040034, 0x1010129, 0x101012a, 0x10100f2 }
  2404. int styleable PreferenceFragmentCompat_allowDividerAfterLastItem 0
  2405. int styleable PreferenceFragmentCompat_android_divider 1
  2406. int styleable PreferenceFragmentCompat_android_dividerHeight 2
  2407. int styleable PreferenceFragmentCompat_android_layout 3
  2408. int[] styleable PreferenceGroup { 0x10101e7, 0x7f0400b6, 0x7f0400df }
  2409. int styleable PreferenceGroup_android_orderingFromXml 0
  2410. int styleable PreferenceGroup_initialExpandedChildrenCount 1
  2411. int styleable PreferenceGroup_orderingFromXml 2
  2412. int[] styleable PreferenceImageView { 0x1010120, 0x101011f, 0x7f0400d2, 0x7f0400d3 }
  2413. int styleable PreferenceImageView_android_maxHeight 0
  2414. int styleable PreferenceImageView_android_maxWidth 1
  2415. int styleable PreferenceImageView_maxHeight 2
  2416. int styleable PreferenceImageView_maxWidth 3
  2417. int[] styleable PreferenceTheme { 0x7f040055, 0x7f040079, 0x7f040088, 0x7f04008b, 0x7f0400ee, 0x7f0400ef, 0x7f0400f0, 0x7f0400f1, 0x7f0400f2, 0x7f0400f3, 0x7f0400f4, 0x7f0400f5, 0x7f0400f6, 0x7f0400f7, 0x7f0400f8, 0x7f0400f9, 0x7f0400fa, 0x7f0400fb, 0x7f040106, 0x7f040112, 0x7f040138, 0x7f040139, 0x7f040174 }
  2418. int styleable PreferenceTheme_checkBoxPreferenceStyle 0
  2419. int styleable PreferenceTheme_dialogPreferenceStyle 1
  2420. int styleable PreferenceTheme_dropdownPreferenceStyle 2
  2421. int styleable PreferenceTheme_editTextPreferenceStyle 3
  2422. int styleable PreferenceTheme_preferenceActivityStyle 4
  2423. int styleable PreferenceTheme_preferenceCategoryStyle 5
  2424. int styleable PreferenceTheme_preferenceFragmentCompatStyle 6
  2425. int styleable PreferenceTheme_preferenceFragmentListStyle 7
  2426. int styleable PreferenceTheme_preferenceFragmentPaddingSide 8
  2427. int styleable PreferenceTheme_preferenceFragmentStyle 9
  2428. int styleable PreferenceTheme_preferenceHeaderPanelStyle 10
  2429. int styleable PreferenceTheme_preferenceInformationStyle 11
  2430. int styleable PreferenceTheme_preferenceLayoutChild 12
  2431. int styleable PreferenceTheme_preferenceListStyle 13
  2432. int styleable PreferenceTheme_preferencePanelStyle 14
  2433. int styleable PreferenceTheme_preferenceScreenStyle 15
  2434. int styleable PreferenceTheme_preferenceStyle 16
  2435. int styleable PreferenceTheme_preferenceTheme 17
  2436. int styleable PreferenceTheme_ringtonePreferenceStyle 18
  2437. int styleable PreferenceTheme_seekBarPreferenceStyle 19
  2438. int styleable PreferenceTheme_switchPreferenceCompatStyle 20
  2439. int styleable PreferenceTheme_switchPreferenceStyle 21
  2440. int styleable PreferenceTheme_yesNoPreferenceStyle 22
  2441. int[] styleable RecycleListView { 0x7f0400e2, 0x7f0400e5 }
  2442. int styleable RecycleListView_paddingBottomNoButtons 0
  2443. int styleable RecycleListView_paddingTopNoTitle 1
  2444. int[] styleable RecycleViewWithEmptyView { 0x7f0400c4 }
  2445. int styleable RecycleViewWithEmptyView_listDivider 0
  2446. int[] styleable RecyclerView { 0x10100f1, 0x10100c4, 0x7f040093, 0x7f040094, 0x7f040095, 0x7f040096, 0x7f040097, 0x7f0400bc, 0x7f040105, 0x7f040122, 0x7f040128 }
  2447. int styleable RecyclerView_android_descendantFocusability 0
  2448. int styleable RecyclerView_android_orientation 1
  2449. int styleable RecyclerView_fastScrollEnabled 2
  2450. int styleable RecyclerView_fastScrollHorizontalThumbDrawable 3
  2451. int styleable RecyclerView_fastScrollHorizontalTrackDrawable 4
  2452. int styleable RecyclerView_fastScrollVerticalThumbDrawable 5
  2453. int styleable RecyclerView_fastScrollVerticalTrackDrawable 6
  2454. int styleable RecyclerView_layoutManager 7
  2455. int styleable RecyclerView_reverseLayout 8
  2456. int styleable RecyclerView_spanCount 9
  2457. int styleable RecyclerView_stackFromEnd 10
  2458. int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f040058, 0x7f040067, 0x7f040072, 0x7f0400a8, 0x7f0400b2, 0x7f0400bb, 0x7f0400ff, 0x7f040100, 0x7f04010e, 0x7f04010f, 0x7f04012d, 0x7f040132, 0x7f040168 }
  2459. int styleable SearchView_android_focusable 0
  2460. int styleable SearchView_android_imeOptions 1
  2461. int styleable SearchView_android_inputType 2
  2462. int styleable SearchView_android_maxWidth 3
  2463. int styleable SearchView_closeIcon 4
  2464. int styleable SearchView_commitIcon 5
  2465. int styleable SearchView_defaultQueryHint 6
  2466. int styleable SearchView_goIcon 7
  2467. int styleable SearchView_iconifiedByDefault 8
  2468. int styleable SearchView_layout 9
  2469. int styleable SearchView_queryBackground 10
  2470. int styleable SearchView_queryHint 11
  2471. int styleable SearchView_searchHintIcon 12
  2472. int styleable SearchView_searchIcon 13
  2473. int styleable SearchView_submitBackground 14
  2474. int styleable SearchView_suggestionRowLayout 15
  2475. int styleable SearchView_voiceIcon 16
  2476. int[] styleable SeekBarPreference { 0x7f04002e, 0x10100f2, 0x1010136, 0x7f040074, 0x7f0400d4, 0x7f0400d6, 0x7f0400d7, 0x7f04010c, 0x7f040111, 0x7f040114, 0x7f040115, 0x7f040116, 0x7f04011d, 0x7f040166 }
  2477. int styleable SeekBarPreference_adjustable 0
  2478. int styleable SeekBarPreference_android_layout 1
  2479. int styleable SeekBarPreference_android_max 2
  2480. int styleable SeekBarPreference_default_value 3
  2481. int styleable SeekBarPreference_max_value 4
  2482. int styleable SeekBarPreference_min 5
  2483. int styleable SeekBarPreference_min_value 6
  2484. int styleable SeekBarPreference_scale_value 7
  2485. int styleable SeekBarPreference_seekBarIncrement 8
  2486. int styleable SeekBarPreference_seekbar_id 9
  2487. int styleable SeekBarPreference_seekbar_label_id 10
  2488. int styleable SeekBarPreference_seekbar_layout 11
  2489. int styleable SeekBarPreference_showSeekBarValue 12
  2490. int styleable SeekBarPreference_value_format 13
  2491. int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f0400eb }
  2492. int styleable Spinner_android_dropDownWidth 0
  2493. int styleable Spinner_android_entries 1
  2494. int styleable Spinner_android_popupBackground 2
  2495. int styleable Spinner_android_prompt 3
  2496. int styleable Spinner_popupTheme 4
  2497. int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f04011e, 0x7f040126, 0x7f040136, 0x7f040137, 0x7f04013b, 0x7f04014b, 0x7f04014c, 0x7f04014d, 0x7f040163, 0x7f040164, 0x7f040165 }
  2498. int styleable SwitchCompat_android_textOff 0
  2499. int styleable SwitchCompat_android_textOn 1
  2500. int styleable SwitchCompat_android_thumb 2
  2501. int styleable SwitchCompat_showText 3
  2502. int styleable SwitchCompat_splitTrack 4
  2503. int styleable SwitchCompat_switchMinWidth 5
  2504. int styleable SwitchCompat_switchPadding 6
  2505. int styleable SwitchCompat_switchTextAppearance 7
  2506. int styleable SwitchCompat_thumbTextPadding 8
  2507. int styleable SwitchCompat_thumbTint 9
  2508. int styleable SwitchCompat_thumbTintMode 10
  2509. int styleable SwitchCompat_track 11
  2510. int styleable SwitchCompat_trackTint 12
  2511. int styleable SwitchCompat_trackTintMode 13
  2512. int[] styleable SwitchPreference { 0x10101f1, 0x10101f0, 0x10101ef, 0x101036c, 0x101036b, 0x7f04007d, 0x7f040134, 0x7f040135, 0x7f04013c, 0x7f04013d }
  2513. int styleable SwitchPreference_android_disableDependentsState 0
  2514. int styleable SwitchPreference_android_summaryOff 1
  2515. int styleable SwitchPreference_android_summaryOn 2
  2516. int styleable SwitchPreference_android_switchTextOff 3
  2517. int styleable SwitchPreference_android_switchTextOn 4
  2518. int styleable SwitchPreference_disableDependentsState 5
  2519. int styleable SwitchPreference_summaryOff 6
  2520. int styleable SwitchPreference_summaryOn 7
  2521. int styleable SwitchPreference_switchTextOff 8
  2522. int styleable SwitchPreference_switchTextOn 9
  2523. int[] styleable SwitchPreferenceCompat { 0x10101f1, 0x10101f0, 0x10101ef, 0x101036c, 0x101036b, 0x7f04007d, 0x7f040134, 0x7f040135, 0x7f04013c, 0x7f04013d }
  2524. int styleable SwitchPreferenceCompat_android_disableDependentsState 0
  2525. int styleable SwitchPreferenceCompat_android_summaryOff 1
  2526. int styleable SwitchPreferenceCompat_android_summaryOn 2
  2527. int styleable SwitchPreferenceCompat_android_switchTextOff 3
  2528. int styleable SwitchPreferenceCompat_android_switchTextOn 4
  2529. int styleable SwitchPreferenceCompat_disableDependentsState 5
  2530. int styleable SwitchPreferenceCompat_summaryOff 6
  2531. int styleable SwitchPreferenceCompat_summaryOn 7
  2532. int styleable SwitchPreferenceCompat_switchTextOff 8
  2533. int styleable SwitchPreferenceCompat_switchTextOn 9
  2534. int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010095, 0x1010097, 0x1010096, 0x7f04009a, 0x7f04013e }
  2535. int styleable TextAppearance_android_fontFamily 0
  2536. int styleable TextAppearance_android_shadowColor 1
  2537. int styleable TextAppearance_android_shadowDx 2
  2538. int styleable TextAppearance_android_shadowDy 3
  2539. int styleable TextAppearance_android_shadowRadius 4
  2540. int styleable TextAppearance_android_textColor 5
  2541. int styleable TextAppearance_android_textColorHint 6
  2542. int styleable TextAppearance_android_textColorLink 7
  2543. int styleable TextAppearance_android_textSize 8
  2544. int styleable TextAppearance_android_textStyle 9
  2545. int styleable TextAppearance_android_typeface 10
  2546. int styleable TextAppearance_fontFamily 11
  2547. int styleable TextAppearance_textAllCaps 12
  2548. int[] styleable TimePicker { 0x7f04000b }
  2549. int styleable TimePicker_TimePickerDefaultValue 0
  2550. int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f04004e, 0x7f04005a, 0x7f04005b, 0x7f040069, 0x7f04006a, 0x7f04006b, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d9, 0x7f0400da, 0x7f0400eb, 0x7f04012e, 0x7f04012f, 0x7f040130, 0x7f040154, 0x7f040155, 0x7f040156, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f04015a, 0x7f04015b, 0x7f04015c }
  2551. int styleable Toolbar_android_gravity 0
  2552. int styleable Toolbar_android_minHeight 1
  2553. int styleable Toolbar_buttonGravity 2
  2554. int styleable Toolbar_collapseContentDescription 3
  2555. int styleable Toolbar_collapseIcon 4
  2556. int styleable Toolbar_contentInsetEnd 5
  2557. int styleable Toolbar_contentInsetEndWithActions 6
  2558. int styleable Toolbar_contentInsetLeft 7
  2559. int styleable Toolbar_contentInsetRight 8
  2560. int styleable Toolbar_contentInsetStart 9
  2561. int styleable Toolbar_contentInsetStartWithNavigation 10
  2562. int styleable Toolbar_logo 11
  2563. int styleable Toolbar_logoDescription 12
  2564. int styleable Toolbar_maxButtonHeight 13
  2565. int styleable Toolbar_navigationContentDescription 14
  2566. int styleable Toolbar_navigationIcon 15
  2567. int styleable Toolbar_popupTheme 16
  2568. int styleable Toolbar_subtitle 17
  2569. int styleable Toolbar_subtitleTextAppearance 18
  2570. int styleable Toolbar_subtitleTextColor 19
  2571. int styleable Toolbar_title 20
  2572. int styleable Toolbar_titleMargin 21
  2573. int styleable Toolbar_titleMarginBottom 22
  2574. int styleable Toolbar_titleMarginEnd 23
  2575. int styleable Toolbar_titleMarginStart 24
  2576. int styleable Toolbar_titleMarginTop 25
  2577. int styleable Toolbar_titleMargins 26
  2578. int styleable Toolbar_titleTextAppearance 27
  2579. int styleable Toolbar_titleTextColor 28
  2580. int[] styleable TwoPainViewGroup { 0x7f04007e, 0x7f04008e, 0x7f040098, 0x7f0400e0, 0x7f04012c }
  2581. int styleable TwoPainViewGroup_displayMode 0
  2582. int styleable TwoPainViewGroup_enableSubWindow 1
  2583. int styleable TwoPainViewGroup_flipChildPos 2
  2584. int styleable TwoPainViewGroup_orientation 3
  2585. int styleable TwoPainViewGroup_subWindowScale 4
  2586. int[] styleable View { 0x10100da, 0x1010000, 0x7f0400e3, 0x7f0400e4, 0x7f040149 }
  2587. int styleable View_android_focusable 0
  2588. int styleable View_android_theme 1
  2589. int styleable View_paddingEnd 2
  2590. int styleable View_paddingStart 3
  2591. int styleable View_theme 4
  2592. int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f040045, 0x7f040046 }
  2593. int styleable ViewBackgroundHelper_android_background 0
  2594. int styleable ViewBackgroundHelper_backgroundTint 1
  2595. int styleable ViewBackgroundHelper_backgroundTintMode 2
  2596. int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 }
  2597. int styleable ViewStubCompat_android_id 0
  2598. int styleable ViewStubCompat_android_inflatedId 1
  2599. int styleable ViewStubCompat_android_layout 2
  2600. int[] styleable ZoomAspectScaledTextureView { 0x7f04003b, 0x7f0400a9, 0x7f040108 }
  2601. int styleable ZoomAspectScaledTextureView_aspect_ratio 0
  2602. int styleable ZoomAspectScaledTextureView_handle_touch_event 1
  2603. int styleable ZoomAspectScaledTextureView_scale_mode 2
  2604. int xml device_filter 0x7f180001