R.txt 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181
  1. int anim abc_fade_in 0x7f010000
  2. int anim abc_fade_out 0x7f010001
  3. int anim abc_grow_fade_in_from_bottom 0x7f010002
  4. int anim abc_popup_enter 0x7f010003
  5. int anim abc_popup_exit 0x7f010004
  6. int anim abc_shrink_fade_out_from_bottom 0x7f010005
  7. int anim abc_slide_in_bottom 0x7f010006
  8. int anim abc_slide_in_top 0x7f010007
  9. int anim abc_slide_out_bottom 0x7f010008
  10. int anim abc_slide_out_top 0x7f010009
  11. int anim abc_tooltip_enter 0x7f01000a
  12. int anim abc_tooltip_exit 0x7f01000b
  13. int anim dcloud_page_close_enter 0x7f01000c
  14. int anim dcloud_page_close_exit 0x7f01000d
  15. int anim dcloud_page_open_enter 0x7f01000e
  16. int anim dcloud_page_open_exit 0x7f01000f
  17. int anim dcloud_slide_in_from_right 0x7f010010
  18. int anim dcloud_slide_in_from_top 0x7f010011
  19. int anim dcloud_slide_out_to_right 0x7f010012
  20. int anim dcloud_slide_out_to_top 0x7f010013
  21. int anim dcloud_slide_right_in 0x7f010014
  22. int anim dcloud_slide_right_out 0x7f010015
  23. int anim dcloud_slide_static 0x7f010016
  24. int attr actionBarDivider 0x7f020000
  25. int attr actionBarItemBackground 0x7f020001
  26. int attr actionBarPopupTheme 0x7f020002
  27. int attr actionBarSize 0x7f020003
  28. int attr actionBarSplitStyle 0x7f020004
  29. int attr actionBarStyle 0x7f020005
  30. int attr actionBarTabBarStyle 0x7f020006
  31. int attr actionBarTabStyle 0x7f020007
  32. int attr actionBarTabTextStyle 0x7f020008
  33. int attr actionBarTheme 0x7f020009
  34. int attr actionBarWidgetTheme 0x7f02000a
  35. int attr actionButtonStyle 0x7f02000b
  36. int attr actionDropDownStyle 0x7f02000c
  37. int attr actionLayout 0x7f02000d
  38. int attr actionMenuTextAppearance 0x7f02000e
  39. int attr actionMenuTextColor 0x7f02000f
  40. int attr actionModeBackground 0x7f020010
  41. int attr actionModeCloseButtonStyle 0x7f020011
  42. int attr actionModeCloseDrawable 0x7f020012
  43. int attr actionModeCopyDrawable 0x7f020013
  44. int attr actionModeCutDrawable 0x7f020014
  45. int attr actionModeFindDrawable 0x7f020015
  46. int attr actionModePasteDrawable 0x7f020016
  47. int attr actionModePopupWindowStyle 0x7f020017
  48. int attr actionModeSelectAllDrawable 0x7f020018
  49. int attr actionModeShareDrawable 0x7f020019
  50. int attr actionModeSplitBackground 0x7f02001a
  51. int attr actionModeStyle 0x7f02001b
  52. int attr actionModeWebSearchDrawable 0x7f02001c
  53. int attr actionOverflowButtonStyle 0x7f02001d
  54. int attr actionOverflowMenuStyle 0x7f02001e
  55. int attr actionProviderClass 0x7f02001f
  56. int attr actionSheetBackground 0x7f020020
  57. int attr actionSheetPadding 0x7f020021
  58. int attr actionSheetStyle 0x7f020022
  59. int attr actionSheetTextSize 0x7f020023
  60. int attr actionViewClass 0x7f020024
  61. int attr activityChooserViewStyle 0x7f020025
  62. int attr actualImageResource 0x7f020026
  63. int attr actualImageScaleType 0x7f020027
  64. int attr actualImageUri 0x7f020028
  65. int attr alertDialogButtonGroupStyle 0x7f020029
  66. int attr alertDialogCenterButtons 0x7f02002a
  67. int attr alertDialogStyle 0x7f02002b
  68. int attr alertDialogTheme 0x7f02002c
  69. int attr allowStacking 0x7f02002d
  70. int attr alpha 0x7f02002e
  71. int attr alphabeticModifiers 0x7f02002f
  72. int attr arrowHeadLength 0x7f020030
  73. int attr arrowShaftLength 0x7f020031
  74. int attr authPlay 0x7f020032
  75. int attr autoCompleteTextViewStyle 0x7f020033
  76. int attr autoSizeMaxTextSize 0x7f020034
  77. int attr autoSizeMinTextSize 0x7f020035
  78. int attr autoSizePresetSizes 0x7f020036
  79. int attr autoSizeStepGranularity 0x7f020037
  80. int attr autoSizeTextType 0x7f020038
  81. int attr background 0x7f020039
  82. int attr backgroundImage 0x7f02003a
  83. int attr backgroundSplit 0x7f02003b
  84. int attr backgroundStacked 0x7f02003c
  85. int attr backgroundTint 0x7f02003d
  86. int attr backgroundTintMode 0x7f02003e
  87. int attr barLength 0x7f02003f
  88. int attr borderlessButtonStyle 0x7f020040
  89. int attr buttonBarButtonStyle 0x7f020041
  90. int attr buttonBarNegativeButtonStyle 0x7f020042
  91. int attr buttonBarNeutralButtonStyle 0x7f020043
  92. int attr buttonBarPositiveButtonStyle 0x7f020044
  93. int attr buttonBarStyle 0x7f020045
  94. int attr buttonGravity 0x7f020046
  95. int attr buttonIconDimen 0x7f020047
  96. int attr buttonPanelSideLayout 0x7f020048
  97. int attr buttonStyle 0x7f020049
  98. int attr buttonStyleSmall 0x7f02004a
  99. int attr buttonTint 0x7f02004b
  100. int attr buttonTintMode 0x7f02004c
  101. int attr cancelButtonBackground 0x7f02004d
  102. int attr cancelButtonMarginTop 0x7f02004e
  103. int attr cancelButtonTextColor 0x7f02004f
  104. int attr checkboxStyle 0x7f020050
  105. int attr checkedTextViewStyle 0x7f020051
  106. int attr closeIcon 0x7f020052
  107. int attr closeItemLayout 0x7f020053
  108. int attr collapseContentDescription 0x7f020054
  109. int attr collapseIcon 0x7f020055
  110. int attr color 0x7f020056
  111. int attr colorAccent 0x7f020057
  112. int attr colorBackgroundFloating 0x7f020058
  113. int attr colorButtonNormal 0x7f020059
  114. int attr colorControlActivated 0x7f02005a
  115. int attr colorControlHighlight 0x7f02005b
  116. int attr colorControlNormal 0x7f02005c
  117. int attr colorError 0x7f02005d
  118. int attr colorPrimary 0x7f02005e
  119. int attr colorPrimaryDark 0x7f02005f
  120. int attr colorSwitchThumbNormal 0x7f020060
  121. int attr commitIcon 0x7f020061
  122. int attr contentDescription 0x7f020062
  123. int attr contentInsetEnd 0x7f020063
  124. int attr contentInsetEndWithActions 0x7f020064
  125. int attr contentInsetLeft 0x7f020065
  126. int attr contentInsetRight 0x7f020066
  127. int attr contentInsetStart 0x7f020067
  128. int attr contentInsetStartWithNavigation 0x7f020068
  129. int attr controlBackground 0x7f020069
  130. int attr coordinatorLayoutStyle 0x7f02006a
  131. int attr customNavigationLayout 0x7f02006b
  132. int attr defaultQueryHint 0x7f02006c
  133. int attr destructiveButtonTextColor 0x7f02006d
  134. int attr dialogCornerRadius 0x7f02006e
  135. int attr dialogPreferredPadding 0x7f02006f
  136. int attr dialogTheme 0x7f020070
  137. int attr displayOptions 0x7f020071
  138. int attr divider 0x7f020072
  139. int attr dividerHorizontal 0x7f020073
  140. int attr dividerPadding 0x7f020074
  141. int attr dividerVertical 0x7f020075
  142. int attr drawableSize 0x7f020076
  143. int attr drawerArrowStyle 0x7f020077
  144. int attr dropDownListViewStyle 0x7f020078
  145. int attr dropdownListPreferredItemHeight 0x7f020079
  146. int attr editTextBackground 0x7f02007a
  147. int attr editTextColor 0x7f02007b
  148. int attr editTextStyle 0x7f02007c
  149. int attr elevation 0x7f02007d
  150. int attr expandActivityOverflowButtonDrawable 0x7f02007e
  151. int attr fadeDuration 0x7f02007f
  152. int attr failureImage 0x7f020080
  153. int attr failureImageScaleType 0x7f020081
  154. int attr fastScrollEnabled 0x7f020082
  155. int attr fastScrollHorizontalThumbDrawable 0x7f020083
  156. int attr fastScrollHorizontalTrackDrawable 0x7f020084
  157. int attr fastScrollVerticalThumbDrawable 0x7f020085
  158. int attr fastScrollVerticalTrackDrawable 0x7f020086
  159. int attr firstBaselineToTopHeight 0x7f020087
  160. int attr font 0x7f020088
  161. int attr fontFamily 0x7f020089
  162. int attr fontProviderAuthority 0x7f02008a
  163. int attr fontProviderCerts 0x7f02008b
  164. int attr fontProviderFetchStrategy 0x7f02008c
  165. int attr fontProviderFetchTimeout 0x7f02008d
  166. int attr fontProviderPackage 0x7f02008e
  167. int attr fontProviderQuery 0x7f02008f
  168. int attr fontStyle 0x7f020090
  169. int attr fontVariationSettings 0x7f020091
  170. int attr fontWeight 0x7f020092
  171. int attr freezesAnimation 0x7f020093
  172. int attr gapBetweenBars 0x7f020094
  173. int attr gifSource 0x7f020095
  174. int attr gifSrc 0x7f020096
  175. int attr goIcon 0x7f020097
  176. int attr height 0x7f020098
  177. int attr hideOnContentScroll 0x7f020099
  178. int attr homeAsUpIndicator 0x7f02009a
  179. int attr homeLayout 0x7f02009b
  180. int attr icon 0x7f02009c
  181. int attr iconTint 0x7f02009d
  182. int attr iconTintMode 0x7f02009e
  183. int attr iconifiedByDefault 0x7f02009f
  184. int attr imageButtonStyle 0x7f0200a0
  185. int attr indeterminateProgressStyle 0x7f0200a1
  186. int attr initialActivityCount 0x7f0200a2
  187. int attr isLightTheme 0x7f0200a3
  188. int attr isOpaque 0x7f0200a4
  189. int attr itemPadding 0x7f0200a5
  190. int attr keylines 0x7f0200a6
  191. int attr lastBaselineToBottomHeight 0x7f0200a7
  192. int attr layout 0x7f0200a8
  193. int attr layoutManager 0x7f0200a9
  194. int attr layout_anchor 0x7f0200aa
  195. int attr layout_anchorGravity 0x7f0200ab
  196. int attr layout_behavior 0x7f0200ac
  197. int attr layout_dodgeInsetEdges 0x7f0200ad
  198. int attr layout_insetEdge 0x7f0200ae
  199. int attr layout_keyline 0x7f0200af
  200. int attr lineHeight 0x7f0200b0
  201. int attr listChoiceBackgroundIndicator 0x7f0200b1
  202. int attr listDividerAlertDialog 0x7f0200b2
  203. int attr listItemLayout 0x7f0200b3
  204. int attr listLayout 0x7f0200b4
  205. int attr listMenuViewStyle 0x7f0200b5
  206. int attr listPopupWindowStyle 0x7f0200b6
  207. int attr listPreferredItemHeight 0x7f0200b7
  208. int attr listPreferredItemHeightLarge 0x7f0200b8
  209. int attr listPreferredItemHeightSmall 0x7f0200b9
  210. int attr listPreferredItemPaddingLeft 0x7f0200ba
  211. int attr listPreferredItemPaddingRight 0x7f0200bb
  212. int attr logo 0x7f0200bc
  213. int attr logoDescription 0x7f0200bd
  214. int attr loopCount 0x7f0200be
  215. int attr maxButtonHeight 0x7f0200bf
  216. int attr measureWithLargestChild 0x7f0200c0
  217. int attr multiChoiceItemLayout 0x7f0200c1
  218. int attr navigationContentDescription 0x7f0200c2
  219. int attr navigationIcon 0x7f0200c3
  220. int attr navigationMode 0x7f0200c4
  221. int attr numericModifiers 0x7f0200c5
  222. int attr otherButtonBottomBackground 0x7f0200c6
  223. int attr otherButtonMiddleBackground 0x7f0200c7
  224. int attr otherButtonSingleBackground 0x7f0200c8
  225. int attr otherButtonSpacing 0x7f0200c9
  226. int attr otherButtonTextColor 0x7f0200ca
  227. int attr otherButtonTitleBackground 0x7f0200cb
  228. int attr otherButtonTopBackground 0x7f0200cc
  229. int attr overlapAnchor 0x7f0200cd
  230. int attr overlayImage 0x7f0200ce
  231. int attr paddingBottomNoButtons 0x7f0200cf
  232. int attr paddingEnd 0x7f0200d0
  233. int attr paddingStart 0x7f0200d1
  234. int attr paddingTopNoTitle 0x7f0200d2
  235. int attr panelBackground 0x7f0200d3
  236. int attr panelMenuListTheme 0x7f0200d4
  237. int attr panelMenuListWidth 0x7f0200d5
  238. int attr placeholderImage 0x7f0200d6
  239. int attr placeholderImageScaleType 0x7f0200d7
  240. int attr playCount 0x7f0200d8
  241. int attr popupMenuStyle 0x7f0200d9
  242. int attr popupTheme 0x7f0200da
  243. int attr popupWindowStyle 0x7f0200db
  244. int attr preserveIconSpacing 0x7f0200dc
  245. int attr pressedStateOverlayImage 0x7f0200dd
  246. int attr progressBarAutoRotateInterval 0x7f0200de
  247. int attr progressBarImage 0x7f0200df
  248. int attr progressBarImageScaleType 0x7f0200e0
  249. int attr progressBarPadding 0x7f0200e1
  250. int attr progressBarStyle 0x7f0200e2
  251. int attr queryBackground 0x7f0200e3
  252. int attr queryHint 0x7f0200e4
  253. int attr radioButtonStyle 0x7f0200e5
  254. int attr ratingBarStyle 0x7f0200e6
  255. int attr ratingBarStyleIndicator 0x7f0200e7
  256. int attr ratingBarStyleSmall 0x7f0200e8
  257. int attr retryImage 0x7f0200e9
  258. int attr retryImageScaleType 0x7f0200ea
  259. int attr reverseLayout 0x7f0200eb
  260. int attr roundAsCircle 0x7f0200ec
  261. int attr roundBottomEnd 0x7f0200ed
  262. int attr roundBottomLeft 0x7f0200ee
  263. int attr roundBottomRight 0x7f0200ef
  264. int attr roundBottomStart 0x7f0200f0
  265. int attr roundTopEnd 0x7f0200f1
  266. int attr roundTopLeft 0x7f0200f2
  267. int attr roundTopRight 0x7f0200f3
  268. int attr roundTopStart 0x7f0200f4
  269. int attr roundWithOverlayColor 0x7f0200f5
  270. int attr roundedCornerRadius 0x7f0200f6
  271. int attr roundingBorderColor 0x7f0200f7
  272. int attr roundingBorderPadding 0x7f0200f8
  273. int attr roundingBorderWidth 0x7f0200f9
  274. int attr sb_background 0x7f0200fa
  275. int attr sb_border_width 0x7f0200fb
  276. int attr sb_button_color 0x7f0200fc
  277. int attr sb_checked 0x7f0200fd
  278. int attr sb_checked_color 0x7f0200fe
  279. int attr sb_checkline_color 0x7f0200ff
  280. int attr sb_checkline_width 0x7f020100
  281. int attr sb_effect_duration 0x7f020101
  282. int attr sb_enable_effect 0x7f020102
  283. int attr sb_shadow_color 0x7f020103
  284. int attr sb_shadow_effect 0x7f020104
  285. int attr sb_shadow_offset 0x7f020105
  286. int attr sb_shadow_radius 0x7f020106
  287. int attr sb_show_indicator 0x7f020107
  288. int attr sb_uncheck_color 0x7f020108
  289. int attr sb_uncheckcircle_color 0x7f020109
  290. int attr sb_uncheckcircle_radius 0x7f02010a
  291. int attr sb_uncheckcircle_width 0x7f02010b
  292. int attr searchHintIcon 0x7f02010c
  293. int attr searchIcon 0x7f02010d
  294. int attr searchViewStyle 0x7f02010e
  295. int attr seekBarStyle 0x7f02010f
  296. int attr selectableItemBackground 0x7f020110
  297. int attr selectableItemBackgroundBorderless 0x7f020111
  298. int attr showAsAction 0x7f020112
  299. int attr showDividers 0x7f020113
  300. int attr showText 0x7f020114
  301. int attr showTitle 0x7f020115
  302. int attr singleChoiceItemLayout 0x7f020116
  303. int attr spanCount 0x7f020117
  304. int attr spinBars 0x7f020118
  305. int attr spinnerDropDownItemStyle 0x7f020119
  306. int attr spinnerStyle 0x7f02011a
  307. int attr splitTrack 0x7f02011b
  308. int attr srcCompat 0x7f02011c
  309. int attr stackFromEnd 0x7f02011d
  310. int attr state_above_anchor 0x7f02011e
  311. int attr statusBarBackground 0x7f02011f
  312. int attr subMenuArrow 0x7f020120
  313. int attr submitBackground 0x7f020121
  314. int attr subtitle 0x7f020122
  315. int attr subtitleTextAppearance 0x7f020123
  316. int attr subtitleTextColor 0x7f020124
  317. int attr subtitleTextStyle 0x7f020125
  318. int attr suggestionRowLayout 0x7f020126
  319. int attr switchMinWidth 0x7f020127
  320. int attr switchPadding 0x7f020128
  321. int attr switchStyle 0x7f020129
  322. int attr switchTextAppearance 0x7f02012a
  323. int attr textAllCaps 0x7f02012b
  324. int attr textAppearanceLargePopupMenu 0x7f02012c
  325. int attr textAppearanceListItem 0x7f02012d
  326. int attr textAppearanceListItemSecondary 0x7f02012e
  327. int attr textAppearanceListItemSmall 0x7f02012f
  328. int attr textAppearancePopupMenuHeader 0x7f020130
  329. int attr textAppearanceSearchResultSubtitle 0x7f020131
  330. int attr textAppearanceSearchResultTitle 0x7f020132
  331. int attr textAppearanceSmallPopupMenu 0x7f020133
  332. int attr textColorAlertDialogListItem 0x7f020134
  333. int attr textColorSearchUrl 0x7f020135
  334. int attr theme 0x7f020136
  335. int attr thickness 0x7f020137
  336. int attr thumbTextPadding 0x7f020138
  337. int attr thumbTint 0x7f020139
  338. int attr thumbTintMode 0x7f02013a
  339. int attr tickMark 0x7f02013b
  340. int attr tickMarkTint 0x7f02013c
  341. int attr tickMarkTintMode 0x7f02013d
  342. int attr tint 0x7f02013e
  343. int attr tintMode 0x7f02013f
  344. int attr title 0x7f020140
  345. int attr titleButtonTextColor 0x7f020141
  346. int attr titleMargin 0x7f020142
  347. int attr titleMarginBottom 0x7f020143
  348. int attr titleMarginEnd 0x7f020144
  349. int attr titleMarginStart 0x7f020145
  350. int attr titleMarginTop 0x7f020146
  351. int attr titleMargins 0x7f020147
  352. int attr titleTextAppearance 0x7f020148
  353. int attr titleTextColor 0x7f020149
  354. int attr titleTextStyle 0x7f02014a
  355. int attr toolbarNavigationButtonStyle 0x7f02014b
  356. int attr toolbarStyle 0x7f02014c
  357. int attr tooltipForegroundColor 0x7f02014d
  358. int attr tooltipFrameBackground 0x7f02014e
  359. int attr tooltipText 0x7f02014f
  360. int attr track 0x7f020150
  361. int attr trackTint 0x7f020151
  362. int attr trackTintMode 0x7f020152
  363. int attr ttcIndex 0x7f020153
  364. int attr viewAspectRatio 0x7f020154
  365. int attr viewInflaterClass 0x7f020155
  366. int attr voiceIcon 0x7f020156
  367. int attr windowActionBar 0x7f020157
  368. int attr windowActionBarOverlay 0x7f020158
  369. int attr windowActionModeOverlay 0x7f020159
  370. int attr windowFixedHeightMajor 0x7f02015a
  371. int attr windowFixedHeightMinor 0x7f02015b
  372. int attr windowFixedWidthMajor 0x7f02015c
  373. int attr windowFixedWidthMinor 0x7f02015d
  374. int attr windowMinWidthMajor 0x7f02015e
  375. int attr windowMinWidthMinor 0x7f02015f
  376. int attr windowNoTitle 0x7f020160
  377. int bool abc_action_bar_embed_tabs 0x7f030000
  378. int bool abc_allow_stacked_button_bar 0x7f030001
  379. int bool abc_config_actionMenuItemAllCaps 0x7f030002
  380. int bool weex_is_right_to_left 0x7f030003
  381. int color abc_background_cache_hint_selector_material_dark 0x7f040000
  382. int color abc_background_cache_hint_selector_material_light 0x7f040001
  383. int color abc_btn_colored_borderless_text_material 0x7f040002
  384. int color abc_btn_colored_text_material 0x7f040003
  385. int color abc_color_highlight_material 0x7f040004
  386. int color abc_hint_foreground_material_dark 0x7f040005
  387. int color abc_hint_foreground_material_light 0x7f040006
  388. int color abc_input_method_navigation_guard 0x7f040007
  389. int color abc_primary_text_disable_only_material_dark 0x7f040008
  390. int color abc_primary_text_disable_only_material_light 0x7f040009
  391. int color abc_primary_text_material_dark 0x7f04000a
  392. int color abc_primary_text_material_light 0x7f04000b
  393. int color abc_search_url_text 0x7f04000c
  394. int color abc_search_url_text_normal 0x7f04000d
  395. int color abc_search_url_text_pressed 0x7f04000e
  396. int color abc_search_url_text_selected 0x7f04000f
  397. int color abc_secondary_text_material_dark 0x7f040010
  398. int color abc_secondary_text_material_light 0x7f040011
  399. int color abc_tint_btn_checkable 0x7f040012
  400. int color abc_tint_default 0x7f040013
  401. int color abc_tint_edittext 0x7f040014
  402. int color abc_tint_seek_thumb 0x7f040015
  403. int color abc_tint_spinner 0x7f040016
  404. int color abc_tint_switch_track 0x7f040017
  405. int color accent_material_dark 0x7f040018
  406. int color accent_material_light 0x7f040019
  407. int color background_floating_material_dark 0x7f04001a
  408. int color background_floating_material_light 0x7f04001b
  409. int color background_material_dark 0x7f04001c
  410. int color background_material_light 0x7f04001d
  411. int color black 0x7f04001e
  412. int color bright_foreground_disabled_material_dark 0x7f04001f
  413. int color bright_foreground_disabled_material_light 0x7f040020
  414. int color bright_foreground_inverse_material_dark 0x7f040021
  415. int color bright_foreground_inverse_material_light 0x7f040022
  416. int color bright_foreground_material_dark 0x7f040023
  417. int color bright_foreground_material_light 0x7f040024
  418. int color button_material_dark 0x7f040025
  419. int color button_material_light 0x7f040026
  420. int color dadada 0x7f040027
  421. int color dcloud_slt_about_text_color 0x7f040028
  422. int color dim_foreground_disabled_material_dark 0x7f040029
  423. int color dim_foreground_disabled_material_light 0x7f04002a
  424. int color dim_foreground_material_dark 0x7f04002b
  425. int color dim_foreground_material_light 0x7f04002c
  426. int color e4e4e4 0x7f04002d
  427. int color error_color_material_dark 0x7f04002e
  428. int color error_color_material_light 0x7f04002f
  429. int color ffffff 0x7f040030
  430. int color foreground_material_dark 0x7f040031
  431. int color foreground_material_light 0x7f040032
  432. int color highlighted_text_material_dark 0x7f040033
  433. int color highlighted_text_material_light 0x7f040034
  434. int color image_pick_title_btn_normal 0x7f040035
  435. int color image_pick_title_btn_pressed 0x7f040036
  436. int color ime_background 0x7f040037
  437. int color material_blue_grey_800 0x7f040038
  438. int color material_blue_grey_900 0x7f040039
  439. int color material_blue_grey_950 0x7f04003a
  440. int color material_deep_teal_200 0x7f04003b
  441. int color material_deep_teal_500 0x7f04003c
  442. int color material_grey_100 0x7f04003d
  443. int color material_grey_300 0x7f04003e
  444. int color material_grey_50 0x7f04003f
  445. int color material_grey_600 0x7f040040
  446. int color material_grey_800 0x7f040041
  447. int color material_grey_850 0x7f040042
  448. int color material_grey_900 0x7f040043
  449. int color notification_action_color_filter 0x7f040044
  450. int color notification_icon_bg_color 0x7f040045
  451. int color notification_material_background_media_default_color 0x7f040046
  452. int color pop_window_bg 0x7f040047
  453. int color primary_dark_material_dark 0x7f040048
  454. int color primary_dark_material_light 0x7f040049
  455. int color primary_material_dark 0x7f04004a
  456. int color primary_material_light 0x7f04004b
  457. int color primary_text_default_material_dark 0x7f04004c
  458. int color primary_text_default_material_light 0x7f04004d
  459. int color primary_text_disabled_material_dark 0x7f04004e
  460. int color primary_text_disabled_material_light 0x7f04004f
  461. int color ripple_material_dark 0x7f040050
  462. int color ripple_material_light 0x7f040051
  463. int color secondary_text_default_material_dark 0x7f040052
  464. int color secondary_text_default_material_light 0x7f040053
  465. int color secondary_text_disabled_material_dark 0x7f040054
  466. int color secondary_text_disabled_material_light 0x7f040055
  467. int color switch_thumb_disabled_material_dark 0x7f040056
  468. int color switch_thumb_disabled_material_light 0x7f040057
  469. int color switch_thumb_material_dark 0x7f040058
  470. int color switch_thumb_material_light 0x7f040059
  471. int color switch_thumb_normal_material_dark 0x7f04005a
  472. int color switch_thumb_normal_material_light 0x7f04005b
  473. int color tooltip_background_dark 0x7f04005c
  474. int color tooltip_background_light 0x7f04005d
  475. int color white 0x7f04005e
  476. int dimen abc_action_bar_content_inset_material 0x7f050000
  477. int dimen abc_action_bar_content_inset_with_nav 0x7f050001
  478. int dimen abc_action_bar_default_height_material 0x7f050002
  479. int dimen abc_action_bar_default_padding_end_material 0x7f050003
  480. int dimen abc_action_bar_default_padding_start_material 0x7f050004
  481. int dimen abc_action_bar_elevation_material 0x7f050005
  482. int dimen abc_action_bar_icon_vertical_padding_material 0x7f050006
  483. int dimen abc_action_bar_overflow_padding_end_material 0x7f050007
  484. int dimen abc_action_bar_overflow_padding_start_material 0x7f050008
  485. int dimen abc_action_bar_stacked_max_height 0x7f050009
  486. int dimen abc_action_bar_stacked_tab_max_width 0x7f05000a
  487. int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f05000b
  488. int dimen abc_action_bar_subtitle_top_margin_material 0x7f05000c
  489. int dimen abc_action_button_min_height_material 0x7f05000d
  490. int dimen abc_action_button_min_width_material 0x7f05000e
  491. int dimen abc_action_button_min_width_overflow_material 0x7f05000f
  492. int dimen abc_alert_dialog_button_bar_height 0x7f050010
  493. int dimen abc_alert_dialog_button_dimen 0x7f050011
  494. int dimen abc_button_inset_horizontal_material 0x7f050012
  495. int dimen abc_button_inset_vertical_material 0x7f050013
  496. int dimen abc_button_padding_horizontal_material 0x7f050014
  497. int dimen abc_button_padding_vertical_material 0x7f050015
  498. int dimen abc_cascading_menus_min_smallest_width 0x7f050016
  499. int dimen abc_config_prefDialogWidth 0x7f050017
  500. int dimen abc_control_corner_material 0x7f050018
  501. int dimen abc_control_inset_material 0x7f050019
  502. int dimen abc_control_padding_material 0x7f05001a
  503. int dimen abc_dialog_corner_radius_material 0x7f05001b
  504. int dimen abc_dialog_fixed_height_major 0x7f05001c
  505. int dimen abc_dialog_fixed_height_minor 0x7f05001d
  506. int dimen abc_dialog_fixed_width_major 0x7f05001e
  507. int dimen abc_dialog_fixed_width_minor 0x7f05001f
  508. int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f050020
  509. int dimen abc_dialog_list_padding_top_no_title 0x7f050021
  510. int dimen abc_dialog_min_width_major 0x7f050022
  511. int dimen abc_dialog_min_width_minor 0x7f050023
  512. int dimen abc_dialog_padding_material 0x7f050024
  513. int dimen abc_dialog_padding_top_material 0x7f050025
  514. int dimen abc_dialog_title_divider_material 0x7f050026
  515. int dimen abc_disabled_alpha_material_dark 0x7f050027
  516. int dimen abc_disabled_alpha_material_light 0x7f050028
  517. int dimen abc_dropdownitem_icon_width 0x7f050029
  518. int dimen abc_dropdownitem_text_padding_left 0x7f05002a
  519. int dimen abc_dropdownitem_text_padding_right 0x7f05002b
  520. int dimen abc_edit_text_inset_bottom_material 0x7f05002c
  521. int dimen abc_edit_text_inset_horizontal_material 0x7f05002d
  522. int dimen abc_edit_text_inset_top_material 0x7f05002e
  523. int dimen abc_floating_window_z 0x7f05002f
  524. int dimen abc_list_item_padding_horizontal_material 0x7f050030
  525. int dimen abc_panel_menu_list_width 0x7f050031
  526. int dimen abc_progress_bar_height_material 0x7f050032
  527. int dimen abc_search_view_preferred_height 0x7f050033
  528. int dimen abc_search_view_preferred_width 0x7f050034
  529. int dimen abc_seekbar_track_background_height_material 0x7f050035
  530. int dimen abc_seekbar_track_progress_height_material 0x7f050036
  531. int dimen abc_select_dialog_padding_start_material 0x7f050037
  532. int dimen abc_switch_padding 0x7f050038
  533. int dimen abc_text_size_body_1_material 0x7f050039
  534. int dimen abc_text_size_body_2_material 0x7f05003a
  535. int dimen abc_text_size_button_material 0x7f05003b
  536. int dimen abc_text_size_caption_material 0x7f05003c
  537. int dimen abc_text_size_display_1_material 0x7f05003d
  538. int dimen abc_text_size_display_2_material 0x7f05003e
  539. int dimen abc_text_size_display_3_material 0x7f05003f
  540. int dimen abc_text_size_display_4_material 0x7f050040
  541. int dimen abc_text_size_headline_material 0x7f050041
  542. int dimen abc_text_size_large_material 0x7f050042
  543. int dimen abc_text_size_medium_material 0x7f050043
  544. int dimen abc_text_size_menu_header_material 0x7f050044
  545. int dimen abc_text_size_menu_material 0x7f050045
  546. int dimen abc_text_size_small_material 0x7f050046
  547. int dimen abc_text_size_subhead_material 0x7f050047
  548. int dimen abc_text_size_subtitle_material_toolbar 0x7f050048
  549. int dimen abc_text_size_title_material 0x7f050049
  550. int dimen abc_text_size_title_material_toolbar 0x7f05004a
  551. int dimen compat_button_inset_horizontal_material 0x7f05004b
  552. int dimen compat_button_inset_vertical_material 0x7f05004c
  553. int dimen compat_button_padding_horizontal_material 0x7f05004d
  554. int dimen compat_button_padding_vertical_material 0x7f05004e
  555. int dimen compat_control_corner_material 0x7f05004f
  556. int dimen compat_notification_large_icon_max_height 0x7f050050
  557. int dimen compat_notification_large_icon_max_width 0x7f050051
  558. int dimen dcloud_wel_base_content_space 0x7f050052
  559. int dimen dcloud_wel_base_content_space_2 0x7f050053
  560. int dimen dcloud_wel_base_content_text_min_size 0x7f050054
  561. int dimen disabled_alpha_material_dark 0x7f050055
  562. int dimen disabled_alpha_material_light 0x7f050056
  563. int dimen fastscroll_default_thickness 0x7f050057
  564. int dimen fastscroll_margin 0x7f050058
  565. int dimen fastscroll_minimum_range 0x7f050059
  566. int dimen highlight_alpha_material_colored 0x7f05005a
  567. int dimen highlight_alpha_material_dark 0x7f05005b
  568. int dimen highlight_alpha_material_light 0x7f05005c
  569. int dimen hint_alpha_material_dark 0x7f05005d
  570. int dimen hint_alpha_material_light 0x7f05005e
  571. int dimen hint_pressed_alpha_material_dark 0x7f05005f
  572. int dimen hint_pressed_alpha_material_light 0x7f050060
  573. int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f050061
  574. int dimen item_touch_helper_swipe_escape_max_velocity 0x7f050062
  575. int dimen item_touch_helper_swipe_escape_velocity 0x7f050063
  576. int dimen notification_action_icon_size 0x7f050064
  577. int dimen notification_action_text_size 0x7f050065
  578. int dimen notification_big_circle_margin 0x7f050066
  579. int dimen notification_content_margin_start 0x7f050067
  580. int dimen notification_large_icon_height 0x7f050068
  581. int dimen notification_large_icon_width 0x7f050069
  582. int dimen notification_main_column_padding_top 0x7f05006a
  583. int dimen notification_media_narrow_margin 0x7f05006b
  584. int dimen notification_right_icon_size 0x7f05006c
  585. int dimen notification_right_side_padding_top 0x7f05006d
  586. int dimen notification_small_icon_background_padding 0x7f05006e
  587. int dimen notification_small_icon_size_as_large 0x7f05006f
  588. int dimen notification_subtext_size 0x7f050070
  589. int dimen notification_top_pad 0x7f050071
  590. int dimen notification_top_pad_large_text 0x7f050072
  591. int dimen subtitle_corner_radius 0x7f050073
  592. int dimen subtitle_outline_width 0x7f050074
  593. int dimen subtitle_shadow_offset 0x7f050075
  594. int dimen subtitle_shadow_radius 0x7f050076
  595. int dimen tooltip_corner_radius 0x7f050077
  596. int dimen tooltip_horizontal_padding 0x7f050078
  597. int dimen tooltip_margin 0x7f050079
  598. int dimen tooltip_precise_anchor_extra_offset 0x7f05007a
  599. int dimen tooltip_precise_anchor_threshold 0x7f05007b
  600. int dimen tooltip_vertical_padding 0x7f05007c
  601. int dimen tooltip_y_offset_non_touch 0x7f05007d
  602. int dimen tooltip_y_offset_touch 0x7f05007e
  603. int drawable abc_ab_share_pack_mtrl_alpha 0x7f060000
  604. int drawable abc_action_bar_item_background_material 0x7f060001
  605. int drawable abc_btn_borderless_material 0x7f060002
  606. int drawable abc_btn_check_material 0x7f060003
  607. int drawable abc_btn_check_to_on_mtrl_000 0x7f060004
  608. int drawable abc_btn_check_to_on_mtrl_015 0x7f060005
  609. int drawable abc_btn_colored_material 0x7f060006
  610. int drawable abc_btn_default_mtrl_shape 0x7f060007
  611. int drawable abc_btn_radio_material 0x7f060008
  612. int drawable abc_btn_radio_to_on_mtrl_000 0x7f060009
  613. int drawable abc_btn_radio_to_on_mtrl_015 0x7f06000a
  614. int drawable abc_btn_switch_to_on_mtrl_00001 0x7f06000b
  615. int drawable abc_btn_switch_to_on_mtrl_00012 0x7f06000c
  616. int drawable abc_cab_background_internal_bg 0x7f06000d
  617. int drawable abc_cab_background_top_material 0x7f06000e
  618. int drawable abc_cab_background_top_mtrl_alpha 0x7f06000f
  619. int drawable abc_control_background_material 0x7f060010
  620. int drawable abc_dialog_material_background 0x7f060011
  621. int drawable abc_edit_text_material 0x7f060012
  622. int drawable abc_ic_ab_back_material 0x7f060013
  623. int drawable abc_ic_arrow_drop_right_black_24dp 0x7f060014
  624. int drawable abc_ic_clear_material 0x7f060015
  625. int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f060016
  626. int drawable abc_ic_go_search_api_material 0x7f060017
  627. int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f060018
  628. int drawable abc_ic_menu_cut_mtrl_alpha 0x7f060019
  629. int drawable abc_ic_menu_overflow_material 0x7f06001a
  630. int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f06001b
  631. int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f06001c
  632. int drawable abc_ic_menu_share_mtrl_alpha 0x7f06001d
  633. int drawable abc_ic_search_api_material 0x7f06001e
  634. int drawable abc_ic_star_black_16dp 0x7f06001f
  635. int drawable abc_ic_star_black_36dp 0x7f060020
  636. int drawable abc_ic_star_black_48dp 0x7f060021
  637. int drawable abc_ic_star_half_black_16dp 0x7f060022
  638. int drawable abc_ic_star_half_black_36dp 0x7f060023
  639. int drawable abc_ic_star_half_black_48dp 0x7f060024
  640. int drawable abc_ic_voice_search_api_material 0x7f060025
  641. int drawable abc_item_background_holo_dark 0x7f060026
  642. int drawable abc_item_background_holo_light 0x7f060027
  643. int drawable abc_list_divider_material 0x7f060028
  644. int drawable abc_list_divider_mtrl_alpha 0x7f060029
  645. int drawable abc_list_focused_holo 0x7f06002a
  646. int drawable abc_list_longpressed_holo 0x7f06002b
  647. int drawable abc_list_pressed_holo_dark 0x7f06002c
  648. int drawable abc_list_pressed_holo_light 0x7f06002d
  649. int drawable abc_list_selector_background_transition_holo_dark 0x7f06002e
  650. int drawable abc_list_selector_background_transition_holo_light 0x7f06002f
  651. int drawable abc_list_selector_disabled_holo_dark 0x7f060030
  652. int drawable abc_list_selector_disabled_holo_light 0x7f060031
  653. int drawable abc_list_selector_holo_dark 0x7f060032
  654. int drawable abc_list_selector_holo_light 0x7f060033
  655. int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f060034
  656. int drawable abc_popup_background_mtrl_mult 0x7f060035
  657. int drawable abc_ratingbar_indicator_material 0x7f060036
  658. int drawable abc_ratingbar_material 0x7f060037
  659. int drawable abc_ratingbar_small_material 0x7f060038
  660. int drawable abc_scrubber_control_off_mtrl_alpha 0x7f060039
  661. int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f06003a
  662. int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f06003b
  663. int drawable abc_scrubber_primary_mtrl_alpha 0x7f06003c
  664. int drawable abc_scrubber_track_mtrl_alpha 0x7f06003d
  665. int drawable abc_seekbar_thumb_material 0x7f06003e
  666. int drawable abc_seekbar_tick_mark_material 0x7f06003f
  667. int drawable abc_seekbar_track_material 0x7f060040
  668. int drawable abc_spinner_mtrl_am_alpha 0x7f060041
  669. int drawable abc_spinner_textfield_background_material 0x7f060042
  670. int drawable abc_switch_thumb_material 0x7f060043
  671. int drawable abc_switch_track_mtrl_alpha 0x7f060044
  672. int drawable abc_tab_indicator_material 0x7f060045
  673. int drawable abc_tab_indicator_mtrl_alpha 0x7f060046
  674. int drawable abc_text_cursor_material 0x7f060047
  675. int drawable abc_text_select_handle_left_mtrl_dark 0x7f060048
  676. int drawable abc_text_select_handle_left_mtrl_light 0x7f060049
  677. int drawable abc_text_select_handle_middle_mtrl_dark 0x7f06004a
  678. int drawable abc_text_select_handle_middle_mtrl_light 0x7f06004b
  679. int drawable abc_text_select_handle_right_mtrl_dark 0x7f06004c
  680. int drawable abc_text_select_handle_right_mtrl_light 0x7f06004d
  681. int drawable abc_textfield_activated_mtrl_alpha 0x7f06004e
  682. int drawable abc_textfield_default_mtrl_alpha 0x7f06004f
  683. int drawable abc_textfield_search_activated_mtrl_alpha 0x7f060050
  684. int drawable abc_textfield_search_default_mtrl_alpha 0x7f060051
  685. int drawable abc_textfield_search_material 0x7f060052
  686. int drawable abc_vector_test 0x7f060053
  687. int drawable ad_dcloud_main_ad_tag 0x7f060054
  688. int drawable ad_dcloud_main_skip_bg 0x7f060055
  689. int drawable ad_dcloud_main_skip_shape 0x7f060056
  690. int drawable custom_edittext_phone 0x7f060057
  691. int drawable dcloud_about_buttons_bg 0x7f060058
  692. int drawable dcloud_about_buttons_button_bg 0x7f060059
  693. int drawable dcloud_actionsheet_bottom_normal 0x7f06005a
  694. int drawable dcloud_actionsheet_bottom_pressed 0x7f06005b
  695. int drawable dcloud_actionsheet_middle_normal 0x7f06005c
  696. int drawable dcloud_actionsheet_middle_pressed 0x7f06005d
  697. int drawable dcloud_actionsheet_single_normal 0x7f06005e
  698. int drawable dcloud_actionsheet_single_pressed 0x7f06005f
  699. int drawable dcloud_actionsheet_top_normal 0x7f060060
  700. int drawable dcloud_actionsheet_top_pressed 0x7f060061
  701. int drawable dcloud_as_bg_ios6 0x7f060062
  702. int drawable dcloud_as_cancel_bt_bg 0x7f060063
  703. int drawable dcloud_as_other_bt_bg 0x7f060064
  704. int drawable dcloud_assistan_loc 0x7f060065
  705. int drawable dcloud_circle_black_progress 0x7f060066
  706. int drawable dcloud_circle_white_progress 0x7f060067
  707. int drawable dcloud_debug_shape 0x7f060068
  708. int drawable dcloud_dialog_shape 0x7f060069
  709. int drawable dcloud_dialog_shape_bg 0x7f06006a
  710. int drawable dcloud_image_pick_mask 0x7f06006b
  711. int drawable dcloud_image_pick_no_media 0x7f06006c
  712. int drawable dcloud_image_pick_title_sel 0x7f06006d
  713. int drawable dcloud_left_arrow 0x7f06006e
  714. int drawable dcloud_longding_bg 0x7f06006f
  715. int drawable dcloud_point_dd524d 0x7f060070
  716. int drawable dcloud_point_f32720 0x7f060071
  717. int drawable dcloud_recent 0x7f060072
  718. int drawable dcloud_record_border 0x7f060073
  719. int drawable dcloud_record_view_line 0x7f060074
  720. int drawable dcloud_right_arrow 0x7f060075
  721. int drawable dcloud_shadow_left 0x7f060076
  722. int drawable dcloud_shortcut_guide_huawei 0x7f060077
  723. int drawable dcloud_shortcut_guide_meizu 0x7f060078
  724. int drawable dcloud_shortcut_guide_xiaomi 0x7f060079
  725. int drawable dcloud_slt_as_ios7_cancel_bt 0x7f06007a
  726. int drawable dcloud_slt_as_ios7_other_bt_bottom 0x7f06007b
  727. int drawable dcloud_slt_as_ios7_other_bt_middle 0x7f06007c
  728. int drawable dcloud_slt_as_ios7_other_bt_single 0x7f06007d
  729. int drawable dcloud_slt_as_ios7_other_bt_title 0x7f06007e
  730. int drawable dcloud_slt_as_ios7_other_bt_top 0x7f06007f
  731. int drawable dcloud_snow_black 0x7f060080
  732. int drawable dcloud_snow_black_progress 0x7f060081
  733. int drawable dcloud_snow_white 0x7f060082
  734. int drawable dcloud_snow_white_progress 0x7f060083
  735. int drawable dcloud_streamapp_about_feedback 0x7f060084
  736. int drawable dcloud_streamapp_about_first_start_short_cut_checkbox 0x7f060085
  737. int drawable dcloud_streamapp_about_first_start_short_cut_cheked 0x7f060086
  738. int drawable dcloud_streamapp_about_first_start_short_cut_normal 0x7f060087
  739. int drawable dcloud_streamapp_about_right_arrow 0x7f060088
  740. int drawable dcloud_streamapp_about_share 0x7f060089
  741. int drawable dcloud_streamapp_about_update 0x7f06008a
  742. int drawable dcloud_streamapp_icon 0x7f06008b
  743. int drawable dcloud_streamapp_icon_appdefault 0x7f06008c
  744. int drawable dcloud_tabbar_badge 0x7f06008d
  745. int drawable dcloud_tabbar_dot 0x7f06008e
  746. int drawable dcloud_webview_activity_title_bg 0x7f06008f
  747. int drawable icon 0x7f060090
  748. int drawable notification_action_background 0x7f060091
  749. int drawable notification_bg 0x7f060092
  750. int drawable notification_bg_low 0x7f060093
  751. int drawable notification_bg_low_normal 0x7f060094
  752. int drawable notification_bg_low_pressed 0x7f060095
  753. int drawable notification_bg_normal 0x7f060096
  754. int drawable notification_bg_normal_pressed 0x7f060097
  755. int drawable notification_icon_background 0x7f060098
  756. int drawable notification_template_icon_bg 0x7f060099
  757. int drawable notification_template_icon_low_bg 0x7f06009a
  758. int drawable notification_tile_bg 0x7f06009b
  759. int drawable notify_panel_notification_icon_bg 0x7f06009c
  760. int drawable offline_pin 0x7f06009d
  761. int drawable offline_pin_round 0x7f06009e
  762. int drawable push 0x7f06009f
  763. int drawable shortcut_permission_guide_bg 0x7f0600a0
  764. int drawable shortcut_permission_guide_close 0x7f0600a1
  765. int drawable shortcut_permission_guide_play 0x7f0600a2
  766. int drawable side_bar_bg 0x7f0600a3
  767. int drawable side_bar_close 0x7f0600a4
  768. int drawable side_bar_closebar 0x7f0600a5
  769. int drawable side_bar_custom_menu_item_bg 0x7f0600a6
  770. int drawable side_bar_custom_menu_item_line 0x7f0600a7
  771. int drawable side_bar_custom_menu_item_selected 0x7f0600a8
  772. int drawable side_bar_favorite 0x7f0600a9
  773. int drawable side_bar_home 0x7f0600aa
  774. int drawable side_bar_openbar 0x7f0600ab
  775. int drawable side_bar_refresh 0x7f0600ac
  776. int drawable side_bar_share 0x7f0600ad
  777. int drawable sidebar_shortcut 0x7f0600ae
  778. int drawable splash 0x7f0600af
  779. int drawable toast_bg 0x7f0600b0
  780. int drawable tooltip_frame_dark 0x7f0600b1
  781. int drawable tooltip_frame_light 0x7f0600b2
  782. int drawable weex_error 0x7f0600b3
  783. int id ALT 0x7f070000
  784. int id CTRL 0x7f070001
  785. int id FUNCTION 0x7f070002
  786. int id ItemDate 0x7f070003
  787. int id ItemRssi 0x7f070004
  788. int id ItemTitle 0x7f070005
  789. int id META 0x7f070006
  790. int id MyListItem 0x7f070007
  791. int id SHIFT 0x7f070008
  792. int id SYM 0x7f070009
  793. int id action0 0x7f07000a
  794. int id action_bar 0x7f07000b
  795. int id action_bar_activity_content 0x7f07000c
  796. int id action_bar_container 0x7f07000d
  797. int id action_bar_root 0x7f07000e
  798. int id action_bar_spinner 0x7f07000f
  799. int id action_bar_subtitle 0x7f070010
  800. int id action_bar_title 0x7f070011
  801. int id action_container 0x7f070012
  802. int id action_context_bar 0x7f070013
  803. int id action_divider 0x7f070014
  804. int id action_image 0x7f070015
  805. int id action_menu_divider 0x7f070016
  806. int id action_menu_presenter 0x7f070017
  807. int id action_mode_bar 0x7f070018
  808. int id action_mode_bar_stub 0x7f070019
  809. int id action_mode_close_button 0x7f07001a
  810. int id action_text 0x7f07001b
  811. int id actions 0x7f07001c
  812. int id activity_chooser_view_content 0x7f07001d
  813. int id ad_dcloud_icon 0x7f07001e
  814. int id ad_dcloud_icon_single 0x7f07001f
  815. int id ad_dcloud_main_adtext 0x7f070020
  816. int id ad_dcloud_main_img 0x7f070021
  817. int id ad_dcloud_main_skip 0x7f070022
  818. int id ad_dcloud_name 0x7f070023
  819. int id ad_dcloud_root 0x7f070024
  820. int id ad_dcloud_splash_bottom_bar 0x7f070025
  821. int id ad_dcloud_splash_container 0x7f070026
  822. int id add 0x7f070027
  823. int id alertTitle 0x7f070028
  824. int id all 0x7f070029
  825. int id always 0x7f07002a
  826. int id async 0x7f07002b
  827. int id bGetDeviceCode 0x7f07002c
  828. int id bNotify 0x7f07002d
  829. int id bSetDeviceCode 0x7f07002e
  830. int id back 0x7f07002f
  831. int id beginning 0x7f070030
  832. int id bgImg 0x7f070031
  833. int id bind 0x7f070032
  834. int id blocking 0x7f070033
  835. int id bottom 0x7f070034
  836. int id bottom_content_layout 0x7f070035
  837. int id bt_close_blood 0x7f070036
  838. int id bt_open_blood 0x7f070037
  839. int id bt_setHeartRateArea 0x7f070038
  840. int id buttonPanel 0x7f070039
  841. int id cancel 0x7f07003a
  842. int id cancel_action 0x7f07003b
  843. int id center 0x7f07003c
  844. int id centerCrop 0x7f07003d
  845. int id centerInside 0x7f07003e
  846. int id center_horizontal 0x7f07003f
  847. int id center_vertical 0x7f070040
  848. int id checkbox 0x7f070041
  849. int id chronometer 0x7f070042
  850. int id clip_horizontal 0x7f070043
  851. int id clip_vertical 0x7f070044
  852. int id close 0x7f070045
  853. int id closeheart 0x7f070046
  854. int id collapseActionView 0x7f070047
  855. int id connect 0x7f070048
  856. int id content 0x7f070049
  857. int id contentPanel 0x7f07004a
  858. int id contentWrapper 0x7f07004b
  859. int id custom 0x7f07004c
  860. int id customLayout 0x7f07004d
  861. int id customPanel 0x7f07004e
  862. int id data_text 0x7f07004f
  863. int id dcloud_dialog_btn1 0x7f070050
  864. int id dcloud_dialog_btn2 0x7f070051
  865. int id dcloud_dialog_icon 0x7f070052
  866. int id dcloud_dialog_msg 0x7f070053
  867. int id dcloud_dialog_rootview 0x7f070054
  868. int id dcloud_dialog_title 0x7f070055
  869. int id dcloud_guide_close 0x7f070056
  870. int id dcloud_guide_gifview 0x7f070057
  871. int id dcloud_guide_play 0x7f070058
  872. int id dcloud_guide_play_layout 0x7f070059
  873. int id dcloud_guide_tip 0x7f07005a
  874. int id dcloud_iv_loading 0x7f07005b
  875. int id dcloud_pb_loading 0x7f07005c
  876. int id dcloud_pd_root 0x7f07005d
  877. int id dcloud_record_address_view_1 0x7f07005e
  878. int id dcloud_record_address_view_2 0x7f07005f
  879. int id dcloud_record_address_view_3 0x7f070060
  880. int id dcloud_record_arrow_left 0x7f070061
  881. int id dcloud_record_arrow_left_layout 0x7f070062
  882. int id dcloud_record_arrow_right 0x7f070063
  883. int id dcloud_record_arrow_right_layout 0x7f070064
  884. int id dcloud_record_arrows 0x7f070065
  885. int id dcloud_record_line_1 0x7f070066
  886. int id dcloud_record_line_2 0x7f070067
  887. int id dcloud_record_scroll_view 0x7f070068
  888. int id dcloud_record_view_1 0x7f070069
  889. int id dcloud_record_view_2 0x7f07006a
  890. int id dcloud_tv_loading 0x7f07006b
  891. int id dcloud_view_seaparator 0x7f07006c
  892. int id debugTV 0x7f07006d
  893. int id decor_content_parent 0x7f07006e
  894. int id default_activity_button 0x7f07006f
  895. int id delete 0x7f070070
  896. int id disableHome 0x7f070071
  897. int id disconnect 0x7f070072
  898. int id edit_query 0x7f070073
  899. int id end 0x7f070074
  900. int id end_padder 0x7f070075
  901. int id etContent 0x7f070076
  902. int id etName 0x7f070077
  903. int id etType 0x7f070078
  904. int id et_getdata 0x7f070079
  905. int id et_getday 0x7f07007a
  906. int id expand_activities_button 0x7f07007b
  907. int id expanded_menu 0x7f07007c
  908. int id favoriteIcon 0x7f07007d
  909. int id fill 0x7f07007e
  910. int id fill_horizontal 0x7f07007f
  911. int id fill_vertical 0x7f070080
  912. int id fitBottomStart 0x7f070081
  913. int id fitCenter 0x7f070082
  914. int id fitEnd 0x7f070083
  915. int id fitStart 0x7f070084
  916. int id fitXY 0x7f070085
  917. int id focusCrop 0x7f070086
  918. int id forever 0x7f070087
  919. int id getcursportdata 0x7f070088
  920. int id getdata 0x7f070089
  921. int id glide_custom_view_target_tag 0x7f07008a
  922. int id gridGallery 0x7f07008b
  923. int id group_divider 0x7f07008c
  924. int id guide_title 0x7f07008d
  925. int id home 0x7f07008e
  926. int id homeAsUp 0x7f07008f
  927. int id icon 0x7f070090
  928. int id icon_group 0x7f070091
  929. int id ifRoom 0x7f070092
  930. int id image 0x7f070093
  931. int id imgNoMedia 0x7f070094
  932. int id imgQueue 0x7f070095
  933. int id imgQueueMask 0x7f070096
  934. int id info 0x7f070097
  935. int id italic 0x7f070098
  936. int id itemBadge 0x7f070099
  937. int id itemDot 0x7f07009a
  938. int id item_touch_helper_previous_elevation 0x7f07009b
  939. int id left 0x7f07009c
  940. int id leftLayout 0x7f07009d
  941. int id line1 0x7f07009e
  942. int id line3 0x7f07009f
  943. int id listMode 0x7f0700a0
  944. int id list_item 0x7f0700a1
  945. int id llConnect 0x7f0700a2
  946. int id ll_title_bar 0x7f0700a3
  947. int id logs 0x7f0700a4
  948. int id media_actions 0x7f0700a5
  949. int id menu 0x7f0700a6
  950. int id message 0x7f0700a7
  951. int id midBTN 0x7f0700a8
  952. int id middle 0x7f0700a9
  953. int id multiply 0x7f0700aa
  954. int id nearby_device_listView 0x7f0700ab
  955. int id never 0x7f0700ac
  956. int id none 0x7f0700ad
  957. int id normal 0x7f0700ae
  958. int id notification_background 0x7f0700af
  959. int id notification_main_column 0x7f0700b0
  960. int id notification_main_column_container 0x7f0700b1
  961. int id openheart 0x7f0700b2
  962. int id pager 0x7f0700b3
  963. int id parentPanel 0x7f0700b4
  964. int id phone_number 0x7f0700b5
  965. int id progressBar 0x7f0700b6
  966. int id progress_circular 0x7f0700b7
  967. int id progress_horizontal 0x7f0700b8
  968. int id query_page 0x7f0700b9
  969. int id radio 0x7f0700ba
  970. int id read_batery 0x7f0700bb
  971. int id read_fw 0x7f0700bc
  972. int id refresh 0x7f0700bd
  973. int id right 0x7f0700be
  974. int id rightLayout 0x7f0700bf
  975. int id right_icon 0x7f0700c0
  976. int id right_side 0x7f0700c1
  977. int id rl_notification 0x7f0700c2
  978. int id root 0x7f0700c3
  979. int id scan 0x7f0700c4
  980. int id screen 0x7f0700c5
  981. int id scrollIndicatorDown 0x7f0700c6
  982. int id scrollIndicatorUp 0x7f0700c7
  983. int id scrollView 0x7f0700c8
  984. int id search_badge 0x7f0700c9
  985. int id search_bar 0x7f0700ca
  986. int id search_button 0x7f0700cb
  987. int id search_close_btn 0x7f0700cc
  988. int id search_edit_frame 0x7f0700cd
  989. int id search_go_btn 0x7f0700ce
  990. int id search_mag_icon 0x7f0700cf
  991. int id search_plate 0x7f0700d0
  992. int id search_src_text 0x7f0700d1
  993. int id search_voice_btn 0x7f0700d2
  994. int id select_dialog_listview 0x7f0700d3
  995. int id send_msg 0x7f0700d4
  996. int id send_weather 0x7f0700d5
  997. int id setLanguage 0x7f0700d6
  998. int id set_alarm 0x7f0700d7
  999. int id set_autoheart 0x7f0700d8
  1000. int id set_fuzhu 0x7f0700d9
  1001. int id set_idletime 0x7f0700da
  1002. int id set_parameters 0x7f0700db
  1003. int id set_photo 0x7f0700dc
  1004. int id set_priority 0x7f0700dd
  1005. int id set_showmode 0x7f0700de
  1006. int id set_sleep 0x7f0700df
  1007. int id set_time 0x7f0700e0
  1008. int id set_userinfo 0x7f0700e1
  1009. int id set_vir 0x7f0700e2
  1010. int id shortcut 0x7f0700e3
  1011. int id showCustom 0x7f0700e4
  1012. int id showHome 0x7f0700e5
  1013. int id showTitle 0x7f0700e6
  1014. int id sideBarButtonsLayout 0x7f0700e7
  1015. int id sideBarCloseLayout 0x7f0700e8
  1016. int id sideBarFavoriteLayout 0x7f0700e9
  1017. int id sideBarHomeLayout 0x7f0700ea
  1018. int id sideBarOpenOrCloseIV 0x7f0700eb
  1019. int id sideBarOpenOrCloseLayout 0x7f0700ec
  1020. int id sideBarOpenOrCloseTipIV 0x7f0700ed
  1021. int id sideBarReFreshLayout 0x7f0700ee
  1022. int id sideBarShareLayout 0x7f0700ef
  1023. int id spacer 0x7f0700f0
  1024. int id split_action_bar 0x7f0700f1
  1025. int id src_atop 0x7f0700f2
  1026. int id src_in 0x7f0700f3
  1027. int id src_over 0x7f0700f4
  1028. int id start 0x7f0700f5
  1029. int id start_manage 0x7f0700f6
  1030. int id status_bar_latest_event_content 0x7f0700f7
  1031. int id status_bar_view 0x7f0700f8
  1032. int id submenuarrow 0x7f0700f9
  1033. int id submit_area 0x7f0700fa
  1034. int id sure 0x7f0700fb
  1035. int id svDevice 0x7f0700fc
  1036. int id svLog 0x7f0700fd
  1037. int id tab0 0x7f0700fe
  1038. int id tab1 0x7f0700ff
  1039. int id tab2 0x7f070100
  1040. int id tab3 0x7f070101
  1041. int id tabIV 0x7f070102
  1042. int id tabMode 0x7f070103
  1043. int id tabTV 0x7f070104
  1044. int id tag_transition_group 0x7f070105
  1045. int id tag_unhandled_key_event_manager 0x7f070106
  1046. int id tag_unhandled_key_listeners 0x7f070107
  1047. int id text 0x7f070108
  1048. int id text2 0x7f070109
  1049. int id textSpacerNoButtons 0x7f07010a
  1050. int id textSpacerNoTitle 0x7f07010b
  1051. int id text_bar 0x7f07010c
  1052. int id time 0x7f07010d
  1053. int id title 0x7f07010e
  1054. int id titleBtn 0x7f07010f
  1055. int id titleDividerNoCustom 0x7f070110
  1056. int id title_template 0x7f070111
  1057. int id top 0x7f070112
  1058. int id topPanel 0x7f070113
  1059. int id tvSync 0x7f070114
  1060. int id tvTitleText 0x7f070115
  1061. int id unbind 0x7f070116
  1062. int id uniform 0x7f070117
  1063. int id up 0x7f070118
  1064. int id useLogo 0x7f070119
  1065. int id webview 0x7f07011a
  1066. int id withText 0x7f07011b
  1067. int id wrap_content 0x7f07011c
  1068. int integer abc_config_activityDefaultDur 0x7f080000
  1069. int integer abc_config_activityShortDur 0x7f080001
  1070. int integer cancel_button_image_alpha 0x7f080002
  1071. int integer config_tooltipAnimTime 0x7f080003
  1072. int integer status_bar_notification_info_maxnum 0x7f080004
  1073. int layout abc_action_bar_title_item 0x7f090000
  1074. int layout abc_action_bar_up_container 0x7f090001
  1075. int layout abc_action_menu_item_layout 0x7f090002
  1076. int layout abc_action_menu_layout 0x7f090003
  1077. int layout abc_action_mode_bar 0x7f090004
  1078. int layout abc_action_mode_close_item_material 0x7f090005
  1079. int layout abc_activity_chooser_view 0x7f090006
  1080. int layout abc_activity_chooser_view_list_item 0x7f090007
  1081. int layout abc_alert_dialog_button_bar_material 0x7f090008
  1082. int layout abc_alert_dialog_material 0x7f090009
  1083. int layout abc_alert_dialog_title_material 0x7f09000a
  1084. int layout abc_cascading_menu_item_layout 0x7f09000b
  1085. int layout abc_dialog_title_material 0x7f09000c
  1086. int layout abc_expanded_menu_layout 0x7f09000d
  1087. int layout abc_list_menu_item_checkbox 0x7f09000e
  1088. int layout abc_list_menu_item_icon 0x7f09000f
  1089. int layout abc_list_menu_item_layout 0x7f090010
  1090. int layout abc_list_menu_item_radio 0x7f090011
  1091. int layout abc_popup_menu_header_item_layout 0x7f090012
  1092. int layout abc_popup_menu_item_layout 0x7f090013
  1093. int layout abc_screen_content_include 0x7f090014
  1094. int layout abc_screen_simple 0x7f090015
  1095. int layout abc_screen_simple_overlay_action_mode 0x7f090016
  1096. int layout abc_screen_toolbar 0x7f090017
  1097. int layout abc_search_dropdown_item_icons_2line 0x7f090018
  1098. int layout abc_search_view 0x7f090019
  1099. int layout abc_select_dialog_material 0x7f09001a
  1100. int layout abc_tooltip 0x7f09001b
  1101. int layout activity_gyee 0x7f09001c
  1102. int layout activity_main 0x7f09001d
  1103. int layout ad_dcloud_main 0x7f09001e
  1104. int layout ad_dcloud_splash 0x7f09001f
  1105. int layout dcloud_activity_main_market 0x7f090020
  1106. int layout dcloud_custom_alert_dialog_layout 0x7f090021
  1107. int layout dcloud_custom_notification 0x7f090022
  1108. int layout dcloud_custom_notification_dark 0x7f090023
  1109. int layout dcloud_custom_notification_mi 0x7f090024
  1110. int layout dcloud_custom_notification_transparent 0x7f090025
  1111. int layout dcloud_custom_notification_white 0x7f090026
  1112. int layout dcloud_dialog 0x7f090027
  1113. int layout dcloud_image_pick_gallery 0x7f090028
  1114. int layout dcloud_image_pick_gallery_item 0x7f090029
  1115. int layout dcloud_loadingview 0x7f09002a
  1116. int layout dcloud_main_test_activity 0x7f09002b
  1117. int layout dcloud_market_fragment_base 0x7f09002c
  1118. int layout dcloud_record_address 0x7f09002d
  1119. int layout dcloud_record_default 0x7f09002e
  1120. int layout dcloud_shortcut_permission_guide_layout 0x7f09002f
  1121. int layout dcloud_snow_black_progress 0x7f090030
  1122. int layout dcloud_snow_white_progress 0x7f090031
  1123. int layout dcloud_streamapp_custom_dialog_layout 0x7f090032
  1124. int layout dcloud_tabbar_item 0x7f090033
  1125. int layout dcloud_tabbar_mid 0x7f090034
  1126. int layout dcloud_weex_debug_progress 0x7f090035
  1127. int layout device_listitem_text 0x7f090036
  1128. int layout notification_action 0x7f090037
  1129. int layout notification_action_tombstone 0x7f090038
  1130. int layout notification_media_action 0x7f090039
  1131. int layout notification_media_cancel_action 0x7f09003a
  1132. int layout notification_template_big_media 0x7f09003b
  1133. int layout notification_template_big_media_custom 0x7f09003c
  1134. int layout notification_template_big_media_narrow 0x7f09003d
  1135. int layout notification_template_big_media_narrow_custom 0x7f09003e
  1136. int layout notification_template_custom_big 0x7f09003f
  1137. int layout notification_template_icon_group 0x7f090040
  1138. int layout notification_template_lines_media 0x7f090041
  1139. int layout notification_template_media 0x7f090042
  1140. int layout notification_template_media_custom 0x7f090043
  1141. int layout notification_template_part_chronometer 0x7f090044
  1142. int layout notification_template_part_time 0x7f090045
  1143. int layout popwindow_devicelist 0x7f090046
  1144. int layout select_dialog_item_material 0x7f090047
  1145. int layout select_dialog_multichoice_material 0x7f090048
  1146. int layout select_dialog_singlechoice_material 0x7f090049
  1147. int layout side_bar_layout 0x7f09004a
  1148. int layout support_simple_spinner_dropdown_item 0x7f09004b
  1149. int layout webview_layout 0x7f09004c
  1150. int layout weex_recycler_layout 0x7f09004d
  1151. int string abc_action_bar_home_description 0x7f0a0000
  1152. int string abc_action_bar_up_description 0x7f0a0001
  1153. int string abc_action_menu_overflow_description 0x7f0a0002
  1154. int string abc_action_mode_done 0x7f0a0003
  1155. int string abc_activity_chooser_view_see_all 0x7f0a0004
  1156. int string abc_activitychooserview_choose_application 0x7f0a0005
  1157. int string abc_capital_off 0x7f0a0006
  1158. int string abc_capital_on 0x7f0a0007
  1159. int string abc_font_family_body_1_material 0x7f0a0008
  1160. int string abc_font_family_body_2_material 0x7f0a0009
  1161. int string abc_font_family_button_material 0x7f0a000a
  1162. int string abc_font_family_caption_material 0x7f0a000b
  1163. int string abc_font_family_display_1_material 0x7f0a000c
  1164. int string abc_font_family_display_2_material 0x7f0a000d
  1165. int string abc_font_family_display_3_material 0x7f0a000e
  1166. int string abc_font_family_display_4_material 0x7f0a000f
  1167. int string abc_font_family_headline_material 0x7f0a0010
  1168. int string abc_font_family_menu_material 0x7f0a0011
  1169. int string abc_font_family_subhead_material 0x7f0a0012
  1170. int string abc_font_family_title_material 0x7f0a0013
  1171. int string abc_menu_alt_shortcut_label 0x7f0a0014
  1172. int string abc_menu_ctrl_shortcut_label 0x7f0a0015
  1173. int string abc_menu_delete_shortcut_label 0x7f0a0016
  1174. int string abc_menu_enter_shortcut_label 0x7f0a0017
  1175. int string abc_menu_function_shortcut_label 0x7f0a0018
  1176. int string abc_menu_meta_shortcut_label 0x7f0a0019
  1177. int string abc_menu_shift_shortcut_label 0x7f0a001a
  1178. int string abc_menu_space_shortcut_label 0x7f0a001b
  1179. int string abc_menu_sym_shortcut_label 0x7f0a001c
  1180. int string abc_prepend_shortcut_label 0x7f0a001d
  1181. int string abc_search_hint 0x7f0a001e
  1182. int string abc_searchview_description_clear 0x7f0a001f
  1183. int string abc_searchview_description_query 0x7f0a0020
  1184. int string abc_searchview_description_search 0x7f0a0021
  1185. int string abc_searchview_description_submit 0x7f0a0022
  1186. int string abc_searchview_description_voice 0x7f0a0023
  1187. int string abc_shareactionprovider_share_with 0x7f0a0024
  1188. int string abc_shareactionprovider_share_with_application 0x7f0a0025
  1189. int string abc_toolbar_collapse_description 0x7f0a0026
  1190. int string app_name 0x7f0a0027
  1191. int string bind 0x7f0a0028
  1192. int string closeheart 0x7f0a0029
  1193. int string connect 0x7f0a002a
  1194. int string dcloud_choose_an_action 0x7f0a002b
  1195. int string dcloud_gallery_app_name 0x7f0a002c
  1196. int string dcloud_package_name_base_application 0x7f0a002d
  1197. int string dcloud_permission_read_phone_state_message 0x7f0a002e
  1198. int string dcloud_permission_write_external_storage_message 0x7f0a002f
  1199. int string dcloud_privacy_prompt_accept_button_text 0x7f0a0030
  1200. int string dcloud_privacy_prompt_message 0x7f0a0031
  1201. int string dcloud_privacy_prompt_title 0x7f0a0032
  1202. int string dcloud_sync_debug_message 0x7f0a0033
  1203. int string disconnect 0x7f0a0034
  1204. int string get_device_code 0x7f0a0035
  1205. int string getdata 0x7f0a0036
  1206. int string in_package 0x7f0a0037
  1207. int string openheart 0x7f0a0038
  1208. int string read_batery 0x7f0a0039
  1209. int string read_deviceinfo 0x7f0a003a
  1210. int string scan 0x7f0a003b
  1211. int string search_menu_title 0x7f0a003c
  1212. int string send_call_notificatioin 0x7f0a003d
  1213. int string send_msg 0x7f0a003e
  1214. int string set_alarm 0x7f0a003f
  1215. int string set_autoheart 0x7f0a0040
  1216. int string set_device_code 0x7f0a0041
  1217. int string set_fuzhu 0x7f0a0042
  1218. int string set_idletime 0x7f0a0043
  1219. int string set_parameters 0x7f0a0044
  1220. int string set_photo 0x7f0a0045
  1221. int string set_showmode 0x7f0a0046
  1222. int string set_sleep 0x7f0a0047
  1223. int string set_time 0x7f0a0048
  1224. int string set_userinfo 0x7f0a0049
  1225. int string set_vir 0x7f0a004a
  1226. int string status_bar_notification_info_overflow 0x7f0a004b
  1227. int string stream_my 0x7f0a004c
  1228. int string sync_time 0x7f0a004d
  1229. int string unbind 0x7f0a004e
  1230. int style ActionSheetStyleIOS6 0x7f0b0000
  1231. int style ActionSheetStyleIOS7 0x7f0b0001
  1232. int style AlertDialog_AppCompat 0x7f0b0002
  1233. int style AlertDialog_AppCompat_Light 0x7f0b0003
  1234. int style Animation_AppCompat_Dialog 0x7f0b0004
  1235. int style Animation_AppCompat_DropDownUp 0x7f0b0005
  1236. int style Animation_AppCompat_Tooltip 0x7f0b0006
  1237. int style AppBaseTheme 0x7f0b0007
  1238. int style AppTheme 0x7f0b0008
  1239. int style Base_AlertDialog_AppCompat 0x7f0b0009
  1240. int style Base_AlertDialog_AppCompat_Light 0x7f0b000a
  1241. int style Base_Animation_AppCompat_Dialog 0x7f0b000b
  1242. int style Base_Animation_AppCompat_DropDownUp 0x7f0b000c
  1243. int style Base_Animation_AppCompat_Tooltip 0x7f0b000d
  1244. int style Base_DialogWindowTitle_AppCompat 0x7f0b000e
  1245. int style Base_DialogWindowTitleBackground_AppCompat 0x7f0b000f
  1246. int style Base_TextAppearance_AppCompat 0x7f0b0010
  1247. int style Base_TextAppearance_AppCompat_Body1 0x7f0b0011
  1248. int style Base_TextAppearance_AppCompat_Body2 0x7f0b0012
  1249. int style Base_TextAppearance_AppCompat_Button 0x7f0b0013
  1250. int style Base_TextAppearance_AppCompat_Caption 0x7f0b0014
  1251. int style Base_TextAppearance_AppCompat_Display1 0x7f0b0015
  1252. int style Base_TextAppearance_AppCompat_Display2 0x7f0b0016
  1253. int style Base_TextAppearance_AppCompat_Display3 0x7f0b0017
  1254. int style Base_TextAppearance_AppCompat_Display4 0x7f0b0018
  1255. int style Base_TextAppearance_AppCompat_Headline 0x7f0b0019
  1256. int style Base_TextAppearance_AppCompat_Inverse 0x7f0b001a
  1257. int style Base_TextAppearance_AppCompat_Large 0x7f0b001b
  1258. int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0b001c
  1259. int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b001d
  1260. int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b001e
  1261. int style Base_TextAppearance_AppCompat_Medium 0x7f0b001f
  1262. int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0b0020
  1263. int style Base_TextAppearance_AppCompat_Menu 0x7f0b0021
  1264. int style Base_TextAppearance_AppCompat_SearchResult 0x7f0b0022
  1265. int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b0023
  1266. int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0b0024
  1267. int style Base_TextAppearance_AppCompat_Small 0x7f0b0025
  1268. int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0b0026
  1269. int style Base_TextAppearance_AppCompat_Subhead 0x7f0b0027
  1270. int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0b0028
  1271. int style Base_TextAppearance_AppCompat_Title 0x7f0b0029
  1272. int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0b002a
  1273. int style Base_TextAppearance_AppCompat_Tooltip 0x7f0b002b
  1274. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b002c
  1275. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b002d
  1276. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b002e
  1277. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b002f
  1278. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b0030
  1279. int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b0031
  1280. int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b0032
  1281. int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0b0033
  1282. int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0b0034
  1283. int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0b0035
  1284. int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0b0036
  1285. int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0037
  1286. int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0b0038
  1287. int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b0039
  1288. int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b003a
  1289. int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0b003b
  1290. int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0b003c
  1291. int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b003d
  1292. int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0b003e
  1293. int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0b003f
  1294. int style Base_Theme_AppCompat 0x7f0b0040
  1295. int style Base_Theme_AppCompat_CompactMenu 0x7f0b0041
  1296. int style Base_Theme_AppCompat_Dialog 0x7f0b0042
  1297. int style Base_Theme_AppCompat_Dialog_Alert 0x7f0b0043
  1298. int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0b0044
  1299. int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0b0045
  1300. int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0b0046
  1301. int style Base_Theme_AppCompat_Light 0x7f0b0047
  1302. int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0b0048
  1303. int style Base_Theme_AppCompat_Light_Dialog 0x7f0b0049
  1304. int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0b004a
  1305. int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0b004b
  1306. int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0b004c
  1307. int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0b004d
  1308. int style Base_ThemeOverlay_AppCompat 0x7f0b004e
  1309. int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0b004f
  1310. int style Base_ThemeOverlay_AppCompat_Dark 0x7f0b0050
  1311. int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0b0051
  1312. int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0b0052
  1313. int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0b0053
  1314. int style Base_ThemeOverlay_AppCompat_Light 0x7f0b0054
  1315. int style Base_V21_Theme_AppCompat 0x7f0b0055
  1316. int style Base_V21_Theme_AppCompat_Dialog 0x7f0b0056
  1317. int style Base_V21_Theme_AppCompat_Light 0x7f0b0057
  1318. int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0b0058
  1319. int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0b0059
  1320. int style Base_V22_Theme_AppCompat 0x7f0b005a
  1321. int style Base_V22_Theme_AppCompat_Light 0x7f0b005b
  1322. int style Base_V23_Theme_AppCompat 0x7f0b005c
  1323. int style Base_V23_Theme_AppCompat_Light 0x7f0b005d
  1324. int style Base_V26_Theme_AppCompat 0x7f0b005e
  1325. int style Base_V26_Theme_AppCompat_Light 0x7f0b005f
  1326. int style Base_V26_Widget_AppCompat_Toolbar 0x7f0b0060
  1327. int style Base_V28_Theme_AppCompat 0x7f0b0061
  1328. int style Base_V28_Theme_AppCompat_Light 0x7f0b0062
  1329. int style Base_V7_Theme_AppCompat 0x7f0b0063
  1330. int style Base_V7_Theme_AppCompat_Dialog 0x7f0b0064
  1331. int style Base_V7_Theme_AppCompat_Light 0x7f0b0065
  1332. int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0b0066
  1333. int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0b0067
  1334. int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0b0068
  1335. int style Base_V7_Widget_AppCompat_EditText 0x7f0b0069
  1336. int style Base_V7_Widget_AppCompat_Toolbar 0x7f0b006a
  1337. int style Base_Widget_AppCompat_ActionBar 0x7f0b006b
  1338. int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0b006c
  1339. int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0b006d
  1340. int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0b006e
  1341. int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0b006f
  1342. int style Base_Widget_AppCompat_ActionButton 0x7f0b0070
  1343. int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0b0071
  1344. int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0b0072
  1345. int style Base_Widget_AppCompat_ActionMode 0x7f0b0073
  1346. int style Base_Widget_AppCompat_ActivityChooserView 0x7f0b0074
  1347. int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0b0075
  1348. int style Base_Widget_AppCompat_Button 0x7f0b0076
  1349. int style Base_Widget_AppCompat_Button_Borderless 0x7f0b0077
  1350. int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0b0078
  1351. int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0b0079
  1352. int style Base_Widget_AppCompat_Button_Colored 0x7f0b007a
  1353. int style Base_Widget_AppCompat_Button_Small 0x7f0b007b
  1354. int style Base_Widget_AppCompat_ButtonBar 0x7f0b007c
  1355. int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0b007d
  1356. int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0b007e
  1357. int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0b007f
  1358. int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0b0080
  1359. int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0b0081
  1360. int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0b0082
  1361. int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0b0083
  1362. int style Base_Widget_AppCompat_EditText 0x7f0b0084
  1363. int style Base_Widget_AppCompat_ImageButton 0x7f0b0085
  1364. int style Base_Widget_AppCompat_Light_ActionBar 0x7f0b0086
  1365. int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0087
  1366. int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b0088
  1367. int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0089
  1368. int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b008a
  1369. int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0b008b
  1370. int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0b008c
  1371. int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0b008d
  1372. int style Base_Widget_AppCompat_ListMenuView 0x7f0b008e
  1373. int style Base_Widget_AppCompat_ListPopupWindow 0x7f0b008f
  1374. int style Base_Widget_AppCompat_ListView 0x7f0b0090
  1375. int style Base_Widget_AppCompat_ListView_DropDown 0x7f0b0091
  1376. int style Base_Widget_AppCompat_ListView_Menu 0x7f0b0092
  1377. int style Base_Widget_AppCompat_PopupMenu 0x7f0b0093
  1378. int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0b0094
  1379. int style Base_Widget_AppCompat_PopupWindow 0x7f0b0095
  1380. int style Base_Widget_AppCompat_ProgressBar 0x7f0b0096
  1381. int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0097
  1382. int style Base_Widget_AppCompat_RatingBar 0x7f0b0098
  1383. int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0b0099
  1384. int style Base_Widget_AppCompat_RatingBar_Small 0x7f0b009a
  1385. int style Base_Widget_AppCompat_SearchView 0x7f0b009b
  1386. int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0b009c
  1387. int style Base_Widget_AppCompat_SeekBar 0x7f0b009d
  1388. int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0b009e
  1389. int style Base_Widget_AppCompat_Spinner 0x7f0b009f
  1390. int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0b00a0
  1391. int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0b00a1
  1392. int style Base_Widget_AppCompat_Toolbar 0x7f0b00a2
  1393. int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b00a3
  1394. int style DCloudTheme 0x7f0b00a4
  1395. int style DeviceDefault 0x7f0b00a5
  1396. int style DeviceDefault_Light 0x7f0b00a6
  1397. int style NotificationText 0x7f0b00a7
  1398. int style NotificationText_Dark 0x7f0b00a8
  1399. int style NotificationTitle 0x7f0b00a9
  1400. int style NotificationTitle_Dark 0x7f0b00aa
  1401. int style OpenStreamAppTransferActivityTheme 0x7f0b00ab
  1402. int style Platform_AppCompat 0x7f0b00ac
  1403. int style Platform_AppCompat_Light 0x7f0b00ad
  1404. int style Platform_ThemeOverlay_AppCompat 0x7f0b00ae
  1405. int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0b00af
  1406. int style Platform_ThemeOverlay_AppCompat_Light 0x7f0b00b0
  1407. int style Platform_V21_AppCompat 0x7f0b00b1
  1408. int style Platform_V21_AppCompat_Light 0x7f0b00b2
  1409. int style Platform_V25_AppCompat 0x7f0b00b3
  1410. int style Platform_V25_AppCompat_Light 0x7f0b00b4
  1411. int style Platform_Widget_AppCompat_Spinner 0x7f0b00b5
  1412. int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0b00b6
  1413. int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0b00b7
  1414. int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0b00b8
  1415. int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0b00b9
  1416. int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0b00ba
  1417. int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f0b00bb
  1418. int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f0b00bc
  1419. int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0b00bd
  1420. int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f0b00be
  1421. int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0b00bf
  1422. int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0b00c0
  1423. int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0b00c1
  1424. int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0b00c2
  1425. int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0b00c3
  1426. int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0b00c4
  1427. int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0b00c5
  1428. int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0b00c6
  1429. int style TextAppearance_AppCompat 0x7f0b00c7
  1430. int style TextAppearance_AppCompat_Body1 0x7f0b00c8
  1431. int style TextAppearance_AppCompat_Body2 0x7f0b00c9
  1432. int style TextAppearance_AppCompat_Button 0x7f0b00ca
  1433. int style TextAppearance_AppCompat_Caption 0x7f0b00cb
  1434. int style TextAppearance_AppCompat_Display1 0x7f0b00cc
  1435. int style TextAppearance_AppCompat_Display2 0x7f0b00cd
  1436. int style TextAppearance_AppCompat_Display3 0x7f0b00ce
  1437. int style TextAppearance_AppCompat_Display4 0x7f0b00cf
  1438. int style TextAppearance_AppCompat_Headline 0x7f0b00d0
  1439. int style TextAppearance_AppCompat_Inverse 0x7f0b00d1
  1440. int style TextAppearance_AppCompat_Large 0x7f0b00d2
  1441. int style TextAppearance_AppCompat_Large_Inverse 0x7f0b00d3
  1442. int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0b00d4
  1443. int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0b00d5
  1444. int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b00d6
  1445. int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b00d7
  1446. int style TextAppearance_AppCompat_Medium 0x7f0b00d8
  1447. int style TextAppearance_AppCompat_Medium_Inverse 0x7f0b00d9
  1448. int style TextAppearance_AppCompat_Menu 0x7f0b00da
  1449. int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b00db
  1450. int style TextAppearance_AppCompat_SearchResult_Title 0x7f0b00dc
  1451. int style TextAppearance_AppCompat_Small 0x7f0b00dd
  1452. int style TextAppearance_AppCompat_Small_Inverse 0x7f0b00de
  1453. int style TextAppearance_AppCompat_Subhead 0x7f0b00df
  1454. int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0b00e0
  1455. int style TextAppearance_AppCompat_Title 0x7f0b00e1
  1456. int style TextAppearance_AppCompat_Title_Inverse 0x7f0b00e2
  1457. int style TextAppearance_AppCompat_Tooltip 0x7f0b00e3
  1458. int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b00e4
  1459. int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b00e5
  1460. int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b00e6
  1461. int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b00e7
  1462. int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b00e8
  1463. int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b00e9
  1464. int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0b00ea
  1465. int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b00eb
  1466. int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0b00ec
  1467. int style TextAppearance_AppCompat_Widget_Button 0x7f0b00ed
  1468. int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0b00ee
  1469. int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0b00ef
  1470. int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0b00f0
  1471. int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b00f1
  1472. int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0b00f2
  1473. int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b00f3
  1474. int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b00f4
  1475. int style TextAppearance_AppCompat_Widget_Switch 0x7f0b00f5
  1476. int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0b00f6
  1477. int style TextAppearance_Compat_Notification 0x7f0b00f7
  1478. int style TextAppearance_Compat_Notification_Info 0x7f0b00f8
  1479. int style TextAppearance_Compat_Notification_Info_Media 0x7f0b00f9
  1480. int style TextAppearance_Compat_Notification_Line2 0x7f0b00fa
  1481. int style TextAppearance_Compat_Notification_Line2_Media 0x7f0b00fb
  1482. int style TextAppearance_Compat_Notification_Media 0x7f0b00fc
  1483. int style TextAppearance_Compat_Notification_Time 0x7f0b00fd
  1484. int style TextAppearance_Compat_Notification_Time_Media 0x7f0b00fe
  1485. int style TextAppearance_Compat_Notification_Title 0x7f0b00ff
  1486. int style TextAppearance_Compat_Notification_Title_Media 0x7f0b0100
  1487. int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b0101
  1488. int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0b0102
  1489. int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0b0103
  1490. int style Theme_Android123 0x7f0b0104
  1491. int style Theme_AppCompat 0x7f0b0105
  1492. int style Theme_AppCompat_CompactMenu 0x7f0b0106
  1493. int style Theme_AppCompat_DayNight 0x7f0b0107
  1494. int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0b0108
  1495. int style Theme_AppCompat_DayNight_Dialog 0x7f0b0109
  1496. int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0b010a
  1497. int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0b010b
  1498. int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0b010c
  1499. int style Theme_AppCompat_DayNight_NoActionBar 0x7f0b010d
  1500. int style Theme_AppCompat_Dialog 0x7f0b010e
  1501. int style Theme_AppCompat_Dialog_Alert 0x7f0b010f
  1502. int style Theme_AppCompat_Dialog_MinWidth 0x7f0b0110
  1503. int style Theme_AppCompat_DialogWhenLarge 0x7f0b0111
  1504. int style Theme_AppCompat_Light 0x7f0b0112
  1505. int style Theme_AppCompat_Light_DarkActionBar 0x7f0b0113
  1506. int style Theme_AppCompat_Light_Dialog 0x7f0b0114
  1507. int style Theme_AppCompat_Light_Dialog_Alert 0x7f0b0115
  1508. int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0b0116
  1509. int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0b0117
  1510. int style Theme_AppCompat_Light_NoActionBar 0x7f0b0118
  1511. int style Theme_AppCompat_NoActionBar 0x7f0b0119
  1512. int style ThemeNoTitleBar 0x7f0b011a
  1513. int style ThemeOverlay_AppCompat 0x7f0b011b
  1514. int style ThemeOverlay_AppCompat_ActionBar 0x7f0b011c
  1515. int style ThemeOverlay_AppCompat_Dark 0x7f0b011d
  1516. int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0b011e
  1517. int style ThemeOverlay_AppCompat_Dialog 0x7f0b011f
  1518. int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0b0120
  1519. int style ThemeOverlay_AppCompat_Light 0x7f0b0121
  1520. int style TranslucentTheme 0x7f0b0122
  1521. int style Widget_AppCompat_ActionBar 0x7f0b0123
  1522. int style Widget_AppCompat_ActionBar_Solid 0x7f0b0124
  1523. int style Widget_AppCompat_ActionBar_TabBar 0x7f0b0125
  1524. int style Widget_AppCompat_ActionBar_TabText 0x7f0b0126
  1525. int style Widget_AppCompat_ActionBar_TabView 0x7f0b0127
  1526. int style Widget_AppCompat_ActionButton 0x7f0b0128
  1527. int style Widget_AppCompat_ActionButton_CloseMode 0x7f0b0129
  1528. int style Widget_AppCompat_ActionButton_Overflow 0x7f0b012a
  1529. int style Widget_AppCompat_ActionMode 0x7f0b012b
  1530. int style Widget_AppCompat_ActivityChooserView 0x7f0b012c
  1531. int style Widget_AppCompat_AutoCompleteTextView 0x7f0b012d
  1532. int style Widget_AppCompat_Button 0x7f0b012e
  1533. int style Widget_AppCompat_Button_Borderless 0x7f0b012f
  1534. int style Widget_AppCompat_Button_Borderless_Colored 0x7f0b0130
  1535. int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0b0131
  1536. int style Widget_AppCompat_Button_Colored 0x7f0b0132
  1537. int style Widget_AppCompat_Button_Small 0x7f0b0133
  1538. int style Widget_AppCompat_ButtonBar 0x7f0b0134
  1539. int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0b0135
  1540. int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0b0136
  1541. int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0b0137
  1542. int style Widget_AppCompat_CompoundButton_Switch 0x7f0b0138
  1543. int style Widget_AppCompat_DrawerArrowToggle 0x7f0b0139
  1544. int style Widget_AppCompat_DropDownItem_Spinner 0x7f0b013a
  1545. int style Widget_AppCompat_EditText 0x7f0b013b
  1546. int style Widget_AppCompat_ImageButton 0x7f0b013c
  1547. int style Widget_AppCompat_Light_ActionBar 0x7f0b013d
  1548. int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0b013e
  1549. int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0b013f
  1550. int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b0140
  1551. int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0b0141
  1552. int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0142
  1553. int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0143
  1554. int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0b0144
  1555. int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0b0145
  1556. int style Widget_AppCompat_Light_ActionButton 0x7f0b0146
  1557. int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0b0147
  1558. int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0b0148
  1559. int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0b0149
  1560. int style Widget_AppCompat_Light_ActivityChooserView 0x7f0b014a
  1561. int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b014b
  1562. int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0b014c
  1563. int style Widget_AppCompat_Light_ListPopupWindow 0x7f0b014d
  1564. int style Widget_AppCompat_Light_ListView_DropDown 0x7f0b014e
  1565. int style Widget_AppCompat_Light_PopupMenu 0x7f0b014f
  1566. int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0b0150
  1567. int style Widget_AppCompat_Light_SearchView 0x7f0b0151
  1568. int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0b0152
  1569. int style Widget_AppCompat_ListMenuView 0x7f0b0153
  1570. int style Widget_AppCompat_ListPopupWindow 0x7f0b0154
  1571. int style Widget_AppCompat_ListView 0x7f0b0155
  1572. int style Widget_AppCompat_ListView_DropDown 0x7f0b0156
  1573. int style Widget_AppCompat_ListView_Menu 0x7f0b0157
  1574. int style Widget_AppCompat_PopupMenu 0x7f0b0158
  1575. int style Widget_AppCompat_PopupMenu_Overflow 0x7f0b0159
  1576. int style Widget_AppCompat_PopupWindow 0x7f0b015a
  1577. int style Widget_AppCompat_ProgressBar 0x7f0b015b
  1578. int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0b015c
  1579. int style Widget_AppCompat_RatingBar 0x7f0b015d
  1580. int style Widget_AppCompat_RatingBar_Indicator 0x7f0b015e
  1581. int style Widget_AppCompat_RatingBar_Small 0x7f0b015f
  1582. int style Widget_AppCompat_SearchView 0x7f0b0160
  1583. int style Widget_AppCompat_SearchView_ActionBar 0x7f0b0161
  1584. int style Widget_AppCompat_SeekBar 0x7f0b0162
  1585. int style Widget_AppCompat_SeekBar_Discrete 0x7f0b0163
  1586. int style Widget_AppCompat_Spinner 0x7f0b0164
  1587. int style Widget_AppCompat_Spinner_DropDown 0x7f0b0165
  1588. int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b0166
  1589. int style Widget_AppCompat_Spinner_Underlined 0x7f0b0167
  1590. int style Widget_AppCompat_TextView_SpinnerItem 0x7f0b0168
  1591. int style Widget_AppCompat_Toolbar 0x7f0b0169
  1592. int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b016a
  1593. int style Widget_Compat_NotificationActionContainer 0x7f0b016b
  1594. int style Widget_Compat_NotificationActionText 0x7f0b016c
  1595. int style Widget_Support_CoordinatorLayout 0x7f0b016d
  1596. int style dcloud_anim_dialog_window_in_out 0x7f0b016e
  1597. int style dcloud_defalut_dialog 0x7f0b016f
  1598. int style featureLossDialog 0x7f0b0170
  1599. int style streamDelete19Dialog 0x7f0b0171
  1600. int style textAppearance 0x7f0b0172
  1601. int[] styleable ActionBar { 0x7f020039, 0x7f02003b, 0x7f02003c, 0x7f020063, 0x7f020064, 0x7f020065, 0x7f020066, 0x7f020067, 0x7f020068, 0x7f02006b, 0x7f020071, 0x7f020072, 0x7f02007d, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f0200a1, 0x7f0200a5, 0x7f0200bc, 0x7f0200c4, 0x7f0200da, 0x7f0200e1, 0x7f0200e2, 0x7f020122, 0x7f020125, 0x7f020140, 0x7f02014a }
  1602. int styleable ActionBar_background 0
  1603. int styleable ActionBar_backgroundSplit 1
  1604. int styleable ActionBar_backgroundStacked 2
  1605. int styleable ActionBar_contentInsetEnd 3
  1606. int styleable ActionBar_contentInsetEndWithActions 4
  1607. int styleable ActionBar_contentInsetLeft 5
  1608. int styleable ActionBar_contentInsetRight 6
  1609. int styleable ActionBar_contentInsetStart 7
  1610. int styleable ActionBar_contentInsetStartWithNavigation 8
  1611. int styleable ActionBar_customNavigationLayout 9
  1612. int styleable ActionBar_displayOptions 10
  1613. int styleable ActionBar_divider 11
  1614. int styleable ActionBar_elevation 12
  1615. int styleable ActionBar_height 13
  1616. int styleable ActionBar_hideOnContentScroll 14
  1617. int styleable ActionBar_homeAsUpIndicator 15
  1618. int styleable ActionBar_homeLayout 16
  1619. int styleable ActionBar_icon 17
  1620. int styleable ActionBar_indeterminateProgressStyle 18
  1621. int styleable ActionBar_itemPadding 19
  1622. int styleable ActionBar_logo 20
  1623. int styleable ActionBar_navigationMode 21
  1624. int styleable ActionBar_popupTheme 22
  1625. int styleable ActionBar_progressBarPadding 23
  1626. int styleable ActionBar_progressBarStyle 24
  1627. int styleable ActionBar_subtitle 25
  1628. int styleable ActionBar_subtitleTextStyle 26
  1629. int styleable ActionBar_title 27
  1630. int styleable ActionBar_titleTextStyle 28
  1631. int[] styleable ActionBarLayout { 0x010100b3 }
  1632. int styleable ActionBarLayout_android_layout_gravity 0
  1633. int[] styleable ActionMenuItemView { 0x0101013f }
  1634. int styleable ActionMenuItemView_android_minWidth 0
  1635. int[] styleable ActionMenuView { }
  1636. int[] styleable ActionMode { 0x7f020039, 0x7f02003b, 0x7f020053, 0x7f020098, 0x7f020125, 0x7f02014a }
  1637. int styleable ActionMode_background 0
  1638. int styleable ActionMode_backgroundSplit 1
  1639. int styleable ActionMode_closeItemLayout 2
  1640. int styleable ActionMode_height 3
  1641. int styleable ActionMode_subtitleTextStyle 4
  1642. int styleable ActionMode_titleTextStyle 5
  1643. int[] styleable ActionSheet { 0x7f020020, 0x7f020021, 0x7f020023, 0x7f02004d, 0x7f02004e, 0x7f02004f, 0x7f02006d, 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f020141 }
  1644. int styleable ActionSheet_actionSheetBackground 0
  1645. int styleable ActionSheet_actionSheetPadding 1
  1646. int styleable ActionSheet_actionSheetTextSize 2
  1647. int styleable ActionSheet_cancelButtonBackground 3
  1648. int styleable ActionSheet_cancelButtonMarginTop 4
  1649. int styleable ActionSheet_cancelButtonTextColor 5
  1650. int styleable ActionSheet_destructiveButtonTextColor 6
  1651. int styleable ActionSheet_otherButtonBottomBackground 7
  1652. int styleable ActionSheet_otherButtonMiddleBackground 8
  1653. int styleable ActionSheet_otherButtonSingleBackground 9
  1654. int styleable ActionSheet_otherButtonSpacing 10
  1655. int styleable ActionSheet_otherButtonTextColor 11
  1656. int styleable ActionSheet_otherButtonTitleBackground 12
  1657. int styleable ActionSheet_otherButtonTopBackground 13
  1658. int styleable ActionSheet_titleButtonTextColor 14
  1659. int[] styleable ActionSheets { 0x7f020022 }
  1660. int styleable ActionSheets_actionSheetStyle 0
  1661. int[] styleable ActivityChooserView { 0x7f02007e, 0x7f0200a2 }
  1662. int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
  1663. int styleable ActivityChooserView_initialActivityCount 1
  1664. int[] styleable AlertDialog { 0x010100f2, 0x7f020047, 0x7f020048, 0x7f0200b3, 0x7f0200b4, 0x7f0200c1, 0x7f020115, 0x7f020116 }
  1665. int styleable AlertDialog_android_layout 0
  1666. int styleable AlertDialog_buttonIconDimen 1
  1667. int styleable AlertDialog_buttonPanelSideLayout 2
  1668. int styleable AlertDialog_listItemLayout 3
  1669. int styleable AlertDialog_listLayout 4
  1670. int styleable AlertDialog_multiChoiceItemLayout 5
  1671. int styleable AlertDialog_showTitle 6
  1672. int styleable AlertDialog_singleChoiceItemLayout 7
  1673. int[] styleable AnimatedStateListDrawableCompat { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }
  1674. int styleable AnimatedStateListDrawableCompat_android_dither 0
  1675. int styleable AnimatedStateListDrawableCompat_android_visible 1
  1676. int styleable AnimatedStateListDrawableCompat_android_variablePadding 2
  1677. int styleable AnimatedStateListDrawableCompat_android_constantSize 3
  1678. int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 4
  1679. int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 5
  1680. int[] styleable AnimatedStateListDrawableItem { 0x010100d0, 0x01010199 }
  1681. int styleable AnimatedStateListDrawableItem_android_id 0
  1682. int styleable AnimatedStateListDrawableItem_android_drawable 1
  1683. int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b }
  1684. int styleable AnimatedStateListDrawableTransition_android_drawable 0
  1685. int styleable AnimatedStateListDrawableTransition_android_toId 1
  1686. int styleable AnimatedStateListDrawableTransition_android_fromId 2
  1687. int styleable AnimatedStateListDrawableTransition_android_reversible 3
  1688. int[] styleable AppCompatImageView { 0x01010119, 0x7f02011c, 0x7f02013e, 0x7f02013f }
  1689. int styleable AppCompatImageView_android_src 0
  1690. int styleable AppCompatImageView_srcCompat 1
  1691. int styleable AppCompatImageView_tint 2
  1692. int styleable AppCompatImageView_tintMode 3
  1693. int[] styleable AppCompatSeekBar { 0x01010142, 0x7f02013b, 0x7f02013c, 0x7f02013d }
  1694. int styleable AppCompatSeekBar_android_thumb 0
  1695. int styleable AppCompatSeekBar_tickMark 1
  1696. int styleable AppCompatSeekBar_tickMarkTint 2
  1697. int styleable AppCompatSeekBar_tickMarkTintMode 3
  1698. int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }
  1699. int styleable AppCompatTextHelper_android_textAppearance 0
  1700. int styleable AppCompatTextHelper_android_drawableTop 1
  1701. int styleable AppCompatTextHelper_android_drawableBottom 2
  1702. int styleable AppCompatTextHelper_android_drawableLeft 3
  1703. int styleable AppCompatTextHelper_android_drawableRight 4
  1704. int styleable AppCompatTextHelper_android_drawableStart 5
  1705. int styleable AppCompatTextHelper_android_drawableEnd 6
  1706. int[] styleable AppCompatTextView { 0x01010034, 0x7f020034, 0x7f020035, 0x7f020036, 0x7f020037, 0x7f020038, 0x7f020087, 0x7f020089, 0x7f0200a7, 0x7f0200b0, 0x7f02012b }
  1707. int styleable AppCompatTextView_android_textAppearance 0
  1708. int styleable AppCompatTextView_autoSizeMaxTextSize 1
  1709. int styleable AppCompatTextView_autoSizeMinTextSize 2
  1710. int styleable AppCompatTextView_autoSizePresetSizes 3
  1711. int styleable AppCompatTextView_autoSizeStepGranularity 4
  1712. int styleable AppCompatTextView_autoSizeTextType 5
  1713. int styleable AppCompatTextView_firstBaselineToTopHeight 6
  1714. int styleable AppCompatTextView_fontFamily 7
  1715. int styleable AppCompatTextView_lastBaselineToBottomHeight 8
  1716. int styleable AppCompatTextView_lineHeight 9
  1717. int styleable AppCompatTextView_textAllCaps 10
  1718. int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020025, 0x7f020029, 0x7f02002a, 0x7f02002b, 0x7f02002c, 0x7f020033, 0x7f020040, 0x7f020041, 0x7f020042, 0x7f020043, 0x7f020044, 0x7f020045, 0x7f020049, 0x7f02004a, 0x7f020050, 0x7f020051, 0x7f020057, 0x7f020058, 0x7f020059, 0x7f02005a, 0x7f02005b, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020069, 0x7f02006e, 0x7f02006f, 0x7f020070, 0x7f020073, 0x7f020075, 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02009a, 0x7f0200a0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200d9, 0x7f0200db, 0x7f0200e5, 0x7f0200e6, 0x7f0200e7, 0x7f0200e8, 0x7f02010e, 0x7f02010f, 0x7f020110, 0x7f020111, 0x7f020119, 0x7f02011a, 0x7f020129, 0x7f02012c, 0x7f02012d, 0x7f02012e, 0x7f02012f, 0x7f020130, 0x7f020131, 0x7f020132, 0x7f020133, 0x7f020134, 0x7f020135, 0x7f02014b, 0x7f02014c, 0x7f02014d, 0x7f02014e, 0x7f020155, 0x7f020157, 0x7f020158, 0x7f020159, 0x7f02015a, 0x7f02015b, 0x7f02015c, 0x7f02015d, 0x7f02015e, 0x7f02015f, 0x7f020160 }
  1719. int styleable AppCompatTheme_android_windowIsFloating 0
  1720. int styleable AppCompatTheme_android_windowAnimationStyle 1
  1721. int styleable AppCompatTheme_actionBarDivider 2
  1722. int styleable AppCompatTheme_actionBarItemBackground 3
  1723. int styleable AppCompatTheme_actionBarPopupTheme 4
  1724. int styleable AppCompatTheme_actionBarSize 5
  1725. int styleable AppCompatTheme_actionBarSplitStyle 6
  1726. int styleable AppCompatTheme_actionBarStyle 7
  1727. int styleable AppCompatTheme_actionBarTabBarStyle 8
  1728. int styleable AppCompatTheme_actionBarTabStyle 9
  1729. int styleable AppCompatTheme_actionBarTabTextStyle 10
  1730. int styleable AppCompatTheme_actionBarTheme 11
  1731. int styleable AppCompatTheme_actionBarWidgetTheme 12
  1732. int styleable AppCompatTheme_actionButtonStyle 13
  1733. int styleable AppCompatTheme_actionDropDownStyle 14
  1734. int styleable AppCompatTheme_actionMenuTextAppearance 15
  1735. int styleable AppCompatTheme_actionMenuTextColor 16
  1736. int styleable AppCompatTheme_actionModeBackground 17
  1737. int styleable AppCompatTheme_actionModeCloseButtonStyle 18
  1738. int styleable AppCompatTheme_actionModeCloseDrawable 19
  1739. int styleable AppCompatTheme_actionModeCopyDrawable 20
  1740. int styleable AppCompatTheme_actionModeCutDrawable 21
  1741. int styleable AppCompatTheme_actionModeFindDrawable 22
  1742. int styleable AppCompatTheme_actionModePasteDrawable 23
  1743. int styleable AppCompatTheme_actionModePopupWindowStyle 24
  1744. int styleable AppCompatTheme_actionModeSelectAllDrawable 25
  1745. int styleable AppCompatTheme_actionModeShareDrawable 26
  1746. int styleable AppCompatTheme_actionModeSplitBackground 27
  1747. int styleable AppCompatTheme_actionModeStyle 28
  1748. int styleable AppCompatTheme_actionModeWebSearchDrawable 29
  1749. int styleable AppCompatTheme_actionOverflowButtonStyle 30
  1750. int styleable AppCompatTheme_actionOverflowMenuStyle 31
  1751. int styleable AppCompatTheme_activityChooserViewStyle 32
  1752. int styleable AppCompatTheme_alertDialogButtonGroupStyle 33
  1753. int styleable AppCompatTheme_alertDialogCenterButtons 34
  1754. int styleable AppCompatTheme_alertDialogStyle 35
  1755. int styleable AppCompatTheme_alertDialogTheme 36
  1756. int styleable AppCompatTheme_autoCompleteTextViewStyle 37
  1757. int styleable AppCompatTheme_borderlessButtonStyle 38
  1758. int styleable AppCompatTheme_buttonBarButtonStyle 39
  1759. int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
  1760. int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
  1761. int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
  1762. int styleable AppCompatTheme_buttonBarStyle 43
  1763. int styleable AppCompatTheme_buttonStyle 44
  1764. int styleable AppCompatTheme_buttonStyleSmall 45
  1765. int styleable AppCompatTheme_checkboxStyle 46
  1766. int styleable AppCompatTheme_checkedTextViewStyle 47
  1767. int styleable AppCompatTheme_colorAccent 48
  1768. int styleable AppCompatTheme_colorBackgroundFloating 49
  1769. int styleable AppCompatTheme_colorButtonNormal 50
  1770. int styleable AppCompatTheme_colorControlActivated 51
  1771. int styleable AppCompatTheme_colorControlHighlight 52
  1772. int styleable AppCompatTheme_colorControlNormal 53
  1773. int styleable AppCompatTheme_colorError 54
  1774. int styleable AppCompatTheme_colorPrimary 55
  1775. int styleable AppCompatTheme_colorPrimaryDark 56
  1776. int styleable AppCompatTheme_colorSwitchThumbNormal 57
  1777. int styleable AppCompatTheme_controlBackground 58
  1778. int styleable AppCompatTheme_dialogCornerRadius 59
  1779. int styleable AppCompatTheme_dialogPreferredPadding 60
  1780. int styleable AppCompatTheme_dialogTheme 61
  1781. int styleable AppCompatTheme_dividerHorizontal 62
  1782. int styleable AppCompatTheme_dividerVertical 63
  1783. int styleable AppCompatTheme_dropDownListViewStyle 64
  1784. int styleable AppCompatTheme_dropdownListPreferredItemHeight 65
  1785. int styleable AppCompatTheme_editTextBackground 66
  1786. int styleable AppCompatTheme_editTextColor 67
  1787. int styleable AppCompatTheme_editTextStyle 68
  1788. int styleable AppCompatTheme_homeAsUpIndicator 69
  1789. int styleable AppCompatTheme_imageButtonStyle 70
  1790. int styleable AppCompatTheme_listChoiceBackgroundIndicator 71
  1791. int styleable AppCompatTheme_listDividerAlertDialog 72
  1792. int styleable AppCompatTheme_listMenuViewStyle 73
  1793. int styleable AppCompatTheme_listPopupWindowStyle 74
  1794. int styleable AppCompatTheme_listPreferredItemHeight 75
  1795. int styleable AppCompatTheme_listPreferredItemHeightLarge 76
  1796. int styleable AppCompatTheme_listPreferredItemHeightSmall 77
  1797. int styleable AppCompatTheme_listPreferredItemPaddingLeft 78
  1798. int styleable AppCompatTheme_listPreferredItemPaddingRight 79
  1799. int styleable AppCompatTheme_panelBackground 80
  1800. int styleable AppCompatTheme_panelMenuListTheme 81
  1801. int styleable AppCompatTheme_panelMenuListWidth 82
  1802. int styleable AppCompatTheme_popupMenuStyle 83
  1803. int styleable AppCompatTheme_popupWindowStyle 84
  1804. int styleable AppCompatTheme_radioButtonStyle 85
  1805. int styleable AppCompatTheme_ratingBarStyle 86
  1806. int styleable AppCompatTheme_ratingBarStyleIndicator 87
  1807. int styleable AppCompatTheme_ratingBarStyleSmall 88
  1808. int styleable AppCompatTheme_searchViewStyle 89
  1809. int styleable AppCompatTheme_seekBarStyle 90
  1810. int styleable AppCompatTheme_selectableItemBackground 91
  1811. int styleable AppCompatTheme_selectableItemBackgroundBorderless 92
  1812. int styleable AppCompatTheme_spinnerDropDownItemStyle 93
  1813. int styleable AppCompatTheme_spinnerStyle 94
  1814. int styleable AppCompatTheme_switchStyle 95
  1815. int styleable AppCompatTheme_textAppearanceLargePopupMenu 96
  1816. int styleable AppCompatTheme_textAppearanceListItem 97
  1817. int styleable AppCompatTheme_textAppearanceListItemSecondary 98
  1818. int styleable AppCompatTheme_textAppearanceListItemSmall 99
  1819. int styleable AppCompatTheme_textAppearancePopupMenuHeader 100
  1820. int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101
  1821. int styleable AppCompatTheme_textAppearanceSearchResultTitle 102
  1822. int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103
  1823. int styleable AppCompatTheme_textColorAlertDialogListItem 104
  1824. int styleable AppCompatTheme_textColorSearchUrl 105
  1825. int styleable AppCompatTheme_toolbarNavigationButtonStyle 106
  1826. int styleable AppCompatTheme_toolbarStyle 107
  1827. int styleable AppCompatTheme_tooltipForegroundColor 108
  1828. int styleable AppCompatTheme_tooltipFrameBackground 109
  1829. int styleable AppCompatTheme_viewInflaterClass 110
  1830. int styleable AppCompatTheme_windowActionBar 111
  1831. int styleable AppCompatTheme_windowActionBarOverlay 112
  1832. int styleable AppCompatTheme_windowActionModeOverlay 113
  1833. int styleable AppCompatTheme_windowFixedHeightMajor 114
  1834. int styleable AppCompatTheme_windowFixedHeightMinor 115
  1835. int styleable AppCompatTheme_windowFixedWidthMajor 116
  1836. int styleable AppCompatTheme_windowFixedWidthMinor 117
  1837. int styleable AppCompatTheme_windowMinWidthMajor 118
  1838. int styleable AppCompatTheme_windowMinWidthMinor 119
  1839. int styleable AppCompatTheme_windowNoTitle 120
  1840. int[] styleable ButtonBarLayout { 0x7f02002d }
  1841. int styleable ButtonBarLayout_allowStacking 0
  1842. int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f02002e }
  1843. int styleable ColorStateListItem_android_color 0
  1844. int styleable ColorStateListItem_android_alpha 1
  1845. int styleable ColorStateListItem_alpha 2
  1846. int[] styleable CompoundButton { 0x01010107, 0x7f02004b, 0x7f02004c }
  1847. int styleable CompoundButton_android_button 0
  1848. int styleable CompoundButton_buttonTint 1
  1849. int styleable CompoundButton_buttonTintMode 2
  1850. int[] styleable CoordinatorLayout { 0x7f0200a6, 0x7f02011f }
  1851. int styleable CoordinatorLayout_keylines 0
  1852. int styleable CoordinatorLayout_statusBarBackground 1
  1853. int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af }
  1854. int styleable CoordinatorLayout_Layout_android_layout_gravity 0
  1855. int styleable CoordinatorLayout_Layout_layout_anchor 1
  1856. int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
  1857. int styleable CoordinatorLayout_Layout_layout_behavior 3
  1858. int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
  1859. int styleable CoordinatorLayout_Layout_layout_insetEdge 5
  1860. int styleable CoordinatorLayout_Layout_layout_keyline 6
  1861. int[] styleable DrawerArrowToggle { 0x7f020030, 0x7f020031, 0x7f02003f, 0x7f020056, 0x7f020076, 0x7f020094, 0x7f020118, 0x7f020137 }
  1862. int styleable DrawerArrowToggle_arrowHeadLength 0
  1863. int styleable DrawerArrowToggle_arrowShaftLength 1
  1864. int styleable DrawerArrowToggle_barLength 2
  1865. int styleable DrawerArrowToggle_color 3
  1866. int styleable DrawerArrowToggle_drawableSize 4
  1867. int styleable DrawerArrowToggle_gapBetweenBars 5
  1868. int styleable DrawerArrowToggle_spinBars 6
  1869. int styleable DrawerArrowToggle_thickness 7
  1870. int[] styleable FontFamily { 0x7f02008a, 0x7f02008b, 0x7f02008c, 0x7f02008d, 0x7f02008e, 0x7f02008f }
  1871. int styleable FontFamily_fontProviderAuthority 0
  1872. int styleable FontFamily_fontProviderCerts 1
  1873. int styleable FontFamily_fontProviderFetchStrategy 2
  1874. int styleable FontFamily_fontProviderFetchTimeout 3
  1875. int styleable FontFamily_fontProviderPackage 4
  1876. int styleable FontFamily_fontProviderQuery 5
  1877. int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f020088, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020153 }
  1878. int styleable FontFamilyFont_android_font 0
  1879. int styleable FontFamilyFont_android_fontWeight 1
  1880. int styleable FontFamilyFont_android_fontStyle 2
  1881. int styleable FontFamilyFont_android_ttcIndex 3
  1882. int styleable FontFamilyFont_android_fontVariationSettings 4
  1883. int styleable FontFamilyFont_font 5
  1884. int styleable FontFamilyFont_fontStyle 6
  1885. int styleable FontFamilyFont_fontVariationSettings 7
  1886. int styleable FontFamilyFont_fontWeight 8
  1887. int styleable FontFamilyFont_ttcIndex 9
  1888. int[] styleable GIFVIEW { 0x7f020032, 0x7f020096, 0x7f0200d8 }
  1889. int styleable GIFVIEW_authPlay 0
  1890. int styleable GIFVIEW_gifSrc 1
  1891. int styleable GIFVIEW_playCount 2
  1892. int[] styleable GenericDraweeHierarchy { 0x7f020027, 0x7f02003a, 0x7f02007f, 0x7f020080, 0x7f020081, 0x7f0200ce, 0x7f0200d6, 0x7f0200d7, 0x7f0200dd, 0x7f0200de, 0x7f0200df, 0x7f0200e0, 0x7f0200e9, 0x7f0200ea, 0x7f0200ec, 0x7f0200ed, 0x7f0200ee, 0x7f0200ef, 0x7f0200f0, 0x7f0200f1, 0x7f0200f2, 0x7f0200f3, 0x7f0200f4, 0x7f0200f5, 0x7f0200f6, 0x7f0200f7, 0x7f0200f8, 0x7f0200f9, 0x7f020154 }
  1893. int styleable GenericDraweeHierarchy_actualImageScaleType 0
  1894. int styleable GenericDraweeHierarchy_backgroundImage 1
  1895. int styleable GenericDraweeHierarchy_fadeDuration 2
  1896. int styleable GenericDraweeHierarchy_failureImage 3
  1897. int styleable GenericDraweeHierarchy_failureImageScaleType 4
  1898. int styleable GenericDraweeHierarchy_overlayImage 5
  1899. int styleable GenericDraweeHierarchy_placeholderImage 6
  1900. int styleable GenericDraweeHierarchy_placeholderImageScaleType 7
  1901. int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8
  1902. int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9
  1903. int styleable GenericDraweeHierarchy_progressBarImage 10
  1904. int styleable GenericDraweeHierarchy_progressBarImageScaleType 11
  1905. int styleable GenericDraweeHierarchy_retryImage 12
  1906. int styleable GenericDraweeHierarchy_retryImageScaleType 13
  1907. int styleable GenericDraweeHierarchy_roundAsCircle 14
  1908. int styleable GenericDraweeHierarchy_roundBottomEnd 15
  1909. int styleable GenericDraweeHierarchy_roundBottomLeft 16
  1910. int styleable GenericDraweeHierarchy_roundBottomRight 17
  1911. int styleable GenericDraweeHierarchy_roundBottomStart 18
  1912. int styleable GenericDraweeHierarchy_roundTopEnd 19
  1913. int styleable GenericDraweeHierarchy_roundTopLeft 20
  1914. int styleable GenericDraweeHierarchy_roundTopRight 21
  1915. int styleable GenericDraweeHierarchy_roundTopStart 22
  1916. int styleable GenericDraweeHierarchy_roundWithOverlayColor 23
  1917. int styleable GenericDraweeHierarchy_roundedCornerRadius 24
  1918. int styleable GenericDraweeHierarchy_roundingBorderColor 25
  1919. int styleable GenericDraweeHierarchy_roundingBorderPadding 26
  1920. int styleable GenericDraweeHierarchy_roundingBorderWidth 27
  1921. int styleable GenericDraweeHierarchy_viewAspectRatio 28
  1922. int[] styleable GifTextureView { 0x7f020095, 0x7f0200a4 }
  1923. int styleable GifTextureView_gifSource 0
  1924. int styleable GifTextureView_isOpaque 1
  1925. int[] styleable GifView { 0x7f020093, 0x7f0200be }
  1926. int styleable GifView_freezesAnimation 0
  1927. int styleable GifView_loopCount 1
  1928. int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }
  1929. int styleable GradientColor_android_startColor 0
  1930. int styleable GradientColor_android_endColor 1
  1931. int styleable GradientColor_android_type 2
  1932. int styleable GradientColor_android_centerX 3
  1933. int styleable GradientColor_android_centerY 4
  1934. int styleable GradientColor_android_gradientRadius 5
  1935. int styleable GradientColor_android_tileMode 6
  1936. int styleable GradientColor_android_centerColor 7
  1937. int styleable GradientColor_android_startX 8
  1938. int styleable GradientColor_android_startY 9
  1939. int styleable GradientColor_android_endX 10
  1940. int styleable GradientColor_android_endY 11
  1941. int[] styleable GradientColorItem { 0x010101a5, 0x01010514 }
  1942. int styleable GradientColorItem_android_color 0
  1943. int styleable GradientColorItem_android_offset 1
  1944. int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f020072, 0x7f020074, 0x7f0200c0, 0x7f020113 }
  1945. int styleable LinearLayoutCompat_android_gravity 0
  1946. int styleable LinearLayoutCompat_android_orientation 1
  1947. int styleable LinearLayoutCompat_android_baselineAligned 2
  1948. int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
  1949. int styleable LinearLayoutCompat_android_weightSum 4
  1950. int styleable LinearLayoutCompat_divider 5
  1951. int styleable LinearLayoutCompat_dividerPadding 6
  1952. int styleable LinearLayoutCompat_measureWithLargestChild 7
  1953. int styleable LinearLayoutCompat_showDividers 8
  1954. int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
  1955. int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
  1956. int styleable LinearLayoutCompat_Layout_android_layout_width 1
  1957. int styleable LinearLayoutCompat_Layout_android_layout_height 2
  1958. int styleable LinearLayoutCompat_Layout_android_layout_weight 3
  1959. int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
  1960. int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
  1961. int styleable ListPopupWindow_android_dropDownVerticalOffset 1
  1962. int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
  1963. int styleable MenuGroup_android_enabled 0
  1964. int styleable MenuGroup_android_id 1
  1965. int styleable MenuGroup_android_visible 2
  1966. int styleable MenuGroup_android_menuCategory 3
  1967. int styleable MenuGroup_android_orderInCategory 4
  1968. int styleable MenuGroup_android_checkableBehavior 5
  1969. int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020024, 0x7f02002f, 0x7f020062, 0x7f02009d, 0x7f02009e, 0x7f0200c5, 0x7f020112, 0x7f02014f }
  1970. int styleable MenuItem_android_icon 0
  1971. int styleable MenuItem_android_enabled 1
  1972. int styleable MenuItem_android_id 2
  1973. int styleable MenuItem_android_checked 3
  1974. int styleable MenuItem_android_visible 4
  1975. int styleable MenuItem_android_menuCategory 5
  1976. int styleable MenuItem_android_orderInCategory 6
  1977. int styleable MenuItem_android_title 7
  1978. int styleable MenuItem_android_titleCondensed 8
  1979. int styleable MenuItem_android_alphabeticShortcut 9
  1980. int styleable MenuItem_android_numericShortcut 10
  1981. int styleable MenuItem_android_checkable 11
  1982. int styleable MenuItem_android_onClick 12
  1983. int styleable MenuItem_actionLayout 13
  1984. int styleable MenuItem_actionProviderClass 14
  1985. int styleable MenuItem_actionViewClass 15
  1986. int styleable MenuItem_alphabeticModifiers 16
  1987. int styleable MenuItem_contentDescription 17
  1988. int styleable MenuItem_iconTint 18
  1989. int styleable MenuItem_iconTintMode 19
  1990. int styleable MenuItem_numericModifiers 20
  1991. int styleable MenuItem_showAsAction 21
  1992. int styleable MenuItem_tooltipText 22
  1993. int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0200dc, 0x7f020120 }
  1994. int styleable MenuView_android_windowAnimationStyle 0
  1995. int styleable MenuView_android_itemTextAppearance 1
  1996. int styleable MenuView_android_horizontalDivider 2
  1997. int styleable MenuView_android_verticalDivider 3
  1998. int styleable MenuView_android_headerBackground 4
  1999. int styleable MenuView_android_itemBackground 5
  2000. int styleable MenuView_android_itemIconDisabledAlpha 6
  2001. int styleable MenuView_preserveIconSpacing 7
  2002. int styleable MenuView_subMenuArrow 8
  2003. int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f0200cd }
  2004. int styleable PopupWindow_android_popupBackground 0
  2005. int styleable PopupWindow_android_popupAnimationStyle 1
  2006. int styleable PopupWindow_overlapAnchor 2
  2007. int[] styleable PopupWindowBackgroundState { 0x7f02011e }
  2008. int styleable PopupWindowBackgroundState_state_above_anchor 0
  2009. int[] styleable RecycleListView { 0x7f0200cf, 0x7f0200d2 }
  2010. int styleable RecycleListView_paddingBottomNoButtons 0
  2011. int styleable RecycleListView_paddingTopNoTitle 1
  2012. int[] styleable RecyclerView { 0x010100c4, 0x010100f1, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020085, 0x7f020086, 0x7f0200a9, 0x7f0200eb, 0x7f020117, 0x7f02011d }
  2013. int styleable RecyclerView_android_orientation 0
  2014. int styleable RecyclerView_android_descendantFocusability 1
  2015. int styleable RecyclerView_fastScrollEnabled 2
  2016. int styleable RecyclerView_fastScrollHorizontalThumbDrawable 3
  2017. int styleable RecyclerView_fastScrollHorizontalTrackDrawable 4
  2018. int styleable RecyclerView_fastScrollVerticalThumbDrawable 5
  2019. int styleable RecyclerView_fastScrollVerticalTrackDrawable 6
  2020. int styleable RecyclerView_layoutManager 7
  2021. int styleable RecyclerView_reverseLayout 8
  2022. int styleable RecyclerView_spanCount 9
  2023. int styleable RecyclerView_stackFromEnd 10
  2024. int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f020052, 0x7f020061, 0x7f02006c, 0x7f020097, 0x7f02009f, 0x7f0200a8, 0x7f0200e3, 0x7f0200e4, 0x7f02010c, 0x7f02010d, 0x7f020121, 0x7f020126, 0x7f020156 }
  2025. int styleable SearchView_android_focusable 0
  2026. int styleable SearchView_android_maxWidth 1
  2027. int styleable SearchView_android_inputType 2
  2028. int styleable SearchView_android_imeOptions 3
  2029. int styleable SearchView_closeIcon 4
  2030. int styleable SearchView_commitIcon 5
  2031. int styleable SearchView_defaultQueryHint 6
  2032. int styleable SearchView_goIcon 7
  2033. int styleable SearchView_iconifiedByDefault 8
  2034. int styleable SearchView_layout 9
  2035. int styleable SearchView_queryBackground 10
  2036. int styleable SearchView_queryHint 11
  2037. int styleable SearchView_searchHintIcon 12
  2038. int styleable SearchView_searchIcon 13
  2039. int styleable SearchView_submitBackground 14
  2040. int styleable SearchView_suggestionRowLayout 15
  2041. int styleable SearchView_voiceIcon 16
  2042. int[] styleable SimpleDraweeView { 0x7f020026, 0x7f020027, 0x7f020028, 0x7f02003a, 0x7f02007f, 0x7f020080, 0x7f020081, 0x7f0200ce, 0x7f0200d6, 0x7f0200d7, 0x7f0200dd, 0x7f0200de, 0x7f0200df, 0x7f0200e0, 0x7f0200e9, 0x7f0200ea, 0x7f0200ec, 0x7f0200ed, 0x7f0200ee, 0x7f0200ef, 0x7f0200f0, 0x7f0200f1, 0x7f0200f2, 0x7f0200f3, 0x7f0200f4, 0x7f0200f5, 0x7f0200f6, 0x7f0200f7, 0x7f0200f8, 0x7f0200f9, 0x7f020154 }
  2043. int styleable SimpleDraweeView_actualImageResource 0
  2044. int styleable SimpleDraweeView_actualImageScaleType 1
  2045. int styleable SimpleDraweeView_actualImageUri 2
  2046. int styleable SimpleDraweeView_backgroundImage 3
  2047. int styleable SimpleDraweeView_fadeDuration 4
  2048. int styleable SimpleDraweeView_failureImage 5
  2049. int styleable SimpleDraweeView_failureImageScaleType 6
  2050. int styleable SimpleDraweeView_overlayImage 7
  2051. int styleable SimpleDraweeView_placeholderImage 8
  2052. int styleable SimpleDraweeView_placeholderImageScaleType 9
  2053. int styleable SimpleDraweeView_pressedStateOverlayImage 10
  2054. int styleable SimpleDraweeView_progressBarAutoRotateInterval 11
  2055. int styleable SimpleDraweeView_progressBarImage 12
  2056. int styleable SimpleDraweeView_progressBarImageScaleType 13
  2057. int styleable SimpleDraweeView_retryImage 14
  2058. int styleable SimpleDraweeView_retryImageScaleType 15
  2059. int styleable SimpleDraweeView_roundAsCircle 16
  2060. int styleable SimpleDraweeView_roundBottomEnd 17
  2061. int styleable SimpleDraweeView_roundBottomLeft 18
  2062. int styleable SimpleDraweeView_roundBottomRight 19
  2063. int styleable SimpleDraweeView_roundBottomStart 20
  2064. int styleable SimpleDraweeView_roundTopEnd 21
  2065. int styleable SimpleDraweeView_roundTopLeft 22
  2066. int styleable SimpleDraweeView_roundTopRight 23
  2067. int styleable SimpleDraweeView_roundTopStart 24
  2068. int styleable SimpleDraweeView_roundWithOverlayColor 25
  2069. int styleable SimpleDraweeView_roundedCornerRadius 26
  2070. int styleable SimpleDraweeView_roundingBorderColor 27
  2071. int styleable SimpleDraweeView_roundingBorderPadding 28
  2072. int styleable SimpleDraweeView_roundingBorderWidth 29
  2073. int styleable SimpleDraweeView_viewAspectRatio 30
  2074. int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0200da }
  2075. int styleable Spinner_android_entries 0
  2076. int styleable Spinner_android_popupBackground 1
  2077. int styleable Spinner_android_prompt 2
  2078. int styleable Spinner_android_dropDownWidth 3
  2079. int styleable Spinner_popupTheme 4
  2080. int[] styleable StateListDrawable { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }
  2081. int styleable StateListDrawable_android_dither 0
  2082. int styleable StateListDrawable_android_visible 1
  2083. int styleable StateListDrawable_android_variablePadding 2
  2084. int styleable StateListDrawable_android_constantSize 3
  2085. int styleable StateListDrawable_android_enterFadeDuration 4
  2086. int styleable StateListDrawable_android_exitFadeDuration 5
  2087. int[] styleable StateListDrawableItem { 0x01010199 }
  2088. int styleable StateListDrawableItem_android_drawable 0
  2089. int[] styleable SwitchButton { 0x7f0200fa, 0x7f0200fb, 0x7f0200fc, 0x7f0200fd, 0x7f0200fe, 0x7f0200ff, 0x7f020100, 0x7f020101, 0x7f020102, 0x7f020103, 0x7f020104, 0x7f020105, 0x7f020106, 0x7f020107, 0x7f020108, 0x7f020109, 0x7f02010a, 0x7f02010b }
  2090. int styleable SwitchButton_sb_background 0
  2091. int styleable SwitchButton_sb_border_width 1
  2092. int styleable SwitchButton_sb_button_color 2
  2093. int styleable SwitchButton_sb_checked 3
  2094. int styleable SwitchButton_sb_checked_color 4
  2095. int styleable SwitchButton_sb_checkline_color 5
  2096. int styleable SwitchButton_sb_checkline_width 6
  2097. int styleable SwitchButton_sb_effect_duration 7
  2098. int styleable SwitchButton_sb_enable_effect 8
  2099. int styleable SwitchButton_sb_shadow_color 9
  2100. int styleable SwitchButton_sb_shadow_effect 10
  2101. int styleable SwitchButton_sb_shadow_offset 11
  2102. int styleable SwitchButton_sb_shadow_radius 12
  2103. int styleable SwitchButton_sb_show_indicator 13
  2104. int styleable SwitchButton_sb_uncheck_color 14
  2105. int styleable SwitchButton_sb_uncheckcircle_color 15
  2106. int styleable SwitchButton_sb_uncheckcircle_radius 16
  2107. int styleable SwitchButton_sb_uncheckcircle_width 17
  2108. int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f020114, 0x7f02011b, 0x7f020127, 0x7f020128, 0x7f02012a, 0x7f020138, 0x7f020139, 0x7f02013a, 0x7f020150, 0x7f020151, 0x7f020152 }
  2109. int styleable SwitchCompat_android_textOn 0
  2110. int styleable SwitchCompat_android_textOff 1
  2111. int styleable SwitchCompat_android_thumb 2
  2112. int styleable SwitchCompat_showText 3
  2113. int styleable SwitchCompat_splitTrack 4
  2114. int styleable SwitchCompat_switchMinWidth 5
  2115. int styleable SwitchCompat_switchPadding 6
  2116. int styleable SwitchCompat_switchTextAppearance 7
  2117. int styleable SwitchCompat_thumbTextPadding 8
  2118. int styleable SwitchCompat_thumbTint 9
  2119. int styleable SwitchCompat_thumbTintMode 10
  2120. int styleable SwitchCompat_track 11
  2121. int styleable SwitchCompat_trackTint 12
  2122. int styleable SwitchCompat_trackTintMode 13
  2123. int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f020089, 0x7f02012b }
  2124. int styleable TextAppearance_android_textSize 0
  2125. int styleable TextAppearance_android_typeface 1
  2126. int styleable TextAppearance_android_textStyle 2
  2127. int styleable TextAppearance_android_textColor 3
  2128. int styleable TextAppearance_android_textColorHint 4
  2129. int styleable TextAppearance_android_textColorLink 5
  2130. int styleable TextAppearance_android_shadowColor 6
  2131. int styleable TextAppearance_android_shadowDx 7
  2132. int styleable TextAppearance_android_shadowDy 8
  2133. int styleable TextAppearance_android_shadowRadius 9
  2134. int styleable TextAppearance_android_fontFamily 10
  2135. int styleable TextAppearance_fontFamily 11
  2136. int styleable TextAppearance_textAllCaps 12
  2137. int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f020046, 0x7f020054, 0x7f020055, 0x7f020063, 0x7f020064, 0x7f020065, 0x7f020066, 0x7f020067, 0x7f020068, 0x7f0200bc, 0x7f0200bd, 0x7f0200bf, 0x7f0200c2, 0x7f0200c3, 0x7f0200da, 0x7f020122, 0x7f020123, 0x7f020124, 0x7f020140, 0x7f020142, 0x7f020143, 0x7f020144, 0x7f020145, 0x7f020146, 0x7f020147, 0x7f020148, 0x7f020149 }
  2138. int styleable Toolbar_android_gravity 0
  2139. int styleable Toolbar_android_minHeight 1
  2140. int styleable Toolbar_buttonGravity 2
  2141. int styleable Toolbar_collapseContentDescription 3
  2142. int styleable Toolbar_collapseIcon 4
  2143. int styleable Toolbar_contentInsetEnd 5
  2144. int styleable Toolbar_contentInsetEndWithActions 6
  2145. int styleable Toolbar_contentInsetLeft 7
  2146. int styleable Toolbar_contentInsetRight 8
  2147. int styleable Toolbar_contentInsetStart 9
  2148. int styleable Toolbar_contentInsetStartWithNavigation 10
  2149. int styleable Toolbar_logo 11
  2150. int styleable Toolbar_logoDescription 12
  2151. int styleable Toolbar_maxButtonHeight 13
  2152. int styleable Toolbar_navigationContentDescription 14
  2153. int styleable Toolbar_navigationIcon 15
  2154. int styleable Toolbar_popupTheme 16
  2155. int styleable Toolbar_subtitle 17
  2156. int styleable Toolbar_subtitleTextAppearance 18
  2157. int styleable Toolbar_subtitleTextColor 19
  2158. int styleable Toolbar_title 20
  2159. int styleable Toolbar_titleMargin 21
  2160. int styleable Toolbar_titleMarginBottom 22
  2161. int styleable Toolbar_titleMarginEnd 23
  2162. int styleable Toolbar_titleMarginStart 24
  2163. int styleable Toolbar_titleMarginTop 25
  2164. int styleable Toolbar_titleMargins 26
  2165. int styleable Toolbar_titleTextAppearance 27
  2166. int styleable Toolbar_titleTextColor 28
  2167. int[] styleable View { 0x01010000, 0x010100da, 0x7f0200d0, 0x7f0200d1, 0x7f020136 }
  2168. int styleable View_android_theme 0
  2169. int styleable View_android_focusable 1
  2170. int styleable View_paddingEnd 2
  2171. int styleable View_paddingStart 3
  2172. int styleable View_theme 4
  2173. int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f02003d, 0x7f02003e }
  2174. int styleable ViewBackgroundHelper_android_background 0
  2175. int styleable ViewBackgroundHelper_backgroundTint 1
  2176. int styleable ViewBackgroundHelper_backgroundTintMode 2
  2177. int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
  2178. int styleable ViewStubCompat_android_id 0
  2179. int styleable ViewStubCompat_android_layout 1
  2180. int styleable ViewStubCompat_android_inflatedId 2
  2181. int xml dcloud_file_provider 0x7f0d0000