R.txt 216 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446
  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 btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000c
  14. int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000d
  15. int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000e
  16. int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f01000f
  17. int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010010
  18. int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010011
  19. int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010012
  20. int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010013
  21. int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010014
  22. int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010015
  23. int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010016
  24. int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010017
  25. int anim design_bottom_sheet_slide_in 0x7f010018
  26. int anim design_bottom_sheet_slide_out 0x7f010019
  27. int anim design_snackbar_in 0x7f01001a
  28. int anim design_snackbar_out 0x7f01001b
  29. int anim slide_in_bottom 0x7f01001c
  30. int anim slide_out_bottom 0x7f01001d
  31. int animator design_appbar_state_list_animator 0x7f020000
  32. int animator design_fab_hide_motion_spec 0x7f020001
  33. int animator design_fab_show_motion_spec 0x7f020002
  34. int animator mtrl_btn_state_list_anim 0x7f020003
  35. int animator mtrl_btn_unelevated_state_list_anim 0x7f020004
  36. int animator mtrl_chip_state_list_anim 0x7f020005
  37. int animator mtrl_fab_hide_motion_spec 0x7f020006
  38. int animator mtrl_fab_show_motion_spec 0x7f020007
  39. int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020008
  40. int animator mtrl_fab_transformation_sheet_expand_spec 0x7f020009
  41. int animator scale_with_alpha 0x7f02000a
  42. int attr actionBarDivider 0x7f030000
  43. int attr actionBarItemBackground 0x7f030001
  44. int attr actionBarPopupTheme 0x7f030002
  45. int attr actionBarSize 0x7f030003
  46. int attr actionBarSplitStyle 0x7f030004
  47. int attr actionBarStyle 0x7f030005
  48. int attr actionBarTabBarStyle 0x7f030006
  49. int attr actionBarTabStyle 0x7f030007
  50. int attr actionBarTabTextStyle 0x7f030008
  51. int attr actionBarTheme 0x7f030009
  52. int attr actionBarWidgetTheme 0x7f03000a
  53. int attr actionButtonStyle 0x7f03000b
  54. int attr actionDropDownStyle 0x7f03000c
  55. int attr actionLayout 0x7f03000d
  56. int attr actionMenuTextAppearance 0x7f03000e
  57. int attr actionMenuTextColor 0x7f03000f
  58. int attr actionModeBackground 0x7f030010
  59. int attr actionModeCloseButtonStyle 0x7f030011
  60. int attr actionModeCloseDrawable 0x7f030012
  61. int attr actionModeCopyDrawable 0x7f030013
  62. int attr actionModeCutDrawable 0x7f030014
  63. int attr actionModeFindDrawable 0x7f030015
  64. int attr actionModePasteDrawable 0x7f030016
  65. int attr actionModePopupWindowStyle 0x7f030017
  66. int attr actionModeSelectAllDrawable 0x7f030018
  67. int attr actionModeShareDrawable 0x7f030019
  68. int attr actionModeSplitBackground 0x7f03001a
  69. int attr actionModeStyle 0x7f03001b
  70. int attr actionModeWebSearchDrawable 0x7f03001c
  71. int attr actionOverflowButtonStyle 0x7f03001d
  72. int attr actionOverflowMenuStyle 0x7f03001e
  73. int attr actionProviderClass 0x7f03001f
  74. int attr actionViewClass 0x7f030020
  75. int attr activityChooserViewStyle 0x7f030021
  76. int attr alertDialogButtonGroupStyle 0x7f030022
  77. int attr alertDialogCenterButtons 0x7f030023
  78. int attr alertDialogStyle 0x7f030024
  79. int attr alertDialogTheme 0x7f030025
  80. int attr allowStacking 0x7f030026
  81. int attr alpha 0x7f030027
  82. int attr alphabeticModifiers 0x7f030028
  83. int attr altSrc 0x7f030029
  84. int attr animate_relativeTo 0x7f03002a
  85. int attr applyMotionScene 0x7f03002b
  86. int attr arcMode 0x7f03002c
  87. int attr arrowHeadLength 0x7f03002d
  88. int attr arrowShaftLength 0x7f03002e
  89. int attr attributeName 0x7f03002f
  90. int attr autoCompleteTextViewStyle 0x7f030030
  91. int attr autoSizeMaxTextSize 0x7f030031
  92. int attr autoSizeMinTextSize 0x7f030032
  93. int attr autoSizePresetSizes 0x7f030033
  94. int attr autoSizeStepGranularity 0x7f030034
  95. int attr autoSizeTextType 0x7f030035
  96. int attr background 0x7f030036
  97. int attr backgroundSplit 0x7f030037
  98. int attr backgroundStacked 0x7f030038
  99. int attr backgroundTint 0x7f030039
  100. int attr backgroundTintMode 0x7f03003a
  101. int attr banner_default_image 0x7f03003b
  102. int attr banner_layout 0x7f03003c
  103. int attr barLength 0x7f03003d
  104. int attr barrierAllowsGoneWidgets 0x7f03003e
  105. int attr barrierDirection 0x7f03003f
  106. int attr barrierMargin 0x7f030040
  107. int attr behavior_autoHide 0x7f030041
  108. int attr behavior_fitToContents 0x7f030042
  109. int attr behavior_hideable 0x7f030043
  110. int attr behavior_overlapTop 0x7f030044
  111. int attr behavior_peekHeight 0x7f030045
  112. int attr behavior_skipCollapsed 0x7f030046
  113. int attr bl_checkable_drawable 0x7f030047
  114. int attr bl_checkable_stroke_color 0x7f030048
  115. int attr bl_checkable_textColor 0x7f030049
  116. int attr bl_checked_drawable 0x7f03004a
  117. int attr bl_checked_stroke_color 0x7f03004b
  118. int attr bl_checked_textColor 0x7f03004c
  119. int attr bl_corners_bottomLeftRadius 0x7f03004d
  120. int attr bl_corners_bottomRightRadius 0x7f03004e
  121. int attr bl_corners_radius 0x7f03004f
  122. int attr bl_corners_topLeftRadius 0x7f030050
  123. int attr bl_corners_topRightRadius 0x7f030051
  124. int attr bl_enabled_drawable 0x7f030052
  125. int attr bl_enabled_stroke_color 0x7f030053
  126. int attr bl_enabled_textColor 0x7f030054
  127. int attr bl_focused_activated 0x7f030055
  128. int attr bl_focused_drawable 0x7f030056
  129. int attr bl_focused_hovered 0x7f030057
  130. int attr bl_focused_stroke_color 0x7f030058
  131. int attr bl_focused_textColor 0x7f030059
  132. int attr bl_gradient_angle 0x7f03005a
  133. int attr bl_gradient_centerColor 0x7f03005b
  134. int attr bl_gradient_centerX 0x7f03005c
  135. int attr bl_gradient_centerY 0x7f03005d
  136. int attr bl_gradient_endColor 0x7f03005e
  137. int attr bl_gradient_gradientRadius 0x7f03005f
  138. int attr bl_gradient_startColor 0x7f030060
  139. int attr bl_gradient_type 0x7f030061
  140. int attr bl_gradient_useLevel 0x7f030062
  141. int attr bl_padding_bottom 0x7f030063
  142. int attr bl_padding_left 0x7f030064
  143. int attr bl_padding_right 0x7f030065
  144. int attr bl_padding_top 0x7f030066
  145. int attr bl_pressed_color 0x7f030067
  146. int attr bl_pressed_drawable 0x7f030068
  147. int attr bl_pressed_stroke_color 0x7f030069
  148. int attr bl_pressed_textColor 0x7f03006a
  149. int attr bl_ripple_color 0x7f03006b
  150. int attr bl_ripple_enable 0x7f03006c
  151. int attr bl_selected_drawable 0x7f03006d
  152. int attr bl_selected_stroke_color 0x7f03006e
  153. int attr bl_selected_textColor 0x7f03006f
  154. int attr bl_shape 0x7f030070
  155. int attr bl_size_height 0x7f030071
  156. int attr bl_size_width 0x7f030072
  157. int attr bl_solid_color 0x7f030073
  158. int attr bl_stroke_color 0x7f030074
  159. int attr bl_stroke_dashGap 0x7f030075
  160. int attr bl_stroke_dashWidth 0x7f030076
  161. int attr bl_stroke_width 0x7f030077
  162. int attr bl_unCheckable_drawable 0x7f030078
  163. int attr bl_unCheckable_stroke_color 0x7f030079
  164. int attr bl_unCheckable_textColor 0x7f03007a
  165. int attr bl_unChecked_drawable 0x7f03007b
  166. int attr bl_unChecked_stroke_color 0x7f03007c
  167. int attr bl_unChecked_textColor 0x7f03007d
  168. int attr bl_unEnabled_drawable 0x7f03007e
  169. int attr bl_unEnabled_stroke_color 0x7f03007f
  170. int attr bl_unEnabled_textColor 0x7f030080
  171. int attr bl_unFocused_activated 0x7f030081
  172. int attr bl_unFocused_drawable 0x7f030082
  173. int attr bl_unFocused_hovered 0x7f030083
  174. int attr bl_unFocused_stroke_color 0x7f030084
  175. int attr bl_unFocused_textColor 0x7f030085
  176. int attr bl_unPressed_drawable 0x7f030086
  177. int attr bl_unPressed_stroke_color 0x7f030087
  178. int attr bl_unPressed_textColor 0x7f030088
  179. int attr bl_unSelected_drawable 0x7f030089
  180. int attr bl_unSelected_stroke_color 0x7f03008a
  181. int attr bl_unSelected_textColor 0x7f03008b
  182. int attr bl_unpressed_color 0x7f03008c
  183. int attr borderWidth 0x7f03008d
  184. int attr borderlessButtonStyle 0x7f03008e
  185. int attr bottomAppBarStyle 0x7f03008f
  186. int attr bottomNavigationStyle 0x7f030090
  187. int attr bottomSheetDialogTheme 0x7f030091
  188. int attr bottomSheetStyle 0x7f030092
  189. int attr boxBackgroundColor 0x7f030093
  190. int attr boxBackgroundMode 0x7f030094
  191. int attr boxCollapsedPaddingTop 0x7f030095
  192. int attr boxCornerRadiusBottomEnd 0x7f030096
  193. int attr boxCornerRadiusBottomStart 0x7f030097
  194. int attr boxCornerRadiusTopEnd 0x7f030098
  195. int attr boxCornerRadiusTopStart 0x7f030099
  196. int attr boxStrokeColor 0x7f03009a
  197. int attr boxStrokeWidth 0x7f03009b
  198. int attr brightness 0x7f03009c
  199. int attr buttonBarButtonStyle 0x7f03009d
  200. int attr buttonBarNegativeButtonStyle 0x7f03009e
  201. int attr buttonBarNeutralButtonStyle 0x7f03009f
  202. int attr buttonBarPositiveButtonStyle 0x7f0300a0
  203. int attr buttonBarStyle 0x7f0300a1
  204. int attr buttonCompat 0x7f0300a2
  205. int attr buttonGravity 0x7f0300a3
  206. int attr buttonIconDimen 0x7f0300a4
  207. int attr buttonPanelSideLayout 0x7f0300a5
  208. int attr buttonStyle 0x7f0300a6
  209. int attr buttonStyleSmall 0x7f0300a7
  210. int attr buttonTint 0x7f0300a8
  211. int attr buttonTintMode 0x7f0300a9
  212. int attr cardBackgroundColor 0x7f0300aa
  213. int attr cardCornerRadius 0x7f0300ab
  214. int attr cardElevation 0x7f0300ac
  215. int attr cardMaxElevation 0x7f0300ad
  216. int attr cardPreventCornerOverlap 0x7f0300ae
  217. int attr cardUseCompatPadding 0x7f0300af
  218. int attr cardViewStyle 0x7f0300b0
  219. int attr chainUseRtl 0x7f0300b1
  220. int attr checkboxStyle 0x7f0300b2
  221. int attr checkedChip 0x7f0300b3
  222. int attr checkedIcon 0x7f0300b4
  223. int attr checkedIconEnabled 0x7f0300b5
  224. int attr checkedIconVisible 0x7f0300b6
  225. int attr checkedTextViewStyle 0x7f0300b7
  226. int attr chipBackgroundColor 0x7f0300b8
  227. int attr chipCornerRadius 0x7f0300b9
  228. int attr chipEndPadding 0x7f0300ba
  229. int attr chipGroupStyle 0x7f0300bb
  230. int attr chipIcon 0x7f0300bc
  231. int attr chipIconEnabled 0x7f0300bd
  232. int attr chipIconSize 0x7f0300be
  233. int attr chipIconTint 0x7f0300bf
  234. int attr chipIconVisible 0x7f0300c0
  235. int attr chipMinHeight 0x7f0300c1
  236. int attr chipSpacing 0x7f0300c2
  237. int attr chipSpacingHorizontal 0x7f0300c3
  238. int attr chipSpacingVertical 0x7f0300c4
  239. int attr chipStandaloneStyle 0x7f0300c5
  240. int attr chipStartPadding 0x7f0300c6
  241. int attr chipStrokeColor 0x7f0300c7
  242. int attr chipStrokeWidth 0x7f0300c8
  243. int attr chipStyle 0x7f0300c9
  244. int attr circleRadius 0x7f0300ca
  245. int attr clickAction 0x7f0300cb
  246. int attr closeIcon 0x7f0300cc
  247. int attr closeIconEnabled 0x7f0300cd
  248. int attr closeIconEndPadding 0x7f0300ce
  249. int attr closeIconSize 0x7f0300cf
  250. int attr closeIconStartPadding 0x7f0300d0
  251. int attr closeIconTint 0x7f0300d1
  252. int attr closeIconVisible 0x7f0300d2
  253. int attr closeItemLayout 0x7f0300d3
  254. int attr collapseContentDescription 0x7f0300d4
  255. int attr collapseIcon 0x7f0300d5
  256. int attr collapsedTitleGravity 0x7f0300d6
  257. int attr collapsedTitleTextAppearance 0x7f0300d7
  258. int attr color 0x7f0300d8
  259. int attr colorAccent 0x7f0300d9
  260. int attr colorBackgroundFloating 0x7f0300da
  261. int attr colorButtonNormal 0x7f0300db
  262. int attr colorControlActivated 0x7f0300dc
  263. int attr colorControlHighlight 0x7f0300dd
  264. int attr colorControlNormal 0x7f0300de
  265. int attr colorError 0x7f0300df
  266. int attr colorPrimary 0x7f0300e0
  267. int attr colorPrimaryDark 0x7f0300e1
  268. int attr colorSecondary 0x7f0300e2
  269. int attr colorSwitchThumbNormal 0x7f0300e3
  270. int attr commitIcon 0x7f0300e4
  271. int attr constraintSet 0x7f0300e5
  272. int attr constraintSetEnd 0x7f0300e6
  273. int attr constraintSetStart 0x7f0300e7
  274. int attr constraint_referenced_ids 0x7f0300e8
  275. int attr constraints 0x7f0300e9
  276. int attr content 0x7f0300ea
  277. int attr contentDescription 0x7f0300eb
  278. int attr contentInsetEnd 0x7f0300ec
  279. int attr contentInsetEndWithActions 0x7f0300ed
  280. int attr contentInsetLeft 0x7f0300ee
  281. int attr contentInsetRight 0x7f0300ef
  282. int attr contentInsetStart 0x7f0300f0
  283. int attr contentInsetStartWithNavigation 0x7f0300f1
  284. int attr contentPadding 0x7f0300f2
  285. int attr contentPaddingBottom 0x7f0300f3
  286. int attr contentPaddingLeft 0x7f0300f4
  287. int attr contentPaddingRight 0x7f0300f5
  288. int attr contentPaddingTop 0x7f0300f6
  289. int attr contentScrim 0x7f0300f7
  290. int attr contrast 0x7f0300f8
  291. int attr controlBackground 0x7f0300f9
  292. int attr coordinatorLayoutStyle 0x7f0300fa
  293. int attr cornerRadius 0x7f0300fb
  294. int attr counterEnabled 0x7f0300fc
  295. int attr counterMaxLength 0x7f0300fd
  296. int attr counterOverflowTextAppearance 0x7f0300fe
  297. int attr counterTextAppearance 0x7f0300ff
  298. int attr crossfade 0x7f030100
  299. int attr currentState 0x7f030101
  300. int attr curveFit 0x7f030102
  301. int attr customBoolean 0x7f030103
  302. int attr customColorDrawableValue 0x7f030104
  303. int attr customColorValue 0x7f030105
  304. int attr customDimension 0x7f030106
  305. int attr customFloatValue 0x7f030107
  306. int attr customIntegerValue 0x7f030108
  307. int attr customNavigationLayout 0x7f030109
  308. int attr customPixelDimension 0x7f03010a
  309. int attr customStringValue 0x7f03010b
  310. int attr defaultDuration 0x7f03010c
  311. int attr defaultQueryHint 0x7f03010d
  312. int attr defaultState 0x7f03010e
  313. int attr delay_time 0x7f03010f
  314. int attr deltaPolarAngle 0x7f030110
  315. int attr deltaPolarRadius 0x7f030111
  316. int attr dialogCornerRadius 0x7f030112
  317. int attr dialogPreferredPadding 0x7f030113
  318. int attr dialogTheme 0x7f030114
  319. int attr displayOptions 0x7f030115
  320. int attr divider 0x7f030116
  321. int attr dividerHorizontal 0x7f030117
  322. int attr dividerPadding 0x7f030118
  323. int attr dividerVertical 0x7f030119
  324. int attr dragDirection 0x7f03011a
  325. int attr dragScale 0x7f03011b
  326. int attr drawPath 0x7f03011c
  327. int attr drawableBottomCompat 0x7f03011d
  328. int attr drawableEndCompat 0x7f03011e
  329. int attr drawableLeftCompat 0x7f03011f
  330. int attr drawableRightCompat 0x7f030120
  331. int attr drawableSize 0x7f030121
  332. int attr drawableStartCompat 0x7f030122
  333. int attr drawableTint 0x7f030123
  334. int attr drawableTintMode 0x7f030124
  335. int attr drawableTopCompat 0x7f030125
  336. int attr drawerArrowStyle 0x7f030126
  337. int attr dropDownListViewStyle 0x7f030127
  338. int attr dropdownListPreferredItemHeight 0x7f030128
  339. int attr duration 0x7f030129
  340. int attr editTextBackground 0x7f03012a
  341. int attr editTextColor 0x7f03012b
  342. int attr editTextStyle 0x7f03012c
  343. int attr elevation 0x7f03012d
  344. int attr emptyVisibility 0x7f03012e
  345. int attr enforceMaterialTheme 0x7f03012f
  346. int attr enforceTextAppearance 0x7f030130
  347. int attr errorEnabled 0x7f030131
  348. int attr errorTextAppearance 0x7f030132
  349. int attr expandActivityOverflowButtonDrawable 0x7f030133
  350. int attr expanded 0x7f030134
  351. int attr expandedTitleGravity 0x7f030135
  352. int attr expandedTitleMargin 0x7f030136
  353. int attr expandedTitleMarginBottom 0x7f030137
  354. int attr expandedTitleMarginEnd 0x7f030138
  355. int attr expandedTitleMarginStart 0x7f030139
  356. int attr expandedTitleMarginTop 0x7f03013a
  357. int attr expandedTitleTextAppearance 0x7f03013b
  358. int attr fabAlignmentMode 0x7f03013c
  359. int attr fabCradleMargin 0x7f03013d
  360. int attr fabCradleRoundedCornerRadius 0x7f03013e
  361. int attr fabCradleVerticalOffset 0x7f03013f
  362. int attr fabCustomSize 0x7f030140
  363. int attr fabSize 0x7f030141
  364. int attr fastScrollEnabled 0x7f030142
  365. int attr fastScrollHorizontalThumbDrawable 0x7f030143
  366. int attr fastScrollHorizontalTrackDrawable 0x7f030144
  367. int attr fastScrollVerticalThumbDrawable 0x7f030145
  368. int attr fastScrollVerticalTrackDrawable 0x7f030146
  369. int attr firstBaselineToTopHeight 0x7f030147
  370. int attr floatingActionButtonStyle 0x7f030148
  371. int attr font 0x7f030149
  372. int attr fontFamily 0x7f03014a
  373. int attr fontProviderAuthority 0x7f03014b
  374. int attr fontProviderCerts 0x7f03014c
  375. int attr fontProviderFetchStrategy 0x7f03014d
  376. int attr fontProviderFetchTimeout 0x7f03014e
  377. int attr fontProviderPackage 0x7f03014f
  378. int attr fontProviderQuery 0x7f030150
  379. int attr fontStyle 0x7f030151
  380. int attr fontVariationSettings 0x7f030152
  381. int attr fontWeight 0x7f030153
  382. int attr foregroundInsidePadding 0x7f030154
  383. int attr framePosition 0x7f030155
  384. int attr gapBetweenBars 0x7f030156
  385. int attr goIcon 0x7f030157
  386. int attr headerLayout 0x7f030158
  387. int attr height 0x7f030159
  388. int attr helperText 0x7f03015a
  389. int attr helperTextEnabled 0x7f03015b
  390. int attr helperTextTextAppearance 0x7f03015c
  391. int attr hideMotionSpec 0x7f03015d
  392. int attr hideOnContentScroll 0x7f03015e
  393. int attr hideOnScroll 0x7f03015f
  394. int attr hintAnimationEnabled 0x7f030160
  395. int attr hintEnabled 0x7f030161
  396. int attr hintTextAppearance 0x7f030162
  397. int attr homeAsUpIndicator 0x7f030163
  398. int attr homeLayout 0x7f030164
  399. int attr hoveredFocusedTranslationZ 0x7f030165
  400. int attr icon 0x7f030166
  401. int attr iconEndPadding 0x7f030167
  402. int attr iconGravity 0x7f030168
  403. int attr iconPadding 0x7f030169
  404. int attr iconSize 0x7f03016a
  405. int attr iconStartPadding 0x7f03016b
  406. int attr iconTint 0x7f03016c
  407. int attr iconTintMode 0x7f03016d
  408. int attr iconifiedByDefault 0x7f03016e
  409. int attr imageButtonStyle 0x7f03016f
  410. int attr image_scale_type 0x7f030170
  411. int attr indeterminateProgressStyle 0x7f030171
  412. int attr indicator 0x7f030172
  413. int attr indicator_color 0x7f030173
  414. int attr indicator_drawable_selected 0x7f030174
  415. int attr indicator_drawable_unselected 0x7f030175
  416. int attr indicator_height 0x7f030176
  417. int attr indicator_margin 0x7f030177
  418. int attr indicator_width 0x7f030178
  419. int attr initialActivityCount 0x7f030179
  420. int attr insetForeground 0x7f03017a
  421. int attr isLightTheme 0x7f03017b
  422. int attr is_auto_play 0x7f03017c
  423. int attr itemBackground 0x7f03017d
  424. int attr itemHorizontalPadding 0x7f03017e
  425. int attr itemHorizontalTranslationEnabled 0x7f03017f
  426. int attr itemIconPadding 0x7f030180
  427. int attr itemIconSize 0x7f030181
  428. int attr itemIconTint 0x7f030182
  429. int attr itemPadding 0x7f030183
  430. int attr itemSpacing 0x7f030184
  431. int attr itemTextAppearance 0x7f030185
  432. int attr itemTextAppearanceActive 0x7f030186
  433. int attr itemTextAppearanceInactive 0x7f030187
  434. int attr itemTextColor 0x7f030188
  435. int attr keyPositionType 0x7f030189
  436. int attr keylines 0x7f03018a
  437. int attr labelVisibilityMode 0x7f03018b
  438. int attr lastBaselineToBottomHeight 0x7f03018c
  439. int attr layout 0x7f03018d
  440. int attr layoutDescription 0x7f03018e
  441. int attr layoutManager 0x7f03018f
  442. int attr layout_anchor 0x7f030190
  443. int attr layout_anchorGravity 0x7f030191
  444. int attr layout_behavior 0x7f030192
  445. int attr layout_collapseMode 0x7f030193
  446. int attr layout_collapseParallaxMultiplier 0x7f030194
  447. int attr layout_constrainedHeight 0x7f030195
  448. int attr layout_constrainedWidth 0x7f030196
  449. int attr layout_constraintBaseline_creator 0x7f030197
  450. int attr layout_constraintBaseline_toBaselineOf 0x7f030198
  451. int attr layout_constraintBottom_creator 0x7f030199
  452. int attr layout_constraintBottom_toBottomOf 0x7f03019a
  453. int attr layout_constraintBottom_toTopOf 0x7f03019b
  454. int attr layout_constraintCircle 0x7f03019c
  455. int attr layout_constraintCircleAngle 0x7f03019d
  456. int attr layout_constraintCircleRadius 0x7f03019e
  457. int attr layout_constraintDimensionRatio 0x7f03019f
  458. int attr layout_constraintEnd_toEndOf 0x7f0301a0
  459. int attr layout_constraintEnd_toStartOf 0x7f0301a1
  460. int attr layout_constraintGuide_begin 0x7f0301a2
  461. int attr layout_constraintGuide_end 0x7f0301a3
  462. int attr layout_constraintGuide_percent 0x7f0301a4
  463. int attr layout_constraintHeight_default 0x7f0301a5
  464. int attr layout_constraintHeight_max 0x7f0301a6
  465. int attr layout_constraintHeight_min 0x7f0301a7
  466. int attr layout_constraintHeight_percent 0x7f0301a8
  467. int attr layout_constraintHorizontal_bias 0x7f0301a9
  468. int attr layout_constraintHorizontal_chainStyle 0x7f0301aa
  469. int attr layout_constraintHorizontal_weight 0x7f0301ab
  470. int attr layout_constraintLeft_creator 0x7f0301ac
  471. int attr layout_constraintLeft_toLeftOf 0x7f0301ad
  472. int attr layout_constraintLeft_toRightOf 0x7f0301ae
  473. int attr layout_constraintRight_creator 0x7f0301af
  474. int attr layout_constraintRight_toLeftOf 0x7f0301b0
  475. int attr layout_constraintRight_toRightOf 0x7f0301b1
  476. int attr layout_constraintStart_toEndOf 0x7f0301b2
  477. int attr layout_constraintStart_toStartOf 0x7f0301b3
  478. int attr layout_constraintTop_creator 0x7f0301b4
  479. int attr layout_constraintTop_toBottomOf 0x7f0301b5
  480. int attr layout_constraintTop_toTopOf 0x7f0301b6
  481. int attr layout_constraintVertical_bias 0x7f0301b7
  482. int attr layout_constraintVertical_chainStyle 0x7f0301b8
  483. int attr layout_constraintVertical_weight 0x7f0301b9
  484. int attr layout_constraintWidth_default 0x7f0301ba
  485. int attr layout_constraintWidth_max 0x7f0301bb
  486. int attr layout_constraintWidth_min 0x7f0301bc
  487. int attr layout_constraintWidth_percent 0x7f0301bd
  488. int attr layout_dodgeInsetEdges 0x7f0301be
  489. int attr layout_editor_absoluteX 0x7f0301bf
  490. int attr layout_editor_absoluteY 0x7f0301c0
  491. int attr layout_goneMarginBottom 0x7f0301c1
  492. int attr layout_goneMarginEnd 0x7f0301c2
  493. int attr layout_goneMarginLeft 0x7f0301c3
  494. int attr layout_goneMarginRight 0x7f0301c4
  495. int attr layout_goneMarginStart 0x7f0301c5
  496. int attr layout_goneMarginTop 0x7f0301c6
  497. int attr layout_height 0x7f0301c7
  498. int attr layout_insetEdge 0x7f0301c8
  499. int attr layout_keyline 0x7f0301c9
  500. int attr layout_marginBottom 0x7f0301ca
  501. int attr layout_marginEnd 0x7f0301cb
  502. int attr layout_marginLeft 0x7f0301cc
  503. int attr layout_marginRight 0x7f0301cd
  504. int attr layout_marginStart 0x7f0301ce
  505. int attr layout_marginTop 0x7f0301cf
  506. int attr layout_optimizationLevel 0x7f0301d0
  507. int attr layout_scrollFlags 0x7f0301d1
  508. int attr layout_scrollInterpolator 0x7f0301d2
  509. int attr layout_width 0x7f0301d3
  510. int attr liftOnScroll 0x7f0301d4
  511. int attr lineHeight 0x7f0301d5
  512. int attr lineSpacing 0x7f0301d6
  513. int attr listChoiceBackgroundIndicator 0x7f0301d7
  514. int attr listChoiceIndicatorMultipleAnimated 0x7f0301d8
  515. int attr listChoiceIndicatorSingleAnimated 0x7f0301d9
  516. int attr listDividerAlertDialog 0x7f0301da
  517. int attr listItemLayout 0x7f0301db
  518. int attr listLayout 0x7f0301dc
  519. int attr listMenuViewStyle 0x7f0301dd
  520. int attr listPopupWindowStyle 0x7f0301de
  521. int attr listPreferredItemHeight 0x7f0301df
  522. int attr listPreferredItemHeightLarge 0x7f0301e0
  523. int attr listPreferredItemHeightSmall 0x7f0301e1
  524. int attr listPreferredItemPaddingEnd 0x7f0301e2
  525. int attr listPreferredItemPaddingLeft 0x7f0301e3
  526. int attr listPreferredItemPaddingRight 0x7f0301e4
  527. int attr listPreferredItemPaddingStart 0x7f0301e5
  528. int attr logo 0x7f0301e6
  529. int attr logoDescription 0x7f0301e7
  530. int attr materialButtonStyle 0x7f0301e8
  531. int attr materialCardViewStyle 0x7f0301e9
  532. int attr maxAcceleration 0x7f0301ea
  533. int attr maxActionInlineWidth 0x7f0301eb
  534. int attr maxButtonHeight 0x7f0301ec
  535. int attr maxHeight 0x7f0301ed
  536. int attr maxImageSize 0x7f0301ee
  537. int attr maxVelocity 0x7f0301ef
  538. int attr maxWidth 0x7f0301f0
  539. int attr measureWithLargestChild 0x7f0301f1
  540. int attr menu 0x7f0301f2
  541. int attr minHeight 0x7f0301f3
  542. int attr minWidth 0x7f0301f4
  543. int attr mock_diagonalsColor 0x7f0301f5
  544. int attr mock_label 0x7f0301f6
  545. int attr mock_labelBackgroundColor 0x7f0301f7
  546. int attr mock_labelColor 0x7f0301f8
  547. int attr mock_showDiagonals 0x7f0301f9
  548. int attr mock_showLabel 0x7f0301fa
  549. int attr motionDebug 0x7f0301fb
  550. int attr motionInterpolator 0x7f0301fc
  551. int attr motionPathRotate 0x7f0301fd
  552. int attr motionProgress 0x7f0301fe
  553. int attr motionTarget 0x7f0301ff
  554. int attr motion_postLayoutCollision 0x7f030200
  555. int attr motion_triggerOnCollision 0x7f030201
  556. int attr moveWhenScrollAtTop 0x7f030202
  557. int attr multiChoiceItemLayout 0x7f030203
  558. int attr mv_backgroundColor 0x7f030204
  559. int attr mv_cornerRadius 0x7f030205
  560. int attr mv_isRadiusHalfHeight 0x7f030206
  561. int attr mv_isWidthHeightEqual 0x7f030207
  562. int attr mv_strokeColor 0x7f030208
  563. int attr mv_strokeWidth 0x7f030209
  564. int attr navigationContentDescription 0x7f03020a
  565. int attr navigationIcon 0x7f03020b
  566. int attr navigationMode 0x7f03020c
  567. int attr navigationViewStyle 0x7f03020d
  568. int attr numericModifiers 0x7f03020e
  569. int attr onCross 0x7f03020f
  570. int attr onHide 0x7f030210
  571. int attr onNegativeCross 0x7f030211
  572. int attr onPositiveCross 0x7f030212
  573. int attr onShow 0x7f030213
  574. int attr overlapAnchor 0x7f030214
  575. int attr overlay 0x7f030215
  576. int attr paddingBottomNoButtons 0x7f030216
  577. int attr paddingEnd 0x7f030217
  578. int attr paddingStart 0x7f030218
  579. int attr paddingTopNoTitle 0x7f030219
  580. int attr panelBackground 0x7f03021a
  581. int attr panelMenuListTheme 0x7f03021b
  582. int attr panelMenuListWidth 0x7f03021c
  583. int attr passwordToggleContentDescription 0x7f03021d
  584. int attr passwordToggleDrawable 0x7f03021e
  585. int attr passwordToggleEnabled 0x7f03021f
  586. int attr passwordToggleTint 0x7f030220
  587. int attr passwordToggleTintMode 0x7f030221
  588. int attr pathMotionArc 0x7f030222
  589. int attr path_percent 0x7f030223
  590. int attr percentHeight 0x7f030224
  591. int attr percentWidth 0x7f030225
  592. int attr percentX 0x7f030226
  593. int attr percentY 0x7f030227
  594. int attr perpendicularPath_percent 0x7f030228
  595. int attr pickerview_dividerColor 0x7f030229
  596. int attr pickerview_gravity 0x7f03022a
  597. int attr pickerview_textColorCenter 0x7f03022b
  598. int attr pickerview_textColorOut 0x7f03022c
  599. int attr pickerview_textSize 0x7f03022d
  600. int attr pivotAnchor 0x7f03022e
  601. int attr pivotX 0x7f03022f
  602. int attr pivotY 0x7f030230
  603. int attr popupMenuStyle 0x7f030231
  604. int attr popupTheme 0x7f030232
  605. int attr popupWindowStyle 0x7f030233
  606. int attr preserveIconSpacing 0x7f030234
  607. int attr pressedTranslationZ 0x7f030235
  608. int attr progress 0x7f030236
  609. int attr progressBarPadding 0x7f030237
  610. int attr progressBarStyle 0x7f030238
  611. int attr queryBackground 0x7f030239
  612. int attr queryHint 0x7f03023a
  613. int attr radioButtonStyle 0x7f03023b
  614. int attr ratingBarStyle 0x7f03023c
  615. int attr ratingBarStyleIndicator 0x7f03023d
  616. int attr ratingBarStyleSmall 0x7f03023e
  617. int attr region_heightLessThan 0x7f03023f
  618. int attr region_heightMoreThan 0x7f030240
  619. int attr region_widthLessThan 0x7f030241
  620. int attr region_widthMoreThan 0x7f030242
  621. int attr reverseLayout 0x7f030243
  622. int attr rippleColor 0x7f030244
  623. int attr round 0x7f030245
  624. int attr roundPercent 0x7f030246
  625. int attr saturation 0x7f030247
  626. int attr scrimAnimationDuration 0x7f030248
  627. int attr scrimBackground 0x7f030249
  628. int attr scrimVisibleHeightTrigger 0x7f03024a
  629. int attr scroll_time 0x7f03024b
  630. int attr searchHintIcon 0x7f03024c
  631. int attr searchIcon 0x7f03024d
  632. int attr searchViewStyle 0x7f03024e
  633. int attr seekBarStyle 0x7f03024f
  634. int attr selectableItemBackground 0x7f030250
  635. int attr selectableItemBackgroundBorderless 0x7f030251
  636. int attr showAsAction 0x7f030252
  637. int attr showDividers 0x7f030253
  638. int attr showMotionSpec 0x7f030254
  639. int attr showPaths 0x7f030255
  640. int attr showText 0x7f030256
  641. int attr showTitle 0x7f030257
  642. int attr singleChoiceItemLayout 0x7f030258
  643. int attr singleLine 0x7f030259
  644. int attr singleSelection 0x7f03025a
  645. int attr sizePercent 0x7f03025b
  646. int attr snackbarButtonStyle 0x7f03025c
  647. int attr snackbarStyle 0x7f03025d
  648. int attr spanCount 0x7f03025e
  649. int attr spinBars 0x7f03025f
  650. int attr spinnerDropDownItemStyle 0x7f030260
  651. int attr spinnerStyle 0x7f030261
  652. int attr splitTrack 0x7f030262
  653. int attr srcCompat 0x7f030263
  654. int attr stackFromEnd 0x7f030264
  655. int attr staggered 0x7f030265
  656. int attr state_above_anchor 0x7f030266
  657. int attr state_collapsed 0x7f030267
  658. int attr state_collapsible 0x7f030268
  659. int attr state_liftable 0x7f030269
  660. int attr state_lifted 0x7f03026a
  661. int attr statusBarBackground 0x7f03026b
  662. int attr statusBarScrim 0x7f03026c
  663. int attr strokeColor 0x7f03026d
  664. int attr strokeWidth 0x7f03026e
  665. int attr subMenuArrow 0x7f03026f
  666. int attr submitBackground 0x7f030270
  667. int attr subtitle 0x7f030271
  668. int attr subtitleTextAppearance 0x7f030272
  669. int attr subtitleTextColor 0x7f030273
  670. int attr subtitleTextStyle 0x7f030274
  671. int attr suggestionRowLayout 0x7f030275
  672. int attr switchMinWidth 0x7f030276
  673. int attr switchPadding 0x7f030277
  674. int attr switchStyle 0x7f030278
  675. int attr switchTextAppearance 0x7f030279
  676. int attr tabBackground 0x7f03027a
  677. int attr tabContentStart 0x7f03027b
  678. int attr tabGravity 0x7f03027c
  679. int attr tabIconTint 0x7f03027d
  680. int attr tabIconTintMode 0x7f03027e
  681. int attr tabIndicator 0x7f03027f
  682. int attr tabIndicatorAnimationDuration 0x7f030280
  683. int attr tabIndicatorColor 0x7f030281
  684. int attr tabIndicatorFullWidth 0x7f030282
  685. int attr tabIndicatorGravity 0x7f030283
  686. int attr tabIndicatorHeight 0x7f030284
  687. int attr tabInlineLabel 0x7f030285
  688. int attr tabMaxWidth 0x7f030286
  689. int attr tabMinWidth 0x7f030287
  690. int attr tabMode 0x7f030288
  691. int attr tabPadding 0x7f030289
  692. int attr tabPaddingBottom 0x7f03028a
  693. int attr tabPaddingEnd 0x7f03028b
  694. int attr tabPaddingStart 0x7f03028c
  695. int attr tabPaddingTop 0x7f03028d
  696. int attr tabRippleColor 0x7f03028e
  697. int attr tabSelectedTextColor 0x7f03028f
  698. int attr tabStyle 0x7f030290
  699. int attr tabTextAppearance 0x7f030291
  700. int attr tabTextColor 0x7f030292
  701. int attr tabUnboundedRipple 0x7f030293
  702. int attr targetId 0x7f030294
  703. int attr textAllCaps 0x7f030295
  704. int attr textAppearanceBody1 0x7f030296
  705. int attr textAppearanceBody2 0x7f030297
  706. int attr textAppearanceButton 0x7f030298
  707. int attr textAppearanceCaption 0x7f030299
  708. int attr textAppearanceHeadline1 0x7f03029a
  709. int attr textAppearanceHeadline2 0x7f03029b
  710. int attr textAppearanceHeadline3 0x7f03029c
  711. int attr textAppearanceHeadline4 0x7f03029d
  712. int attr textAppearanceHeadline5 0x7f03029e
  713. int attr textAppearanceHeadline6 0x7f03029f
  714. int attr textAppearanceLargePopupMenu 0x7f0302a0
  715. int attr textAppearanceListItem 0x7f0302a1
  716. int attr textAppearanceListItemSecondary 0x7f0302a2
  717. int attr textAppearanceListItemSmall 0x7f0302a3
  718. int attr textAppearanceOverline 0x7f0302a4
  719. int attr textAppearancePopupMenuHeader 0x7f0302a5
  720. int attr textAppearanceSearchResultSubtitle 0x7f0302a6
  721. int attr textAppearanceSearchResultTitle 0x7f0302a7
  722. int attr textAppearanceSmallPopupMenu 0x7f0302a8
  723. int attr textAppearanceSubtitle1 0x7f0302a9
  724. int attr textAppearanceSubtitle2 0x7f0302aa
  725. int attr textColorAlertDialogListItem 0x7f0302ab
  726. int attr textColorSearchUrl 0x7f0302ac
  727. int attr textEndPadding 0x7f0302ad
  728. int attr textInputStyle 0x7f0302ae
  729. int attr textLocale 0x7f0302af
  730. int attr textStartPadding 0x7f0302b0
  731. int attr theme 0x7f0302b1
  732. int attr thickness 0x7f0302b2
  733. int attr thumbTextPadding 0x7f0302b3
  734. int attr thumbTint 0x7f0302b4
  735. int attr thumbTintMode 0x7f0302b5
  736. int attr tickMark 0x7f0302b6
  737. int attr tickMarkTint 0x7f0302b7
  738. int attr tickMarkTintMode 0x7f0302b8
  739. int attr tint 0x7f0302b9
  740. int attr tintMode 0x7f0302ba
  741. int attr title 0x7f0302bb
  742. int attr titleEnabled 0x7f0302bc
  743. int attr titleMargin 0x7f0302bd
  744. int attr titleMarginBottom 0x7f0302be
  745. int attr titleMarginEnd 0x7f0302bf
  746. int attr titleMarginStart 0x7f0302c0
  747. int attr titleMarginTop 0x7f0302c1
  748. int attr titleMargins 0x7f0302c2
  749. int attr titleTextAppearance 0x7f0302c3
  750. int attr titleTextColor 0x7f0302c4
  751. int attr titleTextStyle 0x7f0302c5
  752. int attr title_background 0x7f0302c6
  753. int attr title_height 0x7f0302c7
  754. int attr title_textcolor 0x7f0302c8
  755. int attr title_textsize 0x7f0302c9
  756. int attr tl_bar_color 0x7f0302ca
  757. int attr tl_bar_stroke_color 0x7f0302cb
  758. int attr tl_bar_stroke_width 0x7f0302cc
  759. int attr tl_divider_color 0x7f0302cd
  760. int attr tl_divider_padding 0x7f0302ce
  761. int attr tl_divider_width 0x7f0302cf
  762. int attr tl_iconGravity 0x7f0302d0
  763. int attr tl_iconHeight 0x7f0302d1
  764. int attr tl_iconMargin 0x7f0302d2
  765. int attr tl_iconVisible 0x7f0302d3
  766. int attr tl_iconWidth 0x7f0302d4
  767. int attr tl_indicator_anim_duration 0x7f0302d5
  768. int attr tl_indicator_anim_enable 0x7f0302d6
  769. int attr tl_indicator_bounce_enable 0x7f0302d7
  770. int attr tl_indicator_color 0x7f0302d8
  771. int attr tl_indicator_corner_radius 0x7f0302d9
  772. int attr tl_indicator_gravity 0x7f0302da
  773. int attr tl_indicator_height 0x7f0302db
  774. int attr tl_indicator_margin_bottom 0x7f0302dc
  775. int attr tl_indicator_margin_left 0x7f0302dd
  776. int attr tl_indicator_margin_right 0x7f0302de
  777. int attr tl_indicator_margin_top 0x7f0302df
  778. int attr tl_indicator_style 0x7f0302e0
  779. int attr tl_indicator_width 0x7f0302e1
  780. int attr tl_indicator_width_equal_title 0x7f0302e2
  781. int attr tl_tab_padding 0x7f0302e3
  782. int attr tl_tab_space_equal 0x7f0302e4
  783. int attr tl_tab_width 0x7f0302e5
  784. int attr tl_textAllCaps 0x7f0302e6
  785. int attr tl_textBold 0x7f0302e7
  786. int attr tl_textSelectColor 0x7f0302e8
  787. int attr tl_textUnselectColor 0x7f0302e9
  788. int attr tl_textsize 0x7f0302ea
  789. int attr tl_underline_color 0x7f0302eb
  790. int attr tl_underline_gravity 0x7f0302ec
  791. int attr tl_underline_height 0x7f0302ed
  792. int attr toolbarId 0x7f0302ee
  793. int attr toolbarNavigationButtonStyle 0x7f0302ef
  794. int attr toolbarStyle 0x7f0302f0
  795. int attr tooltipForegroundColor 0x7f0302f1
  796. int attr tooltipFrameBackground 0x7f0302f2
  797. int attr tooltipText 0x7f0302f3
  798. int attr touchAnchorId 0x7f0302f4
  799. int attr touchAnchorSide 0x7f0302f5
  800. int attr track 0x7f0302f6
  801. int attr trackTint 0x7f0302f7
  802. int attr trackTintMode 0x7f0302f8
  803. int attr transitionEasing 0x7f0302f9
  804. int attr transitionPathRotate 0x7f0302fa
  805. int attr triggerId 0x7f0302fb
  806. int attr triggerSlack 0x7f0302fc
  807. int attr ttcIndex 0x7f0302fd
  808. int attr useCompatPadding 0x7f0302fe
  809. int attr viewInflaterClass 0x7f0302ff
  810. int attr visibility 0x7f030300
  811. int attr voiceIcon 0x7f030301
  812. int attr warmth 0x7f030302
  813. int attr waveOffset 0x7f030303
  814. int attr wavePeriod 0x7f030304
  815. int attr waveShape 0x7f030305
  816. int attr waveVariesBy 0x7f030306
  817. int attr windowActionBar 0x7f030307
  818. int attr windowActionBarOverlay 0x7f030308
  819. int attr windowActionModeOverlay 0x7f030309
  820. int attr windowFixedHeightMajor 0x7f03030a
  821. int attr windowFixedHeightMinor 0x7f03030b
  822. int attr windowFixedWidthMajor 0x7f03030c
  823. int attr windowFixedWidthMinor 0x7f03030d
  824. int attr windowMinWidthMajor 0x7f03030e
  825. int attr windowMinWidthMinor 0x7f03030f
  826. int attr windowNoTitle 0x7f030310
  827. int bool abc_action_bar_embed_tabs 0x7f040000
  828. int bool abc_allow_stacked_button_bar 0x7f040001
  829. int bool abc_config_actionMenuItemAllCaps 0x7f040002
  830. int bool mtrl_btn_textappearance_all_caps 0x7f040003
  831. int bool pickerview_customTextSize 0x7f040004
  832. int color abc_background_cache_hint_selector_material_dark 0x7f050000
  833. int color abc_background_cache_hint_selector_material_light 0x7f050001
  834. int color abc_btn_colored_borderless_text_material 0x7f050002
  835. int color abc_btn_colored_text_material 0x7f050003
  836. int color abc_color_highlight_material 0x7f050004
  837. int color abc_hint_foreground_material_dark 0x7f050005
  838. int color abc_hint_foreground_material_light 0x7f050006
  839. int color abc_input_method_navigation_guard 0x7f050007
  840. int color abc_primary_text_disable_only_material_dark 0x7f050008
  841. int color abc_primary_text_disable_only_material_light 0x7f050009
  842. int color abc_primary_text_material_dark 0x7f05000a
  843. int color abc_primary_text_material_light 0x7f05000b
  844. int color abc_search_url_text 0x7f05000c
  845. int color abc_search_url_text_normal 0x7f05000d
  846. int color abc_search_url_text_pressed 0x7f05000e
  847. int color abc_search_url_text_selected 0x7f05000f
  848. int color abc_secondary_text_material_dark 0x7f050010
  849. int color abc_secondary_text_material_light 0x7f050011
  850. int color abc_tint_btn_checkable 0x7f050012
  851. int color abc_tint_default 0x7f050013
  852. int color abc_tint_edittext 0x7f050014
  853. int color abc_tint_seek_thumb 0x7f050015
  854. int color abc_tint_spinner 0x7f050016
  855. int color abc_tint_switch_track 0x7f050017
  856. int color accent_material_dark 0x7f050018
  857. int color accent_material_light 0x7f050019
  858. int color background_floating_material_dark 0x7f05001a
  859. int color background_floating_material_light 0x7f05001b
  860. int color background_material_dark 0x7f05001c
  861. int color background_material_light 0x7f05001d
  862. int color bgColor_overlay 0x7f05001e
  863. int color black_text 0x7f05001f
  864. int color blue 0x7f050020
  865. int color blue_light 0x7f050021
  866. int color bright_foreground_disabled_material_dark 0x7f050022
  867. int color bright_foreground_disabled_material_light 0x7f050023
  868. int color bright_foreground_inverse_material_dark 0x7f050024
  869. int color bright_foreground_inverse_material_light 0x7f050025
  870. int color bright_foreground_material_dark 0x7f050026
  871. int color bright_foreground_material_light 0x7f050027
  872. int color button_material_dark 0x7f050028
  873. int color button_material_light 0x7f050029
  874. int color cardview_dark_background 0x7f05002a
  875. int color cardview_light_background 0x7f05002b
  876. int color cardview_shadow_end_color 0x7f05002c
  877. int color cardview_shadow_start_color 0x7f05002d
  878. int color colorAccent 0x7f05002e
  879. int color colorPrimary 0x7f05002f
  880. int color colorPrimaryDark 0x7f050030
  881. int color design_bottom_navigation_shadow_color 0x7f050031
  882. int color design_default_color_primary 0x7f050032
  883. int color design_default_color_primary_dark 0x7f050033
  884. int color design_error 0x7f050034
  885. int color design_fab_shadow_end_color 0x7f050035
  886. int color design_fab_shadow_mid_color 0x7f050036
  887. int color design_fab_shadow_start_color 0x7f050037
  888. int color design_fab_stroke_end_inner_color 0x7f050038
  889. int color design_fab_stroke_end_outer_color 0x7f050039
  890. int color design_fab_stroke_top_inner_color 0x7f05003a
  891. int color design_fab_stroke_top_outer_color 0x7f05003b
  892. int color design_snackbar_background_color 0x7f05003c
  893. int color design_tint_password_toggle 0x7f05003d
  894. int color dim_foreground_disabled_material_dark 0x7f05003e
  895. int color dim_foreground_disabled_material_light 0x7f05003f
  896. int color dim_foreground_material_dark 0x7f050040
  897. int color dim_foreground_material_light 0x7f050041
  898. int color error_color_material_dark 0x7f050042
  899. int color error_color_material_light 0x7f050043
  900. int color foreground_material_dark 0x7f050044
  901. int color foreground_material_light 0x7f050045
  902. int color gray_bg 0x7f050046
  903. int color gray_line 0x7f050047
  904. int color gray_text 0x7f050048
  905. int color highlighted_text_material_dark 0x7f050049
  906. int color highlighted_text_material_light 0x7f05004a
  907. int color main_color 0x7f05004b
  908. int color material_blue_grey_800 0x7f05004c
  909. int color material_blue_grey_900 0x7f05004d
  910. int color material_blue_grey_950 0x7f05004e
  911. int color material_deep_teal_200 0x7f05004f
  912. int color material_deep_teal_500 0x7f050050
  913. int color material_grey_100 0x7f050051
  914. int color material_grey_300 0x7f050052
  915. int color material_grey_50 0x7f050053
  916. int color material_grey_600 0x7f050054
  917. int color material_grey_800 0x7f050055
  918. int color material_grey_850 0x7f050056
  919. int color material_grey_900 0x7f050057
  920. int color mtrl_bottom_nav_colored_item_tint 0x7f050058
  921. int color mtrl_bottom_nav_item_tint 0x7f050059
  922. int color mtrl_btn_bg_color_disabled 0x7f05005a
  923. int color mtrl_btn_bg_color_selector 0x7f05005b
  924. int color mtrl_btn_ripple_color 0x7f05005c
  925. int color mtrl_btn_stroke_color_selector 0x7f05005d
  926. int color mtrl_btn_text_btn_ripple_color 0x7f05005e
  927. int color mtrl_btn_text_color_disabled 0x7f05005f
  928. int color mtrl_btn_text_color_selector 0x7f050060
  929. int color mtrl_btn_transparent_bg_color 0x7f050061
  930. int color mtrl_chip_background_color 0x7f050062
  931. int color mtrl_chip_close_icon_tint 0x7f050063
  932. int color mtrl_chip_ripple_color 0x7f050064
  933. int color mtrl_chip_text_color 0x7f050065
  934. int color mtrl_fab_ripple_color 0x7f050066
  935. int color mtrl_scrim_color 0x7f050067
  936. int color mtrl_tabs_colored_ripple_color 0x7f050068
  937. int color mtrl_tabs_icon_color_selector 0x7f050069
  938. int color mtrl_tabs_icon_color_selector_colored 0x7f05006a
  939. int color mtrl_tabs_legacy_text_color_selector 0x7f05006b
  940. int color mtrl_tabs_ripple_color 0x7f05006c
  941. int color mtrl_text_btn_text_color_selector 0x7f05006d
  942. int color mtrl_textinput_default_box_stroke_color 0x7f05006e
  943. int color mtrl_textinput_disabled_color 0x7f05006f
  944. int color mtrl_textinput_filled_box_default_background_color 0x7f050070
  945. int color mtrl_textinput_hovered_box_stroke_color 0x7f050071
  946. int color notification_action_color_filter 0x7f050072
  947. int color notification_icon_bg_color 0x7f050073
  948. int color notification_material_background_media_default_color 0x7f050074
  949. int color pickerview_bg_topbar 0x7f050075
  950. int color pickerview_timebtn_nor 0x7f050076
  951. int color pickerview_timebtn_pre 0x7f050077
  952. int color pickerview_topbar_title 0x7f050078
  953. int color pickerview_wheelview_textcolor_center 0x7f050079
  954. int color pickerview_wheelview_textcolor_divider 0x7f05007a
  955. int color pickerview_wheelview_textcolor_out 0x7f05007b
  956. int color primary_dark_material_dark 0x7f05007c
  957. int color primary_dark_material_light 0x7f05007d
  958. int color primary_material_dark 0x7f05007e
  959. int color primary_material_light 0x7f05007f
  960. int color primary_text_default_material_dark 0x7f050080
  961. int color primary_text_default_material_light 0x7f050081
  962. int color primary_text_disabled_material_dark 0x7f050082
  963. int color primary_text_disabled_material_light 0x7f050083
  964. int color ripple_material_dark 0x7f050084
  965. int color ripple_material_light 0x7f050085
  966. int color secondary_text_default_material_dark 0x7f050086
  967. int color secondary_text_default_material_light 0x7f050087
  968. int color secondary_text_disabled_material_dark 0x7f050088
  969. int color secondary_text_disabled_material_light 0x7f050089
  970. int color switch_thumb_disabled_material_dark 0x7f05008a
  971. int color switch_thumb_disabled_material_light 0x7f05008b
  972. int color switch_thumb_material_dark 0x7f05008c
  973. int color switch_thumb_material_light 0x7f05008d
  974. int color switch_thumb_normal_material_dark 0x7f05008e
  975. int color switch_thumb_normal_material_light 0x7f05008f
  976. int color tabbar_back_color 0x7f050090
  977. int color tooltip_background_dark 0x7f050091
  978. int color tooltip_background_light 0x7f050092
  979. int color white 0x7f050093
  980. int dimen abc_action_bar_content_inset_material 0x7f060000
  981. int dimen abc_action_bar_content_inset_with_nav 0x7f060001
  982. int dimen abc_action_bar_default_height_material 0x7f060002
  983. int dimen abc_action_bar_default_padding_end_material 0x7f060003
  984. int dimen abc_action_bar_default_padding_start_material 0x7f060004
  985. int dimen abc_action_bar_elevation_material 0x7f060005
  986. int dimen abc_action_bar_icon_vertical_padding_material 0x7f060006
  987. int dimen abc_action_bar_overflow_padding_end_material 0x7f060007
  988. int dimen abc_action_bar_overflow_padding_start_material 0x7f060008
  989. int dimen abc_action_bar_stacked_max_height 0x7f060009
  990. int dimen abc_action_bar_stacked_tab_max_width 0x7f06000a
  991. int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06000b
  992. int dimen abc_action_bar_subtitle_top_margin_material 0x7f06000c
  993. int dimen abc_action_button_min_height_material 0x7f06000d
  994. int dimen abc_action_button_min_width_material 0x7f06000e
  995. int dimen abc_action_button_min_width_overflow_material 0x7f06000f
  996. int dimen abc_alert_dialog_button_bar_height 0x7f060010
  997. int dimen abc_alert_dialog_button_dimen 0x7f060011
  998. int dimen abc_button_inset_horizontal_material 0x7f060012
  999. int dimen abc_button_inset_vertical_material 0x7f060013
  1000. int dimen abc_button_padding_horizontal_material 0x7f060014
  1001. int dimen abc_button_padding_vertical_material 0x7f060015
  1002. int dimen abc_cascading_menus_min_smallest_width 0x7f060016
  1003. int dimen abc_config_prefDialogWidth 0x7f060017
  1004. int dimen abc_control_corner_material 0x7f060018
  1005. int dimen abc_control_inset_material 0x7f060019
  1006. int dimen abc_control_padding_material 0x7f06001a
  1007. int dimen abc_dialog_corner_radius_material 0x7f06001b
  1008. int dimen abc_dialog_fixed_height_major 0x7f06001c
  1009. int dimen abc_dialog_fixed_height_minor 0x7f06001d
  1010. int dimen abc_dialog_fixed_width_major 0x7f06001e
  1011. int dimen abc_dialog_fixed_width_minor 0x7f06001f
  1012. int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060020
  1013. int dimen abc_dialog_list_padding_top_no_title 0x7f060021
  1014. int dimen abc_dialog_min_width_major 0x7f060022
  1015. int dimen abc_dialog_min_width_minor 0x7f060023
  1016. int dimen abc_dialog_padding_material 0x7f060024
  1017. int dimen abc_dialog_padding_top_material 0x7f060025
  1018. int dimen abc_dialog_title_divider_material 0x7f060026
  1019. int dimen abc_disabled_alpha_material_dark 0x7f060027
  1020. int dimen abc_disabled_alpha_material_light 0x7f060028
  1021. int dimen abc_dropdownitem_icon_width 0x7f060029
  1022. int dimen abc_dropdownitem_text_padding_left 0x7f06002a
  1023. int dimen abc_dropdownitem_text_padding_right 0x7f06002b
  1024. int dimen abc_edit_text_inset_bottom_material 0x7f06002c
  1025. int dimen abc_edit_text_inset_horizontal_material 0x7f06002d
  1026. int dimen abc_edit_text_inset_top_material 0x7f06002e
  1027. int dimen abc_floating_window_z 0x7f06002f
  1028. int dimen abc_list_item_height_large_material 0x7f060030
  1029. int dimen abc_list_item_height_material 0x7f060031
  1030. int dimen abc_list_item_height_small_material 0x7f060032
  1031. int dimen abc_list_item_padding_horizontal_material 0x7f060033
  1032. int dimen abc_panel_menu_list_width 0x7f060034
  1033. int dimen abc_progress_bar_height_material 0x7f060035
  1034. int dimen abc_search_view_preferred_height 0x7f060036
  1035. int dimen abc_search_view_preferred_width 0x7f060037
  1036. int dimen abc_seekbar_track_background_height_material 0x7f060038
  1037. int dimen abc_seekbar_track_progress_height_material 0x7f060039
  1038. int dimen abc_select_dialog_padding_start_material 0x7f06003a
  1039. int dimen abc_switch_padding 0x7f06003b
  1040. int dimen abc_text_size_body_1_material 0x7f06003c
  1041. int dimen abc_text_size_body_2_material 0x7f06003d
  1042. int dimen abc_text_size_button_material 0x7f06003e
  1043. int dimen abc_text_size_caption_material 0x7f06003f
  1044. int dimen abc_text_size_display_1_material 0x7f060040
  1045. int dimen abc_text_size_display_2_material 0x7f060041
  1046. int dimen abc_text_size_display_3_material 0x7f060042
  1047. int dimen abc_text_size_display_4_material 0x7f060043
  1048. int dimen abc_text_size_headline_material 0x7f060044
  1049. int dimen abc_text_size_large_material 0x7f060045
  1050. int dimen abc_text_size_medium_material 0x7f060046
  1051. int dimen abc_text_size_menu_header_material 0x7f060047
  1052. int dimen abc_text_size_menu_material 0x7f060048
  1053. int dimen abc_text_size_small_material 0x7f060049
  1054. int dimen abc_text_size_subhead_material 0x7f06004a
  1055. int dimen abc_text_size_subtitle_material_toolbar 0x7f06004b
  1056. int dimen abc_text_size_title_material 0x7f06004c
  1057. int dimen abc_text_size_title_material_toolbar 0x7f06004d
  1058. int dimen action 0x7f06004e
  1059. int dimen btn_height 0x7f06004f
  1060. int dimen cardview_compat_inset_shadow 0x7f060050
  1061. int dimen cardview_default_elevation 0x7f060051
  1062. int dimen cardview_default_radius 0x7f060052
  1063. int dimen common 0x7f060053
  1064. int dimen compat_button_inset_horizontal_material 0x7f060054
  1065. int dimen compat_button_inset_vertical_material 0x7f060055
  1066. int dimen compat_button_padding_horizontal_material 0x7f060056
  1067. int dimen compat_button_padding_vertical_material 0x7f060057
  1068. int dimen compat_control_corner_material 0x7f060058
  1069. int dimen compat_notification_large_icon_max_height 0x7f060059
  1070. int dimen compat_notification_large_icon_max_width 0x7f06005a
  1071. int dimen design_appbar_elevation 0x7f06005b
  1072. int dimen design_bottom_navigation_active_item_max_width 0x7f06005c
  1073. int dimen design_bottom_navigation_active_item_min_width 0x7f06005d
  1074. int dimen design_bottom_navigation_active_text_size 0x7f06005e
  1075. int dimen design_bottom_navigation_elevation 0x7f06005f
  1076. int dimen design_bottom_navigation_height 0x7f060060
  1077. int dimen design_bottom_navigation_icon_size 0x7f060061
  1078. int dimen design_bottom_navigation_item_max_width 0x7f060062
  1079. int dimen design_bottom_navigation_item_min_width 0x7f060063
  1080. int dimen design_bottom_navigation_margin 0x7f060064
  1081. int dimen design_bottom_navigation_shadow_height 0x7f060065
  1082. int dimen design_bottom_navigation_text_size 0x7f060066
  1083. int dimen design_bottom_sheet_modal_elevation 0x7f060067
  1084. int dimen design_bottom_sheet_peek_height_min 0x7f060068
  1085. int dimen design_fab_border_width 0x7f060069
  1086. int dimen design_fab_elevation 0x7f06006a
  1087. int dimen design_fab_image_size 0x7f06006b
  1088. int dimen design_fab_size_mini 0x7f06006c
  1089. int dimen design_fab_size_normal 0x7f06006d
  1090. int dimen design_fab_translation_z_hovered_focused 0x7f06006e
  1091. int dimen design_fab_translation_z_pressed 0x7f06006f
  1092. int dimen design_navigation_elevation 0x7f060070
  1093. int dimen design_navigation_icon_padding 0x7f060071
  1094. int dimen design_navigation_icon_size 0x7f060072
  1095. int dimen design_navigation_item_horizontal_padding 0x7f060073
  1096. int dimen design_navigation_item_icon_padding 0x7f060074
  1097. int dimen design_navigation_max_width 0x7f060075
  1098. int dimen design_navigation_padding_bottom 0x7f060076
  1099. int dimen design_navigation_separator_vertical_padding 0x7f060077
  1100. int dimen design_snackbar_action_inline_max_width 0x7f060078
  1101. int dimen design_snackbar_background_corner_radius 0x7f060079
  1102. int dimen design_snackbar_elevation 0x7f06007a
  1103. int dimen design_snackbar_extra_spacing_horizontal 0x7f06007b
  1104. int dimen design_snackbar_max_width 0x7f06007c
  1105. int dimen design_snackbar_min_width 0x7f06007d
  1106. int dimen design_snackbar_padding_horizontal 0x7f06007e
  1107. int dimen design_snackbar_padding_vertical 0x7f06007f
  1108. int dimen design_snackbar_padding_vertical_2lines 0x7f060080
  1109. int dimen design_snackbar_text_size 0x7f060081
  1110. int dimen design_tab_max_width 0x7f060082
  1111. int dimen design_tab_scrollable_min_width 0x7f060083
  1112. int dimen design_tab_text_size 0x7f060084
  1113. int dimen design_tab_text_size_2line 0x7f060085
  1114. int dimen design_textinput_caption_translate_y 0x7f060086
  1115. int dimen disabled_alpha_material_dark 0x7f060087
  1116. int dimen disabled_alpha_material_light 0x7f060088
  1117. int dimen fastscroll_default_thickness 0x7f060089
  1118. int dimen fastscroll_margin 0x7f06008a
  1119. int dimen fastscroll_minimum_range 0x7f06008b
  1120. int dimen fragment_cell_height 0x7f06008c
  1121. int dimen gap 0x7f06008d
  1122. int dimen gap_top_bottom 0x7f06008e
  1123. int dimen highlight_alpha_material_colored 0x7f06008f
  1124. int dimen highlight_alpha_material_dark 0x7f060090
  1125. int dimen highlight_alpha_material_light 0x7f060091
  1126. int dimen hint_alpha_material_dark 0x7f060092
  1127. int dimen hint_alpha_material_light 0x7f060093
  1128. int dimen hint_pressed_alpha_material_dark 0x7f060094
  1129. int dimen hint_pressed_alpha_material_light 0x7f060095
  1130. int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f060096
  1131. int dimen item_touch_helper_swipe_escape_max_velocity 0x7f060097
  1132. int dimen item_touch_helper_swipe_escape_velocity 0x7f060098
  1133. int dimen layout_cell_height 0x7f060099
  1134. int dimen layout_task_cell_height 0x7f06009a
  1135. int dimen little 0x7f06009b
  1136. int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f06009c
  1137. int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f06009d
  1138. int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f06009e
  1139. int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f06009f
  1140. int dimen mtrl_bottomappbar_height 0x7f0600a0
  1141. int dimen mtrl_btn_corner_radius 0x7f0600a1
  1142. int dimen mtrl_btn_dialog_btn_min_width 0x7f0600a2
  1143. int dimen mtrl_btn_disabled_elevation 0x7f0600a3
  1144. int dimen mtrl_btn_disabled_z 0x7f0600a4
  1145. int dimen mtrl_btn_elevation 0x7f0600a5
  1146. int dimen mtrl_btn_focused_z 0x7f0600a6
  1147. int dimen mtrl_btn_hovered_z 0x7f0600a7
  1148. int dimen mtrl_btn_icon_btn_padding_left 0x7f0600a8
  1149. int dimen mtrl_btn_icon_padding 0x7f0600a9
  1150. int dimen mtrl_btn_inset 0x7f0600aa
  1151. int dimen mtrl_btn_letter_spacing 0x7f0600ab
  1152. int dimen mtrl_btn_padding_bottom 0x7f0600ac
  1153. int dimen mtrl_btn_padding_left 0x7f0600ad
  1154. int dimen mtrl_btn_padding_right 0x7f0600ae
  1155. int dimen mtrl_btn_padding_top 0x7f0600af
  1156. int dimen mtrl_btn_pressed_z 0x7f0600b0
  1157. int dimen mtrl_btn_stroke_size 0x7f0600b1
  1158. int dimen mtrl_btn_text_btn_icon_padding 0x7f0600b2
  1159. int dimen mtrl_btn_text_btn_padding_left 0x7f0600b3
  1160. int dimen mtrl_btn_text_btn_padding_right 0x7f0600b4
  1161. int dimen mtrl_btn_text_size 0x7f0600b5
  1162. int dimen mtrl_btn_z 0x7f0600b6
  1163. int dimen mtrl_card_elevation 0x7f0600b7
  1164. int dimen mtrl_card_spacing 0x7f0600b8
  1165. int dimen mtrl_chip_pressed_translation_z 0x7f0600b9
  1166. int dimen mtrl_chip_text_size 0x7f0600ba
  1167. int dimen mtrl_fab_elevation 0x7f0600bb
  1168. int dimen mtrl_fab_translation_z_hovered_focused 0x7f0600bc
  1169. int dimen mtrl_fab_translation_z_pressed 0x7f0600bd
  1170. int dimen mtrl_navigation_elevation 0x7f0600be
  1171. int dimen mtrl_navigation_item_horizontal_padding 0x7f0600bf
  1172. int dimen mtrl_navigation_item_icon_padding 0x7f0600c0
  1173. int dimen mtrl_snackbar_background_corner_radius 0x7f0600c1
  1174. int dimen mtrl_snackbar_margin 0x7f0600c2
  1175. int dimen mtrl_textinput_box_bottom_offset 0x7f0600c3
  1176. int dimen mtrl_textinput_box_corner_radius_medium 0x7f0600c4
  1177. int dimen mtrl_textinput_box_corner_radius_small 0x7f0600c5
  1178. int dimen mtrl_textinput_box_label_cutout_padding 0x7f0600c6
  1179. int dimen mtrl_textinput_box_padding_end 0x7f0600c7
  1180. int dimen mtrl_textinput_box_stroke_width_default 0x7f0600c8
  1181. int dimen mtrl_textinput_box_stroke_width_focused 0x7f0600c9
  1182. int dimen mtrl_textinput_outline_box_expanded_padding 0x7f0600ca
  1183. int dimen mtrl_toolbar_default_height 0x7f0600cb
  1184. int dimen notification_action_icon_size 0x7f0600cc
  1185. int dimen notification_action_text_size 0x7f0600cd
  1186. int dimen notification_big_circle_margin 0x7f0600ce
  1187. int dimen notification_content_margin_start 0x7f0600cf
  1188. int dimen notification_large_icon_height 0x7f0600d0
  1189. int dimen notification_large_icon_width 0x7f0600d1
  1190. int dimen notification_main_column_padding_top 0x7f0600d2
  1191. int dimen notification_media_narrow_margin 0x7f0600d3
  1192. int dimen notification_right_icon_size 0x7f0600d4
  1193. int dimen notification_right_side_padding_top 0x7f0600d5
  1194. int dimen notification_small_icon_background_padding 0x7f0600d6
  1195. int dimen notification_small_icon_size_as_large 0x7f0600d7
  1196. int dimen notification_subtext_size 0x7f0600d8
  1197. int dimen notification_top_pad 0x7f0600d9
  1198. int dimen notification_top_pad_large_text 0x7f0600da
  1199. int dimen pickerview_textsize 0x7f0600db
  1200. int dimen pickerview_topbar_btn_textsize 0x7f0600dc
  1201. int dimen pickerview_topbar_height 0x7f0600dd
  1202. int dimen pickerview_topbar_paddingleft 0x7f0600de
  1203. int dimen pickerview_topbar_paddingright 0x7f0600df
  1204. int dimen pickerview_topbar_title_textsize 0x7f0600e0
  1205. int dimen subtitle_corner_radius 0x7f0600e1
  1206. int dimen subtitle_outline_width 0x7f0600e2
  1207. int dimen subtitle_shadow_offset 0x7f0600e3
  1208. int dimen subtitle_shadow_radius 0x7f0600e4
  1209. int dimen textandiconmargin 0x7f0600e5
  1210. int dimen toolbar 0x7f0600e6
  1211. int dimen tooltip_corner_radius 0x7f0600e7
  1212. int dimen tooltip_horizontal_padding 0x7f0600e8
  1213. int dimen tooltip_margin 0x7f0600e9
  1214. int dimen tooltip_precise_anchor_extra_offset 0x7f0600ea
  1215. int dimen tooltip_precise_anchor_threshold 0x7f0600eb
  1216. int dimen tooltip_vertical_padding 0x7f0600ec
  1217. int dimen tooltip_y_offset_non_touch 0x7f0600ed
  1218. int dimen tooltip_y_offset_touch 0x7f0600ee
  1219. int drawable abc_ab_share_pack_mtrl_alpha 0x7f070007
  1220. int drawable abc_action_bar_item_background_material 0x7f070008
  1221. int drawable abc_btn_borderless_material 0x7f070009
  1222. int drawable abc_btn_check_material 0x7f07000a
  1223. int drawable abc_btn_check_material_anim 0x7f07000b
  1224. int drawable abc_btn_check_to_on_mtrl_000 0x7f07000c
  1225. int drawable abc_btn_check_to_on_mtrl_015 0x7f07000d
  1226. int drawable abc_btn_colored_material 0x7f07000e
  1227. int drawable abc_btn_default_mtrl_shape 0x7f07000f
  1228. int drawable abc_btn_radio_material 0x7f070010
  1229. int drawable abc_btn_radio_material_anim 0x7f070011
  1230. int drawable abc_btn_radio_to_on_mtrl_000 0x7f070012
  1231. int drawable abc_btn_radio_to_on_mtrl_015 0x7f070013
  1232. int drawable abc_btn_switch_to_on_mtrl_00001 0x7f070014
  1233. int drawable abc_btn_switch_to_on_mtrl_00012 0x7f070015
  1234. int drawable abc_cab_background_internal_bg 0x7f070016
  1235. int drawable abc_cab_background_top_material 0x7f070017
  1236. int drawable abc_cab_background_top_mtrl_alpha 0x7f070018
  1237. int drawable abc_control_background_material 0x7f070019
  1238. int drawable abc_dialog_material_background 0x7f07001a
  1239. int drawable abc_edit_text_material 0x7f07001b
  1240. int drawable abc_ic_ab_back_material 0x7f07001c
  1241. int drawable abc_ic_arrow_drop_right_black_24dp 0x7f07001d
  1242. int drawable abc_ic_clear_material 0x7f07001e
  1243. int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f07001f
  1244. int drawable abc_ic_go_search_api_material 0x7f070020
  1245. int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f070021
  1246. int drawable abc_ic_menu_cut_mtrl_alpha 0x7f070022
  1247. int drawable abc_ic_menu_overflow_material 0x7f070023
  1248. int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f070024
  1249. int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f070025
  1250. int drawable abc_ic_menu_share_mtrl_alpha 0x7f070026
  1251. int drawable abc_ic_search_api_material 0x7f070027
  1252. int drawable abc_ic_star_black_16dp 0x7f070028
  1253. int drawable abc_ic_star_black_36dp 0x7f070029
  1254. int drawable abc_ic_star_black_48dp 0x7f07002a
  1255. int drawable abc_ic_star_half_black_16dp 0x7f07002b
  1256. int drawable abc_ic_star_half_black_36dp 0x7f07002c
  1257. int drawable abc_ic_star_half_black_48dp 0x7f07002d
  1258. int drawable abc_ic_voice_search_api_material 0x7f07002e
  1259. int drawable abc_item_background_holo_dark 0x7f07002f
  1260. int drawable abc_item_background_holo_light 0x7f070030
  1261. int drawable abc_list_divider_material 0x7f070031
  1262. int drawable abc_list_divider_mtrl_alpha 0x7f070032
  1263. int drawable abc_list_focused_holo 0x7f070033
  1264. int drawable abc_list_longpressed_holo 0x7f070034
  1265. int drawable abc_list_pressed_holo_dark 0x7f070035
  1266. int drawable abc_list_pressed_holo_light 0x7f070036
  1267. int drawable abc_list_selector_background_transition_holo_dark 0x7f070037
  1268. int drawable abc_list_selector_background_transition_holo_light 0x7f070038
  1269. int drawable abc_list_selector_disabled_holo_dark 0x7f070039
  1270. int drawable abc_list_selector_disabled_holo_light 0x7f07003a
  1271. int drawable abc_list_selector_holo_dark 0x7f07003b
  1272. int drawable abc_list_selector_holo_light 0x7f07003c
  1273. int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f07003d
  1274. int drawable abc_popup_background_mtrl_mult 0x7f07003e
  1275. int drawable abc_ratingbar_indicator_material 0x7f07003f
  1276. int drawable abc_ratingbar_material 0x7f070040
  1277. int drawable abc_ratingbar_small_material 0x7f070041
  1278. int drawable abc_scrubber_control_off_mtrl_alpha 0x7f070042
  1279. int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f070043
  1280. int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f070044
  1281. int drawable abc_scrubber_primary_mtrl_alpha 0x7f070045
  1282. int drawable abc_scrubber_track_mtrl_alpha 0x7f070046
  1283. int drawable abc_seekbar_thumb_material 0x7f070047
  1284. int drawable abc_seekbar_tick_mark_material 0x7f070048
  1285. int drawable abc_seekbar_track_material 0x7f070049
  1286. int drawable abc_spinner_mtrl_am_alpha 0x7f07004a
  1287. int drawable abc_spinner_textfield_background_material 0x7f07004b
  1288. int drawable abc_switch_thumb_material 0x7f07004c
  1289. int drawable abc_switch_track_mtrl_alpha 0x7f07004d
  1290. int drawable abc_tab_indicator_material 0x7f07004e
  1291. int drawable abc_tab_indicator_mtrl_alpha 0x7f07004f
  1292. int drawable abc_text_cursor_material 0x7f070050
  1293. int drawable abc_text_select_handle_left_mtrl_dark 0x7f070051
  1294. int drawable abc_text_select_handle_left_mtrl_light 0x7f070052
  1295. int drawable abc_text_select_handle_middle_mtrl_dark 0x7f070053
  1296. int drawable abc_text_select_handle_middle_mtrl_light 0x7f070054
  1297. int drawable abc_text_select_handle_right_mtrl_dark 0x7f070055
  1298. int drawable abc_text_select_handle_right_mtrl_light 0x7f070056
  1299. int drawable abc_textfield_activated_mtrl_alpha 0x7f070057
  1300. int drawable abc_textfield_default_mtrl_alpha 0x7f070058
  1301. int drawable abc_textfield_search_activated_mtrl_alpha 0x7f070059
  1302. int drawable abc_textfield_search_default_mtrl_alpha 0x7f07005a
  1303. int drawable abc_textfield_search_material 0x7f07005b
  1304. int drawable abc_vector_test 0x7f07005c
  1305. int drawable avd_hide_password 0x7f07005d
  1306. int drawable avd_show_password 0x7f07005e
  1307. int drawable barcode_example_icon 0x7f07005f
  1308. int drawable black_background 0x7f070060
  1309. int drawable btn_back 0x7f070061
  1310. int drawable btn_checkbox_checked_mtrl 0x7f070062
  1311. int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f070063
  1312. int drawable btn_checkbox_unchecked_mtrl 0x7f070064
  1313. int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f070065
  1314. int drawable btn_radio_off_mtrl 0x7f070066
  1315. int drawable btn_radio_off_to_on_mtrl_animation 0x7f070067
  1316. int drawable btn_radio_on_mtrl 0x7f070068
  1317. int drawable btn_radio_on_to_off_mtrl_animation 0x7f070069
  1318. int drawable design_bottom_navigation_item_background 0x7f07006a
  1319. int drawable design_fab_background 0x7f07006b
  1320. int drawable design_ic_visibility 0x7f07006c
  1321. int drawable design_ic_visibility_off 0x7f07006d
  1322. int drawable design_password_eye 0x7f07006e
  1323. int drawable design_snackbar_background 0x7f07006f
  1324. int drawable frame_icon 0x7f070070
  1325. int drawable gray_radius 0x7f070071
  1326. int drawable ic_add_selected 0x7f070072
  1327. int drawable ic_alert_list 0x7f070073
  1328. int drawable ic_app_download 0x7f070074
  1329. int drawable ic_app_update 0x7f070075
  1330. int drawable ic_application 0x7f070076
  1331. int drawable ic_banner_01 0x7f070077
  1332. int drawable ic_banner_02 0x7f070078
  1333. int drawable ic_call_material 0x7f070079
  1334. int drawable ic_cangkudiaobo 0x7f07007a
  1335. int drawable ic_changqiwuchuku 0x7f07007b
  1336. int drawable ic_checkbox_selected 0x7f07007c
  1337. int drawable ic_checkbox_unselected 0x7f07007d
  1338. int drawable ic_churukumingxi 0x7f07007e
  1339. int drawable ic_daily_icmo_search 0x7f07007f
  1340. int drawable ic_daily_task_manage 0x7f070080
  1341. int drawable ic_default_portrait 0x7f070081
  1342. int drawable ic_down_gray 0x7f070082
  1343. int drawable ic_goods_search 0x7f070083
  1344. int drawable ic_home_cangkuguanli 0x7f070084
  1345. int drawable ic_home_dingdanchakan 0x7f070085
  1346. int drawable ic_home_kuweiguanli 0x7f070086
  1347. int drawable ic_home_shangpinchuku 0x7f070087
  1348. int drawable ic_home_shangpinkucun 0x7f070088
  1349. int drawable ic_home_tongjibaobiao 0x7f070089
  1350. int drawable ic_home_yujingjilu 0x7f07008a
  1351. int drawable ic_inventory_search 0x7f07008b
  1352. int drawable ic_kehuxiaoshoulaingduibi 0x7f07008c
  1353. int drawable ic_launcher 0x7f07008d
  1354. int drawable ic_launcher_background 0x7f07008e
  1355. int drawable ic_launcher_foreground 0x7f07008f
  1356. int drawable ic_loading_rotate 0x7f070090
  1357. int drawable ic_login_account 0x7f070091
  1358. int drawable ic_login_background 0x7f070092
  1359. int drawable ic_login_psw 0x7f070093
  1360. int drawable ic_login_warehouse 0x7f070094
  1361. int drawable ic_move_task_add 0x7f070095
  1362. int drawable ic_mtrl_chip_checked_black 0x7f070096
  1363. int drawable ic_mtrl_chip_checked_circle 0x7f070097
  1364. int drawable ic_mtrl_chip_close_circle 0x7f070098
  1365. int drawable ic_navigation_plus 0x7f070099
  1366. int drawable ic_navigation_qrcode 0x7f07009a
  1367. int drawable ic_navigation_search 0x7f07009b
  1368. int drawable ic_operate_area_work 0x7f07009c
  1369. int drawable ic_operation_check 0x7f07009d
  1370. int drawable ic_operation_conserve 0x7f07009e
  1371. int drawable ic_operation_move_library 0x7f07009f
  1372. int drawable ic_outbound_check 0x7f0700a0
  1373. int drawable ic_outbound_pick 0x7f0700a1
  1374. int drawable ic_outbound_return_empty 0x7f0700a2
  1375. int drawable ic_outbound_return_material 0x7f0700a3
  1376. int drawable ic_outbound_scan 0x7f0700a4
  1377. int drawable ic_outbound_setting 0x7f0700a5
  1378. int drawable ic_pick_material 0x7f0700a6
  1379. int drawable ic_picking_return_material 0x7f0700a7
  1380. int drawable ic_point 0x7f0700a8
  1381. int drawable ic_pulltorefresh_arrow 0x7f0700a9
  1382. int drawable ic_right_arrow 0x7f0700aa
  1383. int drawable ic_stock_call_extra_material 0x7f0700ab
  1384. int drawable ic_stock_occupy 0x7f0700ac
  1385. int drawable ic_stock_putaway 0x7f0700ad
  1386. int drawable ic_stock_quality 0x7f0700ae
  1387. int drawable ic_stock_receive 0x7f0700af
  1388. int drawable ic_stock_return 0x7f0700b0
  1389. int drawable ic_stock_return_empty 0x7f0700b1
  1390. int drawable ic_tab_daily_selected 0x7f0700b2
  1391. int drawable ic_tab_daily_unselected 0x7f0700b3
  1392. int drawable ic_tab_in 0x7f0700b4
  1393. int drawable ic_tab_in_selected 0x7f0700b5
  1394. int drawable ic_tab_operate_area_selected 0x7f0700b6
  1395. int drawable ic_tab_operate_area_unselected 0x7f0700b7
  1396. int drawable ic_tab_operation 0x7f0700b8
  1397. int drawable ic_tab_operation_selected 0x7f0700b9
  1398. int drawable ic_tab_out 0x7f0700ba
  1399. int drawable ic_tab_out_selected 0x7f0700bb
  1400. int drawable ic_tab_quality 0x7f0700bc
  1401. int drawable ic_tab_quality_selected 0x7f0700bd
  1402. int drawable ic_tab_search 0x7f0700be
  1403. int drawable ic_tab_search_selected 0x7f0700bf
  1404. int drawable ic_toolbar_exchange 0x7f0700c0
  1405. int drawable ic_toolbar_list 0x7f0700c1
  1406. int drawable ic_toolbar_personal 0x7f0700c2
  1407. int drawable ic_user_feedback 0x7f0700c3
  1408. int drawable ic_user_information 0x7f0700c4
  1409. int drawable ic_user_log_out 0x7f0700c5
  1410. int drawable ic_user_psw_edit 0x7f0700c6
  1411. int drawable loading_01 0x7f0700c7
  1412. int drawable loading_02 0x7f0700c8
  1413. int drawable loading_03 0x7f0700c9
  1414. int drawable loading_04 0x7f0700ca
  1415. int drawable loading_05 0x7f0700cb
  1416. int drawable loading_06 0x7f0700cc
  1417. int drawable loading_07 0x7f0700cd
  1418. int drawable loading_08 0x7f0700ce
  1419. int drawable loading_09 0x7f0700cf
  1420. int drawable loading_10 0x7f0700d0
  1421. int drawable loading_11 0x7f0700d1
  1422. int drawable loading_12 0x7f0700d2
  1423. int drawable main_logo 0x7f0700d3
  1424. int drawable mtrl_snackbar_background 0x7f0700d4
  1425. int drawable mtrl_tabs_default_indicator 0x7f0700d5
  1426. int drawable navigation_empty_icon 0x7f0700d6
  1427. int drawable no_banner 0x7f0700d7
  1428. int drawable notification_action_background 0x7f0700d8
  1429. int drawable notification_bg 0x7f0700d9
  1430. int drawable notification_bg_low 0x7f0700da
  1431. int drawable notification_bg_low_normal 0x7f0700db
  1432. int drawable notification_bg_low_pressed 0x7f0700dc
  1433. int drawable notification_bg_normal 0x7f0700dd
  1434. int drawable notification_bg_normal_pressed 0x7f0700de
  1435. int drawable notification_icon_background 0x7f0700df
  1436. int drawable notification_template_icon_bg 0x7f0700e0
  1437. int drawable notification_template_icon_low_bg 0x7f0700e1
  1438. int drawable notification_tile_bg 0x7f0700e2
  1439. int drawable notify_panel_notification_icon_bg 0x7f0700e3
  1440. int drawable progressbar 0x7f0700e4
  1441. int drawable progressloading 0x7f0700e5
  1442. int drawable selector_pickerview_btn 0x7f0700e6
  1443. int drawable shape_corner_filled 0x7f0700e7
  1444. int drawable shape_corner_surround 0x7f0700e8
  1445. int drawable shape_divider 0x7f0700e9
  1446. int drawable shape_underline_bg 0x7f0700ea
  1447. int drawable tooltip_frame_dark 0x7f0700eb
  1448. int drawable tooltip_frame_light 0x7f0700ec
  1449. int drawable white_radius 0x7f0700ed
  1450. int id ALT 0x7f080000
  1451. int id BLOCK 0x7f080001
  1452. int id BOTH 0x7f080002
  1453. int id BOTTOM 0x7f080003
  1454. int id BallBeat 0x7f080004
  1455. int id BallClipRotate 0x7f080005
  1456. int id BallClipRotateMultiple 0x7f080006
  1457. int id BallClipRotatePulse 0x7f080007
  1458. int id BallGridBeat 0x7f080008
  1459. int id BallGridPulse 0x7f080009
  1460. int id BallPulse 0x7f08000a
  1461. int id BallPulseRise 0x7f08000b
  1462. int id BallPulseSync 0x7f08000c
  1463. int id BallRotate 0x7f08000d
  1464. int id BallScale 0x7f08000e
  1465. int id BallScaleMultiple 0x7f08000f
  1466. int id BallScaleRipple 0x7f080010
  1467. int id BallScaleRippleMultiple 0x7f080011
  1468. int id BallSpinFadeLoader 0x7f080012
  1469. int id BallTrianglePath 0x7f080013
  1470. int id BallZigZag 0x7f080014
  1471. int id BallZigZagDeflect 0x7f080015
  1472. int id CTRL 0x7f080016
  1473. int id CubeTransition 0x7f080017
  1474. int id FUNCTION 0x7f080018
  1475. int id LEFT 0x7f080019
  1476. int id LineScale 0x7f08001a
  1477. int id LineScaleParty 0x7f08001b
  1478. int id LineScalePulseOut 0x7f08001c
  1479. int id LineScalePulseOutRapid 0x7f08001d
  1480. int id LineSpinFadeLoader 0x7f08001e
  1481. int id META 0x7f08001f
  1482. int id NONE 0x7f080020
  1483. int id NORMAL 0x7f080021
  1484. int id NO_DEBUG 0x7f080022
  1485. int id Pacman 0x7f080023
  1486. int id RIGHT 0x7f080024
  1487. int id SELECT 0x7f080025
  1488. int id SHIFT 0x7f080026
  1489. int id SHOW_ALL 0x7f080027
  1490. int id SHOW_PATH 0x7f080028
  1491. int id SHOW_PROGRESS 0x7f080029
  1492. int id SYM 0x7f08002a
  1493. int id SemiCircleSpin 0x7f08002b
  1494. int id SquareSpin 0x7f08002c
  1495. int id TOP 0x7f08002d
  1496. int id TRIANGLE 0x7f08002e
  1497. int id TriangleSkewSpin 0x7f08002f
  1498. int id accelerate 0x7f080030
  1499. int id accessibility_action_clickable_span 0x7f080031
  1500. int id accessibility_custom_action_0 0x7f080032
  1501. int id accessibility_custom_action_1 0x7f080033
  1502. int id accessibility_custom_action_10 0x7f080034
  1503. int id accessibility_custom_action_11 0x7f080035
  1504. int id accessibility_custom_action_12 0x7f080036
  1505. int id accessibility_custom_action_13 0x7f080037
  1506. int id accessibility_custom_action_14 0x7f080038
  1507. int id accessibility_custom_action_15 0x7f080039
  1508. int id accessibility_custom_action_16 0x7f08003a
  1509. int id accessibility_custom_action_17 0x7f08003b
  1510. int id accessibility_custom_action_18 0x7f08003c
  1511. int id accessibility_custom_action_19 0x7f08003d
  1512. int id accessibility_custom_action_2 0x7f08003e
  1513. int id accessibility_custom_action_20 0x7f08003f
  1514. int id accessibility_custom_action_21 0x7f080040
  1515. int id accessibility_custom_action_22 0x7f080041
  1516. int id accessibility_custom_action_23 0x7f080042
  1517. int id accessibility_custom_action_24 0x7f080043
  1518. int id accessibility_custom_action_25 0x7f080044
  1519. int id accessibility_custom_action_26 0x7f080045
  1520. int id accessibility_custom_action_27 0x7f080046
  1521. int id accessibility_custom_action_28 0x7f080047
  1522. int id accessibility_custom_action_29 0x7f080048
  1523. int id accessibility_custom_action_3 0x7f080049
  1524. int id accessibility_custom_action_30 0x7f08004a
  1525. int id accessibility_custom_action_31 0x7f08004b
  1526. int id accessibility_custom_action_4 0x7f08004c
  1527. int id accessibility_custom_action_5 0x7f08004d
  1528. int id accessibility_custom_action_6 0x7f08004e
  1529. int id accessibility_custom_action_7 0x7f08004f
  1530. int id accessibility_custom_action_8 0x7f080050
  1531. int id accessibility_custom_action_9 0x7f080051
  1532. int id action0 0x7f080052
  1533. int id action_bar 0x7f080053
  1534. int id action_bar_activity_content 0x7f080054
  1535. int id action_bar_container 0x7f080055
  1536. int id action_bar_root 0x7f080056
  1537. int id action_bar_spinner 0x7f080057
  1538. int id action_bar_subtitle 0x7f080058
  1539. int id action_bar_title 0x7f080059
  1540. int id action_container 0x7f08005a
  1541. int id action_context_bar 0x7f08005b
  1542. int id action_divider 0x7f08005c
  1543. int id action_image 0x7f08005d
  1544. int id action_menu_divider 0x7f08005e
  1545. int id action_menu_presenter 0x7f08005f
  1546. int id action_mode_bar 0x7f080060
  1547. int id action_mode_bar_stub 0x7f080061
  1548. int id action_mode_close_button 0x7f080062
  1549. int id action_text 0x7f080063
  1550. int id actions 0x7f080064
  1551. int id activity_chooser_view_content 0x7f080065
  1552. int id add 0x7f080066
  1553. int id alertTitle 0x7f080067
  1554. int id all 0x7f080068
  1555. int id always 0x7f080069
  1556. int id anticipate 0x7f08006a
  1557. int id asConfigured 0x7f08006b
  1558. int id async 0x7f08006c
  1559. int id auto 0x7f08006d
  1560. int id bannerContainer 0x7f08006e
  1561. int id bannerDefaultImage 0x7f08006f
  1562. int id bannerTitle 0x7f080070
  1563. int id bannerViewPager 0x7f080071
  1564. int id barrier 0x7f080072
  1565. int id beginning 0x7f080073
  1566. int id blocking 0x7f080074
  1567. int id bottom 0x7f080075
  1568. int id bounce 0x7f080076
  1569. int id btnCancel 0x7f080077
  1570. int id btnSubmit 0x7f080078
  1571. int id btn_accept 0x7f080079
  1572. int id btn_add 0x7f08007a
  1573. int id btn_begin 0x7f08007b
  1574. int id btn_begin_loc 0x7f08007c
  1575. int id btn_check_loc 0x7f08007d
  1576. int id btn_comfirm 0x7f08007e
  1577. int id btn_complete 0x7f08007f
  1578. int id btn_end_loc 0x7f080080
  1579. int id btn_end_recheck 0x7f080081
  1580. int id btn_expiry_date 0x7f080082
  1581. int id btn_from_loc 0x7f080083
  1582. int id btn_last 0x7f080084
  1583. int id btn_location 0x7f080085
  1584. int id btn_lock_loc 0x7f080086
  1585. int id btn_material_match 0x7f080087
  1586. int id btn_merge 0x7f080088
  1587. int id btn_move_task_add 0x7f080089
  1588. int id btn_new_asn 0x7f08008a
  1589. int id btn_new_material 0x7f08008b
  1590. int id btn_next 0x7f08008c
  1591. int id btn_out_loc 0x7f08008d
  1592. int id btn_pack_complete 0x7f08008e
  1593. int id btn_personal 0x7f08008f
  1594. int id btn_plan_time 0x7f080090
  1595. int id btn_prd_date 0x7f080091
  1596. int id btn_progress_list 0x7f080092
  1597. int id btn_register_code 0x7f080093
  1598. int id btn_return_loc 0x7f080094
  1599. int id btn_submit 0x7f080095
  1600. int id btn_to_loc 0x7f080096
  1601. int id btn_transit_loc 0x7f080097
  1602. int id buttonPanel 0x7f080098
  1603. int id cancel_action 0x7f080099
  1604. int id cb_lock_loc 0x7f08009a
  1605. int id cb_merge 0x7f08009b
  1606. int id center 0x7f08009c
  1607. int id center_crop 0x7f08009d
  1608. int id center_horizontal 0x7f08009e
  1609. int id center_inside 0x7f08009f
  1610. int id center_vertical 0x7f0800a0
  1611. int id chains 0x7f0800a1
  1612. int id checkbox 0x7f0800a2
  1613. int id checked 0x7f0800a3
  1614. int id chronometer 0x7f0800a4
  1615. int id circleIndicator 0x7f0800a5
  1616. int id clip_horizontal 0x7f0800a6
  1617. int id clip_vertical 0x7f0800a7
  1618. int id collapseActionView 0x7f0800a8
  1619. int id container 0x7f0800a9
  1620. int id content 0x7f0800aa
  1621. int id contentPanel 0x7f0800ab
  1622. int id content_container 0x7f0800ac
  1623. int id coordinator 0x7f0800ad
  1624. int id cos 0x7f0800ae
  1625. int id custom 0x7f0800af
  1626. int id customPanel 0x7f0800b0
  1627. int id day 0x7f0800b1
  1628. int id decelerate 0x7f0800b2
  1629. int id decor_content_parent 0x7f0800b3
  1630. int id default_activity_button 0x7f0800b4
  1631. int id deltaRelative 0x7f0800b5
  1632. int id design_bottom_sheet 0x7f0800b6
  1633. int id design_menu_item_action_area 0x7f0800b7
  1634. int id design_menu_item_action_area_stub 0x7f0800b8
  1635. int id design_menu_item_text 0x7f0800b9
  1636. int id design_navigation_view 0x7f0800ba
  1637. int id dialog_button 0x7f0800bb
  1638. int id dimensions 0x7f0800bc
  1639. int id direct 0x7f0800bd
  1640. int id disableHome 0x7f0800be
  1641. int id dragDown 0x7f0800bf
  1642. int id dragLeft 0x7f0800c0
  1643. int id dragRight 0x7f0800c1
  1644. int id dragUp 0x7f0800c2
  1645. int id easeIn 0x7f0800c3
  1646. int id easeInOut 0x7f0800c4
  1647. int id easeOut 0x7f0800c5
  1648. int id edit_query 0x7f0800c6
  1649. int id end 0x7f0800c7
  1650. int id end_padder 0x7f0800c8
  1651. int id enterAlways 0x7f0800c9
  1652. int id enterAlwaysCollapsed 0x7f0800ca
  1653. int id et_accept_piece 0x7f0800cb
  1654. int id et_begin_loc 0x7f0800cc
  1655. int id et_check_loc 0x7f0800cd
  1656. int id et_check_piece 0x7f0800ce
  1657. int id et_conserve_piece 0x7f0800cf
  1658. int id et_end_loc 0x7f0800d0
  1659. int id et_from_loc 0x7f0800d1
  1660. int id et_goods_barcode 0x7f0800d2
  1661. int id et_goods_code 0x7f0800d3
  1662. int id et_icmo_no 0x7f0800d4
  1663. int id et_loc 0x7f0800d5
  1664. int id et_loc_confirm 0x7f0800d6
  1665. int id et_location 0x7f0800d7
  1666. int id et_lock_loc 0x7f0800d8
  1667. int id et_lot_no 0x7f0800d9
  1668. int id et_manufacture 0x7f0800da
  1669. int id et_material 0x7f0800db
  1670. int id et_material_pcs 0x7f0800dc
  1671. int id et_odd_num 0x7f0800dd
  1672. int id et_out_loc 0x7f0800de
  1673. int id et_out_odd_num 0x7f0800df
  1674. int id et_putaway_loc 0x7f0800e0
  1675. int id et_putawaying_piece 0x7f0800e1
  1676. int id et_recheck_piece 0x7f0800e2
  1677. int id et_remark 0x7f0800e3
  1678. int id et_return_loc 0x7f0800e4
  1679. int id et_storage_barcode 0x7f0800e5
  1680. int id et_storage_condition 0x7f0800e6
  1681. int id et_to_loc 0x7f0800e7
  1682. int id et_transit_loc 0x7f0800e8
  1683. int id et_version_code 0x7f0800e9
  1684. int id exitUntilCollapsed 0x7f0800ea
  1685. int id expand_activities_button 0x7f0800eb
  1686. int id expanded_menu 0x7f0800ec
  1687. int id fill 0x7f0800ed
  1688. int id fill_horizontal 0x7f0800ee
  1689. int id fill_parent 0x7f0800ef
  1690. int id fill_vertical 0x7f0800f0
  1691. int id filled 0x7f0800f1
  1692. int id fit_center 0x7f0800f2
  1693. int id fit_end 0x7f0800f3
  1694. int id fit_start 0x7f0800f4
  1695. int id fit_xy 0x7f0800f5
  1696. int id fixed 0x7f0800f6
  1697. int id fl_fragment 0x7f0800f7
  1698. int id flip 0x7f0800f8
  1699. int id forever 0x7f0800f9
  1700. int id fragment_home_banner 0x7f0800fa
  1701. int id fragment_home_recycler_view 0x7f0800fb
  1702. int id ghost_view 0x7f0800fc
  1703. int id gone 0x7f0800fd
  1704. int id graph 0x7f0800fe
  1705. int id graph_wrap 0x7f0800ff
  1706. int id group_divider 0x7f080100
  1707. int id groups 0x7f080101
  1708. int id head_arrowImageView 0x7f080102
  1709. int id head_contentLayout 0x7f080103
  1710. int id head_lastUpdatedTextView 0x7f080104
  1711. int id head_progressBar 0x7f080105
  1712. int id head_tipsTextView 0x7f080106
  1713. int id header_refresh_time_container 0x7f080107
  1714. int id home 0x7f080108
  1715. int id homeAsUp 0x7f080109
  1716. int id hour 0x7f08010a
  1717. int id icon 0x7f08010b
  1718. int id icon_group 0x7f08010c
  1719. int id ifRoom 0x7f08010d
  1720. int id image 0x7f08010e
  1721. int id indicatorInside 0x7f08010f
  1722. int id info 0x7f080110
  1723. int id invisible 0x7f080111
  1724. int id italic 0x7f080112
  1725. int id item_common_icon 0x7f080113
  1726. int id item_common_title 0x7f080114
  1727. int id item_home_icon 0x7f080115
  1728. int id item_home_title 0x7f080116
  1729. int id item_touch_helper_previous_elevation 0x7f080117
  1730. int id iv_selected 0x7f080118
  1731. int id iv_tab_icon 0x7f080119
  1732. int id jumpToEnd 0x7f08011a
  1733. int id jumpToStart 0x7f08011b
  1734. int id labeled 0x7f08011c
  1735. int id largeLabel 0x7f08011d
  1736. int id last_refresh_time 0x7f08011e
  1737. int id layout_backgroud 0x7f08011f
  1738. int id layout_certificate 0x7f080120
  1739. int id layout_doublec 0x7f080121
  1740. int id layout_from_locs 0x7f080122
  1741. int id layout_good_loc 0x7f080123
  1742. int id layout_loc_confirm 0x7f080124
  1743. int id layout_location_zone 0x7f080125
  1744. int id layout_material 0x7f080126
  1745. int id layout_material_pcs 0x7f080127
  1746. int id layout_scroll_view 0x7f080128
  1747. int id layout_stock_statuc 0x7f080129
  1748. int id layout_to_location 0x7f08012a
  1749. int id layout_zone_selected 0x7f08012b
  1750. int id left 0x7f08012c
  1751. int id line 0x7f08012d
  1752. int id line1 0x7f08012e
  1753. int id line3 0x7f08012f
  1754. int id linear 0x7f080130
  1755. int id listMode 0x7f080131
  1756. int id list_item 0x7f080132
  1757. int id listview_foot_more 0x7f080133
  1758. int id listview_foot_progress 0x7f080134
  1759. int id listview_header_arrow 0x7f080135
  1760. int id listview_header_content 0x7f080136
  1761. int id listview_header_progressbar 0x7f080137
  1762. int id listview_header_text 0x7f080138
  1763. int id ll_tap 0x7f080139
  1764. int id login_button_click 0x7f08013a
  1765. int id login_text_account 0x7f08013b
  1766. int id login_text_psw 0x7f08013c
  1767. int id masked 0x7f08013d
  1768. int id match_parent 0x7f08013e
  1769. int id matrix 0x7f08013f
  1770. int id media_actions 0x7f080140
  1771. int id message 0x7f080141
  1772. int id middle 0x7f080142
  1773. int id min 0x7f080143
  1774. int id mini 0x7f080144
  1775. int id month 0x7f080145
  1776. int id mtrl_child_content_container 0x7f080146
  1777. int id mtrl_internal_children_alpha_tag 0x7f080147
  1778. int id multiply 0x7f080148
  1779. int id navigation_header_container 0x7f080149
  1780. int id never 0x7f08014a
  1781. int id next_button 0x7f08014b
  1782. int id none 0x7f08014c
  1783. int id normal 0x7f08014d
  1784. int id notification_background 0x7f08014e
  1785. int id notification_main_column 0x7f08014f
  1786. int id notification_main_column_container 0x7f080150
  1787. int id numIndicator 0x7f080151
  1788. int id numIndicatorInside 0x7f080152
  1789. int id off 0x7f080153
  1790. int id on 0x7f080154
  1791. int id options1 0x7f080155
  1792. int id options2 0x7f080156
  1793. int id options3 0x7f080157
  1794. int id optionspicker 0x7f080158
  1795. int id outline 0x7f080159
  1796. int id outmost_container 0x7f08015a
  1797. int id oval 0x7f08015b
  1798. int id packed 0x7f08015c
  1799. int id parallax 0x7f08015d
  1800. int id parent 0x7f08015e
  1801. int id parentPanel 0x7f08015f
  1802. int id parentRelative 0x7f080160
  1803. int id parent_matrix 0x7f080161
  1804. int id path 0x7f080162
  1805. int id pathRelative 0x7f080163
  1806. int id percent 0x7f080164
  1807. int id pin 0x7f080165
  1808. int id position 0x7f080166
  1809. int id progress_circular 0x7f080167
  1810. int id progress_horizontal 0x7f080168
  1811. int id radial 0x7f080169
  1812. int id radio 0x7f08016a
  1813. int id ratio 0x7f08016b
  1814. int id rectangle 0x7f08016c
  1815. int id rectangles 0x7f08016d
  1816. int id recyclerView 0x7f08016e
  1817. int id recycler_view 0x7f08016f
  1818. int id refresh_status_textview 0x7f080170
  1819. int id reverseSawtooth 0x7f080171
  1820. int id right 0x7f080172
  1821. int id right_icon 0x7f080173
  1822. int id right_side 0x7f080174
  1823. int id ring 0x7f080175
  1824. int id rtv_msg_tip 0x7f080176
  1825. int id save_image_matrix 0x7f080177
  1826. int id save_non_transition_alpha 0x7f080178
  1827. int id save_scale_type 0x7f080179
  1828. int id sawtooth 0x7f08017a
  1829. int id screen 0x7f08017b
  1830. int id scroll 0x7f08017c
  1831. int id scrollIndicatorDown 0x7f08017d
  1832. int id scrollIndicatorUp 0x7f08017e
  1833. int id scrollView 0x7f08017f
  1834. int id scroll_view 0x7f080180
  1835. int id scrollable 0x7f080181
  1836. int id search_badge 0x7f080182
  1837. int id search_bar 0x7f080183
  1838. int id search_button 0x7f080184
  1839. int id search_close_btn 0x7f080185
  1840. int id search_edit_frame 0x7f080186
  1841. int id search_go_btn 0x7f080187
  1842. int id search_mag_icon 0x7f080188
  1843. int id search_plate 0x7f080189
  1844. int id search_src_text 0x7f08018a
  1845. int id search_voice_btn 0x7f08018b
  1846. int id select_dialog_listview 0x7f08018c
  1847. int id selected 0x7f08018d
  1848. int id shortcut 0x7f08018e
  1849. int id showCustom 0x7f08018f
  1850. int id showHome 0x7f080190
  1851. int id showTitle 0x7f080191
  1852. int id sin 0x7f080192
  1853. int id smallLabel 0x7f080193
  1854. int id snackbar_action 0x7f080194
  1855. int id snackbar_text 0x7f080195
  1856. int id snap 0x7f080196
  1857. int id snapMargins 0x7f080197
  1858. int id spacer 0x7f080198
  1859. int id spline 0x7f080199
  1860. int id split_action_bar 0x7f08019a
  1861. int id spread 0x7f08019b
  1862. int id spread_inside 0x7f08019c
  1863. int id square 0x7f08019d
  1864. int id src_atop 0x7f08019e
  1865. int id src_in 0x7f08019f
  1866. int id src_over 0x7f0801a0
  1867. int id standard 0x7f0801a1
  1868. int id start 0x7f0801a2
  1869. int id startHorizontal 0x7f0801a3
  1870. int id startVertical 0x7f0801a4
  1871. int id status_bar_latest_event_content 0x7f0801a5
  1872. int id stretch 0x7f0801a6
  1873. int id submenuarrow 0x7f0801a7
  1874. int id submit_area 0x7f0801a8
  1875. int id sweep 0x7f0801a9
  1876. int id tabMode 0x7f0801aa
  1877. int id tab_layout 0x7f0801ab
  1878. int id tag_accessibility_actions 0x7f0801ac
  1879. int id tag_accessibility_clickable_spans 0x7f0801ad
  1880. int id tag_accessibility_heading 0x7f0801ae
  1881. int id tag_accessibility_pane_title 0x7f0801af
  1882. int id tag_screen_reader_focusable 0x7f0801b0
  1883. int id tag_transition_group 0x7f0801b1
  1884. int id tag_unhandled_key_event_manager 0x7f0801b2
  1885. int id tag_unhandled_key_listeners 0x7f0801b3
  1886. int id tap_check_change 0x7f0801b4
  1887. int id tap_note_change 0x7f0801b5
  1888. int id tap_order_binding 0x7f0801b6
  1889. int id tap_status_change 0x7f0801b7
  1890. int id tap_task_priority 0x7f0801b8
  1891. int id tb_progress_list 0x7f0801b9
  1892. int id tc_stock_status 0x7f0801ba
  1893. int id text 0x7f0801bb
  1894. int id text2 0x7f0801bc
  1895. int id textSpacerNoButtons 0x7f0801bd
  1896. int id textSpacerNoTitle 0x7f0801be
  1897. int id textStart 0x7f0801bf
  1898. int id text_input_password_toggle 0x7f0801c0
  1899. int id textinput_counter 0x7f0801c1
  1900. int id textinput_error 0x7f0801c2
  1901. int id textinput_helper_text 0x7f0801c3
  1902. int id time 0x7f0801c4
  1903. int id timepicker 0x7f0801c5
  1904. int id title 0x7f0801c6
  1905. int id titleDividerNoCustom 0x7f0801c7
  1906. int id titleView 0x7f0801c8
  1907. int id title_template 0x7f0801c9
  1908. int id toggle 0x7f0801ca
  1909. int id tool_bar 0x7f0801cb
  1910. int id top 0x7f0801cc
  1911. int id topPanel 0x7f0801cd
  1912. int id touch_outside 0x7f0801ce
  1913. int id transitionToEnd 0x7f0801cf
  1914. int id transitionToStart 0x7f0801d0
  1915. int id transition_current_scene 0x7f0801d1
  1916. int id transition_layout_save 0x7f0801d2
  1917. int id transition_position 0x7f0801d3
  1918. int id transition_scene_layoutid_cache 0x7f0801d4
  1919. int id transition_transform 0x7f0801d5
  1920. int id triangle 0x7f0801d6
  1921. int id tvTitle 0x7f0801d7
  1922. int id tv_accept_note 0x7f0801d8
  1923. int id tv_accept_num 0x7f0801d9
  1924. int id tv_accept_piece 0x7f0801da
  1925. int id tv_accept_status 0x7f0801db
  1926. int id tv_accepted_piece 0x7f0801dc
  1927. int id tv_addwho 0x7f0801dd
  1928. int id tv_alert 0x7f0801de
  1929. int id tv_bar_title 0x7f0801df
  1930. int id tv_batch_num 0x7f0801e0
  1931. int id tv_batch_pa_completed 0x7f0801e1
  1932. int id tv_batch_piece 0x7f0801e2
  1933. int id tv_batch_sterilization 0x7f0801e3
  1934. int id tv_batch_unaccepted_piece 0x7f0801e4
  1935. int id tv_car 0x7f0801e5
  1936. int id tv_carton_num 0x7f0801e6
  1937. int id tv_check_status 0x7f0801e7
  1938. int id tv_converse_num 0x7f0801e8
  1939. int id tv_converse_status 0x7f0801e9
  1940. int id tv_conversed_num 0x7f0801ea
  1941. int id tv_conversed_piece 0x7f0801eb
  1942. int id tv_cou_loc 0x7f0801ec
  1943. int id tv_cou_no 0x7f0801ed
  1944. int id tv_customer_id 0x7f0801ee
  1945. int id tv_date 0x7f0801ef
  1946. int id tv_datetime 0x7f0801f0
  1947. int id tv_detail_unaccepted_piece 0x7f0801f1
  1948. int id tv_empty_status 0x7f0801f2
  1949. int id tv_expiry_date 0x7f0801f3
  1950. int id tv_forecast_no 0x7f0801f4
  1951. int id tv_from_date 0x7f0801f5
  1952. int id tv_goods_certificate 0x7f0801f6
  1953. int id tv_goods_code 0x7f0801f7
  1954. int id tv_goods_loc 0x7f0801f8
  1955. int id tv_goods_model 0x7f0801f9
  1956. int id tv_goods_name 0x7f0801fa
  1957. int id tv_goods_owner 0x7f0801fb
  1958. int id tv_goods_standard 0x7f0801fc
  1959. int id tv_goods_status 0x7f0801fd
  1960. int id tv_height_level 0x7f0801fe
  1961. int id tv_icmo_no 0x7f0801ff
  1962. int id tv_inv_loc 0x7f080200
  1963. int id tv_inv_pcs 0x7f080201
  1964. int id tv_loc_age 0x7f080202
  1965. int id tv_loc_from 0x7f080203
  1966. int id tv_loc_status 0x7f080204
  1967. int id tv_loc_to 0x7f080205
  1968. int id tv_location 0x7f080206
  1969. int id tv_location_zone 0x7f080207
  1970. int id tv_lot_no 0x7f080208
  1971. int id tv_manufacturer 0x7f080209
  1972. int id tv_manufacturer_code 0x7f08020a
  1973. int id tv_material 0x7f08020b
  1974. int id tv_material_pcs 0x7f08020c
  1975. int id tv_message 0x7f08020d
  1976. int id tv_message_id 0x7f08020e
  1977. int id tv_odd_num 0x7f08020f
  1978. int id tv_order_binding 0x7f080210
  1979. int id tv_ordered_pcs 0x7f080211
  1980. int id tv_pa_expected 0x7f080212
  1981. int id tv_particular_code 0x7f080213
  1982. int id tv_picked_piece 0x7f080214
  1983. int id tv_prd_batch 0x7f080215
  1984. int id tv_prd_date 0x7f080216
  1985. int id tv_product_line 0x7f080217
  1986. int id tv_qty_act 0x7f080218
  1987. int id tv_qualified_file 0x7f080219
  1988. int id tv_received_piece 0x7f08021a
  1989. int id tv_recheck_note 0x7f08021b
  1990. int id tv_recheck_status 0x7f08021c
  1991. int id tv_recommend_loc 0x7f08021d
  1992. int id tv_register_code 0x7f08021e
  1993. int id tv_remark 0x7f08021f
  1994. int id tv_serial_num 0x7f080220
  1995. int id tv_status 0x7f080221
  1996. int id tv_stock_statuc 0x7f080222
  1997. int id tv_storage_condition 0x7f080223
  1998. int id tv_storage_num 0x7f080224
  1999. int id tv_storage_piece 0x7f080225
  2000. int id tv_tab_title 0x7f080226
  2001. int id tv_task_no 0x7f080227
  2002. int id tv_task_num 0x7f080228
  2003. int id tv_task_priority 0x7f080229
  2004. int id tv_task_progress 0x7f08022a
  2005. int id tv_task_type 0x7f08022b
  2006. int id tv_to_date 0x7f08022c
  2007. int id tv_to_loc 0x7f08022d
  2008. int id tv_to_zone 0x7f08022e
  2009. int id tv_transit_loc 0x7f08022f
  2010. int id tv_unconversed_num 0x7f080230
  2011. int id tv_unconversed_piece 0x7f080231
  2012. int id tv_unit 0x7f080232
  2013. int id tv_version_code 0x7f080233
  2014. int id tv_warehouse 0x7f080234
  2015. int id tv_zone 0x7f080235
  2016. int id tv_zone_from 0x7f080236
  2017. int id tv_zone_name 0x7f080237
  2018. int id tv_zone_selected 0x7f080238
  2019. int id tv_zone_to 0x7f080239
  2020. int id unchecked 0x7f08023a
  2021. int id uniform 0x7f08023b
  2022. int id unlabeled 0x7f08023c
  2023. int id up 0x7f08023d
  2024. int id useLogo 0x7f08023e
  2025. int id view_offset_helper 0x7f08023f
  2026. int id visible 0x7f080240
  2027. int id withText 0x7f080241
  2028. int id wrap 0x7f080242
  2029. int id wrap_content 0x7f080243
  2030. int id year 0x7f080244
  2031. int integer abc_config_activityDefaultDur 0x7f090000
  2032. int integer abc_config_activityShortDur 0x7f090001
  2033. int integer animation_default_duration 0x7f090002
  2034. int integer app_bar_elevation_anim_duration 0x7f090003
  2035. int integer bottom_sheet_slide_duration 0x7f090004
  2036. int integer cancel_button_image_alpha 0x7f090005
  2037. int integer config_tooltipAnimTime 0x7f090006
  2038. int integer design_snackbar_text_max_lines 0x7f090007
  2039. int integer design_tab_indicator_anim_duration_ms 0x7f090008
  2040. int integer hide_password_duration 0x7f090009
  2041. int integer mtrl_btn_anim_delay_ms 0x7f09000a
  2042. int integer mtrl_btn_anim_duration_ms 0x7f09000b
  2043. int integer mtrl_chip_anim_duration 0x7f09000c
  2044. int integer mtrl_tab_indicator_anim_duration_ms 0x7f09000d
  2045. int integer show_password_duration 0x7f09000e
  2046. int integer status_bar_notification_info_maxnum 0x7f09000f
  2047. int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0a0000
  2048. int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0a0001
  2049. int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0a0002
  2050. int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0a0003
  2051. int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0a0004
  2052. int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0a0005
  2053. int interpolator fast_out_slow_in 0x7f0a0006
  2054. int interpolator mtrl_fast_out_linear_in 0x7f0a0007
  2055. int interpolator mtrl_fast_out_slow_in 0x7f0a0008
  2056. int interpolator mtrl_linear 0x7f0a0009
  2057. int interpolator mtrl_linear_out_slow_in 0x7f0a000a
  2058. int layout abc_action_bar_title_item 0x7f0b0000
  2059. int layout abc_action_bar_up_container 0x7f0b0001
  2060. int layout abc_action_menu_item_layout 0x7f0b0002
  2061. int layout abc_action_menu_layout 0x7f0b0003
  2062. int layout abc_action_mode_bar 0x7f0b0004
  2063. int layout abc_action_mode_close_item_material 0x7f0b0005
  2064. int layout abc_activity_chooser_view 0x7f0b0006
  2065. int layout abc_activity_chooser_view_list_item 0x7f0b0007
  2066. int layout abc_alert_dialog_button_bar_material 0x7f0b0008
  2067. int layout abc_alert_dialog_material 0x7f0b0009
  2068. int layout abc_alert_dialog_title_material 0x7f0b000a
  2069. int layout abc_cascading_menu_item_layout 0x7f0b000b
  2070. int layout abc_dialog_title_material 0x7f0b000c
  2071. int layout abc_expanded_menu_layout 0x7f0b000d
  2072. int layout abc_list_menu_item_checkbox 0x7f0b000e
  2073. int layout abc_list_menu_item_icon 0x7f0b000f
  2074. int layout abc_list_menu_item_layout 0x7f0b0010
  2075. int layout abc_list_menu_item_radio 0x7f0b0011
  2076. int layout abc_popup_menu_header_item_layout 0x7f0b0012
  2077. int layout abc_popup_menu_item_layout 0x7f0b0013
  2078. int layout abc_screen_content_include 0x7f0b0014
  2079. int layout abc_screen_simple 0x7f0b0015
  2080. int layout abc_screen_simple_overlay_action_mode 0x7f0b0016
  2081. int layout abc_screen_toolbar 0x7f0b0017
  2082. int layout abc_search_dropdown_item_icons_2line 0x7f0b0018
  2083. int layout abc_search_view 0x7f0b0019
  2084. int layout abc_select_dialog_material 0x7f0b001a
  2085. int layout abc_tooltip 0x7f0b001b
  2086. int layout activity_acceptance_detail 0x7f0b001c
  2087. int layout activity_acceptance_list 0x7f0b001d
  2088. int layout activity_acceptance_task 0x7f0b001e
  2089. int layout activity_agv_car_list 0x7f0b001f
  2090. int layout activity_application_download 0x7f0b0020
  2091. int layout activity_call_empty_stock 0x7f0b0021
  2092. int layout activity_check_list 0x7f0b0022
  2093. int layout activity_check_task 0x7f0b0023
  2094. int layout activity_check_task_detail 0x7f0b0024
  2095. int layout activity_conserve_guide_list 0x7f0b0025
  2096. int layout activity_conserve_task 0x7f0b0026
  2097. int layout activity_conserve_task_detail 0x7f0b0027
  2098. int layout activity_conserve_task_list 0x7f0b0028
  2099. int layout activity_icmo_detial_list 0x7f0b0029
  2100. int layout activity_icmo_task_list 0x7f0b002a
  2101. int layout activity_inventory_in 0x7f0b002b
  2102. int layout activity_inventory_material_list 0x7f0b002c
  2103. int layout activity_inventory_move_detail 0x7f0b002d
  2104. int layout activity_inventory_move_task 0x7f0b002e
  2105. int layout activity_inventory_out 0x7f0b002f
  2106. int layout activity_inventory_search 0x7f0b0030
  2107. int layout activity_inventory_status_list 0x7f0b0031
  2108. int layout activity_location_list 0x7f0b0032
  2109. int layout activity_location_lock 0x7f0b0033
  2110. int layout activity_location_multiple_list 0x7f0b0034
  2111. int layout activity_location_selection 0x7f0b0035
  2112. int layout activity_login 0x7f0b0036
  2113. int layout activity_main 0x7f0b0037
  2114. int layout activity_material_search 0x7f0b0038
  2115. int layout activity_notification_list 0x7f0b0039
  2116. int layout activity_operate_return_material 0x7f0b003a
  2117. int layout activity_operate_work 0x7f0b003b
  2118. int layout activity_operate_work_complete 0x7f0b003c
  2119. int layout activity_operate_work_merge 0x7f0b003d
  2120. int layout activity_operation_call 0x7f0b003e
  2121. int layout activity_order_picking_allocation 0x7f0b003f
  2122. int layout activity_order_picking_detail 0x7f0b0040
  2123. int layout activity_order_picking_task 0x7f0b0041
  2124. int layout activity_pack_check_detail 0x7f0b0042
  2125. int layout activity_pack_check_task 0x7f0b0043
  2126. int layout activity_personal 0x7f0b0044
  2127. int layout activity_putaway 0x7f0b0045
  2128. int layout activity_putaway_detail 0x7f0b0046
  2129. int layout activity_putaway_task_list 0x7f0b0047
  2130. int layout activity_receive_goods 0x7f0b0048
  2131. int layout activity_receive_goods_detail 0x7f0b0049
  2132. int layout activity_recheck_detail 0x7f0b004a
  2133. int layout activity_recheck_task 0x7f0b004b
  2134. int layout activity_restocking_task 0x7f0b004c
  2135. int layout activity_return_empty_stock 0x7f0b004d
  2136. int layout activity_return_material 0x7f0b004e
  2137. int layout activity_sap_icmo_header_list 0x7f0b004f
  2138. int layout activity_search_detail 0x7f0b0050
  2139. int layout activity_search_goods 0x7f0b0051
  2140. int layout activity_search_result 0x7f0b0052
  2141. int layout activity_search_storage 0x7f0b0053
  2142. int layout activity_stock_checking 0x7f0b0054
  2143. int layout activity_stock_checking_details 0x7f0b0055
  2144. int layout activity_stock_checking_list 0x7f0b0056
  2145. int layout activity_stock_checking_material 0x7f0b0057
  2146. int layout activity_stock_checking_sub 0x7f0b0058
  2147. int layout activity_wcs_task_list 0x7f0b0059
  2148. int layout activity_zone_list 0x7f0b005a
  2149. int layout banner 0x7f0b005b
  2150. int layout cell_agv_car_list 0x7f0b005c
  2151. int layout cell_asn_detail 0x7f0b005d
  2152. int layout cell_inventory_icmo_details 0x7f0b005e
  2153. int layout cell_loc_material_detail 0x7f0b005f
  2154. int layout cell_location_detail 0x7f0b0060
  2155. int layout cell_location_multiple_list 0x7f0b0061
  2156. int layout cell_location_status_detail 0x7f0b0062
  2157. int layout cell_material_list 0x7f0b0063
  2158. int layout cell_notification_list 0x7f0b0064
  2159. int layout cell_search_list 0x7f0b0065
  2160. int layout cell_stock_check_detail 0x7f0b0066
  2161. int layout cell_stock_check_detail_sub 0x7f0b0067
  2162. int layout cell_task_list 0x7f0b0068
  2163. int layout cell_zone_detail 0x7f0b0069
  2164. int layout custom_dialog 0x7f0b006a
  2165. int layout design_bottom_navigation_item 0x7f0b006b
  2166. int layout design_bottom_sheet_dialog 0x7f0b006c
  2167. int layout design_layout_snackbar 0x7f0b006d
  2168. int layout design_layout_snackbar_include 0x7f0b006e
  2169. int layout design_layout_tab_icon 0x7f0b006f
  2170. int layout design_layout_tab_text 0x7f0b0070
  2171. int layout design_menu_item_action_area 0x7f0b0071
  2172. int layout design_navigation_item 0x7f0b0072
  2173. int layout design_navigation_item_header 0x7f0b0073
  2174. int layout design_navigation_item_separator 0x7f0b0074
  2175. int layout design_navigation_item_subheader 0x7f0b0075
  2176. int layout design_navigation_menu 0x7f0b0076
  2177. int layout design_navigation_menu_item 0x7f0b0077
  2178. int layout design_text_input_password_icon 0x7f0b0078
  2179. int layout fragment_inventory_in 0x7f0b0079
  2180. int layout fragment_inventory_out 0x7f0b007a
  2181. int layout fragment_operation 0x7f0b007b
  2182. int layout fragment_quality_management 0x7f0b007c
  2183. int layout include_pickerview_topbar 0x7f0b007d
  2184. int layout item_accept_list_cell 0x7f0b007e
  2185. int layout item_check_list_cell 0x7f0b007f
  2186. int layout item_common_cell 0x7f0b0080
  2187. int layout item_conserve_task_cell 0x7f0b0081
  2188. int layout item_home_menu 0x7f0b0082
  2189. int layout item_search_goods_result 0x7f0b0083
  2190. int layout item_task_cell 0x7f0b0084
  2191. int layout item_task_progress_cell 0x7f0b0085
  2192. int layout layout_basepickerview 0x7f0b0086
  2193. int layout layout_tab 0x7f0b0087
  2194. int layout layout_tab_bottom 0x7f0b0088
  2195. int layout layout_tab_left 0x7f0b0089
  2196. int layout layout_tab_right 0x7f0b008a
  2197. int layout layout_tab_segment 0x7f0b008b
  2198. int layout layout_tab_top 0x7f0b008c
  2199. int layout layout_toolbar 0x7f0b008d
  2200. int layout listview_footer 0x7f0b008e
  2201. int layout listview_header 0x7f0b008f
  2202. int layout mtrl_layout_snackbar 0x7f0b0090
  2203. int layout mtrl_layout_snackbar_include 0x7f0b0091
  2204. int layout notification_action 0x7f0b0092
  2205. int layout notification_action_tombstone 0x7f0b0093
  2206. int layout notification_media_action 0x7f0b0094
  2207. int layout notification_media_cancel_action 0x7f0b0095
  2208. int layout notification_template_big_media 0x7f0b0096
  2209. int layout notification_template_big_media_custom 0x7f0b0097
  2210. int layout notification_template_big_media_narrow 0x7f0b0098
  2211. int layout notification_template_big_media_narrow_custom 0x7f0b0099
  2212. int layout notification_template_custom_big 0x7f0b009a
  2213. int layout notification_template_icon_group 0x7f0b009b
  2214. int layout notification_template_lines_media 0x7f0b009c
  2215. int layout notification_template_media 0x7f0b009d
  2216. int layout notification_template_media_custom 0x7f0b009e
  2217. int layout notification_template_part_chronometer 0x7f0b009f
  2218. int layout notification_template_part_time 0x7f0b00a0
  2219. int layout pickerview_options 0x7f0b00a1
  2220. int layout pickerview_time 0x7f0b00a2
  2221. int layout pull_to_refresh_head 0x7f0b00a3
  2222. int layout select_dialog_item_material 0x7f0b00a4
  2223. int layout select_dialog_multichoice_material 0x7f0b00a5
  2224. int layout select_dialog_singlechoice_material 0x7f0b00a6
  2225. int layout support_simple_spinner_dropdown_item 0x7f0b00a7
  2226. int layout view_line_horizontal 0x7f0b00a8
  2227. int layout view_line_vertical 0x7f0b00a9
  2228. int menu menu_toolbar_move_task_add 0x7f0c0000
  2229. int menu menu_toolbar_personal 0x7f0c0001
  2230. int menu menu_toolbar_progress_list 0x7f0c0002
  2231. int mipmap ic_launcher 0x7f0d0000
  2232. int mipmap ic_launcher_round 0x7f0d0001
  2233. int string abc_action_bar_home_description 0x7f0e0000
  2234. int string abc_action_bar_up_description 0x7f0e0001
  2235. int string abc_action_menu_overflow_description 0x7f0e0002
  2236. int string abc_action_mode_done 0x7f0e0003
  2237. int string abc_activity_chooser_view_see_all 0x7f0e0004
  2238. int string abc_activitychooserview_choose_application 0x7f0e0005
  2239. int string abc_capital_off 0x7f0e0006
  2240. int string abc_capital_on 0x7f0e0007
  2241. int string abc_menu_alt_shortcut_label 0x7f0e0008
  2242. int string abc_menu_ctrl_shortcut_label 0x7f0e0009
  2243. int string abc_menu_delete_shortcut_label 0x7f0e000a
  2244. int string abc_menu_enter_shortcut_label 0x7f0e000b
  2245. int string abc_menu_function_shortcut_label 0x7f0e000c
  2246. int string abc_menu_meta_shortcut_label 0x7f0e000d
  2247. int string abc_menu_shift_shortcut_label 0x7f0e000e
  2248. int string abc_menu_space_shortcut_label 0x7f0e000f
  2249. int string abc_menu_sym_shortcut_label 0x7f0e0010
  2250. int string abc_prepend_shortcut_label 0x7f0e0011
  2251. int string abc_search_hint 0x7f0e0012
  2252. int string abc_searchview_description_clear 0x7f0e0013
  2253. int string abc_searchview_description_query 0x7f0e0014
  2254. int string abc_searchview_description_search 0x7f0e0015
  2255. int string abc_searchview_description_submit 0x7f0e0016
  2256. int string abc_searchview_description_voice 0x7f0e0017
  2257. int string abc_shareactionprovider_share_with 0x7f0e0018
  2258. int string abc_shareactionprovider_share_with_application 0x7f0e0019
  2259. int string abc_toolbar_collapse_description 0x7f0e001a
  2260. int string app_name 0x7f0e001b
  2261. int string appbar_scrolling_view_behavior 0x7f0e001c
  2262. int string bottom_sheet_behavior 0x7f0e001d
  2263. int string character_counter_content_description 0x7f0e001e
  2264. int string character_counter_pattern 0x7f0e001f
  2265. int string default_user_name 0x7f0e0020
  2266. int string fab_transformation_scrim_behavior 0x7f0e0021
  2267. int string fab_transformation_sheet_behavior 0x7f0e0022
  2268. int string general_string_add 0x7f0e0023
  2269. int string general_string_alert 0x7f0e0024
  2270. int string general_string_cancel 0x7f0e0025
  2271. int string general_string_close 0x7f0e0026
  2272. int string general_string_confirm 0x7f0e0027
  2273. int string general_string_next 0x7f0e0028
  2274. int string general_string_next_info 0x7f0e0029
  2275. int string general_string_open 0x7f0e002a
  2276. int string general_string_personal 0x7f0e002b
  2277. int string general_string_previous_info 0x7f0e002c
  2278. int string general_string_progress_list 0x7f0e002d
  2279. int string general_string_remark 0x7f0e002e
  2280. int string general_string_reset 0x7f0e002f
  2281. int string general_string_save 0x7f0e0030
  2282. int string general_string_skip 0x7f0e0031
  2283. int string general_string_submit 0x7f0e0032
  2284. int string general_string_submit_success 0x7f0e0033
  2285. int string general_value_default 0x7f0e0034
  2286. int string hide_bottom_view_on_scroll_behavior 0x7f0e0035
  2287. int string item_in_acceptance 0x7f0e0036
  2288. int string item_in_putaway 0x7f0e0037
  2289. int string item_in_receive_goods 0x7f0e0038
  2290. int string item_operation_check 0x7f0e0039
  2291. int string item_operation_conserve 0x7f0e003a
  2292. int string item_operation_move 0x7f0e003b
  2293. int string item_out_package_recheck 0x7f0e003c
  2294. int string item_out_recheck 0x7f0e003d
  2295. int string item_search_goods 0x7f0e003e
  2296. int string item_search_storage 0x7f0e003f
  2297. int string item_user_feedback 0x7f0e0040
  2298. int string item_user_information 0x7f0e0041
  2299. int string item_user_log_out 0x7f0e0042
  2300. int string item_user_psw_edit 0x7f0e0043
  2301. int string listview_header_hint_normal 0x7f0e0044
  2302. int string listview_header_hint_release 0x7f0e0045
  2303. int string listview_header_last_time 0x7f0e0046
  2304. int string listview_loading 0x7f0e0047
  2305. int string loading_done 0x7f0e0048
  2306. int string login_account_password_hint 0x7f0e0049
  2307. int string login_action_next 0x7f0e004a
  2308. int string login_copyright 0x7f0e004b
  2309. int string login_user_name_hint 0x7f0e004c
  2310. int string login_welcome_slogan 0x7f0e004d
  2311. int string mtrl_chip_close_icon_content_description 0x7f0e004e
  2312. int string nomore_loading 0x7f0e004f
  2313. int string password_toggle_content_description 0x7f0e0050
  2314. int string path_password_eye 0x7f0e0051
  2315. int string path_password_eye_mask_strike_through 0x7f0e0052
  2316. int string path_password_eye_mask_visible 0x7f0e0053
  2317. int string path_password_strike_through 0x7f0e0054
  2318. int string pickerview_cancel 0x7f0e0055
  2319. int string pickerview_day 0x7f0e0056
  2320. int string pickerview_hours 0x7f0e0057
  2321. int string pickerview_minutes 0x7f0e0058
  2322. int string pickerview_month 0x7f0e0059
  2323. int string pickerview_seconds 0x7f0e005a
  2324. int string pickerview_submit 0x7f0e005b
  2325. int string pickerview_year 0x7f0e005c
  2326. int string refresh_done 0x7f0e005d
  2327. int string refreshing 0x7f0e005e
  2328. int string search_menu_title 0x7f0e005f
  2329. int string status_bar_notification_info_overflow 0x7f0e0060
  2330. int string str_RKDH_notice 0x7f0e0061
  2331. int string str_RKDH_number 0x7f0e0062
  2332. int string str_RKDH_number_hint 0x7f0e0063
  2333. int string str_RKDH_putaway_list 0x7f0e0064
  2334. int string str_accept_custom 0x7f0e0065
  2335. int string str_accept_list 0x7f0e0066
  2336. int string str_accept_note 0x7f0e0067
  2337. int string str_accept_note_1 0x7f0e0068
  2338. int string str_accept_note_2 0x7f0e0069
  2339. int string str_accept_note_3 0x7f0e006a
  2340. int string str_accept_note_4 0x7f0e006b
  2341. int string str_accept_note_5 0x7f0e006c
  2342. int string str_accept_note_6 0x7f0e006d
  2343. int string str_accept_note_7 0x7f0e006e
  2344. int string str_accept_note_8 0x7f0e006f
  2345. int string str_accept_piece 0x7f0e0070
  2346. int string str_accept_status 0x7f0e0071
  2347. int string str_app_download 0x7f0e0072
  2348. int string str_available_stock 0x7f0e0073
  2349. int string str_batch_sterilization 0x7f0e0074
  2350. int string str_check_list 0x7f0e0075
  2351. int string str_check_notice 0x7f0e0076
  2352. int string str_check_odd_num 0x7f0e0077
  2353. int string str_check_odd_num_hint 0x7f0e0078
  2354. int string str_check_piece 0x7f0e0079
  2355. int string str_check_piece_hint 0x7f0e007a
  2356. int string str_conserve_hygienic_condition 0x7f0e007b
  2357. int string str_conserve_loc_age 0x7f0e007c
  2358. int string str_conserve_notice 0x7f0e007d
  2359. int string str_conserve_odd_num 0x7f0e007e
  2360. int string str_conserve_odd_num_hint 0x7f0e007f
  2361. int string str_conserve_piece 0x7f0e0080
  2362. int string str_conserve_piece_hint 0x7f0e0081
  2363. int string str_conserve_protective_measures 0x7f0e0082
  2364. int string str_conserve_qualified_default 0x7f0e0083
  2365. int string str_conserve_sign_clear 0x7f0e0084
  2366. int string str_conserve_storage_condition 0x7f0e0085
  2367. int string str_conserve_task_end 0x7f0e0086
  2368. int string str_conserve_task_list 0x7f0e0087
  2369. int string str_conserve_work_flow 0x7f0e0088
  2370. int string str_customer_num 0x7f0e0089
  2371. int string str_default_note 0x7f0e008a
  2372. int string str_end_check_task 0x7f0e008b
  2373. int string str_end_receive 0x7f0e008c
  2374. int string str_end_recheck 0x7f0e008d
  2375. int string str_expiry_date 0x7f0e008e
  2376. int string str_goods_barcode 0x7f0e008f
  2377. int string str_goods_barcode_hint 0x7f0e0090
  2378. int string str_goods_certificate 0x7f0e0091
  2379. int string str_goods_certificate_hint 0x7f0e0092
  2380. int string str_goods_code 0x7f0e0093
  2381. int string str_goods_code_hint 0x7f0e0094
  2382. int string str_goods_loc 0x7f0e0095
  2383. int string str_goods_model 0x7f0e0096
  2384. int string str_goods_name 0x7f0e0097
  2385. int string str_goods_notice 0x7f0e0098
  2386. int string str_goods_num 0x7f0e0099
  2387. int string str_goods_owner 0x7f0e009a
  2388. int string str_goods_pending 0x7f0e009b
  2389. int string str_goods_piece 0x7f0e009c
  2390. int string str_goods_qualified 0x7f0e009d
  2391. int string str_goods_status 0x7f0e009e
  2392. int string str_goods_status_alert 0x7f0e009f
  2393. int string str_goods_unchecked 0x7f0e00a0
  2394. int string str_goods_unqualified 0x7f0e00a1
  2395. int string str_inventory_status 0x7f0e00a2
  2396. int string str_last_search_result 0x7f0e00a3
  2397. int string str_loc_confirm 0x7f0e00a4
  2398. int string str_loc_confirm_hint 0x7f0e00a5
  2399. int string str_location 0x7f0e00a6
  2400. int string str_location_hint 0x7f0e00a7
  2401. int string str_lock_alert 0x7f0e00a8
  2402. int string str_lock_goods_code 0x7f0e00a9
  2403. int string str_lock_loc 0x7f0e00aa
  2404. int string str_lot_no 0x7f0e00ab
  2405. int string str_lot_no_hint 0x7f0e00ac
  2406. int string str_manufacturer 0x7f0e00ad
  2407. int string str_manufacturer_code 0x7f0e00ae
  2408. int string str_material 0x7f0e00af
  2409. int string str_material_height_level 0x7f0e00b0
  2410. int string str_material_hint 0x7f0e00b1
  2411. int string str_material_pcs 0x7f0e00b2
  2412. int string str_material_pcs_hint 0x7f0e00b3
  2413. int string str_move_in_loc 0x7f0e00b4
  2414. int string str_move_in_loc_hint 0x7f0e00b5
  2415. int string str_move_notice 0x7f0e00b6
  2416. int string str_move_odd_num 0x7f0e00b7
  2417. int string str_move_odd_num_hint 0x7f0e00b8
  2418. int string str_move_out_loc 0x7f0e00b9
  2419. int string str_move_out_loc_hint 0x7f0e00ba
  2420. int string str_move_piece 0x7f0e00bb
  2421. int string str_move_piece_hint 0x7f0e00bc
  2422. int string str_move_task_add 0x7f0e00bd
  2423. int string str_new_asn 0x7f0e00be
  2424. int string str_new_asn_hint 0x7f0e00bf
  2425. int string str_new_material 0x7f0e00c0
  2426. int string str_next_search_result 0x7f0e00c1
  2427. int string str_out_notice 0x7f0e00c2
  2428. int string str_out_num 0x7f0e00c3
  2429. int string str_out_odd_num 0x7f0e00c4
  2430. int string str_out_odd_num_hint 0x7f0e00c5
  2431. int string str_pack_complete 0x7f0e00c6
  2432. int string str_prd_batch 0x7f0e00c7
  2433. int string str_prd_date 0x7f0e00c8
  2434. int string str_putaway_finish 0x7f0e00c9
  2435. int string str_putaway_loc 0x7f0e00ca
  2436. int string str_putaway_loc_hint 0x7f0e00cb
  2437. int string str_putawayed_piece 0x7f0e00cc
  2438. int string str_putawaying_piece 0x7f0e00cd
  2439. int string str_putawaying_piece_hint 0x7f0e00ce
  2440. int string str_qualified_file 0x7f0e00cf
  2441. int string str_qualified_file_hint 0x7f0e00d0
  2442. int string str_receive_num 0x7f0e00d1
  2443. int string str_receive_piece 0x7f0e00d2
  2444. int string str_receive_task_num 0x7f0e00d3
  2445. int string str_received_num 0x7f0e00d4
  2446. int string str_received_piece 0x7f0e00d5
  2447. int string str_receiving_num 0x7f0e00d6
  2448. int string str_receiving_piece 0x7f0e00d7
  2449. int string str_receiving_piece_hint 0x7f0e00d8
  2450. int string str_recheck_note 0x7f0e00d9
  2451. int string str_recheck_note_1 0x7f0e00da
  2452. int string str_recheck_note_2 0x7f0e00db
  2453. int string str_recheck_note_3 0x7f0e00dc
  2454. int string str_recheck_note_4 0x7f0e00dd
  2455. int string str_recheck_note_5 0x7f0e00de
  2456. int string str_recheck_note_6 0x7f0e00df
  2457. int string str_recheck_num 0x7f0e00e0
  2458. int string str_recheck_piece 0x7f0e00e1
  2459. int string str_recheck_status 0x7f0e00e2
  2460. int string str_recommend_loc 0x7f0e00e3
  2461. int string str_register_code 0x7f0e00e4
  2462. int string str_search_batch_num 0x7f0e00e5
  2463. int string str_search_batch_piece 0x7f0e00e6
  2464. int string str_search_result 0x7f0e00e7
  2465. int string str_search_storage_num 0x7f0e00e8
  2466. int string str_search_storage_piece 0x7f0e00e9
  2467. int string str_serial_num 0x7f0e00ea
  2468. int string str_status_checked 0x7f0e00eb
  2469. int string str_status_unchecked 0x7f0e00ec
  2470. int string str_storage 0x7f0e00ed
  2471. int string str_storage_condition 0x7f0e00ee
  2472. int string str_storage_condition_hint 0x7f0e00ef
  2473. int string str_storage_notice 0x7f0e00f0
  2474. int string str_storage_number 0x7f0e00f1
  2475. int string str_storage_number_hint 0x7f0e00f2
  2476. int string str_transit_location 0x7f0e00f3
  2477. int string str_transit_location_hint 0x7f0e00f4
  2478. int string str_unit 0x7f0e00f5
  2479. int string str_unreceived_num 0x7f0e00f6
  2480. int string str_unreceived_piece 0x7f0e00f7
  2481. int string str_version_code 0x7f0e00f8
  2482. int string str_version_code_hint 0x7f0e00f9
  2483. int string tab_in 0x7f0e00fa
  2484. int string tab_operation 0x7f0e00fb
  2485. int string tab_out 0x7f0e00fc
  2486. int string tab_quality 0x7f0e00fd
  2487. int string tab_search 0x7f0e00fe
  2488. int style AlertDialog_AppCompat 0x7f0f0000
  2489. int style AlertDialog_AppCompat_Light 0x7f0f0001
  2490. int style Animation_AppCompat_Dialog 0x7f0f0002
  2491. int style Animation_AppCompat_DropDownUp 0x7f0f0003
  2492. int style Animation_AppCompat_Tooltip 0x7f0f0004
  2493. int style Animation_Design_BottomSheetDialog 0x7f0f0005
  2494. int style AppTheme 0x7f0f0006
  2495. int style Base_AlertDialog_AppCompat 0x7f0f0007
  2496. int style Base_AlertDialog_AppCompat_Light 0x7f0f0008
  2497. int style Base_Animation_AppCompat_Dialog 0x7f0f0009
  2498. int style Base_Animation_AppCompat_DropDownUp 0x7f0f000a
  2499. int style Base_Animation_AppCompat_Tooltip 0x7f0f000b
  2500. int style Base_CardView 0x7f0f000c
  2501. int style Base_DialogWindowTitle_AppCompat 0x7f0f000d
  2502. int style Base_DialogWindowTitleBackground_AppCompat 0x7f0f000e
  2503. int style Base_TextAppearance_AppCompat 0x7f0f000f
  2504. int style Base_TextAppearance_AppCompat_Body1 0x7f0f0010
  2505. int style Base_TextAppearance_AppCompat_Body2 0x7f0f0011
  2506. int style Base_TextAppearance_AppCompat_Button 0x7f0f0012
  2507. int style Base_TextAppearance_AppCompat_Caption 0x7f0f0013
  2508. int style Base_TextAppearance_AppCompat_Display1 0x7f0f0014
  2509. int style Base_TextAppearance_AppCompat_Display2 0x7f0f0015
  2510. int style Base_TextAppearance_AppCompat_Display3 0x7f0f0016
  2511. int style Base_TextAppearance_AppCompat_Display4 0x7f0f0017
  2512. int style Base_TextAppearance_AppCompat_Headline 0x7f0f0018
  2513. int style Base_TextAppearance_AppCompat_Inverse 0x7f0f0019
  2514. int style Base_TextAppearance_AppCompat_Large 0x7f0f001a
  2515. int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0f001b
  2516. int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0f001c
  2517. int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0f001d
  2518. int style Base_TextAppearance_AppCompat_Medium 0x7f0f001e
  2519. int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0f001f
  2520. int style Base_TextAppearance_AppCompat_Menu 0x7f0f0020
  2521. int style Base_TextAppearance_AppCompat_SearchResult 0x7f0f0021
  2522. int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0f0022
  2523. int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0f0023
  2524. int style Base_TextAppearance_AppCompat_Small 0x7f0f0024
  2525. int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0f0025
  2526. int style Base_TextAppearance_AppCompat_Subhead 0x7f0f0026
  2527. int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0f0027
  2528. int style Base_TextAppearance_AppCompat_Title 0x7f0f0028
  2529. int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0f0029
  2530. int style Base_TextAppearance_AppCompat_Tooltip 0x7f0f002a
  2531. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0f002b
  2532. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0f002c
  2533. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0f002d
  2534. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0f002e
  2535. int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0f002f
  2536. int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0f0030
  2537. int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0f0031
  2538. int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0f0032
  2539. int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0f0033
  2540. int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0f0034
  2541. int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0f0035
  2542. int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0f0036
  2543. int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0f0037
  2544. int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0f0038
  2545. int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0f0039
  2546. int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0f003a
  2547. int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0f003b
  2548. int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0f003c
  2549. int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0f003d
  2550. int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0f003e
  2551. int style Base_Theme_AppCompat 0x7f0f003f
  2552. int style Base_Theme_AppCompat_CompactMenu 0x7f0f0040
  2553. int style Base_Theme_AppCompat_Dialog 0x7f0f0041
  2554. int style Base_Theme_AppCompat_Dialog_Alert 0x7f0f0042
  2555. int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0f0043
  2556. int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0f0044
  2557. int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0f0045
  2558. int style Base_Theme_AppCompat_Light 0x7f0f0046
  2559. int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0f0047
  2560. int style Base_Theme_AppCompat_Light_Dialog 0x7f0f0048
  2561. int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0f0049
  2562. int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0f004a
  2563. int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0f004b
  2564. int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0f004c
  2565. int style Base_Theme_MaterialComponents 0x7f0f004d
  2566. int style Base_Theme_MaterialComponents_Bridge 0x7f0f004e
  2567. int style Base_Theme_MaterialComponents_CompactMenu 0x7f0f004f
  2568. int style Base_Theme_MaterialComponents_Dialog 0x7f0f0050
  2569. int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f0f0051
  2570. int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f0f0052
  2571. int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f0f0053
  2572. int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f0f0054
  2573. int style Base_Theme_MaterialComponents_Light 0x7f0f0055
  2574. int style Base_Theme_MaterialComponents_Light_Bridge 0x7f0f0056
  2575. int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f0f0057
  2576. int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0f0058
  2577. int style Base_Theme_MaterialComponents_Light_Dialog 0x7f0f0059
  2578. int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f0f005a
  2579. int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f0f005b
  2580. int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f0f005c
  2581. int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f0f005d
  2582. int style Base_ThemeOverlay_AppCompat 0x7f0f005e
  2583. int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0f005f
  2584. int style Base_ThemeOverlay_AppCompat_Dark 0x7f0f0060
  2585. int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0f0061
  2586. int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0f0062
  2587. int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0f0063
  2588. int style Base_ThemeOverlay_AppCompat_Light 0x7f0f0064
  2589. int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f0f0065
  2590. int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0f0066
  2591. int style Base_V14_Theme_MaterialComponents 0x7f0f0067
  2592. int style Base_V14_Theme_MaterialComponents_Bridge 0x7f0f0068
  2593. int style Base_V14_Theme_MaterialComponents_Dialog 0x7f0f0069
  2594. int style Base_V14_Theme_MaterialComponents_Light 0x7f0f006a
  2595. int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f0f006b
  2596. int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0f006c
  2597. int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f0f006d
  2598. int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f0f006e
  2599. int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0f006f
  2600. int style Base_V21_Theme_AppCompat 0x7f0f0070
  2601. int style Base_V21_Theme_AppCompat_Dialog 0x7f0f0071
  2602. int style Base_V21_Theme_AppCompat_Light 0x7f0f0072
  2603. int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0f0073
  2604. int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0f0074
  2605. int style Base_V22_Theme_AppCompat 0x7f0f0075
  2606. int style Base_V22_Theme_AppCompat_Light 0x7f0f0076
  2607. int style Base_V23_Theme_AppCompat 0x7f0f0077
  2608. int style Base_V23_Theme_AppCompat_Light 0x7f0f0078
  2609. int style Base_V26_Theme_AppCompat 0x7f0f0079
  2610. int style Base_V26_Theme_AppCompat_Light 0x7f0f007a
  2611. int style Base_V26_Widget_AppCompat_Toolbar 0x7f0f007b
  2612. int style Base_V28_Theme_AppCompat 0x7f0f007c
  2613. int style Base_V28_Theme_AppCompat_Light 0x7f0f007d
  2614. int style Base_V7_Theme_AppCompat 0x7f0f007e
  2615. int style Base_V7_Theme_AppCompat_Dialog 0x7f0f007f
  2616. int style Base_V7_Theme_AppCompat_Light 0x7f0f0080
  2617. int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0f0081
  2618. int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0f0082
  2619. int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0f0083
  2620. int style Base_V7_Widget_AppCompat_EditText 0x7f0f0084
  2621. int style Base_V7_Widget_AppCompat_Toolbar 0x7f0f0085
  2622. int style Base_Widget_AppCompat_ActionBar 0x7f0f0086
  2623. int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0f0087
  2624. int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0f0088
  2625. int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0f0089
  2626. int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0f008a
  2627. int style Base_Widget_AppCompat_ActionButton 0x7f0f008b
  2628. int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0f008c
  2629. int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0f008d
  2630. int style Base_Widget_AppCompat_ActionMode 0x7f0f008e
  2631. int style Base_Widget_AppCompat_ActivityChooserView 0x7f0f008f
  2632. int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0f0090
  2633. int style Base_Widget_AppCompat_Button 0x7f0f0091
  2634. int style Base_Widget_AppCompat_Button_Borderless 0x7f0f0092
  2635. int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0f0093
  2636. int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0f0094
  2637. int style Base_Widget_AppCompat_Button_Colored 0x7f0f0095
  2638. int style Base_Widget_AppCompat_Button_Small 0x7f0f0096
  2639. int style Base_Widget_AppCompat_ButtonBar 0x7f0f0097
  2640. int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0f0098
  2641. int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0f0099
  2642. int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0f009a
  2643. int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0f009b
  2644. int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0f009c
  2645. int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0f009d
  2646. int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0f009e
  2647. int style Base_Widget_AppCompat_EditText 0x7f0f009f
  2648. int style Base_Widget_AppCompat_ImageButton 0x7f0f00a0
  2649. int style Base_Widget_AppCompat_Light_ActionBar 0x7f0f00a1
  2650. int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0f00a2
  2651. int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0f00a3
  2652. int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0f00a4
  2653. int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0f00a5
  2654. int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0f00a6
  2655. int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0f00a7
  2656. int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0f00a8
  2657. int style Base_Widget_AppCompat_ListMenuView 0x7f0f00a9
  2658. int style Base_Widget_AppCompat_ListPopupWindow 0x7f0f00aa
  2659. int style Base_Widget_AppCompat_ListView 0x7f0f00ab
  2660. int style Base_Widget_AppCompat_ListView_DropDown 0x7f0f00ac
  2661. int style Base_Widget_AppCompat_ListView_Menu 0x7f0f00ad
  2662. int style Base_Widget_AppCompat_PopupMenu 0x7f0f00ae
  2663. int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0f00af
  2664. int style Base_Widget_AppCompat_PopupWindow 0x7f0f00b0
  2665. int style Base_Widget_AppCompat_ProgressBar 0x7f0f00b1
  2666. int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0f00b2
  2667. int style Base_Widget_AppCompat_RatingBar 0x7f0f00b3
  2668. int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0f00b4
  2669. int style Base_Widget_AppCompat_RatingBar_Small 0x7f0f00b5
  2670. int style Base_Widget_AppCompat_SearchView 0x7f0f00b6
  2671. int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0f00b7
  2672. int style Base_Widget_AppCompat_SeekBar 0x7f0f00b8
  2673. int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0f00b9
  2674. int style Base_Widget_AppCompat_Spinner 0x7f0f00ba
  2675. int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0f00bb
  2676. int style Base_Widget_AppCompat_TextView 0x7f0f00bc
  2677. int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0f00bd
  2678. int style Base_Widget_AppCompat_Toolbar 0x7f0f00be
  2679. int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0f00bf
  2680. int style Base_Widget_Design_TabLayout 0x7f0f00c0
  2681. int style Base_Widget_MaterialComponents_Chip 0x7f0f00c1
  2682. int style Base_Widget_MaterialComponents_TextInputEditText 0x7f0f00c2
  2683. int style Base_Widget_MaterialComponents_TextInputLayout 0x7f0f00c3
  2684. int style CardView 0x7f0f00c4
  2685. int style CardView_Dark 0x7f0f00c5
  2686. int style CardView_Light 0x7f0f00c6
  2687. int style Platform_AppCompat 0x7f0f00c7
  2688. int style Platform_AppCompat_Light 0x7f0f00c8
  2689. int style Platform_MaterialComponents 0x7f0f00c9
  2690. int style Platform_MaterialComponents_Dialog 0x7f0f00ca
  2691. int style Platform_MaterialComponents_Light 0x7f0f00cb
  2692. int style Platform_MaterialComponents_Light_Dialog 0x7f0f00cc
  2693. int style Platform_ThemeOverlay_AppCompat 0x7f0f00cd
  2694. int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0f00ce
  2695. int style Platform_ThemeOverlay_AppCompat_Light 0x7f0f00cf
  2696. int style Platform_V21_AppCompat 0x7f0f00d0
  2697. int style Platform_V21_AppCompat_Light 0x7f0f00d1
  2698. int style Platform_V25_AppCompat 0x7f0f00d2
  2699. int style Platform_V25_AppCompat_Light 0x7f0f00d3
  2700. int style Platform_Widget_AppCompat_Spinner 0x7f0f00d4
  2701. int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0f00d5
  2702. int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0f00d6
  2703. int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0f00d7
  2704. int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0f00d8
  2705. int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0f00d9
  2706. int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f0f00da
  2707. int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f0f00db
  2708. int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0f00dc
  2709. int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f0f00dd
  2710. int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0f00de
  2711. int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0f00df
  2712. int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0f00e0
  2713. int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0f00e1
  2714. int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0f00e2
  2715. int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0f00e3
  2716. int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0f00e4
  2717. int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0f00e5
  2718. int style TextAppearance_AppCompat 0x7f0f00e6
  2719. int style TextAppearance_AppCompat_Body1 0x7f0f00e7
  2720. int style TextAppearance_AppCompat_Body2 0x7f0f00e8
  2721. int style TextAppearance_AppCompat_Button 0x7f0f00e9
  2722. int style TextAppearance_AppCompat_Caption 0x7f0f00ea
  2723. int style TextAppearance_AppCompat_Display1 0x7f0f00eb
  2724. int style TextAppearance_AppCompat_Display2 0x7f0f00ec
  2725. int style TextAppearance_AppCompat_Display3 0x7f0f00ed
  2726. int style TextAppearance_AppCompat_Display4 0x7f0f00ee
  2727. int style TextAppearance_AppCompat_Headline 0x7f0f00ef
  2728. int style TextAppearance_AppCompat_Inverse 0x7f0f00f0
  2729. int style TextAppearance_AppCompat_Large 0x7f0f00f1
  2730. int style TextAppearance_AppCompat_Large_Inverse 0x7f0f00f2
  2731. int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0f00f3
  2732. int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0f00f4
  2733. int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0f00f5
  2734. int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0f00f6
  2735. int style TextAppearance_AppCompat_Medium 0x7f0f00f7
  2736. int style TextAppearance_AppCompat_Medium_Inverse 0x7f0f00f8
  2737. int style TextAppearance_AppCompat_Menu 0x7f0f00f9
  2738. int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0f00fa
  2739. int style TextAppearance_AppCompat_SearchResult_Title 0x7f0f00fb
  2740. int style TextAppearance_AppCompat_Small 0x7f0f00fc
  2741. int style TextAppearance_AppCompat_Small_Inverse 0x7f0f00fd
  2742. int style TextAppearance_AppCompat_Subhead 0x7f0f00fe
  2743. int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0f00ff
  2744. int style TextAppearance_AppCompat_Title 0x7f0f0100
  2745. int style TextAppearance_AppCompat_Title_Inverse 0x7f0f0101
  2746. int style TextAppearance_AppCompat_Tooltip 0x7f0f0102
  2747. int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0f0103
  2748. int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0f0104
  2749. int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0f0105
  2750. int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0f0106
  2751. int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0f0107
  2752. int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0f0108
  2753. int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0f0109
  2754. int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0f010a
  2755. int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0f010b
  2756. int style TextAppearance_AppCompat_Widget_Button 0x7f0f010c
  2757. int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0f010d
  2758. int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0f010e
  2759. int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0f010f
  2760. int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0f0110
  2761. int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0f0111
  2762. int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0f0112
  2763. int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0f0113
  2764. int style TextAppearance_AppCompat_Widget_Switch 0x7f0f0114
  2765. int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0f0115
  2766. int style TextAppearance_Compat_Notification 0x7f0f0116
  2767. int style TextAppearance_Compat_Notification_Info 0x7f0f0117
  2768. int style TextAppearance_Compat_Notification_Info_Media 0x7f0f0118
  2769. int style TextAppearance_Compat_Notification_Line2 0x7f0f0119
  2770. int style TextAppearance_Compat_Notification_Line2_Media 0x7f0f011a
  2771. int style TextAppearance_Compat_Notification_Media 0x7f0f011b
  2772. int style TextAppearance_Compat_Notification_Time 0x7f0f011c
  2773. int style TextAppearance_Compat_Notification_Time_Media 0x7f0f011d
  2774. int style TextAppearance_Compat_Notification_Title 0x7f0f011e
  2775. int style TextAppearance_Compat_Notification_Title_Media 0x7f0f011f
  2776. int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f0f0120
  2777. int style TextAppearance_Design_Counter 0x7f0f0121
  2778. int style TextAppearance_Design_Counter_Overflow 0x7f0f0122
  2779. int style TextAppearance_Design_Error 0x7f0f0123
  2780. int style TextAppearance_Design_HelperText 0x7f0f0124
  2781. int style TextAppearance_Design_Hint 0x7f0f0125
  2782. int style TextAppearance_Design_Snackbar_Message 0x7f0f0126
  2783. int style TextAppearance_Design_Tab 0x7f0f0127
  2784. int style TextAppearance_MaterialComponents_Body1 0x7f0f0128
  2785. int style TextAppearance_MaterialComponents_Body2 0x7f0f0129
  2786. int style TextAppearance_MaterialComponents_Button 0x7f0f012a
  2787. int style TextAppearance_MaterialComponents_Caption 0x7f0f012b
  2788. int style TextAppearance_MaterialComponents_Chip 0x7f0f012c
  2789. int style TextAppearance_MaterialComponents_Headline1 0x7f0f012d
  2790. int style TextAppearance_MaterialComponents_Headline2 0x7f0f012e
  2791. int style TextAppearance_MaterialComponents_Headline3 0x7f0f012f
  2792. int style TextAppearance_MaterialComponents_Headline4 0x7f0f0130
  2793. int style TextAppearance_MaterialComponents_Headline5 0x7f0f0131
  2794. int style TextAppearance_MaterialComponents_Headline6 0x7f0f0132
  2795. int style TextAppearance_MaterialComponents_Overline 0x7f0f0133
  2796. int style TextAppearance_MaterialComponents_Subtitle1 0x7f0f0134
  2797. int style TextAppearance_MaterialComponents_Subtitle2 0x7f0f0135
  2798. int style TextAppearance_MaterialComponents_Tab 0x7f0f0136
  2799. int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0f0137
  2800. int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0f0138
  2801. int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0f0139
  2802. int style Theme_AppCompat 0x7f0f013a
  2803. int style Theme_AppCompat_CompactMenu 0x7f0f013b
  2804. int style Theme_AppCompat_DayNight 0x7f0f013c
  2805. int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0f013d
  2806. int style Theme_AppCompat_DayNight_Dialog 0x7f0f013e
  2807. int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0f013f
  2808. int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0f0140
  2809. int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0f0141
  2810. int style Theme_AppCompat_DayNight_NoActionBar 0x7f0f0142
  2811. int style Theme_AppCompat_Dialog 0x7f0f0143
  2812. int style Theme_AppCompat_Dialog_Alert 0x7f0f0144
  2813. int style Theme_AppCompat_Dialog_MinWidth 0x7f0f0145
  2814. int style Theme_AppCompat_DialogWhenLarge 0x7f0f0146
  2815. int style Theme_AppCompat_Light 0x7f0f0147
  2816. int style Theme_AppCompat_Light_DarkActionBar 0x7f0f0148
  2817. int style Theme_AppCompat_Light_Dialog 0x7f0f0149
  2818. int style Theme_AppCompat_Light_Dialog_Alert 0x7f0f014a
  2819. int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0f014b
  2820. int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0f014c
  2821. int style Theme_AppCompat_Light_NoActionBar 0x7f0f014d
  2822. int style Theme_AppCompat_NoActionBar 0x7f0f014e
  2823. int style Theme_Design 0x7f0f014f
  2824. int style Theme_Design_BottomSheetDialog 0x7f0f0150
  2825. int style Theme_Design_Light 0x7f0f0151
  2826. int style Theme_Design_Light_BottomSheetDialog 0x7f0f0152
  2827. int style Theme_Design_Light_NoActionBar 0x7f0f0153
  2828. int style Theme_Design_NoActionBar 0x7f0f0154
  2829. int style Theme_MaterialComponents 0x7f0f0155
  2830. int style Theme_MaterialComponents_BottomSheetDialog 0x7f0f0156
  2831. int style Theme_MaterialComponents_Bridge 0x7f0f0157
  2832. int style Theme_MaterialComponents_CompactMenu 0x7f0f0158
  2833. int style Theme_MaterialComponents_Dialog 0x7f0f0159
  2834. int style Theme_MaterialComponents_Dialog_Alert 0x7f0f015a
  2835. int style Theme_MaterialComponents_Dialog_MinWidth 0x7f0f015b
  2836. int style Theme_MaterialComponents_DialogWhenLarge 0x7f0f015c
  2837. int style Theme_MaterialComponents_Light 0x7f0f015d
  2838. int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f0f015e
  2839. int style Theme_MaterialComponents_Light_Bridge 0x7f0f015f
  2840. int style Theme_MaterialComponents_Light_DarkActionBar 0x7f0f0160
  2841. int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0f0161
  2842. int style Theme_MaterialComponents_Light_Dialog 0x7f0f0162
  2843. int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f0f0163
  2844. int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f0f0164
  2845. int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f0f0165
  2846. int style Theme_MaterialComponents_Light_NoActionBar 0x7f0f0166
  2847. int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f0f0167
  2848. int style Theme_MaterialComponents_NoActionBar 0x7f0f0168
  2849. int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f0f0169
  2850. int style ThemeOverlay_AppCompat 0x7f0f016a
  2851. int style ThemeOverlay_AppCompat_ActionBar 0x7f0f016b
  2852. int style ThemeOverlay_AppCompat_Dark 0x7f0f016c
  2853. int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0f016d
  2854. int style ThemeOverlay_AppCompat_DayNight 0x7f0f016e
  2855. int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f0f016f
  2856. int style ThemeOverlay_AppCompat_Dialog 0x7f0f0170
  2857. int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0f0171
  2858. int style ThemeOverlay_AppCompat_Light 0x7f0f0172
  2859. int style ThemeOverlay_MaterialComponents 0x7f0f0173
  2860. int style ThemeOverlay_MaterialComponents_ActionBar 0x7f0f0174
  2861. int style ThemeOverlay_MaterialComponents_Dark 0x7f0f0175
  2862. int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f0f0176
  2863. int style ThemeOverlay_MaterialComponents_Dialog 0x7f0f0177
  2864. int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0f0178
  2865. int style ThemeOverlay_MaterialComponents_Light 0x7f0f0179
  2866. int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f0f017a
  2867. int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f0f017b
  2868. int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f0f017c
  2869. int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f0f017d
  2870. int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f0f017e
  2871. int style Widget_AppCompat_ActionBar 0x7f0f017f
  2872. int style Widget_AppCompat_ActionBar_Solid 0x7f0f0180
  2873. int style Widget_AppCompat_ActionBar_TabBar 0x7f0f0181
  2874. int style Widget_AppCompat_ActionBar_TabText 0x7f0f0182
  2875. int style Widget_AppCompat_ActionBar_TabView 0x7f0f0183
  2876. int style Widget_AppCompat_ActionButton 0x7f0f0184
  2877. int style Widget_AppCompat_ActionButton_CloseMode 0x7f0f0185
  2878. int style Widget_AppCompat_ActionButton_Overflow 0x7f0f0186
  2879. int style Widget_AppCompat_ActionMode 0x7f0f0187
  2880. int style Widget_AppCompat_ActivityChooserView 0x7f0f0188
  2881. int style Widget_AppCompat_AutoCompleteTextView 0x7f0f0189
  2882. int style Widget_AppCompat_Button 0x7f0f018a
  2883. int style Widget_AppCompat_Button_Borderless 0x7f0f018b
  2884. int style Widget_AppCompat_Button_Borderless_Colored 0x7f0f018c
  2885. int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0f018d
  2886. int style Widget_AppCompat_Button_Colored 0x7f0f018e
  2887. int style Widget_AppCompat_Button_Small 0x7f0f018f
  2888. int style Widget_AppCompat_ButtonBar 0x7f0f0190
  2889. int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0f0191
  2890. int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0f0192
  2891. int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0f0193
  2892. int style Widget_AppCompat_CompoundButton_Switch 0x7f0f0194
  2893. int style Widget_AppCompat_DrawerArrowToggle 0x7f0f0195
  2894. int style Widget_AppCompat_DropDownItem_Spinner 0x7f0f0196
  2895. int style Widget_AppCompat_EditText 0x7f0f0197
  2896. int style Widget_AppCompat_ImageButton 0x7f0f0198
  2897. int style Widget_AppCompat_Light_ActionBar 0x7f0f0199
  2898. int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0f019a
  2899. int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0f019b
  2900. int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0f019c
  2901. int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0f019d
  2902. int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0f019e
  2903. int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0f019f
  2904. int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0f01a0
  2905. int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0f01a1
  2906. int style Widget_AppCompat_Light_ActionButton 0x7f0f01a2
  2907. int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0f01a3
  2908. int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0f01a4
  2909. int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0f01a5
  2910. int style Widget_AppCompat_Light_ActivityChooserView 0x7f0f01a6
  2911. int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0f01a7
  2912. int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0f01a8
  2913. int style Widget_AppCompat_Light_ListPopupWindow 0x7f0f01a9
  2914. int style Widget_AppCompat_Light_ListView_DropDown 0x7f0f01aa
  2915. int style Widget_AppCompat_Light_PopupMenu 0x7f0f01ab
  2916. int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0f01ac
  2917. int style Widget_AppCompat_Light_SearchView 0x7f0f01ad
  2918. int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0f01ae
  2919. int style Widget_AppCompat_ListMenuView 0x7f0f01af
  2920. int style Widget_AppCompat_ListPopupWindow 0x7f0f01b0
  2921. int style Widget_AppCompat_ListView 0x7f0f01b1
  2922. int style Widget_AppCompat_ListView_DropDown 0x7f0f01b2
  2923. int style Widget_AppCompat_ListView_Menu 0x7f0f01b3
  2924. int style Widget_AppCompat_PopupMenu 0x7f0f01b4
  2925. int style Widget_AppCompat_PopupMenu_Overflow 0x7f0f01b5
  2926. int style Widget_AppCompat_PopupWindow 0x7f0f01b6
  2927. int style Widget_AppCompat_ProgressBar 0x7f0f01b7
  2928. int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0f01b8
  2929. int style Widget_AppCompat_RatingBar 0x7f0f01b9
  2930. int style Widget_AppCompat_RatingBar_Indicator 0x7f0f01ba
  2931. int style Widget_AppCompat_RatingBar_Small 0x7f0f01bb
  2932. int style Widget_AppCompat_SearchView 0x7f0f01bc
  2933. int style Widget_AppCompat_SearchView_ActionBar 0x7f0f01bd
  2934. int style Widget_AppCompat_SeekBar 0x7f0f01be
  2935. int style Widget_AppCompat_SeekBar_Discrete 0x7f0f01bf
  2936. int style Widget_AppCompat_Spinner 0x7f0f01c0
  2937. int style Widget_AppCompat_Spinner_DropDown 0x7f0f01c1
  2938. int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0f01c2
  2939. int style Widget_AppCompat_Spinner_Underlined 0x7f0f01c3
  2940. int style Widget_AppCompat_TextView 0x7f0f01c4
  2941. int style Widget_AppCompat_TextView_SpinnerItem 0x7f0f01c5
  2942. int style Widget_AppCompat_Toolbar 0x7f0f01c6
  2943. int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0f01c7
  2944. int style Widget_Compat_NotificationActionContainer 0x7f0f01c8
  2945. int style Widget_Compat_NotificationActionText 0x7f0f01c9
  2946. int style Widget_Design_AppBarLayout 0x7f0f01ca
  2947. int style Widget_Design_BottomNavigationView 0x7f0f01cb
  2948. int style Widget_Design_BottomSheet_Modal 0x7f0f01cc
  2949. int style Widget_Design_CollapsingToolbar 0x7f0f01cd
  2950. int style Widget_Design_FloatingActionButton 0x7f0f01ce
  2951. int style Widget_Design_NavigationView 0x7f0f01cf
  2952. int style Widget_Design_ScrimInsetsFrameLayout 0x7f0f01d0
  2953. int style Widget_Design_Snackbar 0x7f0f01d1
  2954. int style Widget_Design_TabLayout 0x7f0f01d2
  2955. int style Widget_Design_TextInputLayout 0x7f0f01d3
  2956. int style Widget_MaterialComponents_BottomAppBar 0x7f0f01d4
  2957. int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f0f01d5
  2958. int style Widget_MaterialComponents_BottomNavigationView 0x7f0f01d6
  2959. int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f0f01d7
  2960. int style Widget_MaterialComponents_BottomSheet_Modal 0x7f0f01d8
  2961. int style Widget_MaterialComponents_Button 0x7f0f01d9
  2962. int style Widget_MaterialComponents_Button_Icon 0x7f0f01da
  2963. int style Widget_MaterialComponents_Button_OutlinedButton 0x7f0f01db
  2964. int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f0f01dc
  2965. int style Widget_MaterialComponents_Button_TextButton 0x7f0f01dd
  2966. int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f0f01de
  2967. int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f0f01df
  2968. int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f0f01e0
  2969. int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f0f01e1
  2970. int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f0f01e2
  2971. int style Widget_MaterialComponents_CardView 0x7f0f01e3
  2972. int style Widget_MaterialComponents_Chip_Action 0x7f0f01e4
  2973. int style Widget_MaterialComponents_Chip_Choice 0x7f0f01e5
  2974. int style Widget_MaterialComponents_Chip_Entry 0x7f0f01e6
  2975. int style Widget_MaterialComponents_Chip_Filter 0x7f0f01e7
  2976. int style Widget_MaterialComponents_ChipGroup 0x7f0f01e8
  2977. int style Widget_MaterialComponents_FloatingActionButton 0x7f0f01e9
  2978. int style Widget_MaterialComponents_NavigationView 0x7f0f01ea
  2979. int style Widget_MaterialComponents_Snackbar 0x7f0f01eb
  2980. int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f0f01ec
  2981. int style Widget_MaterialComponents_TabLayout 0x7f0f01ed
  2982. int style Widget_MaterialComponents_TabLayout_Colored 0x7f0f01ee
  2983. int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f0f01ef
  2984. int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f0f01f0
  2985. int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f0f01f1
  2986. int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f0f01f2
  2987. int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f0f01f3
  2988. int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f0f01f4
  2989. int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f0f01f5
  2990. int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f0f01f6
  2991. int style Widget_MaterialComponents_Toolbar 0x7f0f01f7
  2992. int style Widget_Support_CoordinatorLayout 0x7f0f01f8
  2993. int[] styleable AVLoadingIndicatorView { 0x7f030172, 0x7f030173 }
  2994. int styleable AVLoadingIndicatorView_indicator 0
  2995. int styleable AVLoadingIndicatorView_indicator_color 1
  2996. int[] styleable ActionBar { 0x7f030036, 0x7f030037, 0x7f030038, 0x7f0300ec, 0x7f0300ed, 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f1, 0x7f030109, 0x7f030115, 0x7f030116, 0x7f03012d, 0x7f030159, 0x7f03015e, 0x7f030163, 0x7f030164, 0x7f030166, 0x7f030171, 0x7f030183, 0x7f0301e6, 0x7f03020c, 0x7f030232, 0x7f030237, 0x7f030238, 0x7f030271, 0x7f030274, 0x7f0302bb, 0x7f0302c5 }
  2997. int styleable ActionBar_background 0
  2998. int styleable ActionBar_backgroundSplit 1
  2999. int styleable ActionBar_backgroundStacked 2
  3000. int styleable ActionBar_contentInsetEnd 3
  3001. int styleable ActionBar_contentInsetEndWithActions 4
  3002. int styleable ActionBar_contentInsetLeft 5
  3003. int styleable ActionBar_contentInsetRight 6
  3004. int styleable ActionBar_contentInsetStart 7
  3005. int styleable ActionBar_contentInsetStartWithNavigation 8
  3006. int styleable ActionBar_customNavigationLayout 9
  3007. int styleable ActionBar_displayOptions 10
  3008. int styleable ActionBar_divider 11
  3009. int styleable ActionBar_elevation 12
  3010. int styleable ActionBar_height 13
  3011. int styleable ActionBar_hideOnContentScroll 14
  3012. int styleable ActionBar_homeAsUpIndicator 15
  3013. int styleable ActionBar_homeLayout 16
  3014. int styleable ActionBar_icon 17
  3015. int styleable ActionBar_indeterminateProgressStyle 18
  3016. int styleable ActionBar_itemPadding 19
  3017. int styleable ActionBar_logo 20
  3018. int styleable ActionBar_navigationMode 21
  3019. int styleable ActionBar_popupTheme 22
  3020. int styleable ActionBar_progressBarPadding 23
  3021. int styleable ActionBar_progressBarStyle 24
  3022. int styleable ActionBar_subtitle 25
  3023. int styleable ActionBar_subtitleTextStyle 26
  3024. int styleable ActionBar_title 27
  3025. int styleable ActionBar_titleTextStyle 28
  3026. int[] styleable ActionBarLayout { 0x010100b3 }
  3027. int styleable ActionBarLayout_android_layout_gravity 0
  3028. int[] styleable ActionMenuItemView { 0x0101013f }
  3029. int styleable ActionMenuItemView_android_minWidth 0
  3030. int[] styleable ActionMenuView { }
  3031. int[] styleable ActionMode { 0x7f030036, 0x7f030037, 0x7f0300d3, 0x7f030159, 0x7f030274, 0x7f0302c5 }
  3032. int styleable ActionMode_background 0
  3033. int styleable ActionMode_backgroundSplit 1
  3034. int styleable ActionMode_closeItemLayout 2
  3035. int styleable ActionMode_height 3
  3036. int styleable ActionMode_subtitleTextStyle 4
  3037. int styleable ActionMode_titleTextStyle 5
  3038. int[] styleable ActivityChooserView { 0x7f030133, 0x7f030179 }
  3039. int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
  3040. int styleable ActivityChooserView_initialActivityCount 1
  3041. int[] styleable AlertDialog { 0x010100f2, 0x7f0300a4, 0x7f0300a5, 0x7f0301db, 0x7f0301dc, 0x7f030203, 0x7f030257, 0x7f030258 }
  3042. int styleable AlertDialog_android_layout 0
  3043. int styleable AlertDialog_buttonIconDimen 1
  3044. int styleable AlertDialog_buttonPanelSideLayout 2
  3045. int styleable AlertDialog_listItemLayout 3
  3046. int styleable AlertDialog_listLayout 4
  3047. int styleable AlertDialog_multiChoiceItemLayout 5
  3048. int styleable AlertDialog_showTitle 6
  3049. int styleable AlertDialog_singleChoiceItemLayout 7
  3050. int[] styleable AnimatedStateListDrawableCompat { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }
  3051. int styleable AnimatedStateListDrawableCompat_android_dither 0
  3052. int styleable AnimatedStateListDrawableCompat_android_visible 1
  3053. int styleable AnimatedStateListDrawableCompat_android_variablePadding 2
  3054. int styleable AnimatedStateListDrawableCompat_android_constantSize 3
  3055. int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 4
  3056. int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 5
  3057. int[] styleable AnimatedStateListDrawableItem { 0x010100d0, 0x01010199 }
  3058. int styleable AnimatedStateListDrawableItem_android_id 0
  3059. int styleable AnimatedStateListDrawableItem_android_drawable 1
  3060. int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b }
  3061. int styleable AnimatedStateListDrawableTransition_android_drawable 0
  3062. int styleable AnimatedStateListDrawableTransition_android_toId 1
  3063. int styleable AnimatedStateListDrawableTransition_android_fromId 2
  3064. int styleable AnimatedStateListDrawableTransition_android_reversible 3
  3065. int[] styleable AppBarLayout { 0x010100d4, 0x0101048f, 0x01010540, 0x7f03012d, 0x7f030134, 0x7f0301d4 }
  3066. int styleable AppBarLayout_android_background 0
  3067. int styleable AppBarLayout_android_touchscreenBlocksFocus 1
  3068. int styleable AppBarLayout_android_keyboardNavigationCluster 2
  3069. int styleable AppBarLayout_elevation 3
  3070. int styleable AppBarLayout_expanded 4
  3071. int styleable AppBarLayout_liftOnScroll 5
  3072. int[] styleable AppBarLayoutStates { 0x7f030267, 0x7f030268, 0x7f030269, 0x7f03026a }
  3073. int styleable AppBarLayoutStates_state_collapsed 0
  3074. int styleable AppBarLayoutStates_state_collapsible 1
  3075. int styleable AppBarLayoutStates_state_liftable 2
  3076. int styleable AppBarLayoutStates_state_lifted 3
  3077. int[] styleable AppBarLayout_Layout { 0x7f0301d1, 0x7f0301d2 }
  3078. int styleable AppBarLayout_Layout_layout_scrollFlags 0
  3079. int styleable AppBarLayout_Layout_layout_scrollInterpolator 1
  3080. int[] styleable AppCompatImageView { 0x01010119, 0x7f030263, 0x7f0302b9, 0x7f0302ba }
  3081. int styleable AppCompatImageView_android_src 0
  3082. int styleable AppCompatImageView_srcCompat 1
  3083. int styleable AppCompatImageView_tint 2
  3084. int styleable AppCompatImageView_tintMode 3
  3085. int[] styleable AppCompatSeekBar { 0x01010142, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8 }
  3086. int styleable AppCompatSeekBar_android_thumb 0
  3087. int styleable AppCompatSeekBar_tickMark 1
  3088. int styleable AppCompatSeekBar_tickMarkTint 2
  3089. int styleable AppCompatSeekBar_tickMarkTintMode 3
  3090. int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }
  3091. int styleable AppCompatTextHelper_android_textAppearance 0
  3092. int styleable AppCompatTextHelper_android_drawableTop 1
  3093. int styleable AppCompatTextHelper_android_drawableBottom 2
  3094. int styleable AppCompatTextHelper_android_drawableLeft 3
  3095. int styleable AppCompatTextHelper_android_drawableRight 4
  3096. int styleable AppCompatTextHelper_android_drawableStart 5
  3097. int styleable AppCompatTextHelper_android_drawableEnd 6
  3098. int[] styleable AppCompatTextView { 0x01010034, 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030034, 0x7f030035, 0x7f03011d, 0x7f03011e, 0x7f03011f, 0x7f030120, 0x7f030122, 0x7f030123, 0x7f030124, 0x7f030125, 0x7f030147, 0x7f03014a, 0x7f030152, 0x7f03018c, 0x7f0301d5, 0x7f030295, 0x7f0302af }
  3099. int styleable AppCompatTextView_android_textAppearance 0
  3100. int styleable AppCompatTextView_autoSizeMaxTextSize 1
  3101. int styleable AppCompatTextView_autoSizeMinTextSize 2
  3102. int styleable AppCompatTextView_autoSizePresetSizes 3
  3103. int styleable AppCompatTextView_autoSizeStepGranularity 4
  3104. int styleable AppCompatTextView_autoSizeTextType 5
  3105. int styleable AppCompatTextView_drawableBottomCompat 6
  3106. int styleable AppCompatTextView_drawableEndCompat 7
  3107. int styleable AppCompatTextView_drawableLeftCompat 8
  3108. int styleable AppCompatTextView_drawableRightCompat 9
  3109. int styleable AppCompatTextView_drawableStartCompat 10
  3110. int styleable AppCompatTextView_drawableTint 11
  3111. int styleable AppCompatTextView_drawableTintMode 12
  3112. int styleable AppCompatTextView_drawableTopCompat 13
  3113. int styleable AppCompatTextView_firstBaselineToTopHeight 14
  3114. int styleable AppCompatTextView_fontFamily 15
  3115. int styleable AppCompatTextView_fontVariationSettings 16
  3116. int styleable AppCompatTextView_lastBaselineToBottomHeight 17
  3117. int styleable AppCompatTextView_lineHeight 18
  3118. int styleable AppCompatTextView_textAllCaps 19
  3119. int styleable AppCompatTextView_textLocale 20
  3120. int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024, 0x7f030025, 0x7f030030, 0x7f03008e, 0x7f03009d, 0x7f03009e, 0x7f03009f, 0x7f0300a0, 0x7f0300a1, 0x7f0300a6, 0x7f0300a7, 0x7f0300b2, 0x7f0300b7, 0x7f0300d9, 0x7f0300da, 0x7f0300db, 0x7f0300dc, 0x7f0300dd, 0x7f0300de, 0x7f0300df, 0x7f0300e0, 0x7f0300e1, 0x7f0300e3, 0x7f0300f9, 0x7f030112, 0x7f030113, 0x7f030114, 0x7f030117, 0x7f030119, 0x7f030127, 0x7f030128, 0x7f03012a, 0x7f03012b, 0x7f03012c, 0x7f030163, 0x7f03016f, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301dd, 0x7f0301de, 0x7f0301df, 0x7f0301e0, 0x7f0301e1, 0x7f0301e2, 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f03021a, 0x7f03021b, 0x7f03021c, 0x7f030231, 0x7f030233, 0x7f03023b, 0x7f03023c, 0x7f03023d, 0x7f03023e, 0x7f03024e, 0x7f03024f, 0x7f030250, 0x7f030251, 0x7f030260, 0x7f030261, 0x7f030278, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302ab, 0x7f0302ac, 0x7f0302ef, 0x7f0302f0, 0x7f0302f1, 0x7f0302f2, 0x7f0302ff, 0x7f030307, 0x7f030308, 0x7f030309, 0x7f03030a, 0x7f03030b, 0x7f03030c, 0x7f03030d, 0x7f03030e, 0x7f03030f, 0x7f030310 }
  3121. int styleable AppCompatTheme_android_windowIsFloating 0
  3122. int styleable AppCompatTheme_android_windowAnimationStyle 1
  3123. int styleable AppCompatTheme_actionBarDivider 2
  3124. int styleable AppCompatTheme_actionBarItemBackground 3
  3125. int styleable AppCompatTheme_actionBarPopupTheme 4
  3126. int styleable AppCompatTheme_actionBarSize 5
  3127. int styleable AppCompatTheme_actionBarSplitStyle 6
  3128. int styleable AppCompatTheme_actionBarStyle 7
  3129. int styleable AppCompatTheme_actionBarTabBarStyle 8
  3130. int styleable AppCompatTheme_actionBarTabStyle 9
  3131. int styleable AppCompatTheme_actionBarTabTextStyle 10
  3132. int styleable AppCompatTheme_actionBarTheme 11
  3133. int styleable AppCompatTheme_actionBarWidgetTheme 12
  3134. int styleable AppCompatTheme_actionButtonStyle 13
  3135. int styleable AppCompatTheme_actionDropDownStyle 14
  3136. int styleable AppCompatTheme_actionMenuTextAppearance 15
  3137. int styleable AppCompatTheme_actionMenuTextColor 16
  3138. int styleable AppCompatTheme_actionModeBackground 17
  3139. int styleable AppCompatTheme_actionModeCloseButtonStyle 18
  3140. int styleable AppCompatTheme_actionModeCloseDrawable 19
  3141. int styleable AppCompatTheme_actionModeCopyDrawable 20
  3142. int styleable AppCompatTheme_actionModeCutDrawable 21
  3143. int styleable AppCompatTheme_actionModeFindDrawable 22
  3144. int styleable AppCompatTheme_actionModePasteDrawable 23
  3145. int styleable AppCompatTheme_actionModePopupWindowStyle 24
  3146. int styleable AppCompatTheme_actionModeSelectAllDrawable 25
  3147. int styleable AppCompatTheme_actionModeShareDrawable 26
  3148. int styleable AppCompatTheme_actionModeSplitBackground 27
  3149. int styleable AppCompatTheme_actionModeStyle 28
  3150. int styleable AppCompatTheme_actionModeWebSearchDrawable 29
  3151. int styleable AppCompatTheme_actionOverflowButtonStyle 30
  3152. int styleable AppCompatTheme_actionOverflowMenuStyle 31
  3153. int styleable AppCompatTheme_activityChooserViewStyle 32
  3154. int styleable AppCompatTheme_alertDialogButtonGroupStyle 33
  3155. int styleable AppCompatTheme_alertDialogCenterButtons 34
  3156. int styleable AppCompatTheme_alertDialogStyle 35
  3157. int styleable AppCompatTheme_alertDialogTheme 36
  3158. int styleable AppCompatTheme_autoCompleteTextViewStyle 37
  3159. int styleable AppCompatTheme_borderlessButtonStyle 38
  3160. int styleable AppCompatTheme_buttonBarButtonStyle 39
  3161. int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
  3162. int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
  3163. int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
  3164. int styleable AppCompatTheme_buttonBarStyle 43
  3165. int styleable AppCompatTheme_buttonStyle 44
  3166. int styleable AppCompatTheme_buttonStyleSmall 45
  3167. int styleable AppCompatTheme_checkboxStyle 46
  3168. int styleable AppCompatTheme_checkedTextViewStyle 47
  3169. int styleable AppCompatTheme_colorAccent 48
  3170. int styleable AppCompatTheme_colorBackgroundFloating 49
  3171. int styleable AppCompatTheme_colorButtonNormal 50
  3172. int styleable AppCompatTheme_colorControlActivated 51
  3173. int styleable AppCompatTheme_colorControlHighlight 52
  3174. int styleable AppCompatTheme_colorControlNormal 53
  3175. int styleable AppCompatTheme_colorError 54
  3176. int styleable AppCompatTheme_colorPrimary 55
  3177. int styleable AppCompatTheme_colorPrimaryDark 56
  3178. int styleable AppCompatTheme_colorSwitchThumbNormal 57
  3179. int styleable AppCompatTheme_controlBackground 58
  3180. int styleable AppCompatTheme_dialogCornerRadius 59
  3181. int styleable AppCompatTheme_dialogPreferredPadding 60
  3182. int styleable AppCompatTheme_dialogTheme 61
  3183. int styleable AppCompatTheme_dividerHorizontal 62
  3184. int styleable AppCompatTheme_dividerVertical 63
  3185. int styleable AppCompatTheme_dropDownListViewStyle 64
  3186. int styleable AppCompatTheme_dropdownListPreferredItemHeight 65
  3187. int styleable AppCompatTheme_editTextBackground 66
  3188. int styleable AppCompatTheme_editTextColor 67
  3189. int styleable AppCompatTheme_editTextStyle 68
  3190. int styleable AppCompatTheme_homeAsUpIndicator 69
  3191. int styleable AppCompatTheme_imageButtonStyle 70
  3192. int styleable AppCompatTheme_listChoiceBackgroundIndicator 71
  3193. int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 72
  3194. int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 73
  3195. int styleable AppCompatTheme_listDividerAlertDialog 74
  3196. int styleable AppCompatTheme_listMenuViewStyle 75
  3197. int styleable AppCompatTheme_listPopupWindowStyle 76
  3198. int styleable AppCompatTheme_listPreferredItemHeight 77
  3199. int styleable AppCompatTheme_listPreferredItemHeightLarge 78
  3200. int styleable AppCompatTheme_listPreferredItemHeightSmall 79
  3201. int styleable AppCompatTheme_listPreferredItemPaddingEnd 80
  3202. int styleable AppCompatTheme_listPreferredItemPaddingLeft 81
  3203. int styleable AppCompatTheme_listPreferredItemPaddingRight 82
  3204. int styleable AppCompatTheme_listPreferredItemPaddingStart 83
  3205. int styleable AppCompatTheme_panelBackground 84
  3206. int styleable AppCompatTheme_panelMenuListTheme 85
  3207. int styleable AppCompatTheme_panelMenuListWidth 86
  3208. int styleable AppCompatTheme_popupMenuStyle 87
  3209. int styleable AppCompatTheme_popupWindowStyle 88
  3210. int styleable AppCompatTheme_radioButtonStyle 89
  3211. int styleable AppCompatTheme_ratingBarStyle 90
  3212. int styleable AppCompatTheme_ratingBarStyleIndicator 91
  3213. int styleable AppCompatTheme_ratingBarStyleSmall 92
  3214. int styleable AppCompatTheme_searchViewStyle 93
  3215. int styleable AppCompatTheme_seekBarStyle 94
  3216. int styleable AppCompatTheme_selectableItemBackground 95
  3217. int styleable AppCompatTheme_selectableItemBackgroundBorderless 96
  3218. int styleable AppCompatTheme_spinnerDropDownItemStyle 97
  3219. int styleable AppCompatTheme_spinnerStyle 98
  3220. int styleable AppCompatTheme_switchStyle 99
  3221. int styleable AppCompatTheme_textAppearanceLargePopupMenu 100
  3222. int styleable AppCompatTheme_textAppearanceListItem 101
  3223. int styleable AppCompatTheme_textAppearanceListItemSecondary 102
  3224. int styleable AppCompatTheme_textAppearanceListItemSmall 103
  3225. int styleable AppCompatTheme_textAppearancePopupMenuHeader 104
  3226. int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 105
  3227. int styleable AppCompatTheme_textAppearanceSearchResultTitle 106
  3228. int styleable AppCompatTheme_textAppearanceSmallPopupMenu 107
  3229. int styleable AppCompatTheme_textColorAlertDialogListItem 108
  3230. int styleable AppCompatTheme_textColorSearchUrl 109
  3231. int styleable AppCompatTheme_toolbarNavigationButtonStyle 110
  3232. int styleable AppCompatTheme_toolbarStyle 111
  3233. int styleable AppCompatTheme_tooltipForegroundColor 112
  3234. int styleable AppCompatTheme_tooltipFrameBackground 113
  3235. int styleable AppCompatTheme_viewInflaterClass 114
  3236. int styleable AppCompatTheme_windowActionBar 115
  3237. int styleable AppCompatTheme_windowActionBarOverlay 116
  3238. int styleable AppCompatTheme_windowActionModeOverlay 117
  3239. int styleable AppCompatTheme_windowFixedHeightMajor 118
  3240. int styleable AppCompatTheme_windowFixedHeightMinor 119
  3241. int styleable AppCompatTheme_windowFixedWidthMajor 120
  3242. int styleable AppCompatTheme_windowFixedWidthMinor 121
  3243. int styleable AppCompatTheme_windowMinWidthMajor 122
  3244. int styleable AppCompatTheme_windowMinWidthMinor 123
  3245. int styleable AppCompatTheme_windowNoTitle 124
  3246. int[] styleable Banner { 0x7f03003b, 0x7f03003c, 0x7f03010f, 0x7f030170, 0x7f030174, 0x7f030175, 0x7f030176, 0x7f030177, 0x7f030178, 0x7f03017c, 0x7f03024b, 0x7f0302c6, 0x7f0302c7, 0x7f0302c8, 0x7f0302c9 }
  3247. int styleable Banner_banner_default_image 0
  3248. int styleable Banner_banner_layout 1
  3249. int styleable Banner_delay_time 2
  3250. int styleable Banner_image_scale_type 3
  3251. int styleable Banner_indicator_drawable_selected 4
  3252. int styleable Banner_indicator_drawable_unselected 5
  3253. int styleable Banner_indicator_height 6
  3254. int styleable Banner_indicator_margin 7
  3255. int styleable Banner_indicator_width 8
  3256. int styleable Banner_is_auto_play 9
  3257. int styleable Banner_scroll_time 10
  3258. int styleable Banner_title_background 11
  3259. int styleable Banner_title_height 12
  3260. int styleable Banner_title_textcolor 13
  3261. int styleable Banner_title_textsize 14
  3262. int[] styleable BottomAppBar { 0x7f030039, 0x7f03013c, 0x7f03013d, 0x7f03013e, 0x7f03013f, 0x7f03015f }
  3263. int styleable BottomAppBar_backgroundTint 0
  3264. int styleable BottomAppBar_fabAlignmentMode 1
  3265. int styleable BottomAppBar_fabCradleMargin 2
  3266. int styleable BottomAppBar_fabCradleRoundedCornerRadius 3
  3267. int styleable BottomAppBar_fabCradleVerticalOffset 4
  3268. int styleable BottomAppBar_hideOnScroll 5
  3269. int[] styleable BottomNavigationView { 0x7f03012d, 0x7f03017d, 0x7f03017f, 0x7f030181, 0x7f030182, 0x7f030186, 0x7f030187, 0x7f030188, 0x7f03018b, 0x7f0301f2 }
  3270. int styleable BottomNavigationView_elevation 0
  3271. int styleable BottomNavigationView_itemBackground 1
  3272. int styleable BottomNavigationView_itemHorizontalTranslationEnabled 2
  3273. int styleable BottomNavigationView_itemIconSize 3
  3274. int styleable BottomNavigationView_itemIconTint 4
  3275. int styleable BottomNavigationView_itemTextAppearanceActive 5
  3276. int styleable BottomNavigationView_itemTextAppearanceInactive 6
  3277. int styleable BottomNavigationView_itemTextColor 7
  3278. int styleable BottomNavigationView_labelVisibilityMode 8
  3279. int styleable BottomNavigationView_menu 9
  3280. int[] styleable BottomSheetBehavior_Layout { 0x7f030042, 0x7f030043, 0x7f030045, 0x7f030046 }
  3281. int styleable BottomSheetBehavior_Layout_behavior_fitToContents 0
  3282. int styleable BottomSheetBehavior_Layout_behavior_hideable 1
  3283. int styleable BottomSheetBehavior_Layout_behavior_peekHeight 2
  3284. int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 3
  3285. int[] styleable ButtonBarLayout { 0x7f030026 }
  3286. int styleable ButtonBarLayout_allowStacking 0
  3287. int[] styleable CardView { 0x0101013f, 0x01010140, 0x7f0300aa, 0x7f0300ab, 0x7f0300ac, 0x7f0300ad, 0x7f0300ae, 0x7f0300af, 0x7f0300f2, 0x7f0300f3, 0x7f0300f4, 0x7f0300f5, 0x7f0300f6 }
  3288. int styleable CardView_android_minWidth 0
  3289. int styleable CardView_android_minHeight 1
  3290. int styleable CardView_cardBackgroundColor 2
  3291. int styleable CardView_cardCornerRadius 3
  3292. int styleable CardView_cardElevation 4
  3293. int styleable CardView_cardMaxElevation 5
  3294. int styleable CardView_cardPreventCornerOverlap 6
  3295. int styleable CardView_cardUseCompatPadding 7
  3296. int styleable CardView_contentPadding 8
  3297. int styleable CardView_contentPaddingBottom 9
  3298. int styleable CardView_contentPaddingLeft 10
  3299. int styleable CardView_contentPaddingRight 11
  3300. int styleable CardView_contentPaddingTop 12
  3301. int[] styleable Chip { 0x01010034, 0x010100ab, 0x0101011f, 0x0101014f, 0x010101e5, 0x7f0300b4, 0x7f0300b5, 0x7f0300b6, 0x7f0300b8, 0x7f0300b9, 0x7f0300ba, 0x7f0300bc, 0x7f0300bd, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0300c6, 0x7f0300c7, 0x7f0300c8, 0x7f0300cc, 0x7f0300cd, 0x7f0300ce, 0x7f0300cf, 0x7f0300d0, 0x7f0300d1, 0x7f0300d2, 0x7f03015d, 0x7f030167, 0x7f03016b, 0x7f030244, 0x7f030254, 0x7f0302ad, 0x7f0302b0 }
  3302. int styleable Chip_android_textAppearance 0
  3303. int styleable Chip_android_ellipsize 1
  3304. int styleable Chip_android_maxWidth 2
  3305. int styleable Chip_android_text 3
  3306. int styleable Chip_android_checkable 4
  3307. int styleable Chip_checkedIcon 5
  3308. int styleable Chip_checkedIconEnabled 6
  3309. int styleable Chip_checkedIconVisible 7
  3310. int styleable Chip_chipBackgroundColor 8
  3311. int styleable Chip_chipCornerRadius 9
  3312. int styleable Chip_chipEndPadding 10
  3313. int styleable Chip_chipIcon 11
  3314. int styleable Chip_chipIconEnabled 12
  3315. int styleable Chip_chipIconSize 13
  3316. int styleable Chip_chipIconTint 14
  3317. int styleable Chip_chipIconVisible 15
  3318. int styleable Chip_chipMinHeight 16
  3319. int styleable Chip_chipStartPadding 17
  3320. int styleable Chip_chipStrokeColor 18
  3321. int styleable Chip_chipStrokeWidth 19
  3322. int styleable Chip_closeIcon 20
  3323. int styleable Chip_closeIconEnabled 21
  3324. int styleable Chip_closeIconEndPadding 22
  3325. int styleable Chip_closeIconSize 23
  3326. int styleable Chip_closeIconStartPadding 24
  3327. int styleable Chip_closeIconTint 25
  3328. int styleable Chip_closeIconVisible 26
  3329. int styleable Chip_hideMotionSpec 27
  3330. int styleable Chip_iconEndPadding 28
  3331. int styleable Chip_iconStartPadding 29
  3332. int styleable Chip_rippleColor 30
  3333. int styleable Chip_showMotionSpec 31
  3334. int styleable Chip_textEndPadding 32
  3335. int styleable Chip_textStartPadding 33
  3336. int[] styleable ChipGroup { 0x7f0300b3, 0x7f0300c2, 0x7f0300c3, 0x7f0300c4, 0x7f030259, 0x7f03025a }
  3337. int styleable ChipGroup_checkedChip 0
  3338. int styleable ChipGroup_chipSpacing 1
  3339. int styleable ChipGroup_chipSpacingHorizontal 2
  3340. int styleable ChipGroup_chipSpacingVertical 3
  3341. int styleable ChipGroup_singleLine 4
  3342. int styleable ChipGroup_singleSelection 5
  3343. int[] styleable CollapsingToolbarLayout { 0x7f0300d6, 0x7f0300d7, 0x7f0300f7, 0x7f030135, 0x7f030136, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013a, 0x7f03013b, 0x7f030248, 0x7f03024a, 0x7f03026c, 0x7f0302bb, 0x7f0302bc, 0x7f0302ee }
  3344. int styleable CollapsingToolbarLayout_collapsedTitleGravity 0
  3345. int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1
  3346. int styleable CollapsingToolbarLayout_contentScrim 2
  3347. int styleable CollapsingToolbarLayout_expandedTitleGravity 3
  3348. int styleable CollapsingToolbarLayout_expandedTitleMargin 4
  3349. int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5
  3350. int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 6
  3351. int styleable CollapsingToolbarLayout_expandedTitleMarginStart 7
  3352. int styleable CollapsingToolbarLayout_expandedTitleMarginTop 8
  3353. int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 9
  3354. int styleable CollapsingToolbarLayout_scrimAnimationDuration 10
  3355. int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 11
  3356. int styleable CollapsingToolbarLayout_statusBarScrim 12
  3357. int styleable CollapsingToolbarLayout_title 13
  3358. int styleable CollapsingToolbarLayout_titleEnabled 14
  3359. int styleable CollapsingToolbarLayout_toolbarId 15
  3360. int[] styleable CollapsingToolbarLayout_Layout { 0x7f030193, 0x7f030194 }
  3361. int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0
  3362. int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1
  3363. int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f030027 }
  3364. int styleable ColorStateListItem_android_color 0
  3365. int styleable ColorStateListItem_android_alpha 1
  3366. int styleable ColorStateListItem_alpha 2
  3367. int[] styleable CommonTabLayout { 0x7f0302cd, 0x7f0302ce, 0x7f0302cf, 0x7f0302d0, 0x7f0302d1, 0x7f0302d2, 0x7f0302d3, 0x7f0302d4, 0x7f0302d5, 0x7f0302d6, 0x7f0302d7, 0x7f0302d8, 0x7f0302d9, 0x7f0302da, 0x7f0302db, 0x7f0302dc, 0x7f0302dd, 0x7f0302de, 0x7f0302df, 0x7f0302e0, 0x7f0302e1, 0x7f0302e3, 0x7f0302e4, 0x7f0302e5, 0x7f0302e6, 0x7f0302e7, 0x7f0302e8, 0x7f0302e9, 0x7f0302ea, 0x7f0302eb, 0x7f0302ec, 0x7f0302ed }
  3368. int styleable CommonTabLayout_tl_divider_color 0
  3369. int styleable CommonTabLayout_tl_divider_padding 1
  3370. int styleable CommonTabLayout_tl_divider_width 2
  3371. int styleable CommonTabLayout_tl_iconGravity 3
  3372. int styleable CommonTabLayout_tl_iconHeight 4
  3373. int styleable CommonTabLayout_tl_iconMargin 5
  3374. int styleable CommonTabLayout_tl_iconVisible 6
  3375. int styleable CommonTabLayout_tl_iconWidth 7
  3376. int styleable CommonTabLayout_tl_indicator_anim_duration 8
  3377. int styleable CommonTabLayout_tl_indicator_anim_enable 9
  3378. int styleable CommonTabLayout_tl_indicator_bounce_enable 10
  3379. int styleable CommonTabLayout_tl_indicator_color 11
  3380. int styleable CommonTabLayout_tl_indicator_corner_radius 12
  3381. int styleable CommonTabLayout_tl_indicator_gravity 13
  3382. int styleable CommonTabLayout_tl_indicator_height 14
  3383. int styleable CommonTabLayout_tl_indicator_margin_bottom 15
  3384. int styleable CommonTabLayout_tl_indicator_margin_left 16
  3385. int styleable CommonTabLayout_tl_indicator_margin_right 17
  3386. int styleable CommonTabLayout_tl_indicator_margin_top 18
  3387. int styleable CommonTabLayout_tl_indicator_style 19
  3388. int styleable CommonTabLayout_tl_indicator_width 20
  3389. int styleable CommonTabLayout_tl_tab_padding 21
  3390. int styleable CommonTabLayout_tl_tab_space_equal 22
  3391. int styleable CommonTabLayout_tl_tab_width 23
  3392. int styleable CommonTabLayout_tl_textAllCaps 24
  3393. int styleable CommonTabLayout_tl_textBold 25
  3394. int styleable CommonTabLayout_tl_textSelectColor 26
  3395. int styleable CommonTabLayout_tl_textUnselectColor 27
  3396. int styleable CommonTabLayout_tl_textsize 28
  3397. int styleable CommonTabLayout_tl_underline_color 29
  3398. int styleable CommonTabLayout_tl_underline_gravity 30
  3399. int styleable CommonTabLayout_tl_underline_height 31
  3400. int[] styleable CompoundButton { 0x01010107, 0x7f0300a2, 0x7f0300a8, 0x7f0300a9 }
  3401. int styleable CompoundButton_android_button 0
  3402. int styleable CompoundButton_buttonCompat 1
  3403. int styleable CompoundButton_buttonTint 2
  3404. int styleable CompoundButton_buttonTintMode 3
  3405. int[] styleable Constraint { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010101b5, 0x010101b6, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f03002a, 0x7f03003e, 0x7f03003f, 0x7f030040, 0x7f0300b1, 0x7f0300e8, 0x7f03011c, 0x7f030195, 0x7f030196, 0x7f030197, 0x7f030198, 0x7f030199, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f03019e, 0x7f03019f, 0x7f0301a0, 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f0301a4, 0x7f0301a5, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301aa, 0x7f0301ab, 0x7f0301ac, 0x7f0301ad, 0x7f0301ae, 0x7f0301af, 0x7f0301b0, 0x7f0301b1, 0x7f0301b2, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8, 0x7f0301b9, 0x7f0301ba, 0x7f0301bb, 0x7f0301bc, 0x7f0301bd, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4, 0x7f0301c5, 0x7f0301c6, 0x7f030222, 0x7f03022e, 0x7f030236, 0x7f0302f9, 0x7f0302fa }
  3406. int styleable Constraint_android_orientation 0
  3407. int styleable Constraint_android_id 1
  3408. int styleable Constraint_android_visibility 2
  3409. int styleable Constraint_android_layout_width 3
  3410. int styleable Constraint_android_layout_height 4
  3411. int styleable Constraint_android_layout_marginLeft 5
  3412. int styleable Constraint_android_layout_marginTop 6
  3413. int styleable Constraint_android_layout_marginRight 7
  3414. int styleable Constraint_android_layout_marginBottom 8
  3415. int styleable Constraint_android_maxWidth 9
  3416. int styleable Constraint_android_maxHeight 10
  3417. int styleable Constraint_android_minWidth 11
  3418. int styleable Constraint_android_minHeight 12
  3419. int styleable Constraint_android_pivotX 13
  3420. int styleable Constraint_android_pivotY 14
  3421. int styleable Constraint_android_alpha 15
  3422. int styleable Constraint_android_transformPivotX 16
  3423. int styleable Constraint_android_transformPivotY 17
  3424. int styleable Constraint_android_translationX 18
  3425. int styleable Constraint_android_translationY 19
  3426. int styleable Constraint_android_scaleX 20
  3427. int styleable Constraint_android_scaleY 21
  3428. int styleable Constraint_android_rotation 22
  3429. int styleable Constraint_android_rotationX 23
  3430. int styleable Constraint_android_rotationY 24
  3431. int styleable Constraint_android_layout_marginStart 25
  3432. int styleable Constraint_android_layout_marginEnd 26
  3433. int styleable Constraint_android_translationZ 27
  3434. int styleable Constraint_android_elevation 28
  3435. int styleable Constraint_animate_relativeTo 29
  3436. int styleable Constraint_barrierAllowsGoneWidgets 30
  3437. int styleable Constraint_barrierDirection 31
  3438. int styleable Constraint_barrierMargin 32
  3439. int styleable Constraint_chainUseRtl 33
  3440. int styleable Constraint_constraint_referenced_ids 34
  3441. int styleable Constraint_drawPath 35
  3442. int styleable Constraint_layout_constrainedHeight 36
  3443. int styleable Constraint_layout_constrainedWidth 37
  3444. int styleable Constraint_layout_constraintBaseline_creator 38
  3445. int styleable Constraint_layout_constraintBaseline_toBaselineOf 39
  3446. int styleable Constraint_layout_constraintBottom_creator 40
  3447. int styleable Constraint_layout_constraintBottom_toBottomOf 41
  3448. int styleable Constraint_layout_constraintBottom_toTopOf 42
  3449. int styleable Constraint_layout_constraintCircle 43
  3450. int styleable Constraint_layout_constraintCircleAngle 44
  3451. int styleable Constraint_layout_constraintCircleRadius 45
  3452. int styleable Constraint_layout_constraintDimensionRatio 46
  3453. int styleable Constraint_layout_constraintEnd_toEndOf 47
  3454. int styleable Constraint_layout_constraintEnd_toStartOf 48
  3455. int styleable Constraint_layout_constraintGuide_begin 49
  3456. int styleable Constraint_layout_constraintGuide_end 50
  3457. int styleable Constraint_layout_constraintGuide_percent 51
  3458. int styleable Constraint_layout_constraintHeight_default 52
  3459. int styleable Constraint_layout_constraintHeight_max 53
  3460. int styleable Constraint_layout_constraintHeight_min 54
  3461. int styleable Constraint_layout_constraintHeight_percent 55
  3462. int styleable Constraint_layout_constraintHorizontal_bias 56
  3463. int styleable Constraint_layout_constraintHorizontal_chainStyle 57
  3464. int styleable Constraint_layout_constraintHorizontal_weight 58
  3465. int styleable Constraint_layout_constraintLeft_creator 59
  3466. int styleable Constraint_layout_constraintLeft_toLeftOf 60
  3467. int styleable Constraint_layout_constraintLeft_toRightOf 61
  3468. int styleable Constraint_layout_constraintRight_creator 62
  3469. int styleable Constraint_layout_constraintRight_toLeftOf 63
  3470. int styleable Constraint_layout_constraintRight_toRightOf 64
  3471. int styleable Constraint_layout_constraintStart_toEndOf 65
  3472. int styleable Constraint_layout_constraintStart_toStartOf 66
  3473. int styleable Constraint_layout_constraintTop_creator 67
  3474. int styleable Constraint_layout_constraintTop_toBottomOf 68
  3475. int styleable Constraint_layout_constraintTop_toTopOf 69
  3476. int styleable Constraint_layout_constraintVertical_bias 70
  3477. int styleable Constraint_layout_constraintVertical_chainStyle 71
  3478. int styleable Constraint_layout_constraintVertical_weight 72
  3479. int styleable Constraint_layout_constraintWidth_default 73
  3480. int styleable Constraint_layout_constraintWidth_max 74
  3481. int styleable Constraint_layout_constraintWidth_min 75
  3482. int styleable Constraint_layout_constraintWidth_percent 76
  3483. int styleable Constraint_layout_editor_absoluteX 77
  3484. int styleable Constraint_layout_editor_absoluteY 78
  3485. int styleable Constraint_layout_goneMarginBottom 79
  3486. int styleable Constraint_layout_goneMarginEnd 80
  3487. int styleable Constraint_layout_goneMarginLeft 81
  3488. int styleable Constraint_layout_goneMarginRight 82
  3489. int styleable Constraint_layout_goneMarginStart 83
  3490. int styleable Constraint_layout_goneMarginTop 84
  3491. int styleable Constraint_pathMotionArc 85
  3492. int styleable Constraint_pivotAnchor 86
  3493. int styleable Constraint_progress 87
  3494. int styleable Constraint_transitionEasing 88
  3495. int styleable Constraint_transitionPathRotate 89
  3496. int[] styleable ConstraintLayout_Layout { 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f03003e, 0x7f03003f, 0x7f030040, 0x7f0300b1, 0x7f0300e5, 0x7f0300e8, 0x7f03018e, 0x7f030195, 0x7f030196, 0x7f030197, 0x7f030198, 0x7f030199, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f03019e, 0x7f03019f, 0x7f0301a0, 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f0301a4, 0x7f0301a5, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301aa, 0x7f0301ab, 0x7f0301ac, 0x7f0301ad, 0x7f0301ae, 0x7f0301af, 0x7f0301b0, 0x7f0301b1, 0x7f0301b2, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8, 0x7f0301b9, 0x7f0301ba, 0x7f0301bb, 0x7f0301bc, 0x7f0301bd, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4, 0x7f0301c5, 0x7f0301c6, 0x7f0301d0 }
  3497. int styleable ConstraintLayout_Layout_android_orientation 0
  3498. int styleable ConstraintLayout_Layout_android_maxWidth 1
  3499. int styleable ConstraintLayout_Layout_android_maxHeight 2
  3500. int styleable ConstraintLayout_Layout_android_minWidth 3
  3501. int styleable ConstraintLayout_Layout_android_minHeight 4
  3502. int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 5
  3503. int styleable ConstraintLayout_Layout_barrierDirection 6
  3504. int styleable ConstraintLayout_Layout_barrierMargin 7
  3505. int styleable ConstraintLayout_Layout_chainUseRtl 8
  3506. int styleable ConstraintLayout_Layout_constraintSet 9
  3507. int styleable ConstraintLayout_Layout_constraint_referenced_ids 10
  3508. int styleable ConstraintLayout_Layout_layoutDescription 11
  3509. int styleable ConstraintLayout_Layout_layout_constrainedHeight 12
  3510. int styleable ConstraintLayout_Layout_layout_constrainedWidth 13
  3511. int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 14
  3512. int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 15
  3513. int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 16
  3514. int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 17
  3515. int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 18
  3516. int styleable ConstraintLayout_Layout_layout_constraintCircle 19
  3517. int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 20
  3518. int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 21
  3519. int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 22
  3520. int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 23
  3521. int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 24
  3522. int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 25
  3523. int styleable ConstraintLayout_Layout_layout_constraintGuide_end 26
  3524. int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 27
  3525. int styleable ConstraintLayout_Layout_layout_constraintHeight_default 28
  3526. int styleable ConstraintLayout_Layout_layout_constraintHeight_max 29
  3527. int styleable ConstraintLayout_Layout_layout_constraintHeight_min 30
  3528. int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 31
  3529. int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 32
  3530. int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 33
  3531. int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 34
  3532. int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 35
  3533. int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 36
  3534. int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 37
  3535. int styleable ConstraintLayout_Layout_layout_constraintRight_creator 38
  3536. int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 39
  3537. int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 40
  3538. int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 41
  3539. int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 42
  3540. int styleable ConstraintLayout_Layout_layout_constraintTop_creator 43
  3541. int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 44
  3542. int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 45
  3543. int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 46
  3544. int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 47
  3545. int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 48
  3546. int styleable ConstraintLayout_Layout_layout_constraintWidth_default 49
  3547. int styleable ConstraintLayout_Layout_layout_constraintWidth_max 50
  3548. int styleable ConstraintLayout_Layout_layout_constraintWidth_min 51
  3549. int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 52
  3550. int styleable ConstraintLayout_Layout_layout_editor_absoluteX 53
  3551. int styleable ConstraintLayout_Layout_layout_editor_absoluteY 54
  3552. int styleable ConstraintLayout_Layout_layout_goneMarginBottom 55
  3553. int styleable ConstraintLayout_Layout_layout_goneMarginEnd 56
  3554. int styleable ConstraintLayout_Layout_layout_goneMarginLeft 57
  3555. int styleable ConstraintLayout_Layout_layout_goneMarginRight 58
  3556. int styleable ConstraintLayout_Layout_layout_goneMarginStart 59
  3557. int styleable ConstraintLayout_Layout_layout_goneMarginTop 60
  3558. int styleable ConstraintLayout_Layout_layout_optimizationLevel 61
  3559. int[] styleable ConstraintLayout_placeholder { 0x7f0300ea, 0x7f03012e }
  3560. int styleable ConstraintLayout_placeholder_content 0
  3561. int styleable ConstraintLayout_placeholder_emptyVisibility 1
  3562. int[] styleable ConstraintSet { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010101b5, 0x010101b6, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f03002a, 0x7f03003e, 0x7f03003f, 0x7f030040, 0x7f0300b1, 0x7f0300e8, 0x7f03011c, 0x7f030195, 0x7f030196, 0x7f030197, 0x7f030198, 0x7f030199, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f03019e, 0x7f03019f, 0x7f0301a0, 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f0301a4, 0x7f0301a5, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301aa, 0x7f0301ab, 0x7f0301ac, 0x7f0301ad, 0x7f0301ae, 0x7f0301af, 0x7f0301b0, 0x7f0301b1, 0x7f0301b2, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8, 0x7f0301b9, 0x7f0301ba, 0x7f0301bb, 0x7f0301bc, 0x7f0301bd, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4, 0x7f0301c5, 0x7f0301c6, 0x7f0301fe, 0x7f030222, 0x7f03022e, 0x7f0302f9, 0x7f0302fa }
  3563. int styleable ConstraintSet_android_orientation 0
  3564. int styleable ConstraintSet_android_id 1
  3565. int styleable ConstraintSet_android_visibility 2
  3566. int styleable ConstraintSet_android_layout_width 3
  3567. int styleable ConstraintSet_android_layout_height 4
  3568. int styleable ConstraintSet_android_layout_marginLeft 5
  3569. int styleable ConstraintSet_android_layout_marginTop 6
  3570. int styleable ConstraintSet_android_layout_marginRight 7
  3571. int styleable ConstraintSet_android_layout_marginBottom 8
  3572. int styleable ConstraintSet_android_maxWidth 9
  3573. int styleable ConstraintSet_android_maxHeight 10
  3574. int styleable ConstraintSet_android_minWidth 11
  3575. int styleable ConstraintSet_android_minHeight 12
  3576. int styleable ConstraintSet_android_pivotX 13
  3577. int styleable ConstraintSet_android_pivotY 14
  3578. int styleable ConstraintSet_android_alpha 15
  3579. int styleable ConstraintSet_android_transformPivotX 16
  3580. int styleable ConstraintSet_android_transformPivotY 17
  3581. int styleable ConstraintSet_android_translationX 18
  3582. int styleable ConstraintSet_android_translationY 19
  3583. int styleable ConstraintSet_android_scaleX 20
  3584. int styleable ConstraintSet_android_scaleY 21
  3585. int styleable ConstraintSet_android_rotation 22
  3586. int styleable ConstraintSet_android_rotationX 23
  3587. int styleable ConstraintSet_android_rotationY 24
  3588. int styleable ConstraintSet_android_layout_marginStart 25
  3589. int styleable ConstraintSet_android_layout_marginEnd 26
  3590. int styleable ConstraintSet_android_translationZ 27
  3591. int styleable ConstraintSet_android_elevation 28
  3592. int styleable ConstraintSet_animate_relativeTo 29
  3593. int styleable ConstraintSet_barrierAllowsGoneWidgets 30
  3594. int styleable ConstraintSet_barrierDirection 31
  3595. int styleable ConstraintSet_barrierMargin 32
  3596. int styleable ConstraintSet_chainUseRtl 33
  3597. int styleable ConstraintSet_constraint_referenced_ids 34
  3598. int styleable ConstraintSet_drawPath 35
  3599. int styleable ConstraintSet_layout_constrainedHeight 36
  3600. int styleable ConstraintSet_layout_constrainedWidth 37
  3601. int styleable ConstraintSet_layout_constraintBaseline_creator 38
  3602. int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 39
  3603. int styleable ConstraintSet_layout_constraintBottom_creator 40
  3604. int styleable ConstraintSet_layout_constraintBottom_toBottomOf 41
  3605. int styleable ConstraintSet_layout_constraintBottom_toTopOf 42
  3606. int styleable ConstraintSet_layout_constraintCircle 43
  3607. int styleable ConstraintSet_layout_constraintCircleAngle 44
  3608. int styleable ConstraintSet_layout_constraintCircleRadius 45
  3609. int styleable ConstraintSet_layout_constraintDimensionRatio 46
  3610. int styleable ConstraintSet_layout_constraintEnd_toEndOf 47
  3611. int styleable ConstraintSet_layout_constraintEnd_toStartOf 48
  3612. int styleable ConstraintSet_layout_constraintGuide_begin 49
  3613. int styleable ConstraintSet_layout_constraintGuide_end 50
  3614. int styleable ConstraintSet_layout_constraintGuide_percent 51
  3615. int styleable ConstraintSet_layout_constraintHeight_default 52
  3616. int styleable ConstraintSet_layout_constraintHeight_max 53
  3617. int styleable ConstraintSet_layout_constraintHeight_min 54
  3618. int styleable ConstraintSet_layout_constraintHeight_percent 55
  3619. int styleable ConstraintSet_layout_constraintHorizontal_bias 56
  3620. int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 57
  3621. int styleable ConstraintSet_layout_constraintHorizontal_weight 58
  3622. int styleable ConstraintSet_layout_constraintLeft_creator 59
  3623. int styleable ConstraintSet_layout_constraintLeft_toLeftOf 60
  3624. int styleable ConstraintSet_layout_constraintLeft_toRightOf 61
  3625. int styleable ConstraintSet_layout_constraintRight_creator 62
  3626. int styleable ConstraintSet_layout_constraintRight_toLeftOf 63
  3627. int styleable ConstraintSet_layout_constraintRight_toRightOf 64
  3628. int styleable ConstraintSet_layout_constraintStart_toEndOf 65
  3629. int styleable ConstraintSet_layout_constraintStart_toStartOf 66
  3630. int styleable ConstraintSet_layout_constraintTop_creator 67
  3631. int styleable ConstraintSet_layout_constraintTop_toBottomOf 68
  3632. int styleable ConstraintSet_layout_constraintTop_toTopOf 69
  3633. int styleable ConstraintSet_layout_constraintVertical_bias 70
  3634. int styleable ConstraintSet_layout_constraintVertical_chainStyle 71
  3635. int styleable ConstraintSet_layout_constraintVertical_weight 72
  3636. int styleable ConstraintSet_layout_constraintWidth_default 73
  3637. int styleable ConstraintSet_layout_constraintWidth_max 74
  3638. int styleable ConstraintSet_layout_constraintWidth_min 75
  3639. int styleable ConstraintSet_layout_constraintWidth_percent 76
  3640. int styleable ConstraintSet_layout_editor_absoluteX 77
  3641. int styleable ConstraintSet_layout_editor_absoluteY 78
  3642. int styleable ConstraintSet_layout_goneMarginBottom 79
  3643. int styleable ConstraintSet_layout_goneMarginEnd 80
  3644. int styleable ConstraintSet_layout_goneMarginLeft 81
  3645. int styleable ConstraintSet_layout_goneMarginRight 82
  3646. int styleable ConstraintSet_layout_goneMarginStart 83
  3647. int styleable ConstraintSet_layout_goneMarginTop 84
  3648. int styleable ConstraintSet_motionProgress 85
  3649. int styleable ConstraintSet_pathMotionArc 86
  3650. int styleable ConstraintSet_pivotAnchor 87
  3651. int styleable ConstraintSet_transitionEasing 88
  3652. int styleable ConstraintSet_transitionPathRotate 89
  3653. int[] styleable CoordinatorLayout { 0x7f03018a, 0x7f03026b }
  3654. int styleable CoordinatorLayout_keylines 0
  3655. int styleable CoordinatorLayout_statusBarBackground 1
  3656. int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f030190, 0x7f030191, 0x7f030192, 0x7f0301be, 0x7f0301c8, 0x7f0301c9 }
  3657. int styleable CoordinatorLayout_Layout_android_layout_gravity 0
  3658. int styleable CoordinatorLayout_Layout_layout_anchor 1
  3659. int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
  3660. int styleable CoordinatorLayout_Layout_layout_behavior 3
  3661. int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
  3662. int styleable CoordinatorLayout_Layout_layout_insetEdge 5
  3663. int styleable CoordinatorLayout_Layout_layout_keyline 6
  3664. int[] styleable CustomAttribute { 0x7f03002f, 0x7f030103, 0x7f030104, 0x7f030105, 0x7f030106, 0x7f030107, 0x7f030108, 0x7f03010a, 0x7f03010b }
  3665. int styleable CustomAttribute_attributeName 0
  3666. int styleable CustomAttribute_customBoolean 1
  3667. int styleable CustomAttribute_customColorDrawableValue 2
  3668. int styleable CustomAttribute_customColorValue 3
  3669. int styleable CustomAttribute_customDimension 4
  3670. int styleable CustomAttribute_customFloatValue 5
  3671. int styleable CustomAttribute_customIntegerValue 6
  3672. int styleable CustomAttribute_customPixelDimension 7
  3673. int styleable CustomAttribute_customStringValue 8
  3674. int[] styleable DesignTheme { 0x7f030091, 0x7f030092 }
  3675. int styleable DesignTheme_bottomSheetDialogTheme 0
  3676. int styleable DesignTheme_bottomSheetStyle 1
  3677. int[] styleable DrawerArrowToggle { 0x7f03002d, 0x7f03002e, 0x7f03003d, 0x7f0300d8, 0x7f030121, 0x7f030156, 0x7f03025f, 0x7f0302b2 }
  3678. int styleable DrawerArrowToggle_arrowHeadLength 0
  3679. int styleable DrawerArrowToggle_arrowShaftLength 1
  3680. int styleable DrawerArrowToggle_barLength 2
  3681. int styleable DrawerArrowToggle_color 3
  3682. int styleable DrawerArrowToggle_drawableSize 4
  3683. int styleable DrawerArrowToggle_gapBetweenBars 5
  3684. int styleable DrawerArrowToggle_spinBars 6
  3685. int styleable DrawerArrowToggle_thickness 7
  3686. int[] styleable FloatingActionButton { 0x7f030039, 0x7f03003a, 0x7f03008d, 0x7f03012d, 0x7f030140, 0x7f030141, 0x7f03015d, 0x7f030165, 0x7f0301ee, 0x7f030235, 0x7f030244, 0x7f030254, 0x7f0302fe }
  3687. int styleable FloatingActionButton_backgroundTint 0
  3688. int styleable FloatingActionButton_backgroundTintMode 1
  3689. int styleable FloatingActionButton_borderWidth 2
  3690. int styleable FloatingActionButton_elevation 3
  3691. int styleable FloatingActionButton_fabCustomSize 4
  3692. int styleable FloatingActionButton_fabSize 5
  3693. int styleable FloatingActionButton_hideMotionSpec 6
  3694. int styleable FloatingActionButton_hoveredFocusedTranslationZ 7
  3695. int styleable FloatingActionButton_maxImageSize 8
  3696. int styleable FloatingActionButton_pressedTranslationZ 9
  3697. int styleable FloatingActionButton_rippleColor 10
  3698. int styleable FloatingActionButton_showMotionSpec 11
  3699. int styleable FloatingActionButton_useCompatPadding 12
  3700. int[] styleable FloatingActionButton_Behavior_Layout { 0x7f030041 }
  3701. int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0
  3702. int[] styleable FlowLayout { 0x7f030184, 0x7f0301d6 }
  3703. int styleable FlowLayout_itemSpacing 0
  3704. int styleable FlowLayout_lineSpacing 1
  3705. int[] styleable FontFamily { 0x7f03014b, 0x7f03014c, 0x7f03014d, 0x7f03014e, 0x7f03014f, 0x7f030150 }
  3706. int styleable FontFamily_fontProviderAuthority 0
  3707. int styleable FontFamily_fontProviderCerts 1
  3708. int styleable FontFamily_fontProviderFetchStrategy 2
  3709. int styleable FontFamily_fontProviderFetchTimeout 3
  3710. int styleable FontFamily_fontProviderPackage 4
  3711. int styleable FontFamily_fontProviderQuery 5
  3712. int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f030149, 0x7f030151, 0x7f030152, 0x7f030153, 0x7f0302fd }
  3713. int styleable FontFamilyFont_android_font 0
  3714. int styleable FontFamilyFont_android_fontWeight 1
  3715. int styleable FontFamilyFont_android_fontStyle 2
  3716. int styleable FontFamilyFont_android_ttcIndex 3
  3717. int styleable FontFamilyFont_android_fontVariationSettings 4
  3718. int styleable FontFamilyFont_font 5
  3719. int styleable FontFamilyFont_fontStyle 6
  3720. int styleable FontFamilyFont_fontVariationSettings 7
  3721. int styleable FontFamilyFont_fontWeight 8
  3722. int styleable FontFamilyFont_ttcIndex 9
  3723. int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f030154 }
  3724. int styleable ForegroundLinearLayout_android_foreground 0
  3725. int styleable ForegroundLinearLayout_android_foregroundGravity 1
  3726. int styleable ForegroundLinearLayout_foregroundInsidePadding 2
  3727. int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }
  3728. int styleable GradientColor_android_startColor 0
  3729. int styleable GradientColor_android_endColor 1
  3730. int styleable GradientColor_android_type 2
  3731. int styleable GradientColor_android_centerX 3
  3732. int styleable GradientColor_android_centerY 4
  3733. int styleable GradientColor_android_gradientRadius 5
  3734. int styleable GradientColor_android_tileMode 6
  3735. int styleable GradientColor_android_centerColor 7
  3736. int styleable GradientColor_android_startX 8
  3737. int styleable GradientColor_android_startY 9
  3738. int styleable GradientColor_android_endX 10
  3739. int styleable GradientColor_android_endY 11
  3740. int[] styleable GradientColorItem { 0x010101a5, 0x01010514 }
  3741. int styleable GradientColorItem_android_color 0
  3742. int styleable GradientColorItem_android_offset 1
  3743. int[] styleable ImageFilterView { 0x7f030029, 0x7f03009c, 0x7f0300f8, 0x7f030100, 0x7f030215, 0x7f030245, 0x7f030246, 0x7f030247, 0x7f030302 }
  3744. int styleable ImageFilterView_altSrc 0
  3745. int styleable ImageFilterView_brightness 1
  3746. int styleable ImageFilterView_contrast 2
  3747. int styleable ImageFilterView_crossfade 3
  3748. int styleable ImageFilterView_overlay 4
  3749. int styleable ImageFilterView_round 5
  3750. int styleable ImageFilterView_roundPercent 6
  3751. int styleable ImageFilterView_saturation 7
  3752. int styleable ImageFilterView_warmth 8
  3753. int[] styleable KeyAttribute { 0x010100dc, 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f030102, 0x7f030155, 0x7f0301fe, 0x7f0301ff, 0x7f0302f9, 0x7f0302fa }
  3754. int styleable KeyAttribute_android_visibility 0
  3755. int styleable KeyAttribute_android_alpha 1
  3756. int styleable KeyAttribute_android_translationX 2
  3757. int styleable KeyAttribute_android_translationY 3
  3758. int styleable KeyAttribute_android_scaleX 4
  3759. int styleable KeyAttribute_android_scaleY 5
  3760. int styleable KeyAttribute_android_rotation 6
  3761. int styleable KeyAttribute_android_rotationX 7
  3762. int styleable KeyAttribute_android_rotationY 8
  3763. int styleable KeyAttribute_android_translationZ 9
  3764. int styleable KeyAttribute_android_elevation 10
  3765. int styleable KeyAttribute_curveFit 11
  3766. int styleable KeyAttribute_framePosition 12
  3767. int styleable KeyAttribute_motionProgress 13
  3768. int styleable KeyAttribute_motionTarget 14
  3769. int styleable KeyAttribute_transitionEasing 15
  3770. int styleable KeyAttribute_transitionPathRotate 16
  3771. int[] styleable KeyCycle { 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f030102, 0x7f030155, 0x7f0301fe, 0x7f0301ff, 0x7f0302f9, 0x7f0302fa, 0x7f030303, 0x7f030304, 0x7f030305, 0x7f030306 }
  3772. int styleable KeyCycle_android_alpha 0
  3773. int styleable KeyCycle_android_translationX 1
  3774. int styleable KeyCycle_android_translationY 2
  3775. int styleable KeyCycle_android_scaleX 3
  3776. int styleable KeyCycle_android_scaleY 4
  3777. int styleable KeyCycle_android_rotation 5
  3778. int styleable KeyCycle_android_rotationX 6
  3779. int styleable KeyCycle_android_rotationY 7
  3780. int styleable KeyCycle_android_translationZ 8
  3781. int styleable KeyCycle_android_elevation 9
  3782. int styleable KeyCycle_curveFit 10
  3783. int styleable KeyCycle_framePosition 11
  3784. int styleable KeyCycle_motionProgress 12
  3785. int styleable KeyCycle_motionTarget 13
  3786. int styleable KeyCycle_transitionEasing 14
  3787. int styleable KeyCycle_transitionPathRotate 15
  3788. int styleable KeyCycle_waveOffset 16
  3789. int styleable KeyCycle_wavePeriod 17
  3790. int styleable KeyCycle_waveShape 18
  3791. int styleable KeyCycle_waveVariesBy 19
  3792. int[] styleable KeyFrame { }
  3793. int[] styleable KeyFramesAcceleration { }
  3794. int[] styleable KeyFramesVelocity { }
  3795. int[] styleable KeyPosition { 0x7f030102, 0x7f03011c, 0x7f030155, 0x7f030189, 0x7f0301ff, 0x7f030222, 0x7f030224, 0x7f030225, 0x7f030226, 0x7f030227, 0x7f03025b, 0x7f0302f9 }
  3796. int styleable KeyPosition_curveFit 0
  3797. int styleable KeyPosition_drawPath 1
  3798. int styleable KeyPosition_framePosition 2
  3799. int styleable KeyPosition_keyPositionType 3
  3800. int styleable KeyPosition_motionTarget 4
  3801. int styleable KeyPosition_pathMotionArc 5
  3802. int styleable KeyPosition_percentHeight 6
  3803. int styleable KeyPosition_percentWidth 7
  3804. int styleable KeyPosition_percentX 8
  3805. int styleable KeyPosition_percentY 9
  3806. int styleable KeyPosition_sizePercent 10
  3807. int styleable KeyPosition_transitionEasing 11
  3808. int[] styleable KeyTimeCycle { 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f030102, 0x7f030155, 0x7f0301fe, 0x7f0301ff, 0x7f0302f9, 0x7f0302fa, 0x7f030303, 0x7f030304, 0x7f030305 }
  3809. int styleable KeyTimeCycle_android_alpha 0
  3810. int styleable KeyTimeCycle_android_translationX 1
  3811. int styleable KeyTimeCycle_android_translationY 2
  3812. int styleable KeyTimeCycle_android_scaleX 3
  3813. int styleable KeyTimeCycle_android_scaleY 4
  3814. int styleable KeyTimeCycle_android_rotation 5
  3815. int styleable KeyTimeCycle_android_rotationX 6
  3816. int styleable KeyTimeCycle_android_rotationY 7
  3817. int styleable KeyTimeCycle_android_translationZ 8
  3818. int styleable KeyTimeCycle_android_elevation 9
  3819. int styleable KeyTimeCycle_curveFit 10
  3820. int styleable KeyTimeCycle_framePosition 11
  3821. int styleable KeyTimeCycle_motionProgress 12
  3822. int styleable KeyTimeCycle_motionTarget 13
  3823. int styleable KeyTimeCycle_transitionEasing 14
  3824. int styleable KeyTimeCycle_transitionPathRotate 15
  3825. int styleable KeyTimeCycle_waveOffset 16
  3826. int styleable KeyTimeCycle_wavePeriod 17
  3827. int styleable KeyTimeCycle_waveShape 18
  3828. int[] styleable KeyTrigger { 0x7f030155, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f03020f, 0x7f030211, 0x7f030212, 0x7f0302fb, 0x7f0302fc }
  3829. int styleable KeyTrigger_framePosition 0
  3830. int styleable KeyTrigger_motionTarget 1
  3831. int styleable KeyTrigger_motion_postLayoutCollision 2
  3832. int styleable KeyTrigger_motion_triggerOnCollision 3
  3833. int styleable KeyTrigger_onCross 4
  3834. int styleable KeyTrigger_onNegativeCross 5
  3835. int styleable KeyTrigger_onPositiveCross 6
  3836. int styleable KeyTrigger_triggerId 7
  3837. int styleable KeyTrigger_triggerSlack 8
  3838. int[] styleable Layout { 0x010100c4, 0x7f03003e, 0x7f03003f, 0x7f030040, 0x7f0300b1, 0x7f0300e8, 0x7f030195, 0x7f030196, 0x7f030197, 0x7f030198, 0x7f030199, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f03019e, 0x7f03019f, 0x7f0301a0, 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f0301a4, 0x7f0301a5, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301aa, 0x7f0301ab, 0x7f0301ac, 0x7f0301ad, 0x7f0301ae, 0x7f0301af, 0x7f0301b0, 0x7f0301b1, 0x7f0301b2, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8, 0x7f0301b9, 0x7f0301ba, 0x7f0301bb, 0x7f0301bc, 0x7f0301bd, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4, 0x7f0301c5, 0x7f0301c6, 0x7f0301c7, 0x7f0301ca, 0x7f0301cb, 0x7f0301cc, 0x7f0301cd, 0x7f0301ce, 0x7f0301cf, 0x7f0301d3, 0x7f0301ed, 0x7f0301f0, 0x7f0301f3, 0x7f0301f4 }
  3839. int styleable Layout_android_orientation 0
  3840. int styleable Layout_barrierAllowsGoneWidgets 1
  3841. int styleable Layout_barrierDirection 2
  3842. int styleable Layout_barrierMargin 3
  3843. int styleable Layout_chainUseRtl 4
  3844. int styleable Layout_constraint_referenced_ids 5
  3845. int styleable Layout_layout_constrainedHeight 6
  3846. int styleable Layout_layout_constrainedWidth 7
  3847. int styleable Layout_layout_constraintBaseline_creator 8
  3848. int styleable Layout_layout_constraintBaseline_toBaselineOf 9
  3849. int styleable Layout_layout_constraintBottom_creator 10
  3850. int styleable Layout_layout_constraintBottom_toBottomOf 11
  3851. int styleable Layout_layout_constraintBottom_toTopOf 12
  3852. int styleable Layout_layout_constraintCircle 13
  3853. int styleable Layout_layout_constraintCircleAngle 14
  3854. int styleable Layout_layout_constraintCircleRadius 15
  3855. int styleable Layout_layout_constraintDimensionRatio 16
  3856. int styleable Layout_layout_constraintEnd_toEndOf 17
  3857. int styleable Layout_layout_constraintEnd_toStartOf 18
  3858. int styleable Layout_layout_constraintGuide_begin 19
  3859. int styleable Layout_layout_constraintGuide_end 20
  3860. int styleable Layout_layout_constraintGuide_percent 21
  3861. int styleable Layout_layout_constraintHeight_default 22
  3862. int styleable Layout_layout_constraintHeight_max 23
  3863. int styleable Layout_layout_constraintHeight_min 24
  3864. int styleable Layout_layout_constraintHeight_percent 25
  3865. int styleable Layout_layout_constraintHorizontal_bias 26
  3866. int styleable Layout_layout_constraintHorizontal_chainStyle 27
  3867. int styleable Layout_layout_constraintHorizontal_weight 28
  3868. int styleable Layout_layout_constraintLeft_creator 29
  3869. int styleable Layout_layout_constraintLeft_toLeftOf 30
  3870. int styleable Layout_layout_constraintLeft_toRightOf 31
  3871. int styleable Layout_layout_constraintRight_creator 32
  3872. int styleable Layout_layout_constraintRight_toLeftOf 33
  3873. int styleable Layout_layout_constraintRight_toRightOf 34
  3874. int styleable Layout_layout_constraintStart_toEndOf 35
  3875. int styleable Layout_layout_constraintStart_toStartOf 36
  3876. int styleable Layout_layout_constraintTop_creator 37
  3877. int styleable Layout_layout_constraintTop_toBottomOf 38
  3878. int styleable Layout_layout_constraintTop_toTopOf 39
  3879. int styleable Layout_layout_constraintVertical_bias 40
  3880. int styleable Layout_layout_constraintVertical_chainStyle 41
  3881. int styleable Layout_layout_constraintVertical_weight 42
  3882. int styleable Layout_layout_constraintWidth_default 43
  3883. int styleable Layout_layout_constraintWidth_max 44
  3884. int styleable Layout_layout_constraintWidth_min 45
  3885. int styleable Layout_layout_constraintWidth_percent 46
  3886. int styleable Layout_layout_editor_absoluteX 47
  3887. int styleable Layout_layout_editor_absoluteY 48
  3888. int styleable Layout_layout_goneMarginBottom 49
  3889. int styleable Layout_layout_goneMarginEnd 50
  3890. int styleable Layout_layout_goneMarginLeft 51
  3891. int styleable Layout_layout_goneMarginRight 52
  3892. int styleable Layout_layout_goneMarginStart 53
  3893. int styleable Layout_layout_goneMarginTop 54
  3894. int styleable Layout_layout_height 55
  3895. int styleable Layout_layout_marginBottom 56
  3896. int styleable Layout_layout_marginEnd 57
  3897. int styleable Layout_layout_marginLeft 58
  3898. int styleable Layout_layout_marginRight 59
  3899. int styleable Layout_layout_marginStart 60
  3900. int styleable Layout_layout_marginTop 61
  3901. int styleable Layout_layout_width 62
  3902. int styleable Layout_maxHeight 63
  3903. int styleable Layout_maxWidth 64
  3904. int styleable Layout_minHeight 65
  3905. int styleable Layout_minWidth 66
  3906. int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f030116, 0x7f030118, 0x7f0301f1, 0x7f030253 }
  3907. int styleable LinearLayoutCompat_android_gravity 0
  3908. int styleable LinearLayoutCompat_android_orientation 1
  3909. int styleable LinearLayoutCompat_android_baselineAligned 2
  3910. int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
  3911. int styleable LinearLayoutCompat_android_weightSum 4
  3912. int styleable LinearLayoutCompat_divider 5
  3913. int styleable LinearLayoutCompat_dividerPadding 6
  3914. int styleable LinearLayoutCompat_measureWithLargestChild 7
  3915. int styleable LinearLayoutCompat_showDividers 8
  3916. int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
  3917. int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
  3918. int styleable LinearLayoutCompat_Layout_android_layout_width 1
  3919. int styleable LinearLayoutCompat_Layout_android_layout_height 2
  3920. int styleable LinearLayoutCompat_Layout_android_layout_weight 3
  3921. int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
  3922. int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
  3923. int styleable ListPopupWindow_android_dropDownVerticalOffset 1
  3924. int[] styleable MaterialButton { 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x7f030039, 0x7f03003a, 0x7f0300fb, 0x7f030166, 0x7f030168, 0x7f030169, 0x7f03016a, 0x7f03016c, 0x7f03016d, 0x7f030244, 0x7f03026d, 0x7f03026e }
  3925. int styleable MaterialButton_android_insetLeft 0
  3926. int styleable MaterialButton_android_insetRight 1
  3927. int styleable MaterialButton_android_insetTop 2
  3928. int styleable MaterialButton_android_insetBottom 3
  3929. int styleable MaterialButton_backgroundTint 4
  3930. int styleable MaterialButton_backgroundTintMode 5
  3931. int styleable MaterialButton_cornerRadius 6
  3932. int styleable MaterialButton_icon 7
  3933. int styleable MaterialButton_iconGravity 8
  3934. int styleable MaterialButton_iconPadding 9
  3935. int styleable MaterialButton_iconSize 10
  3936. int styleable MaterialButton_iconTint 11
  3937. int styleable MaterialButton_iconTintMode 12
  3938. int styleable MaterialButton_rippleColor 13
  3939. int styleable MaterialButton_strokeColor 14
  3940. int styleable MaterialButton_strokeWidth 15
  3941. int[] styleable MaterialCardView { 0x7f03026d, 0x7f03026e }
  3942. int styleable MaterialCardView_strokeColor 0
  3943. int styleable MaterialCardView_strokeWidth 1
  3944. int[] styleable MaterialComponentsTheme { 0x7f030091, 0x7f030092, 0x7f0300bb, 0x7f0300c5, 0x7f0300c9, 0x7f0300d9, 0x7f0300da, 0x7f0300e0, 0x7f0300e1, 0x7f0300e2, 0x7f03012c, 0x7f030148, 0x7f0301e8, 0x7f0301e9, 0x7f03020d, 0x7f030249, 0x7f03025c, 0x7f030290, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a4, 0x7f0302a9, 0x7f0302aa, 0x7f0302ae }
  3945. int styleable MaterialComponentsTheme_bottomSheetDialogTheme 0
  3946. int styleable MaterialComponentsTheme_bottomSheetStyle 1
  3947. int styleable MaterialComponentsTheme_chipGroupStyle 2
  3948. int styleable MaterialComponentsTheme_chipStandaloneStyle 3
  3949. int styleable MaterialComponentsTheme_chipStyle 4
  3950. int styleable MaterialComponentsTheme_colorAccent 5
  3951. int styleable MaterialComponentsTheme_colorBackgroundFloating 6
  3952. int styleable MaterialComponentsTheme_colorPrimary 7
  3953. int styleable MaterialComponentsTheme_colorPrimaryDark 8
  3954. int styleable MaterialComponentsTheme_colorSecondary 9
  3955. int styleable MaterialComponentsTheme_editTextStyle 10
  3956. int styleable MaterialComponentsTheme_floatingActionButtonStyle 11
  3957. int styleable MaterialComponentsTheme_materialButtonStyle 12
  3958. int styleable MaterialComponentsTheme_materialCardViewStyle 13
  3959. int styleable MaterialComponentsTheme_navigationViewStyle 14
  3960. int styleable MaterialComponentsTheme_scrimBackground 15
  3961. int styleable MaterialComponentsTheme_snackbarButtonStyle 16
  3962. int styleable MaterialComponentsTheme_tabStyle 17
  3963. int styleable MaterialComponentsTheme_textAppearanceBody1 18
  3964. int styleable MaterialComponentsTheme_textAppearanceBody2 19
  3965. int styleable MaterialComponentsTheme_textAppearanceButton 20
  3966. int styleable MaterialComponentsTheme_textAppearanceCaption 21
  3967. int styleable MaterialComponentsTheme_textAppearanceHeadline1 22
  3968. int styleable MaterialComponentsTheme_textAppearanceHeadline2 23
  3969. int styleable MaterialComponentsTheme_textAppearanceHeadline3 24
  3970. int styleable MaterialComponentsTheme_textAppearanceHeadline4 25
  3971. int styleable MaterialComponentsTheme_textAppearanceHeadline5 26
  3972. int styleable MaterialComponentsTheme_textAppearanceHeadline6 27
  3973. int styleable MaterialComponentsTheme_textAppearanceOverline 28
  3974. int styleable MaterialComponentsTheme_textAppearanceSubtitle1 29
  3975. int styleable MaterialComponentsTheme_textAppearanceSubtitle2 30
  3976. int styleable MaterialComponentsTheme_textInputStyle 31
  3977. int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
  3978. int styleable MenuGroup_android_enabled 0
  3979. int styleable MenuGroup_android_id 1
  3980. int styleable MenuGroup_android_visible 2
  3981. int styleable MenuGroup_android_menuCategory 3
  3982. int styleable MenuGroup_android_orderInCategory 4
  3983. int styleable MenuGroup_android_checkableBehavior 5
  3984. int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f03000d, 0x7f03001f, 0x7f030020, 0x7f030028, 0x7f0300eb, 0x7f03016c, 0x7f03016d, 0x7f03020e, 0x7f030252, 0x7f0302f3 }
  3985. int styleable MenuItem_android_icon 0
  3986. int styleable MenuItem_android_enabled 1
  3987. int styleable MenuItem_android_id 2
  3988. int styleable MenuItem_android_checked 3
  3989. int styleable MenuItem_android_visible 4
  3990. int styleable MenuItem_android_menuCategory 5
  3991. int styleable MenuItem_android_orderInCategory 6
  3992. int styleable MenuItem_android_title 7
  3993. int styleable MenuItem_android_titleCondensed 8
  3994. int styleable MenuItem_android_alphabeticShortcut 9
  3995. int styleable MenuItem_android_numericShortcut 10
  3996. int styleable MenuItem_android_checkable 11
  3997. int styleable MenuItem_android_onClick 12
  3998. int styleable MenuItem_actionLayout 13
  3999. int styleable MenuItem_actionProviderClass 14
  4000. int styleable MenuItem_actionViewClass 15
  4001. int styleable MenuItem_alphabeticModifiers 16
  4002. int styleable MenuItem_contentDescription 17
  4003. int styleable MenuItem_iconTint 18
  4004. int styleable MenuItem_iconTintMode 19
  4005. int styleable MenuItem_numericModifiers 20
  4006. int styleable MenuItem_showAsAction 21
  4007. int styleable MenuItem_tooltipText 22
  4008. int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f030234, 0x7f03026f }
  4009. int styleable MenuView_android_windowAnimationStyle 0
  4010. int styleable MenuView_android_itemTextAppearance 1
  4011. int styleable MenuView_android_horizontalDivider 2
  4012. int styleable MenuView_android_verticalDivider 3
  4013. int styleable MenuView_android_headerBackground 4
  4014. int styleable MenuView_android_itemBackground 5
  4015. int styleable MenuView_android_itemIconDisabledAlpha 6
  4016. int styleable MenuView_preserveIconSpacing 7
  4017. int styleable MenuView_subMenuArrow 8
  4018. int[] styleable MockView { 0x7f0301f5, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa }
  4019. int styleable MockView_mock_diagonalsColor 0
  4020. int styleable MockView_mock_label 1
  4021. int styleable MockView_mock_labelBackgroundColor 2
  4022. int styleable MockView_mock_labelColor 3
  4023. int styleable MockView_mock_showDiagonals 4
  4024. int styleable MockView_mock_showLabel 5
  4025. int[] styleable Motion { 0x7f03002a, 0x7f03011c, 0x7f0301fd, 0x7f030222, 0x7f0302f9 }
  4026. int styleable Motion_animate_relativeTo 0
  4027. int styleable Motion_drawPath 1
  4028. int styleable Motion_motionPathRotate 2
  4029. int styleable Motion_pathMotionArc 3
  4030. int styleable Motion_transitionEasing 4
  4031. int[] styleable MotionHelper { 0x7f030210, 0x7f030213 }
  4032. int styleable MotionHelper_onHide 0
  4033. int styleable MotionHelper_onShow 1
  4034. int[] styleable MotionLayout { 0x7f03002b, 0x7f030101, 0x7f03018e, 0x7f0301fb, 0x7f0301fe, 0x7f030255 }
  4035. int styleable MotionLayout_applyMotionScene 0
  4036. int styleable MotionLayout_currentState 1
  4037. int styleable MotionLayout_layoutDescription 2
  4038. int styleable MotionLayout_motionDebug 3
  4039. int styleable MotionLayout_motionProgress 4
  4040. int styleable MotionLayout_showPaths 5
  4041. int[] styleable MotionScene { 0x7f03010c }
  4042. int styleable MotionScene_defaultDuration 0
  4043. int[] styleable MsgView { 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030207, 0x7f030208, 0x7f030209 }
  4044. int styleable MsgView_mv_backgroundColor 0
  4045. int styleable MsgView_mv_cornerRadius 1
  4046. int styleable MsgView_mv_isRadiusHalfHeight 2
  4047. int styleable MsgView_mv_isWidthHeightEqual 3
  4048. int styleable MsgView_mv_strokeColor 4
  4049. int styleable MsgView_mv_strokeWidth 5
  4050. int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f03012d, 0x7f030158, 0x7f03017d, 0x7f03017e, 0x7f030180, 0x7f030182, 0x7f030185, 0x7f030188, 0x7f0301f2 }
  4051. int styleable NavigationView_android_background 0
  4052. int styleable NavigationView_android_fitsSystemWindows 1
  4053. int styleable NavigationView_android_maxWidth 2
  4054. int styleable NavigationView_elevation 3
  4055. int styleable NavigationView_headerLayout 4
  4056. int styleable NavigationView_itemBackground 5
  4057. int styleable NavigationView_itemHorizontalPadding 6
  4058. int styleable NavigationView_itemIconPadding 7
  4059. int styleable NavigationView_itemIconTint 8
  4060. int styleable NavigationView_itemTextAppearance 9
  4061. int styleable NavigationView_itemTextColor 10
  4062. int styleable NavigationView_menu 11
  4063. int[] styleable OnClick { 0x7f0300cb, 0x7f030294 }
  4064. int styleable OnClick_clickAction 0
  4065. int styleable OnClick_targetId 1
  4066. int[] styleable OnSwipe { 0x7f03011a, 0x7f03011b, 0x7f0301ea, 0x7f0301ef, 0x7f030202, 0x7f0302f4, 0x7f0302f5 }
  4067. int styleable OnSwipe_dragDirection 0
  4068. int styleable OnSwipe_dragScale 1
  4069. int styleable OnSwipe_maxAcceleration 2
  4070. int styleable OnSwipe_maxVelocity 3
  4071. int styleable OnSwipe_moveWhenScrollAtTop 4
  4072. int styleable OnSwipe_touchAnchorId 5
  4073. int styleable OnSwipe_touchAnchorSide 6
  4074. int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f030214 }
  4075. int styleable PopupWindow_android_popupBackground 0
  4076. int styleable PopupWindow_android_popupAnimationStyle 1
  4077. int styleable PopupWindow_overlapAnchor 2
  4078. int[] styleable PopupWindowBackgroundState { 0x7f030266 }
  4079. int styleable PopupWindowBackgroundState_state_above_anchor 0
  4080. int[] styleable PropertySet { 0x7f030027, 0x7f0301fe, 0x7f030300 }
  4081. int styleable PropertySet_alpha 0
  4082. int styleable PropertySet_motionProgress 1
  4083. int styleable PropertySet_visibility 2
  4084. int[] styleable RecycleListView { 0x7f030216, 0x7f030219 }
  4085. int styleable RecycleListView_paddingBottomNoButtons 0
  4086. int styleable RecycleListView_paddingTopNoTitle 1
  4087. int[] styleable RecyclerView { 0x010100c4, 0x010100f1, 0x7f030142, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f03018f, 0x7f030243, 0x7f03025e, 0x7f030264 }
  4088. int styleable RecyclerView_android_orientation 0
  4089. int styleable RecyclerView_android_descendantFocusability 1
  4090. int styleable RecyclerView_fastScrollEnabled 2
  4091. int styleable RecyclerView_fastScrollHorizontalThumbDrawable 3
  4092. int styleable RecyclerView_fastScrollHorizontalTrackDrawable 4
  4093. int styleable RecyclerView_fastScrollVerticalThumbDrawable 5
  4094. int styleable RecyclerView_fastScrollVerticalTrackDrawable 6
  4095. int styleable RecyclerView_layoutManager 7
  4096. int styleable RecyclerView_reverseLayout 8
  4097. int styleable RecyclerView_spanCount 9
  4098. int styleable RecyclerView_stackFromEnd 10
  4099. int[] styleable ScrimInsetsFrameLayout { 0x7f03017a }
  4100. int styleable ScrimInsetsFrameLayout_insetForeground 0
  4101. int[] styleable ScrollingViewBehavior_Layout { 0x7f030044 }
  4102. int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0
  4103. int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0300cc, 0x7f0300e4, 0x7f03010d, 0x7f030157, 0x7f03016e, 0x7f03018d, 0x7f030239, 0x7f03023a, 0x7f03024c, 0x7f03024d, 0x7f030270, 0x7f030275, 0x7f030301 }
  4104. int styleable SearchView_android_focusable 0
  4105. int styleable SearchView_android_maxWidth 1
  4106. int styleable SearchView_android_inputType 2
  4107. int styleable SearchView_android_imeOptions 3
  4108. int styleable SearchView_closeIcon 4
  4109. int styleable SearchView_commitIcon 5
  4110. int styleable SearchView_defaultQueryHint 6
  4111. int styleable SearchView_goIcon 7
  4112. int styleable SearchView_iconifiedByDefault 8
  4113. int styleable SearchView_layout 9
  4114. int styleable SearchView_queryBackground 10
  4115. int styleable SearchView_queryHint 11
  4116. int styleable SearchView_searchHintIcon 12
  4117. int styleable SearchView_searchIcon 13
  4118. int styleable SearchView_submitBackground 14
  4119. int styleable SearchView_suggestionRowLayout 15
  4120. int styleable SearchView_voiceIcon 16
  4121. int[] styleable SegmentTabLayout { 0x7f0302ca, 0x7f0302cb, 0x7f0302cc, 0x7f0302cd, 0x7f0302ce, 0x7f0302cf, 0x7f0302d5, 0x7f0302d6, 0x7f0302d7, 0x7f0302d8, 0x7f0302d9, 0x7f0302db, 0x7f0302dc, 0x7f0302dd, 0x7f0302de, 0x7f0302df, 0x7f0302e3, 0x7f0302e4, 0x7f0302e5, 0x7f0302e6, 0x7f0302e7, 0x7f0302e8, 0x7f0302e9, 0x7f0302ea }
  4122. int styleable SegmentTabLayout_tl_bar_color 0
  4123. int styleable SegmentTabLayout_tl_bar_stroke_color 1
  4124. int styleable SegmentTabLayout_tl_bar_stroke_width 2
  4125. int styleable SegmentTabLayout_tl_divider_color 3
  4126. int styleable SegmentTabLayout_tl_divider_padding 4
  4127. int styleable SegmentTabLayout_tl_divider_width 5
  4128. int styleable SegmentTabLayout_tl_indicator_anim_duration 6
  4129. int styleable SegmentTabLayout_tl_indicator_anim_enable 7
  4130. int styleable SegmentTabLayout_tl_indicator_bounce_enable 8
  4131. int styleable SegmentTabLayout_tl_indicator_color 9
  4132. int styleable SegmentTabLayout_tl_indicator_corner_radius 10
  4133. int styleable SegmentTabLayout_tl_indicator_height 11
  4134. int styleable SegmentTabLayout_tl_indicator_margin_bottom 12
  4135. int styleable SegmentTabLayout_tl_indicator_margin_left 13
  4136. int styleable SegmentTabLayout_tl_indicator_margin_right 14
  4137. int styleable SegmentTabLayout_tl_indicator_margin_top 15
  4138. int styleable SegmentTabLayout_tl_tab_padding 16
  4139. int styleable SegmentTabLayout_tl_tab_space_equal 17
  4140. int styleable SegmentTabLayout_tl_tab_width 18
  4141. int styleable SegmentTabLayout_tl_textAllCaps 19
  4142. int styleable SegmentTabLayout_tl_textBold 20
  4143. int styleable SegmentTabLayout_tl_textSelectColor 21
  4144. int styleable SegmentTabLayout_tl_textUnselectColor 22
  4145. int styleable SegmentTabLayout_tl_textsize 23
  4146. int[] styleable SlidingTabLayout { 0x7f0302cd, 0x7f0302ce, 0x7f0302cf, 0x7f0302d8, 0x7f0302d9, 0x7f0302da, 0x7f0302db, 0x7f0302dc, 0x7f0302dd, 0x7f0302de, 0x7f0302df, 0x7f0302e0, 0x7f0302e1, 0x7f0302e2, 0x7f0302e3, 0x7f0302e4, 0x7f0302e5, 0x7f0302e6, 0x7f0302e7, 0x7f0302e8, 0x7f0302e9, 0x7f0302ea, 0x7f0302eb, 0x7f0302ec, 0x7f0302ed }
  4147. int styleable SlidingTabLayout_tl_divider_color 0
  4148. int styleable SlidingTabLayout_tl_divider_padding 1
  4149. int styleable SlidingTabLayout_tl_divider_width 2
  4150. int styleable SlidingTabLayout_tl_indicator_color 3
  4151. int styleable SlidingTabLayout_tl_indicator_corner_radius 4
  4152. int styleable SlidingTabLayout_tl_indicator_gravity 5
  4153. int styleable SlidingTabLayout_tl_indicator_height 6
  4154. int styleable SlidingTabLayout_tl_indicator_margin_bottom 7
  4155. int styleable SlidingTabLayout_tl_indicator_margin_left 8
  4156. int styleable SlidingTabLayout_tl_indicator_margin_right 9
  4157. int styleable SlidingTabLayout_tl_indicator_margin_top 10
  4158. int styleable SlidingTabLayout_tl_indicator_style 11
  4159. int styleable SlidingTabLayout_tl_indicator_width 12
  4160. int styleable SlidingTabLayout_tl_indicator_width_equal_title 13
  4161. int styleable SlidingTabLayout_tl_tab_padding 14
  4162. int styleable SlidingTabLayout_tl_tab_space_equal 15
  4163. int styleable SlidingTabLayout_tl_tab_width 16
  4164. int styleable SlidingTabLayout_tl_textAllCaps 17
  4165. int styleable SlidingTabLayout_tl_textBold 18
  4166. int styleable SlidingTabLayout_tl_textSelectColor 19
  4167. int styleable SlidingTabLayout_tl_textUnselectColor 20
  4168. int styleable SlidingTabLayout_tl_textsize 21
  4169. int styleable SlidingTabLayout_tl_underline_color 22
  4170. int styleable SlidingTabLayout_tl_underline_gravity 23
  4171. int styleable SlidingTabLayout_tl_underline_height 24
  4172. int[] styleable Snackbar { 0x7f03025c, 0x7f03025d }
  4173. int styleable Snackbar_snackbarButtonStyle 0
  4174. int styleable Snackbar_snackbarStyle 1
  4175. int[] styleable SnackbarLayout { 0x0101011f, 0x7f03012d, 0x7f0301eb }
  4176. int styleable SnackbarLayout_android_maxWidth 0
  4177. int styleable SnackbarLayout_elevation 1
  4178. int styleable SnackbarLayout_maxActionInlineWidth 2
  4179. int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f030232 }
  4180. int styleable Spinner_android_entries 0
  4181. int styleable Spinner_android_popupBackground 1
  4182. int styleable Spinner_android_prompt 2
  4183. int styleable Spinner_android_dropDownWidth 3
  4184. int styleable Spinner_popupTheme 4
  4185. int[] styleable State { 0x010100d0, 0x7f0300e9 }
  4186. int styleable State_android_id 0
  4187. int styleable State_constraints 1
  4188. int[] styleable StateListDrawable { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }
  4189. int styleable StateListDrawable_android_dither 0
  4190. int styleable StateListDrawable_android_visible 1
  4191. int styleable StateListDrawable_android_variablePadding 2
  4192. int styleable StateListDrawable_android_constantSize 3
  4193. int styleable StateListDrawable_android_enterFadeDuration 4
  4194. int styleable StateListDrawable_android_exitFadeDuration 5
  4195. int[] styleable StateListDrawableItem { 0x01010199 }
  4196. int styleable StateListDrawableItem_android_drawable 0
  4197. int[] styleable StateSet { 0x7f03010e }
  4198. int styleable StateSet_defaultState 0
  4199. int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f030256, 0x7f030262, 0x7f030276, 0x7f030277, 0x7f030279, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302f6, 0x7f0302f7, 0x7f0302f8 }
  4200. int styleable SwitchCompat_android_textOn 0
  4201. int styleable SwitchCompat_android_textOff 1
  4202. int styleable SwitchCompat_android_thumb 2
  4203. int styleable SwitchCompat_showText 3
  4204. int styleable SwitchCompat_splitTrack 4
  4205. int styleable SwitchCompat_switchMinWidth 5
  4206. int styleable SwitchCompat_switchPadding 6
  4207. int styleable SwitchCompat_switchTextAppearance 7
  4208. int styleable SwitchCompat_thumbTextPadding 8
  4209. int styleable SwitchCompat_thumbTint 9
  4210. int styleable SwitchCompat_thumbTintMode 10
  4211. int styleable SwitchCompat_track 11
  4212. int styleable SwitchCompat_trackTint 12
  4213. int styleable SwitchCompat_trackTintMode 13
  4214. int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f }
  4215. int styleable TabItem_android_icon 0
  4216. int styleable TabItem_android_layout 1
  4217. int styleable TabItem_android_text 2
  4218. int[] styleable TabLayout { 0x7f03027a, 0x7f03027b, 0x7f03027c, 0x7f03027d, 0x7f03027e, 0x7f03027f, 0x7f030280, 0x7f030281, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030288, 0x7f030289, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f03028f, 0x7f030291, 0x7f030292, 0x7f030293 }
  4219. int styleable TabLayout_tabBackground 0
  4220. int styleable TabLayout_tabContentStart 1
  4221. int styleable TabLayout_tabGravity 2
  4222. int styleable TabLayout_tabIconTint 3
  4223. int styleable TabLayout_tabIconTintMode 4
  4224. int styleable TabLayout_tabIndicator 5
  4225. int styleable TabLayout_tabIndicatorAnimationDuration 6
  4226. int styleable TabLayout_tabIndicatorColor 7
  4227. int styleable TabLayout_tabIndicatorFullWidth 8
  4228. int styleable TabLayout_tabIndicatorGravity 9
  4229. int styleable TabLayout_tabIndicatorHeight 10
  4230. int styleable TabLayout_tabInlineLabel 11
  4231. int styleable TabLayout_tabMaxWidth 12
  4232. int styleable TabLayout_tabMinWidth 13
  4233. int styleable TabLayout_tabMode 14
  4234. int styleable TabLayout_tabPadding 15
  4235. int styleable TabLayout_tabPaddingBottom 16
  4236. int styleable TabLayout_tabPaddingEnd 17
  4237. int styleable TabLayout_tabPaddingStart 18
  4238. int styleable TabLayout_tabPaddingTop 19
  4239. int styleable TabLayout_tabRippleColor 20
  4240. int styleable TabLayout_tabSelectedTextColor 21
  4241. int styleable TabLayout_tabTextAppearance 22
  4242. int styleable TabLayout_tabTextColor 23
  4243. int styleable TabLayout_tabUnboundedRipple 24
  4244. int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x01010585, 0x7f03014a, 0x7f030152, 0x7f030295, 0x7f0302af }
  4245. int styleable TextAppearance_android_textSize 0
  4246. int styleable TextAppearance_android_typeface 1
  4247. int styleable TextAppearance_android_textStyle 2
  4248. int styleable TextAppearance_android_textColor 3
  4249. int styleable TextAppearance_android_textColorHint 4
  4250. int styleable TextAppearance_android_textColorLink 5
  4251. int styleable TextAppearance_android_shadowColor 6
  4252. int styleable TextAppearance_android_shadowDx 7
  4253. int styleable TextAppearance_android_shadowDy 8
  4254. int styleable TextAppearance_android_shadowRadius 9
  4255. int styleable TextAppearance_android_fontFamily 10
  4256. int styleable TextAppearance_android_textFontWeight 11
  4257. int styleable TextAppearance_fontFamily 12
  4258. int styleable TextAppearance_fontVariationSettings 13
  4259. int styleable TextAppearance_textAllCaps 14
  4260. int styleable TextAppearance_textLocale 15
  4261. int[] styleable TextInputLayout { 0x0101009a, 0x01010150, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f030097, 0x7f030098, 0x7f030099, 0x7f03009a, 0x7f03009b, 0x7f0300fc, 0x7f0300fd, 0x7f0300fe, 0x7f0300ff, 0x7f030131, 0x7f030132, 0x7f03015a, 0x7f03015b, 0x7f03015c, 0x7f030160, 0x7f030161, 0x7f030162, 0x7f03021d, 0x7f03021e, 0x7f03021f, 0x7f030220, 0x7f030221 }
  4262. int styleable TextInputLayout_android_textColorHint 0
  4263. int styleable TextInputLayout_android_hint 1
  4264. int styleable TextInputLayout_boxBackgroundColor 2
  4265. int styleable TextInputLayout_boxBackgroundMode 3
  4266. int styleable TextInputLayout_boxCollapsedPaddingTop 4
  4267. int styleable TextInputLayout_boxCornerRadiusBottomEnd 5
  4268. int styleable TextInputLayout_boxCornerRadiusBottomStart 6
  4269. int styleable TextInputLayout_boxCornerRadiusTopEnd 7
  4270. int styleable TextInputLayout_boxCornerRadiusTopStart 8
  4271. int styleable TextInputLayout_boxStrokeColor 9
  4272. int styleable TextInputLayout_boxStrokeWidth 10
  4273. int styleable TextInputLayout_counterEnabled 11
  4274. int styleable TextInputLayout_counterMaxLength 12
  4275. int styleable TextInputLayout_counterOverflowTextAppearance 13
  4276. int styleable TextInputLayout_counterTextAppearance 14
  4277. int styleable TextInputLayout_errorEnabled 15
  4278. int styleable TextInputLayout_errorTextAppearance 16
  4279. int styleable TextInputLayout_helperText 17
  4280. int styleable TextInputLayout_helperTextEnabled 18
  4281. int styleable TextInputLayout_helperTextTextAppearance 19
  4282. int styleable TextInputLayout_hintAnimationEnabled 20
  4283. int styleable TextInputLayout_hintEnabled 21
  4284. int styleable TextInputLayout_hintTextAppearance 22
  4285. int styleable TextInputLayout_passwordToggleContentDescription 23
  4286. int styleable TextInputLayout_passwordToggleDrawable 24
  4287. int styleable TextInputLayout_passwordToggleEnabled 25
  4288. int styleable TextInputLayout_passwordToggleTint 26
  4289. int styleable TextInputLayout_passwordToggleTintMode 27
  4290. int[] styleable ThemeEnforcement { 0x01010034, 0x7f03012f, 0x7f030130 }
  4291. int styleable ThemeEnforcement_android_textAppearance 0
  4292. int styleable ThemeEnforcement_enforceMaterialTheme 1
  4293. int styleable ThemeEnforcement_enforceTextAppearance 2
  4294. int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f0300a3, 0x7f0300d4, 0x7f0300d5, 0x7f0300ec, 0x7f0300ed, 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f1, 0x7f0301e6, 0x7f0301e7, 0x7f0301ec, 0x7f0301f2, 0x7f03020a, 0x7f03020b, 0x7f030232, 0x7f030271, 0x7f030272, 0x7f030273, 0x7f0302bb, 0x7f0302bd, 0x7f0302be, 0x7f0302bf, 0x7f0302c0, 0x7f0302c1, 0x7f0302c2, 0x7f0302c3, 0x7f0302c4 }
  4295. int styleable Toolbar_android_gravity 0
  4296. int styleable Toolbar_android_minHeight 1
  4297. int styleable Toolbar_buttonGravity 2
  4298. int styleable Toolbar_collapseContentDescription 3
  4299. int styleable Toolbar_collapseIcon 4
  4300. int styleable Toolbar_contentInsetEnd 5
  4301. int styleable Toolbar_contentInsetEndWithActions 6
  4302. int styleable Toolbar_contentInsetLeft 7
  4303. int styleable Toolbar_contentInsetRight 8
  4304. int styleable Toolbar_contentInsetStart 9
  4305. int styleable Toolbar_contentInsetStartWithNavigation 10
  4306. int styleable Toolbar_logo 11
  4307. int styleable Toolbar_logoDescription 12
  4308. int styleable Toolbar_maxButtonHeight 13
  4309. int styleable Toolbar_menu 14
  4310. int styleable Toolbar_navigationContentDescription 15
  4311. int styleable Toolbar_navigationIcon 16
  4312. int styleable Toolbar_popupTheme 17
  4313. int styleable Toolbar_subtitle 18
  4314. int styleable Toolbar_subtitleTextAppearance 19
  4315. int styleable Toolbar_subtitleTextColor 20
  4316. int styleable Toolbar_title 21
  4317. int styleable Toolbar_titleMargin 22
  4318. int styleable Toolbar_titleMarginBottom 23
  4319. int styleable Toolbar_titleMarginEnd 24
  4320. int styleable Toolbar_titleMarginStart 25
  4321. int styleable Toolbar_titleMarginTop 26
  4322. int styleable Toolbar_titleMargins 27
  4323. int styleable Toolbar_titleTextAppearance 28
  4324. int styleable Toolbar_titleTextColor 29
  4325. int[] styleable Transform { 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f03022e, 0x7f03022f, 0x7f030230 }
  4326. int styleable Transform_android_transformPivotX 0
  4327. int styleable Transform_android_transformPivotY 1
  4328. int styleable Transform_android_translationX 2
  4329. int styleable Transform_android_translationY 3
  4330. int styleable Transform_android_scaleX 4
  4331. int styleable Transform_android_scaleY 5
  4332. int styleable Transform_android_rotation 6
  4333. int styleable Transform_android_rotationX 7
  4334. int styleable Transform_android_rotationY 8
  4335. int styleable Transform_android_translationZ 9
  4336. int styleable Transform_android_elevation 10
  4337. int styleable Transform_pivotAnchor 11
  4338. int styleable Transform_pivotX 12
  4339. int styleable Transform_pivotY 13
  4340. int[] styleable Transition { 0x010100d0, 0x7f0300e6, 0x7f0300e7, 0x7f030129, 0x7f0301fc, 0x7f030265 }
  4341. int styleable Transition_android_id 0
  4342. int styleable Transition_constraintSetEnd 1
  4343. int styleable Transition_constraintSetStart 2
  4344. int styleable Transition_duration 3
  4345. int styleable Transition_motionInterpolator 4
  4346. int styleable Transition_staggered 5
  4347. int[] styleable Variant { 0x7f0300e9, 0x7f03023f, 0x7f030240, 0x7f030241, 0x7f030242 }
  4348. int styleable Variant_constraints 0
  4349. int styleable Variant_region_heightLessThan 1
  4350. int styleable Variant_region_heightMoreThan 2
  4351. int styleable Variant_region_widthLessThan 3
  4352. int styleable Variant_region_widthMoreThan 4
  4353. int[] styleable View { 0x01010000, 0x010100da, 0x7f030217, 0x7f030218, 0x7f0302b1 }
  4354. int styleable View_android_theme 0
  4355. int styleable View_android_focusable 1
  4356. int styleable View_paddingEnd 2
  4357. int styleable View_paddingStart 3
  4358. int styleable View_theme 4
  4359. int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f030039, 0x7f03003a }
  4360. int styleable ViewBackgroundHelper_android_background 0
  4361. int styleable ViewBackgroundHelper_backgroundTint 1
  4362. int styleable ViewBackgroundHelper_backgroundTintMode 2
  4363. int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
  4364. int styleable ViewStubCompat_android_id 0
  4365. int styleable ViewStubCompat_android_layout 1
  4366. int styleable ViewStubCompat_android_inflatedId 2
  4367. int[] styleable background { 0x7f030048, 0x7f03004b, 0x7f03004d, 0x7f03004e, 0x7f03004f, 0x7f030050, 0x7f030051, 0x7f030053, 0x7f030058, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f03005e, 0x7f03005f, 0x7f030060, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f030065, 0x7f030066, 0x7f030069, 0x7f03006b, 0x7f03006c, 0x7f03006e, 0x7f030070, 0x7f030071, 0x7f030072, 0x7f030073, 0x7f030074, 0x7f030075, 0x7f030076, 0x7f030077, 0x7f030079, 0x7f03007c, 0x7f03007f, 0x7f030084, 0x7f030087, 0x7f03008a }
  4368. int styleable background_bl_checkable_stroke_color 0
  4369. int styleable background_bl_checked_stroke_color 1
  4370. int styleable background_bl_corners_bottomLeftRadius 2
  4371. int styleable background_bl_corners_bottomRightRadius 3
  4372. int styleable background_bl_corners_radius 4
  4373. int styleable background_bl_corners_topLeftRadius 5
  4374. int styleable background_bl_corners_topRightRadius 6
  4375. int styleable background_bl_enabled_stroke_color 7
  4376. int styleable background_bl_focused_stroke_color 8
  4377. int styleable background_bl_gradient_angle 9
  4378. int styleable background_bl_gradient_centerColor 10
  4379. int styleable background_bl_gradient_centerX 11
  4380. int styleable background_bl_gradient_centerY 12
  4381. int styleable background_bl_gradient_endColor 13
  4382. int styleable background_bl_gradient_gradientRadius 14
  4383. int styleable background_bl_gradient_startColor 15
  4384. int styleable background_bl_gradient_type 16
  4385. int styleable background_bl_gradient_useLevel 17
  4386. int styleable background_bl_padding_bottom 18
  4387. int styleable background_bl_padding_left 19
  4388. int styleable background_bl_padding_right 20
  4389. int styleable background_bl_padding_top 21
  4390. int styleable background_bl_pressed_stroke_color 22
  4391. int styleable background_bl_ripple_color 23
  4392. int styleable background_bl_ripple_enable 24
  4393. int styleable background_bl_selected_stroke_color 25
  4394. int styleable background_bl_shape 26
  4395. int styleable background_bl_size_height 27
  4396. int styleable background_bl_size_width 28
  4397. int styleable background_bl_solid_color 29
  4398. int styleable background_bl_stroke_color 30
  4399. int styleable background_bl_stroke_dashGap 31
  4400. int styleable background_bl_stroke_dashWidth 32
  4401. int styleable background_bl_stroke_width 33
  4402. int styleable background_bl_unCheckable_stroke_color 34
  4403. int styleable background_bl_unChecked_stroke_color 35
  4404. int styleable background_bl_unEnabled_stroke_color 36
  4405. int styleable background_bl_unFocused_stroke_color 37
  4406. int styleable background_bl_unPressed_stroke_color 38
  4407. int styleable background_bl_unSelected_stroke_color 39
  4408. int[] styleable background_press { 0x7f030067, 0x7f03008c }
  4409. int styleable background_press_bl_pressed_color 0
  4410. int styleable background_press_bl_unpressed_color 1
  4411. int[] styleable background_selector { 0x7f030047, 0x7f03004a, 0x7f030052, 0x7f030055, 0x7f030056, 0x7f030057, 0x7f030068, 0x7f03006d, 0x7f030078, 0x7f03007b, 0x7f03007e, 0x7f030081, 0x7f030082, 0x7f030083, 0x7f030086, 0x7f030089 }
  4412. int styleable background_selector_bl_checkable_drawable 0
  4413. int styleable background_selector_bl_checked_drawable 1
  4414. int styleable background_selector_bl_enabled_drawable 2
  4415. int styleable background_selector_bl_focused_activated 3
  4416. int styleable background_selector_bl_focused_drawable 4
  4417. int styleable background_selector_bl_focused_hovered 5
  4418. int styleable background_selector_bl_pressed_drawable 6
  4419. int styleable background_selector_bl_selected_drawable 7
  4420. int styleable background_selector_bl_unCheckable_drawable 8
  4421. int styleable background_selector_bl_unChecked_drawable 9
  4422. int styleable background_selector_bl_unEnabled_drawable 10
  4423. int styleable background_selector_bl_unFocused_activated 11
  4424. int styleable background_selector_bl_unFocused_drawable 12
  4425. int styleable background_selector_bl_unFocused_hovered 13
  4426. int styleable background_selector_bl_unPressed_drawable 14
  4427. int styleable background_selector_bl_unSelected_drawable 15
  4428. int[] styleable pickerview { 0x7f030229, 0x7f03022a, 0x7f03022b, 0x7f03022c, 0x7f03022d }
  4429. int styleable pickerview_pickerview_dividerColor 0
  4430. int styleable pickerview_pickerview_gravity 1
  4431. int styleable pickerview_pickerview_textColorCenter 2
  4432. int styleable pickerview_pickerview_textColorOut 3
  4433. int styleable pickerview_pickerview_textSize 4
  4434. int[] styleable text_selector { 0x7f030049, 0x7f03004c, 0x7f030054, 0x7f030059, 0x7f03006a, 0x7f03006f, 0x7f03007a, 0x7f03007d, 0x7f030080, 0x7f030085, 0x7f030088, 0x7f03008b }
  4435. int styleable text_selector_bl_checkable_textColor 0
  4436. int styleable text_selector_bl_checked_textColor 1
  4437. int styleable text_selector_bl_enabled_textColor 2
  4438. int styleable text_selector_bl_focused_textColor 3
  4439. int styleable text_selector_bl_pressed_textColor 4
  4440. int styleable text_selector_bl_selected_textColor 5
  4441. int styleable text_selector_bl_unCheckable_textColor 6
  4442. int styleable text_selector_bl_unChecked_textColor 7
  4443. int styleable text_selector_bl_unEnabled_textColor 8
  4444. int styleable text_selector_bl_unFocused_textColor 9
  4445. int styleable text_selector_bl_unPressed_textColor 10
  4446. int styleable text_selector_bl_unSelected_textColor 11