| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126 |
- int anim abc_fade_in 0x7f010001
- int anim abc_fade_out 0x7f010002
- int anim abc_grow_fade_in_from_bottom 0x7f010003
- int anim abc_popup_enter 0x7f010004
- int anim abc_popup_exit 0x7f010005
- int anim abc_shrink_fade_out_from_bottom 0x7f010006
- int anim abc_slide_in_bottom 0x7f010007
- int anim abc_slide_in_top 0x7f010008
- int anim abc_slide_out_bottom 0x7f010009
- int anim abc_slide_out_top 0x7f01000a
- int anim abc_tooltip_enter 0x7f01000b
- int anim abc_tooltip_exit 0x7f01000c
- int anim design_bottom_sheet_slide_in 0x7f01000d
- int anim design_bottom_sheet_slide_out 0x7f01000e
- int anim design_snackbar_in 0x7f01000f
- int anim design_snackbar_out 0x7f010010
- int anim dialog_bottom_in 0x7f010011
- int anim dialog_bottom_out 0x7f010012
- int anim dialog_ios_in 0x7f010013
- int anim dialog_ios_out 0x7f010014
- int anim dialog_left_in 0x7f010015
- int anim dialog_left_out 0x7f010016
- int anim dialog_right_in 0x7f010017
- int anim dialog_right_out 0x7f010018
- int anim dialog_scale_in 0x7f010019
- int anim dialog_scale_out 0x7f01001a
- int anim dialog_top_in 0x7f01001b
- int anim dialog_top_out 0x7f01001c
- int anim item_animation_fall_down 0x7f01001d
- int anim item_animation_from_bottom 0x7f01001e
- int anim item_animation_from_right 0x7f01001f
- int anim layout_animation_fall_down 0x7f010020
- int anim layout_animation_from_bottom 0x7f010021
- int anim layout_animation_from_right 0x7f010022
- int animator design_appbar_state_list_animator 0x7f020001
- int animator design_fab_hide_motion_spec 0x7f020002
- int animator design_fab_show_motion_spec 0x7f020003
- int animator mtrl_btn_state_list_anim 0x7f020004
- int animator mtrl_btn_unelevated_state_list_anim 0x7f020005
- int animator mtrl_chip_state_list_anim 0x7f020006
- int animator mtrl_fab_hide_motion_spec 0x7f020007
- int animator mtrl_fab_show_motion_spec 0x7f020008
- int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020009
- int animator mtrl_fab_transformation_sheet_expand_spec 0x7f02000a
- int attr actionBarDivider 0x7f040001
- int attr actionBarItemBackground 0x7f040002
- int attr actionBarPopupTheme 0x7f040003
- int attr actionBarSize 0x7f040004
- int attr actionBarSplitStyle 0x7f040005
- int attr actionBarStyle 0x7f040006
- int attr actionBarTabBarStyle 0x7f040007
- int attr actionBarTabStyle 0x7f040008
- int attr actionBarTabTextStyle 0x7f040009
- int attr actionBarTheme 0x7f04000a
- int attr actionBarWidgetTheme 0x7f04000b
- int attr actionButtonStyle 0x7f04000c
- int attr actionDropDownStyle 0x7f04000d
- int attr actionLayout 0x7f04000e
- int attr actionMenuTextAppearance 0x7f04000f
- int attr actionMenuTextColor 0x7f040010
- int attr actionModeBackground 0x7f040011
- int attr actionModeCloseButtonStyle 0x7f040012
- int attr actionModeCloseDrawable 0x7f040013
- int attr actionModeCopyDrawable 0x7f040014
- int attr actionModeCutDrawable 0x7f040015
- int attr actionModeFindDrawable 0x7f040016
- int attr actionModePasteDrawable 0x7f040017
- int attr actionModePopupWindowStyle 0x7f040018
- int attr actionModeSelectAllDrawable 0x7f040019
- int attr actionModeShareDrawable 0x7f04001a
- int attr actionModeSplitBackground 0x7f04001b
- int attr actionModeStyle 0x7f04001c
- int attr actionModeWebSearchDrawable 0x7f04001d
- int attr actionOverflowButtonStyle 0x7f04001e
- int attr actionOverflowMenuStyle 0x7f04001f
- int attr actionProviderClass 0x7f040020
- int attr actionViewClass 0x7f040021
- int attr activityChooserViewStyle 0x7f040022
- int attr alertDialogButtonGroupStyle 0x7f040023
- int attr alertDialogCenterButtons 0x7f040024
- int attr alertDialogStyle 0x7f040025
- int attr alertDialogTheme 0x7f040026
- int attr allowStacking 0x7f040027
- int attr alpha 0x7f040028
- int attr alphabeticModifiers 0x7f040029
- int attr arrowHeadLength 0x7f04002a
- int attr arrowShaftLength 0x7f04002b
- int attr autoCompleteTextViewStyle 0x7f04002c
- int attr autoSizeMaxTextSize 0x7f04002d
- int attr autoSizeMinTextSize 0x7f04002e
- int attr autoSizePresetSizes 0x7f04002f
- int attr autoSizeStepGranularity 0x7f040030
- int attr autoSizeTextType 0x7f040031
- int attr background 0x7f040032
- int attr backgroundSplit 0x7f040033
- int attr backgroundStacked 0x7f040034
- int attr backgroundTint 0x7f040035
- int attr backgroundTintMode 0x7f040036
- int attr barLength 0x7f040037
- int attr bar_leftColor 0x7f040038
- int attr bar_leftColorHint 0x7f040039
- int attr bar_leftHint 0x7f04003a
- int attr bar_leftIcon 0x7f04003b
- int attr bar_leftSize 0x7f04003c
- int attr bar_leftText 0x7f04003d
- int attr bar_lineColor 0x7f04003e
- int attr bar_lineMargin 0x7f04003f
- int attr bar_lineSize 0x7f040040
- int attr bar_lineVisible 0x7f040041
- int attr bar_rightColor 0x7f040042
- int attr bar_rightHint 0x7f040043
- int attr bar_rightIcon 0x7f040044
- int attr bar_rightSize 0x7f040045
- int attr bar_rightText 0x7f040046
- int attr behavior_autoHide 0x7f040047
- int attr behavior_fitToContents 0x7f040048
- int attr behavior_hideable 0x7f040049
- int attr behavior_overlapTop 0x7f04004a
- int attr behavior_peekHeight 0x7f04004b
- int attr behavior_skipCollapsed 0x7f04004c
- int attr borderWidth 0x7f04004d
- int attr borderlessButtonStyle 0x7f04004e
- int attr bottomAppBarStyle 0x7f04004f
- int attr bottomNavigationStyle 0x7f040050
- int attr bottomSheetDialogTheme 0x7f040051
- int attr bottomSheetStyle 0x7f040052
- int attr boxBackgroundColor 0x7f040053
- int attr boxBackgroundMode 0x7f040054
- int attr boxCollapsedPaddingTop 0x7f040055
- int attr boxCornerRadiusBottomEnd 0x7f040056
- int attr boxCornerRadiusBottomStart 0x7f040057
- int attr boxCornerRadiusTopEnd 0x7f040058
- int attr boxCornerRadiusTopStart 0x7f040059
- int attr boxStrokeColor 0x7f04005a
- int attr boxStrokeWidth 0x7f04005b
- int attr buttonBarButtonStyle 0x7f04005c
- int attr buttonBarNegativeButtonStyle 0x7f04005d
- int attr buttonBarNeutralButtonStyle 0x7f04005e
- int attr buttonBarPositiveButtonStyle 0x7f04005f
- int attr buttonBarStyle 0x7f040060
- int attr buttonGravity 0x7f040061
- int attr buttonIconDimen 0x7f040062
- int attr buttonPanelSideLayout 0x7f040063
- int attr buttonStyle 0x7f040064
- int attr buttonStyleSmall 0x7f040065
- int attr buttonTint 0x7f040066
- int attr buttonTintMode 0x7f040067
- int attr cardBackgroundColor 0x7f040068
- int attr cardCornerRadius 0x7f040069
- int attr cardElevation 0x7f04006a
- int attr cardMaxElevation 0x7f04006b
- int attr cardPreventCornerOverlap 0x7f04006c
- int attr cardUseCompatPadding 0x7f04006d
- int attr cardViewStyle 0x7f04006e
- int attr checkboxStyle 0x7f04006f
- int attr checkedChip 0x7f040070
- int attr checkedIcon 0x7f040071
- int attr checkedIconEnabled 0x7f040072
- int attr checkedIconVisible 0x7f040073
- int attr checkedTextViewStyle 0x7f040074
- int attr chipBackgroundColor 0x7f040075
- int attr chipCornerRadius 0x7f040076
- int attr chipEndPadding 0x7f040077
- int attr chipGroupStyle 0x7f040078
- int attr chipIcon 0x7f040079
- int attr chipIconEnabled 0x7f04007a
- int attr chipIconSize 0x7f04007b
- int attr chipIconTint 0x7f04007c
- int attr chipIconVisible 0x7f04007d
- int attr chipMinHeight 0x7f04007e
- int attr chipSpacing 0x7f04007f
- int attr chipSpacingHorizontal 0x7f040080
- int attr chipSpacingVertical 0x7f040081
- int attr chipStandaloneStyle 0x7f040082
- int attr chipStartPadding 0x7f040083
- int attr chipStrokeColor 0x7f040084
- int attr chipStrokeWidth 0x7f040085
- int attr chipStyle 0x7f040086
- int attr closeIcon 0x7f040087
- int attr closeIconEnabled 0x7f040088
- int attr closeIconEndPadding 0x7f040089
- int attr closeIconSize 0x7f04008a
- int attr closeIconStartPadding 0x7f04008b
- int attr closeIconTint 0x7f04008c
- int attr closeIconVisible 0x7f04008d
- int attr closeItemLayout 0x7f04008e
- int attr collapseContentDescription 0x7f04008f
- int attr collapseIcon 0x7f040090
- int attr collapsedTitleGravity 0x7f040091
- int attr collapsedTitleTextAppearance 0x7f040092
- int attr color 0x7f040093
- int attr colorAccent 0x7f040094
- int attr colorBackgroundFloating 0x7f040095
- int attr colorButtonNormal 0x7f040096
- int attr colorControlActivated 0x7f040097
- int attr colorControlHighlight 0x7f040098
- int attr colorControlNormal 0x7f040099
- int attr colorError 0x7f04009a
- int attr colorPrimary 0x7f04009b
- int attr colorPrimaryDark 0x7f04009c
- int attr colorSecondary 0x7f04009d
- int attr colorSwitchThumbNormal 0x7f04009e
- int attr commitIcon 0x7f04009f
- int attr contentDescription 0x7f0400a0
- int attr contentInsetEnd 0x7f0400a1
- int attr contentInsetEndWithActions 0x7f0400a2
- int attr contentInsetLeft 0x7f0400a3
- int attr contentInsetRight 0x7f0400a4
- int attr contentInsetStart 0x7f0400a5
- int attr contentInsetStartWithNavigation 0x7f0400a6
- int attr contentPadding 0x7f0400a7
- int attr contentPaddingBottom 0x7f0400a8
- int attr contentPaddingLeft 0x7f0400a9
- int attr contentPaddingRight 0x7f0400aa
- int attr contentPaddingTop 0x7f0400ab
- int attr contentScrim 0x7f0400ac
- int attr controlBackground 0x7f0400ad
- int attr coordinatorLayoutStyle 0x7f0400ae
- int attr cornerRadius 0x7f0400af
- int attr counterEnabled 0x7f0400b0
- int attr counterMaxLength 0x7f0400b1
- int attr counterOverflowTextAppearance 0x7f0400b2
- int attr counterTextAppearance 0x7f0400b3
- int attr customNavigationLayout 0x7f0400b4
- int attr defaultQueryHint 0x7f0400b5
- int attr dialogCornerRadius 0x7f0400b6
- int attr dialogPreferredPadding 0x7f0400b7
- int attr dialogTheme 0x7f0400b8
- int attr displayOptions 0x7f0400b9
- int attr divider 0x7f0400ba
- int attr dividerHorizontal 0x7f0400bb
- int attr dividerPadding 0x7f0400bc
- int attr dividerVertical 0x7f0400bd
- int attr drawableSize 0x7f0400be
- int attr drawerArrowStyle 0x7f0400bf
- int attr dropDownListViewStyle 0x7f0400c0
- int attr dropdownListPreferredItemHeight 0x7f0400c1
- int attr editTextBackground 0x7f0400c2
- int attr editTextColor 0x7f0400c3
- int attr editTextStyle 0x7f0400c4
- int attr elevation 0x7f0400c5
- int attr enforceMaterialTheme 0x7f0400c6
- int attr enforceTextAppearance 0x7f0400c7
- int attr errorEnabled 0x7f0400c8
- int attr errorTextAppearance 0x7f0400c9
- int attr expandActivityOverflowButtonDrawable 0x7f0400ca
- int attr expanded 0x7f0400cb
- int attr expandedTitleGravity 0x7f0400cc
- int attr expandedTitleMargin 0x7f0400cd
- int attr expandedTitleMarginBottom 0x7f0400ce
- int attr expandedTitleMarginEnd 0x7f0400cf
- int attr expandedTitleMarginStart 0x7f0400d0
- int attr expandedTitleMarginTop 0x7f0400d1
- int attr expandedTitleTextAppearance 0x7f0400d2
- int attr fabAlignmentMode 0x7f0400d3
- int attr fabCradleMargin 0x7f0400d4
- int attr fabCradleRoundedCornerRadius 0x7f0400d5
- int attr fabCradleVerticalOffset 0x7f0400d6
- int attr fabCustomSize 0x7f0400d7
- int attr fabSize 0x7f0400d8
- int attr fastScrollEnabled 0x7f0400d9
- int attr fastScrollHorizontalThumbDrawable 0x7f0400da
- int attr fastScrollHorizontalTrackDrawable 0x7f0400db
- int attr fastScrollVerticalThumbDrawable 0x7f0400dc
- int attr fastScrollVerticalTrackDrawable 0x7f0400dd
- int attr firstBaselineToTopHeight 0x7f0400de
- int attr floatingActionButtonStyle 0x7f0400df
- int attr font 0x7f0400e0
- int attr fontFamily 0x7f0400e1
- int attr fontProviderAuthority 0x7f0400e2
- int attr fontProviderCerts 0x7f0400e3
- int attr fontProviderFetchStrategy 0x7f0400e4
- int attr fontProviderFetchTimeout 0x7f0400e5
- int attr fontProviderPackage 0x7f0400e6
- int attr fontProviderQuery 0x7f0400e7
- int attr fontStyle 0x7f0400e8
- int attr fontVariationSettings 0x7f0400e9
- int attr fontWeight 0x7f0400ea
- int attr foregroundInsidePadding 0x7f0400eb
- int attr gapBetweenBars 0x7f0400ec
- int attr goIcon 0x7f0400ed
- int attr headerLayout 0x7f0400ee
- int attr height 0x7f0400ef
- int attr helperText 0x7f0400f0
- int attr helperTextEnabled 0x7f0400f1
- int attr helperTextTextAppearance 0x7f0400f2
- int attr hideMotionSpec 0x7f0400f3
- int attr hideOnContentScroll 0x7f0400f4
- int attr hideOnScroll 0x7f0400f5
- int attr hintAnimationEnabled 0x7f0400f6
- int attr hintEnabled 0x7f0400f7
- int attr hintTextAppearance 0x7f0400f8
- int attr homeAsUpIndicator 0x7f0400f9
- int attr homeLayout 0x7f0400fa
- int attr hoveredFocusedTranslationZ 0x7f0400fb
- int attr icon 0x7f0400fc
- int attr iconEndPadding 0x7f0400fd
- int attr iconGravity 0x7f0400fe
- int attr iconPadding 0x7f0400ff
- int attr iconSize 0x7f040100
- int attr iconStartPadding 0x7f040101
- int attr iconTint 0x7f040102
- int attr iconTintMode 0x7f040103
- int attr iconifiedByDefault 0x7f040104
- int attr imageButtonStyle 0x7f040105
- int attr indeterminateProgressStyle 0x7f040106
- int attr initialActivityCount 0x7f040107
- int attr inputRegex 0x7f040108
- int attr insetForeground 0x7f040109
- int attr isLightTheme 0x7f04010a
- int attr itemBackground 0x7f04010b
- int attr itemHorizontalPadding 0x7f04010c
- int attr itemHorizontalTranslationEnabled 0x7f04010d
- int attr itemIconPadding 0x7f04010e
- int attr itemIconSize 0x7f04010f
- int attr itemIconTint 0x7f040110
- int attr itemPadding 0x7f040111
- int attr itemSpacing 0x7f040112
- int attr itemTextAppearance 0x7f040113
- int attr itemTextAppearanceActive 0x7f040114
- int attr itemTextAppearanceInactive 0x7f040115
- int attr itemTextColor 0x7f040116
- int attr keylines 0x7f040117
- int attr labelVisibilityMode 0x7f040118
- int attr lastBaselineToBottomHeight 0x7f040119
- int attr layout 0x7f04011a
- int attr layoutManager 0x7f04011b
- int attr layout_anchor 0x7f04011c
- int attr layout_anchorGravity 0x7f04011d
- int attr layout_behavior 0x7f04011e
- int attr layout_collapseMode 0x7f04011f
- int attr layout_collapseParallaxMultiplier 0x7f040120
- int attr layout_dodgeInsetEdges 0x7f040121
- int attr layout_insetEdge 0x7f040122
- int attr layout_keyline 0x7f040123
- int attr layout_scrollFlags 0x7f040124
- int attr layout_scrollInterpolator 0x7f040125
- int attr liftOnScroll 0x7f040126
- int attr lineHeight 0x7f040127
- int attr lineSpacing 0x7f040128
- int attr listChoiceBackgroundIndicator 0x7f040129
- int attr listDividerAlertDialog 0x7f04012a
- int attr listItemLayout 0x7f04012b
- int attr listLayout 0x7f04012c
- int attr listMenuViewStyle 0x7f04012d
- int attr listPopupWindowStyle 0x7f04012e
- int attr listPreferredItemHeight 0x7f04012f
- int attr listPreferredItemHeightLarge 0x7f040130
- int attr listPreferredItemHeightSmall 0x7f040131
- int attr listPreferredItemPaddingLeft 0x7f040132
- int attr listPreferredItemPaddingRight 0x7f040133
- int attr logo 0x7f040134
- int attr logoDescription 0x7f040135
- int attr materialButtonStyle 0x7f040136
- int attr materialCardViewStyle 0x7f040137
- int attr maxActionInlineWidth 0x7f040138
- int attr maxButtonHeight 0x7f040139
- int attr maxImageSize 0x7f04013a
- int attr measureWithLargestChild 0x7f04013b
- int attr menu 0x7f04013c
- int attr multiChoiceItemLayout 0x7f04013d
- int attr navigationContentDescription 0x7f04013e
- int attr navigationIcon 0x7f04013f
- int attr navigationMode 0x7f040140
- int attr navigationViewStyle 0x7f040141
- int attr numericModifiers 0x7f040142
- int attr overlapAnchor 0x7f040143
- int attr paddingBottomNoButtons 0x7f040144
- int attr paddingEnd 0x7f040145
- int attr paddingStart 0x7f040146
- int attr paddingTopNoTitle 0x7f040147
- int attr panelBackground 0x7f040148
- int attr panelMenuListTheme 0x7f040149
- int attr panelMenuListWidth 0x7f04014a
- int attr passwordToggleContentDescription 0x7f04014b
- int attr passwordToggleDrawable 0x7f04014c
- int attr passwordToggleEnabled 0x7f04014d
- int attr passwordToggleTint 0x7f04014e
- int attr passwordToggleTintMode 0x7f04014f
- int attr pb_maxProgress 0x7f040150
- int attr pb_progress 0x7f040151
- int attr pb_reachedColor 0x7f040152
- int attr pb_reachedHeight 0x7f040153
- int attr pb_textColor 0x7f040154
- int attr pb_textOffset 0x7f040155
- int attr pb_textSize 0x7f040156
- int attr pb_unreachedColor 0x7f040157
- int attr pb_unreachedHeight 0x7f040158
- int attr popupMenuStyle 0x7f040159
- int attr popupTheme 0x7f04015a
- int attr popupWindowStyle 0x7f04015b
- int attr preserveIconSpacing 0x7f04015c
- int attr pressedTranslationZ 0x7f04015d
- int attr progressBarPadding 0x7f04015e
- int attr progressBarStyle 0x7f04015f
- int attr queryBackground 0x7f040160
- int attr queryHint 0x7f040161
- int attr radioButtonStyle 0x7f040162
- int attr ratingBarStyle 0x7f040163
- int attr ratingBarStyleIndicator 0x7f040164
- int attr ratingBarStyleSmall 0x7f040165
- int attr regexType 0x7f040166
- int attr reverseLayout 0x7f040167
- int attr rippleColor 0x7f040168
- int attr scrimAnimationDuration 0x7f040169
- int attr scrimBackground 0x7f04016a
- int attr scrimVisibleHeightTrigger 0x7f04016b
- int attr searchHintIcon 0x7f04016c
- int attr searchIcon 0x7f04016d
- int attr searchViewStyle 0x7f04016e
- int attr seekBarStyle 0x7f04016f
- int attr selectableItemBackground 0x7f040170
- int attr selectableItemBackgroundBorderless 0x7f040171
- int attr showAsAction 0x7f040172
- int attr showDividers 0x7f040173
- int attr showMotionSpec 0x7f040174
- int attr showText 0x7f040175
- int attr showTitle 0x7f040176
- int attr singleChoiceItemLayout 0x7f040177
- int attr singleLine 0x7f040178
- int attr singleSelection 0x7f040179
- int attr snackbarButtonStyle 0x7f04017a
- int attr snackbarStyle 0x7f04017b
- int attr spanCount 0x7f04017c
- int attr spinBars 0x7f04017d
- int attr spinnerDropDownItemStyle 0x7f04017e
- int attr spinnerStyle 0x7f04017f
- int attr splitTrack 0x7f040180
- int attr srcCompat 0x7f040181
- int attr stackFromEnd 0x7f040182
- int attr state_above_anchor 0x7f040183
- int attr state_collapsed 0x7f040184
- int attr state_collapsible 0x7f040185
- int attr state_liftable 0x7f040186
- int attr state_lifted 0x7f040187
- int attr statusBarBackground 0x7f040188
- int attr statusBarScrim 0x7f040189
- int attr strokeColor 0x7f04018a
- int attr strokeWidth 0x7f04018b
- int attr subMenuArrow 0x7f04018c
- int attr submitBackground 0x7f04018d
- int attr subtitle 0x7f04018e
- int attr subtitleTextAppearance 0x7f04018f
- int attr subtitleTextColor 0x7f040190
- int attr subtitleTextStyle 0x7f040191
- int attr suggestionRowLayout 0x7f040192
- int attr switchMinWidth 0x7f040193
- int attr switchPadding 0x7f040194
- int attr switchStyle 0x7f040195
- int attr switchTextAppearance 0x7f040196
- int attr tabBackground 0x7f040197
- int attr tabContentStart 0x7f040198
- int attr tabGravity 0x7f040199
- int attr tabIconTint 0x7f04019a
- int attr tabIconTintMode 0x7f04019b
- int attr tabIndicator 0x7f04019c
- int attr tabIndicatorAnimationDuration 0x7f04019d
- int attr tabIndicatorColor 0x7f04019e
- int attr tabIndicatorFullWidth 0x7f04019f
- int attr tabIndicatorGravity 0x7f0401a0
- int attr tabIndicatorHeight 0x7f0401a1
- int attr tabInlineLabel 0x7f0401a2
- int attr tabMaxWidth 0x7f0401a3
- int attr tabMinWidth 0x7f0401a4
- int attr tabMode 0x7f0401a5
- int attr tabPadding 0x7f0401a6
- int attr tabPaddingBottom 0x7f0401a7
- int attr tabPaddingEnd 0x7f0401a8
- int attr tabPaddingStart 0x7f0401a9
- int attr tabPaddingTop 0x7f0401aa
- int attr tabRippleColor 0x7f0401ab
- int attr tabSelectedTextColor 0x7f0401ac
- int attr tabStyle 0x7f0401ad
- int attr tabTextAppearance 0x7f0401ae
- int attr tabTextColor 0x7f0401af
- int attr tabUnboundedRipple 0x7f0401b0
- int attr textAllCaps 0x7f0401b1
- int attr textAppearanceBody1 0x7f0401b2
- int attr textAppearanceBody2 0x7f0401b3
- int attr textAppearanceButton 0x7f0401b4
- int attr textAppearanceCaption 0x7f0401b5
- int attr textAppearanceHeadline1 0x7f0401b6
- int attr textAppearanceHeadline2 0x7f0401b7
- int attr textAppearanceHeadline3 0x7f0401b8
- int attr textAppearanceHeadline4 0x7f0401b9
- int attr textAppearanceHeadline5 0x7f0401ba
- int attr textAppearanceHeadline6 0x7f0401bb
- int attr textAppearanceLargePopupMenu 0x7f0401bc
- int attr textAppearanceListItem 0x7f0401bd
- int attr textAppearanceListItemSecondary 0x7f0401be
- int attr textAppearanceListItemSmall 0x7f0401bf
- int attr textAppearanceOverline 0x7f0401c0
- int attr textAppearancePopupMenuHeader 0x7f0401c1
- int attr textAppearanceSearchResultSubtitle 0x7f0401c2
- int attr textAppearanceSearchResultTitle 0x7f0401c3
- int attr textAppearanceSmallPopupMenu 0x7f0401c4
- int attr textAppearanceSubtitle1 0x7f0401c5
- int attr textAppearanceSubtitle2 0x7f0401c6
- int attr textColorAlertDialogListItem 0x7f0401c7
- int attr textColorSearchUrl 0x7f0401c8
- int attr textEndPadding 0x7f0401c9
- int attr textInputStyle 0x7f0401ca
- int attr textStartPadding 0x7f0401cb
- int attr theme 0x7f0401cc
- int attr thickness 0x7f0401cd
- int attr thumbTextPadding 0x7f0401ce
- int attr thumbTint 0x7f0401cf
- int attr thumbTintMode 0x7f0401d0
- int attr tickMark 0x7f0401d1
- int attr tickMarkTint 0x7f0401d2
- int attr tickMarkTintMode 0x7f0401d3
- int attr tint 0x7f0401d4
- int attr tintMode 0x7f0401d5
- int attr title 0x7f0401d6
- int attr titleEnabled 0x7f0401d7
- int attr titleMargin 0x7f0401d8
- int attr titleMarginBottom 0x7f0401d9
- int attr titleMarginEnd 0x7f0401da
- int attr titleMarginStart 0x7f0401db
- int attr titleMarginTop 0x7f0401dc
- int attr titleMargins 0x7f0401dd
- int attr titleTextAppearance 0x7f0401de
- int attr titleTextColor 0x7f0401df
- int attr titleTextStyle 0x7f0401e0
- int attr toolbarId 0x7f0401e1
- int attr toolbarNavigationButtonStyle 0x7f0401e2
- int attr toolbarStyle 0x7f0401e3
- int attr tooltipForegroundColor 0x7f0401e4
- int attr tooltipFrameBackground 0x7f0401e5
- int attr tooltipText 0x7f0401e6
- int attr track 0x7f0401e7
- int attr trackTint 0x7f0401e8
- int attr trackTintMode 0x7f0401e9
- int attr ttcIndex 0x7f0401ea
- int attr useCompatPadding 0x7f0401eb
- int attr viewInflaterClass 0x7f0401ec
- int attr voiceIcon 0x7f0401ed
- int attr windowActionBar 0x7f0401ee
- int attr windowActionBarOverlay 0x7f0401ef
- int attr windowActionModeOverlay 0x7f0401f0
- int attr windowFixedHeightMajor 0x7f0401f1
- int attr windowFixedHeightMinor 0x7f0401f2
- int attr windowFixedWidthMajor 0x7f0401f3
- int attr windowFixedWidthMinor 0x7f0401f4
- int attr windowMinWidthMajor 0x7f0401f5
- int attr windowMinWidthMinor 0x7f0401f6
- int attr windowNoTitle 0x7f0401f7
- int bool abc_action_bar_embed_tabs 0x7f050001
- int bool abc_allow_stacked_button_bar 0x7f050002
- int bool abc_config_actionMenuItemAllCaps 0x7f050003
- int bool mtrl_btn_textappearance_all_caps 0x7f050004
- int color abc_background_cache_hint_selector_material_dark 0x7f060001
- int color abc_background_cache_hint_selector_material_light 0x7f060002
- int color abc_btn_colored_borderless_text_material 0x7f060003
- int color abc_btn_colored_text_material 0x7f060004
- int color abc_color_highlight_material 0x7f060005
- int color abc_hint_foreground_material_dark 0x7f060006
- int color abc_hint_foreground_material_light 0x7f060007
- int color abc_input_method_navigation_guard 0x7f060008
- int color abc_primary_text_disable_only_material_dark 0x7f060009
- int color abc_primary_text_disable_only_material_light 0x7f06000a
- int color abc_primary_text_material_dark 0x7f06000b
- int color abc_primary_text_material_light 0x7f06000c
- int color abc_search_url_text 0x7f06000d
- int color abc_search_url_text_normal 0x7f06000e
- int color abc_search_url_text_pressed 0x7f06000f
- int color abc_search_url_text_selected 0x7f060010
- int color abc_secondary_text_material_dark 0x7f060011
- int color abc_secondary_text_material_light 0x7f060012
- int color abc_tint_btn_checkable 0x7f060013
- int color abc_tint_default 0x7f060014
- int color abc_tint_edittext 0x7f060015
- int color abc_tint_seek_thumb 0x7f060016
- int color abc_tint_spinner 0x7f060017
- int color abc_tint_switch_track 0x7f060018
- int color accent_material_dark 0x7f060019
- int color accent_material_light 0x7f06001a
- int color background_floating_material_dark 0x7f06001b
- int color background_floating_material_light 0x7f06001c
- int color background_material_dark 0x7f06001d
- int color background_material_light 0x7f06001e
- int color black 0x7f06001f
- int color black10 0x7f060020
- int color black20 0x7f060021
- int color black30 0x7f060022
- int color black40 0x7f060023
- int color black5 0x7f060024
- int color black50 0x7f060025
- int color black60 0x7f060026
- int color black70 0x7f060027
- int color black80 0x7f060028
- int color black90 0x7f060029
- int color blue 0x7f06002a
- int color bright_foreground_disabled_material_dark 0x7f06002b
- int color bright_foreground_disabled_material_light 0x7f06002c
- int color bright_foreground_inverse_material_dark 0x7f06002d
- int color bright_foreground_inverse_material_light 0x7f06002e
- int color bright_foreground_material_dark 0x7f06002f
- int color bright_foreground_material_light 0x7f060030
- int color button_material_dark 0x7f060031
- int color button_material_light 0x7f060032
- int color cardview_dark_background 0x7f060033
- int color cardview_light_background 0x7f060034
- int color cardview_shadow_end_color 0x7f060035
- int color cardview_shadow_start_color 0x7f060036
- int color design_bottom_navigation_shadow_color 0x7f060037
- int color design_default_color_primary 0x7f060038
- int color design_default_color_primary_dark 0x7f060039
- int color design_error 0x7f06003a
- int color design_fab_shadow_end_color 0x7f06003b
- int color design_fab_shadow_mid_color 0x7f06003c
- int color design_fab_shadow_start_color 0x7f06003d
- int color design_fab_stroke_end_inner_color 0x7f06003e
- int color design_fab_stroke_end_outer_color 0x7f06003f
- int color design_fab_stroke_top_inner_color 0x7f060040
- int color design_fab_stroke_top_outer_color 0x7f060041
- int color design_snackbar_background_color 0x7f060042
- int color design_tint_password_toggle 0x7f060043
- int color dim_foreground_disabled_material_dark 0x7f060044
- int color dim_foreground_disabled_material_light 0x7f060045
- int color dim_foreground_material_dark 0x7f060046
- int color dim_foreground_material_light 0x7f060047
- int color error_color_material_dark 0x7f060048
- int color error_color_material_light 0x7f060049
- int color foreground_material_dark 0x7f06004a
- int color foreground_material_light 0x7f06004b
- int color gold 0x7f06004c
- int color gray 0x7f06004d
- int color green 0x7f06004e
- int color highlighted_text_material_dark 0x7f06004f
- int color highlighted_text_material_light 0x7f060050
- int color material_blue_grey_800 0x7f060051
- int color material_blue_grey_900 0x7f060052
- int color material_blue_grey_950 0x7f060053
- int color material_deep_teal_200 0x7f060054
- int color material_deep_teal_500 0x7f060055
- int color material_grey_100 0x7f060056
- int color material_grey_300 0x7f060057
- int color material_grey_50 0x7f060058
- int color material_grey_600 0x7f060059
- int color material_grey_800 0x7f06005a
- int color material_grey_850 0x7f06005b
- int color material_grey_900 0x7f06005c
- int color mtrl_bottom_nav_colored_item_tint 0x7f06005d
- int color mtrl_bottom_nav_item_tint 0x7f06005e
- int color mtrl_btn_bg_color_disabled 0x7f06005f
- int color mtrl_btn_bg_color_selector 0x7f060060
- int color mtrl_btn_ripple_color 0x7f060061
- int color mtrl_btn_stroke_color_selector 0x7f060062
- int color mtrl_btn_text_btn_ripple_color 0x7f060063
- int color mtrl_btn_text_color_disabled 0x7f060064
- int color mtrl_btn_text_color_selector 0x7f060065
- int color mtrl_btn_transparent_bg_color 0x7f060066
- int color mtrl_chip_background_color 0x7f060067
- int color mtrl_chip_close_icon_tint 0x7f060068
- int color mtrl_chip_ripple_color 0x7f060069
- int color mtrl_chip_text_color 0x7f06006a
- int color mtrl_fab_ripple_color 0x7f06006b
- int color mtrl_scrim_color 0x7f06006c
- int color mtrl_tabs_colored_ripple_color 0x7f06006d
- int color mtrl_tabs_icon_color_selector 0x7f06006e
- int color mtrl_tabs_icon_color_selector_colored 0x7f06006f
- int color mtrl_tabs_legacy_text_color_selector 0x7f060070
- int color mtrl_tabs_ripple_color 0x7f060071
- int color mtrl_text_btn_text_color_selector 0x7f060072
- int color mtrl_textinput_default_box_stroke_color 0x7f060073
- int color mtrl_textinput_disabled_color 0x7f060074
- int color mtrl_textinput_filled_box_default_background_color 0x7f060075
- int color mtrl_textinput_hovered_box_stroke_color 0x7f060076
- int color notification_action_color_filter 0x7f060077
- int color notification_icon_bg_color 0x7f060078
- int color orange 0x7f060079
- int color pink 0x7f06007a
- int color primary_dark_material_dark 0x7f06007b
- int color primary_dark_material_light 0x7f06007c
- int color primary_material_dark 0x7f06007d
- int color primary_material_light 0x7f06007e
- int color primary_text_default_material_dark 0x7f06007f
- int color primary_text_default_material_light 0x7f060080
- int color primary_text_disabled_material_dark 0x7f060081
- int color primary_text_disabled_material_light 0x7f060082
- int color purple 0x7f060083
- int color red 0x7f060084
- int color ripple_material_dark 0x7f060085
- int color ripple_material_light 0x7f060086
- int color secondary_text_default_material_dark 0x7f060087
- int color secondary_text_default_material_light 0x7f060088
- int color secondary_text_disabled_material_dark 0x7f060089
- int color secondary_text_disabled_material_light 0x7f06008a
- int color switch_thumb_disabled_material_dark 0x7f06008b
- int color switch_thumb_disabled_material_light 0x7f06008c
- int color switch_thumb_material_dark 0x7f06008d
- int color switch_thumb_material_light 0x7f06008e
- int color switch_thumb_normal_material_dark 0x7f06008f
- int color switch_thumb_normal_material_light 0x7f060090
- int color tooltip_background_dark 0x7f060091
- int color tooltip_background_light 0x7f060092
- int color transparent 0x7f060093
- int color white 0x7f060094
- int color white10 0x7f060095
- int color white20 0x7f060096
- int color white30 0x7f060097
- int color white40 0x7f060098
- int color white5 0x7f060099
- int color white50 0x7f06009a
- int color white60 0x7f06009b
- int color white70 0x7f06009c
- int color white80 0x7f06009d
- int color white90 0x7f06009e
- int color widget_settingBarBackgroundColor 0x7f06009f
- int color widget_settingBarSelectorColor 0x7f0600a0
- int color yellow 0x7f0600a1
- int dimen abc_action_bar_content_inset_material 0x7f070001
- int dimen abc_action_bar_content_inset_with_nav 0x7f070002
- int dimen abc_action_bar_default_height_material 0x7f070003
- int dimen abc_action_bar_default_padding_end_material 0x7f070004
- int dimen abc_action_bar_default_padding_start_material 0x7f070005
- int dimen abc_action_bar_elevation_material 0x7f070006
- int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007
- int dimen abc_action_bar_overflow_padding_end_material 0x7f070008
- int dimen abc_action_bar_overflow_padding_start_material 0x7f070009
- int dimen abc_action_bar_stacked_max_height 0x7f07000a
- int dimen abc_action_bar_stacked_tab_max_width 0x7f07000b
- int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000c
- int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000d
- int dimen abc_action_button_min_height_material 0x7f07000e
- int dimen abc_action_button_min_width_material 0x7f07000f
- int dimen abc_action_button_min_width_overflow_material 0x7f070010
- int dimen abc_alert_dialog_button_bar_height 0x7f070011
- int dimen abc_alert_dialog_button_dimen 0x7f070012
- int dimen abc_button_inset_horizontal_material 0x7f070013
- int dimen abc_button_inset_vertical_material 0x7f070014
- int dimen abc_button_padding_horizontal_material 0x7f070015
- int dimen abc_button_padding_vertical_material 0x7f070016
- int dimen abc_cascading_menus_min_smallest_width 0x7f070017
- int dimen abc_config_prefDialogWidth 0x7f070018
- int dimen abc_control_corner_material 0x7f070019
- int dimen abc_control_inset_material 0x7f07001a
- int dimen abc_control_padding_material 0x7f07001b
- int dimen abc_dialog_corner_radius_material 0x7f07001c
- int dimen abc_dialog_fixed_height_major 0x7f07001d
- int dimen abc_dialog_fixed_height_minor 0x7f07001e
- int dimen abc_dialog_fixed_width_major 0x7f07001f
- int dimen abc_dialog_fixed_width_minor 0x7f070020
- int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070021
- int dimen abc_dialog_list_padding_top_no_title 0x7f070022
- int dimen abc_dialog_min_width_major 0x7f070023
- int dimen abc_dialog_min_width_minor 0x7f070024
- int dimen abc_dialog_padding_material 0x7f070025
- int dimen abc_dialog_padding_top_material 0x7f070026
- int dimen abc_dialog_title_divider_material 0x7f070027
- int dimen abc_disabled_alpha_material_dark 0x7f070028
- int dimen abc_disabled_alpha_material_light 0x7f070029
- int dimen abc_dropdownitem_icon_width 0x7f07002a
- int dimen abc_dropdownitem_text_padding_left 0x7f07002b
- int dimen abc_dropdownitem_text_padding_right 0x7f07002c
- int dimen abc_edit_text_inset_bottom_material 0x7f07002d
- int dimen abc_edit_text_inset_horizontal_material 0x7f07002e
- int dimen abc_edit_text_inset_top_material 0x7f07002f
- int dimen abc_floating_window_z 0x7f070030
- int dimen abc_list_item_padding_horizontal_material 0x7f070031
- int dimen abc_panel_menu_list_width 0x7f070032
- int dimen abc_progress_bar_height_material 0x7f070033
- int dimen abc_search_view_preferred_height 0x7f070034
- int dimen abc_search_view_preferred_width 0x7f070035
- int dimen abc_seekbar_track_background_height_material 0x7f070036
- int dimen abc_seekbar_track_progress_height_material 0x7f070037
- int dimen abc_select_dialog_padding_start_material 0x7f070038
- int dimen abc_switch_padding 0x7f070039
- int dimen abc_text_size_body_1_material 0x7f07003a
- int dimen abc_text_size_body_2_material 0x7f07003b
- int dimen abc_text_size_button_material 0x7f07003c
- int dimen abc_text_size_caption_material 0x7f07003d
- int dimen abc_text_size_display_1_material 0x7f07003e
- int dimen abc_text_size_display_2_material 0x7f07003f
- int dimen abc_text_size_display_3_material 0x7f070040
- int dimen abc_text_size_display_4_material 0x7f070041
- int dimen abc_text_size_headline_material 0x7f070042
- int dimen abc_text_size_large_material 0x7f070043
- int dimen abc_text_size_medium_material 0x7f070044
- int dimen abc_text_size_menu_header_material 0x7f070045
- int dimen abc_text_size_menu_material 0x7f070046
- int dimen abc_text_size_small_material 0x7f070047
- int dimen abc_text_size_subhead_material 0x7f070048
- int dimen abc_text_size_subtitle_material_toolbar 0x7f070049
- int dimen abc_text_size_title_material 0x7f07004a
- int dimen abc_text_size_title_material_toolbar 0x7f07004b
- int dimen cardview_compat_inset_shadow 0x7f07004c
- int dimen cardview_default_elevation 0x7f07004d
- int dimen cardview_default_radius 0x7f07004e
- int dimen compat_button_inset_horizontal_material 0x7f07004f
- int dimen compat_button_inset_vertical_material 0x7f070050
- int dimen compat_button_padding_horizontal_material 0x7f070051
- int dimen compat_button_padding_vertical_material 0x7f070052
- int dimen compat_control_corner_material 0x7f070053
- int dimen compat_notification_large_icon_max_height 0x7f070054
- int dimen compat_notification_large_icon_max_width 0x7f070055
- int dimen design_appbar_elevation 0x7f070056
- int dimen design_bottom_navigation_active_item_max_width 0x7f070057
- int dimen design_bottom_navigation_active_item_min_width 0x7f070058
- int dimen design_bottom_navigation_active_text_size 0x7f070059
- int dimen design_bottom_navigation_elevation 0x7f07005a
- int dimen design_bottom_navigation_height 0x7f07005b
- int dimen design_bottom_navigation_icon_size 0x7f07005c
- int dimen design_bottom_navigation_item_max_width 0x7f07005d
- int dimen design_bottom_navigation_item_min_width 0x7f07005e
- int dimen design_bottom_navigation_margin 0x7f07005f
- int dimen design_bottom_navigation_shadow_height 0x7f070060
- int dimen design_bottom_navigation_text_size 0x7f070061
- int dimen design_bottom_sheet_modal_elevation 0x7f070062
- int dimen design_bottom_sheet_peek_height_min 0x7f070063
- int dimen design_fab_border_width 0x7f070064
- int dimen design_fab_elevation 0x7f070065
- int dimen design_fab_image_size 0x7f070066
- int dimen design_fab_size_mini 0x7f070067
- int dimen design_fab_size_normal 0x7f070068
- int dimen design_fab_translation_z_hovered_focused 0x7f070069
- int dimen design_fab_translation_z_pressed 0x7f07006a
- int dimen design_navigation_elevation 0x7f07006b
- int dimen design_navigation_icon_padding 0x7f07006c
- int dimen design_navigation_icon_size 0x7f07006d
- int dimen design_navigation_item_horizontal_padding 0x7f07006e
- int dimen design_navigation_item_icon_padding 0x7f07006f
- int dimen design_navigation_max_width 0x7f070070
- int dimen design_navigation_padding_bottom 0x7f070071
- int dimen design_navigation_separator_vertical_padding 0x7f070072
- int dimen design_snackbar_action_inline_max_width 0x7f070073
- int dimen design_snackbar_background_corner_radius 0x7f070074
- int dimen design_snackbar_elevation 0x7f070075
- int dimen design_snackbar_extra_spacing_horizontal 0x7f070076
- int dimen design_snackbar_max_width 0x7f070077
- int dimen design_snackbar_min_width 0x7f070078
- int dimen design_snackbar_padding_horizontal 0x7f070079
- int dimen design_snackbar_padding_vertical 0x7f07007a
- int dimen design_snackbar_padding_vertical_2lines 0x7f07007b
- int dimen design_snackbar_text_size 0x7f07007c
- int dimen design_tab_max_width 0x7f07007d
- int dimen design_tab_scrollable_min_width 0x7f07007e
- int dimen design_tab_text_size 0x7f07007f
- int dimen design_tab_text_size_2line 0x7f070080
- int dimen design_textinput_caption_translate_y 0x7f070081
- int dimen disabled_alpha_material_dark 0x7f070082
- int dimen disabled_alpha_material_light 0x7f070083
- int dimen fastscroll_default_thickness 0x7f070084
- int dimen fastscroll_margin 0x7f070085
- int dimen fastscroll_minimum_range 0x7f070086
- int dimen font_size_100px 0x7f070087
- int dimen font_size_102px 0x7f070088
- int dimen font_size_104px 0x7f070089
- int dimen font_size_106px 0x7f07008a
- int dimen font_size_108px 0x7f07008b
- int dimen font_size_10px 0x7f07008c
- int dimen font_size_110px 0x7f07008d
- int dimen font_size_112px 0x7f07008e
- int dimen font_size_114px 0x7f07008f
- int dimen font_size_116px 0x7f070090
- int dimen font_size_118px 0x7f070091
- int dimen font_size_120px 0x7f070092
- int dimen font_size_122px 0x7f070093
- int dimen font_size_124px 0x7f070094
- int dimen font_size_126px 0x7f070095
- int dimen font_size_128px 0x7f070096
- int dimen font_size_12px 0x7f070097
- int dimen font_size_130px 0x7f070098
- int dimen font_size_132px 0x7f070099
- int dimen font_size_134px 0x7f07009a
- int dimen font_size_136px 0x7f07009b
- int dimen font_size_138px 0x7f07009c
- int dimen font_size_140px 0x7f07009d
- int dimen font_size_142px 0x7f07009e
- int dimen font_size_144px 0x7f07009f
- int dimen font_size_146px 0x7f0700a0
- int dimen font_size_148px 0x7f0700a1
- int dimen font_size_14px 0x7f0700a2
- int dimen font_size_150px 0x7f0700a3
- int dimen font_size_152px 0x7f0700a4
- int dimen font_size_154px 0x7f0700a5
- int dimen font_size_156px 0x7f0700a6
- int dimen font_size_158px 0x7f0700a7
- int dimen font_size_160px 0x7f0700a8
- int dimen font_size_162px 0x7f0700a9
- int dimen font_size_164px 0x7f0700aa
- int dimen font_size_166px 0x7f0700ab
- int dimen font_size_168px 0x7f0700ac
- int dimen font_size_16px 0x7f0700ad
- int dimen font_size_170px 0x7f0700ae
- int dimen font_size_172px 0x7f0700af
- int dimen font_size_174px 0x7f0700b0
- int dimen font_size_176px 0x7f0700b1
- int dimen font_size_178px 0x7f0700b2
- int dimen font_size_180px 0x7f0700b3
- int dimen font_size_182px 0x7f0700b4
- int dimen font_size_184px 0x7f0700b5
- int dimen font_size_186px 0x7f0700b6
- int dimen font_size_188px 0x7f0700b7
- int dimen font_size_18px 0x7f0700b8
- int dimen font_size_190px 0x7f0700b9
- int dimen font_size_192px 0x7f0700ba
- int dimen font_size_194px 0x7f0700bb
- int dimen font_size_196px 0x7f0700bc
- int dimen font_size_198px 0x7f0700bd
- int dimen font_size_200px 0x7f0700be
- int dimen font_size_20px 0x7f0700bf
- int dimen font_size_22px 0x7f0700c0
- int dimen font_size_24px 0x7f0700c1
- int dimen font_size_26px 0x7f0700c2
- int dimen font_size_28px 0x7f0700c3
- int dimen font_size_2px 0x7f0700c4
- int dimen font_size_30px 0x7f0700c5
- int dimen font_size_32px 0x7f0700c6
- int dimen font_size_34px 0x7f0700c7
- int dimen font_size_36px 0x7f0700c8
- int dimen font_size_38px 0x7f0700c9
- int dimen font_size_40px 0x7f0700ca
- int dimen font_size_42px 0x7f0700cb
- int dimen font_size_44px 0x7f0700cc
- int dimen font_size_46px 0x7f0700cd
- int dimen font_size_48px 0x7f0700ce
- int dimen font_size_4px 0x7f0700cf
- int dimen font_size_50px 0x7f0700d0
- int dimen font_size_52px 0x7f0700d1
- int dimen font_size_54px 0x7f0700d2
- int dimen font_size_56px 0x7f0700d3
- int dimen font_size_58px 0x7f0700d4
- int dimen font_size_60px 0x7f0700d5
- int dimen font_size_62px 0x7f0700d6
- int dimen font_size_64px 0x7f0700d7
- int dimen font_size_66px 0x7f0700d8
- int dimen font_size_68px 0x7f0700d9
- int dimen font_size_6px 0x7f0700da
- int dimen font_size_70px 0x7f0700db
- int dimen font_size_72px 0x7f0700dc
- int dimen font_size_74px 0x7f0700dd
- int dimen font_size_76px 0x7f0700de
- int dimen font_size_78px 0x7f0700df
- int dimen font_size_80px 0x7f0700e0
- int dimen font_size_82px 0x7f0700e1
- int dimen font_size_84px 0x7f0700e2
- int dimen font_size_86px 0x7f0700e3
- int dimen font_size_88px 0x7f0700e4
- int dimen font_size_8px 0x7f0700e5
- int dimen font_size_90px 0x7f0700e6
- int dimen font_size_92px 0x7f0700e7
- int dimen font_size_94px 0x7f0700e8
- int dimen font_size_96px 0x7f0700e9
- int dimen font_size_98px 0x7f0700ea
- int dimen highlight_alpha_material_colored 0x7f0700eb
- int dimen highlight_alpha_material_dark 0x7f0700ec
- int dimen highlight_alpha_material_light 0x7f0700ed
- int dimen hint_alpha_material_dark 0x7f0700ee
- int dimen hint_alpha_material_light 0x7f0700ef
- int dimen hint_pressed_alpha_material_dark 0x7f0700f0
- int dimen hint_pressed_alpha_material_light 0x7f0700f1
- int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f0700f2
- int dimen item_touch_helper_swipe_escape_max_velocity 0x7f0700f3
- int dimen item_touch_helper_swipe_escape_velocity 0x7f0700f4
- int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f0700f5
- int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f0700f6
- int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f0700f7
- int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f0700f8
- int dimen mtrl_bottomappbar_height 0x7f0700f9
- int dimen mtrl_btn_corner_radius 0x7f0700fa
- int dimen mtrl_btn_dialog_btn_min_width 0x7f0700fb
- int dimen mtrl_btn_disabled_elevation 0x7f0700fc
- int dimen mtrl_btn_disabled_z 0x7f0700fd
- int dimen mtrl_btn_elevation 0x7f0700fe
- int dimen mtrl_btn_focused_z 0x7f0700ff
- int dimen mtrl_btn_hovered_z 0x7f070100
- int dimen mtrl_btn_icon_btn_padding_left 0x7f070101
- int dimen mtrl_btn_icon_padding 0x7f070102
- int dimen mtrl_btn_inset 0x7f070103
- int dimen mtrl_btn_letter_spacing 0x7f070104
- int dimen mtrl_btn_padding_bottom 0x7f070105
- int dimen mtrl_btn_padding_left 0x7f070106
- int dimen mtrl_btn_padding_right 0x7f070107
- int dimen mtrl_btn_padding_top 0x7f070108
- int dimen mtrl_btn_pressed_z 0x7f070109
- int dimen mtrl_btn_stroke_size 0x7f07010a
- int dimen mtrl_btn_text_btn_icon_padding 0x7f07010b
- int dimen mtrl_btn_text_btn_padding_left 0x7f07010c
- int dimen mtrl_btn_text_btn_padding_right 0x7f07010d
- int dimen mtrl_btn_text_size 0x7f07010e
- int dimen mtrl_btn_z 0x7f07010f
- int dimen mtrl_card_elevation 0x7f070110
- int dimen mtrl_card_spacing 0x7f070111
- int dimen mtrl_chip_pressed_translation_z 0x7f070112
- int dimen mtrl_chip_text_size 0x7f070113
- int dimen mtrl_fab_elevation 0x7f070114
- int dimen mtrl_fab_translation_z_hovered_focused 0x7f070115
- int dimen mtrl_fab_translation_z_pressed 0x7f070116
- int dimen mtrl_navigation_elevation 0x7f070117
- int dimen mtrl_navigation_item_horizontal_padding 0x7f070118
- int dimen mtrl_navigation_item_icon_padding 0x7f070119
- int dimen mtrl_snackbar_background_corner_radius 0x7f07011a
- int dimen mtrl_snackbar_margin 0x7f07011b
- int dimen mtrl_textinput_box_bottom_offset 0x7f07011c
- int dimen mtrl_textinput_box_corner_radius_medium 0x7f07011d
- int dimen mtrl_textinput_box_corner_radius_small 0x7f07011e
- int dimen mtrl_textinput_box_label_cutout_padding 0x7f07011f
- int dimen mtrl_textinput_box_padding_end 0x7f070120
- int dimen mtrl_textinput_box_stroke_width_default 0x7f070121
- int dimen mtrl_textinput_box_stroke_width_focused 0x7f070122
- int dimen mtrl_textinput_outline_box_expanded_padding 0x7f070123
- int dimen mtrl_toolbar_default_height 0x7f070124
- int dimen notification_action_icon_size 0x7f070125
- int dimen notification_action_text_size 0x7f070126
- int dimen notification_big_circle_margin 0x7f070127
- int dimen notification_content_margin_start 0x7f070128
- int dimen notification_large_icon_height 0x7f070129
- int dimen notification_large_icon_width 0x7f07012a
- int dimen notification_main_column_padding_top 0x7f07012b
- int dimen notification_media_narrow_margin 0x7f07012c
- int dimen notification_right_icon_size 0x7f07012d
- int dimen notification_right_side_padding_top 0x7f07012e
- int dimen notification_small_icon_background_padding 0x7f07012f
- int dimen notification_small_icon_size_as_large 0x7f070130
- int dimen notification_subtext_size 0x7f070131
- int dimen notification_top_pad 0x7f070132
- int dimen notification_top_pad_large_text 0x7f070133
- int dimen space_10 0x7f070134
- int dimen space_100 0x7f070135
- int dimen space_102 0x7f070136
- int dimen space_104 0x7f070137
- int dimen space_106 0x7f070138
- int dimen space_108 0x7f070139
- int dimen space_110 0x7f07013a
- int dimen space_112 0x7f07013b
- int dimen space_114 0x7f07013c
- int dimen space_116 0x7f07013d
- int dimen space_118 0x7f07013e
- int dimen space_12 0x7f07013f
- int dimen space_120 0x7f070140
- int dimen space_122 0x7f070141
- int dimen space_124 0x7f070142
- int dimen space_126 0x7f070143
- int dimen space_128 0x7f070144
- int dimen space_130 0x7f070145
- int dimen space_132 0x7f070146
- int dimen space_134 0x7f070147
- int dimen space_136 0x7f070148
- int dimen space_138 0x7f070149
- int dimen space_14 0x7f07014a
- int dimen space_140 0x7f07014b
- int dimen space_142 0x7f07014c
- int dimen space_144 0x7f07014d
- int dimen space_146 0x7f07014e
- int dimen space_148 0x7f07014f
- int dimen space_150 0x7f070150
- int dimen space_152 0x7f070151
- int dimen space_154 0x7f070152
- int dimen space_156 0x7f070153
- int dimen space_158 0x7f070154
- int dimen space_16 0x7f070155
- int dimen space_160 0x7f070156
- int dimen space_162 0x7f070157
- int dimen space_164 0x7f070158
- int dimen space_166 0x7f070159
- int dimen space_168 0x7f07015a
- int dimen space_170 0x7f07015b
- int dimen space_172 0x7f07015c
- int dimen space_174 0x7f07015d
- int dimen space_176 0x7f07015e
- int dimen space_178 0x7f07015f
- int dimen space_18 0x7f070160
- int dimen space_180 0x7f070161
- int dimen space_182 0x7f070162
- int dimen space_184 0x7f070163
- int dimen space_186 0x7f070164
- int dimen space_188 0x7f070165
- int dimen space_190 0x7f070166
- int dimen space_192 0x7f070167
- int dimen space_194 0x7f070168
- int dimen space_196 0x7f070169
- int dimen space_198 0x7f07016a
- int dimen space_2 0x7f07016b
- int dimen space_20 0x7f07016c
- int dimen space_200 0x7f07016d
- int dimen space_202 0x7f07016e
- int dimen space_204 0x7f07016f
- int dimen space_206 0x7f070170
- int dimen space_208 0x7f070171
- int dimen space_210 0x7f070172
- int dimen space_212 0x7f070173
- int dimen space_214 0x7f070174
- int dimen space_216 0x7f070175
- int dimen space_218 0x7f070176
- int dimen space_22 0x7f070177
- int dimen space_220 0x7f070178
- int dimen space_222 0x7f070179
- int dimen space_224 0x7f07017a
- int dimen space_226 0x7f07017b
- int dimen space_228 0x7f07017c
- int dimen space_230 0x7f07017d
- int dimen space_232 0x7f07017e
- int dimen space_234 0x7f07017f
- int dimen space_236 0x7f070180
- int dimen space_238 0x7f070181
- int dimen space_24 0x7f070182
- int dimen space_240 0x7f070183
- int dimen space_242 0x7f070184
- int dimen space_244 0x7f070185
- int dimen space_246 0x7f070186
- int dimen space_248 0x7f070187
- int dimen space_250 0x7f070188
- int dimen space_252 0x7f070189
- int dimen space_254 0x7f07018a
- int dimen space_256 0x7f07018b
- int dimen space_258 0x7f07018c
- int dimen space_26 0x7f07018d
- int dimen space_260 0x7f07018e
- int dimen space_262 0x7f07018f
- int dimen space_264 0x7f070190
- int dimen space_266 0x7f070191
- int dimen space_268 0x7f070192
- int dimen space_270 0x7f070193
- int dimen space_272 0x7f070194
- int dimen space_274 0x7f070195
- int dimen space_276 0x7f070196
- int dimen space_278 0x7f070197
- int dimen space_28 0x7f070198
- int dimen space_280 0x7f070199
- int dimen space_282 0x7f07019a
- int dimen space_284 0x7f07019b
- int dimen space_286 0x7f07019c
- int dimen space_288 0x7f07019d
- int dimen space_290 0x7f07019e
- int dimen space_292 0x7f07019f
- int dimen space_294 0x7f0701a0
- int dimen space_296 0x7f0701a1
- int dimen space_298 0x7f0701a2
- int dimen space_30 0x7f0701a3
- int dimen space_300 0x7f0701a4
- int dimen space_302 0x7f0701a5
- int dimen space_304 0x7f0701a6
- int dimen space_306 0x7f0701a7
- int dimen space_308 0x7f0701a8
- int dimen space_310 0x7f0701a9
- int dimen space_312 0x7f0701aa
- int dimen space_314 0x7f0701ab
- int dimen space_316 0x7f0701ac
- int dimen space_318 0x7f0701ad
- int dimen space_32 0x7f0701ae
- int dimen space_320 0x7f0701af
- int dimen space_322 0x7f0701b0
- int dimen space_324 0x7f0701b1
- int dimen space_326 0x7f0701b2
- int dimen space_328 0x7f0701b3
- int dimen space_330 0x7f0701b4
- int dimen space_332 0x7f0701b5
- int dimen space_334 0x7f0701b6
- int dimen space_336 0x7f0701b7
- int dimen space_338 0x7f0701b8
- int dimen space_34 0x7f0701b9
- int dimen space_340 0x7f0701ba
- int dimen space_342 0x7f0701bb
- int dimen space_344 0x7f0701bc
- int dimen space_346 0x7f0701bd
- int dimen space_348 0x7f0701be
- int dimen space_350 0x7f0701bf
- int dimen space_352 0x7f0701c0
- int dimen space_354 0x7f0701c1
- int dimen space_356 0x7f0701c2
- int dimen space_358 0x7f0701c3
- int dimen space_36 0x7f0701c4
- int dimen space_360 0x7f0701c5
- int dimen space_362 0x7f0701c6
- int dimen space_364 0x7f0701c7
- int dimen space_366 0x7f0701c8
- int dimen space_368 0x7f0701c9
- int dimen space_370 0x7f0701ca
- int dimen space_372 0x7f0701cb
- int dimen space_374 0x7f0701cc
- int dimen space_376 0x7f0701cd
- int dimen space_378 0x7f0701ce
- int dimen space_38 0x7f0701cf
- int dimen space_380 0x7f0701d0
- int dimen space_382 0x7f0701d1
- int dimen space_384 0x7f0701d2
- int dimen space_386 0x7f0701d3
- int dimen space_388 0x7f0701d4
- int dimen space_390 0x7f0701d5
- int dimen space_392 0x7f0701d6
- int dimen space_394 0x7f0701d7
- int dimen space_396 0x7f0701d8
- int dimen space_398 0x7f0701d9
- int dimen space_4 0x7f0701da
- int dimen space_40 0x7f0701db
- int dimen space_400 0x7f0701dc
- int dimen space_402 0x7f0701dd
- int dimen space_404 0x7f0701de
- int dimen space_406 0x7f0701df
- int dimen space_408 0x7f0701e0
- int dimen space_410 0x7f0701e1
- int dimen space_412 0x7f0701e2
- int dimen space_414 0x7f0701e3
- int dimen space_416 0x7f0701e4
- int dimen space_418 0x7f0701e5
- int dimen space_42 0x7f0701e6
- int dimen space_420 0x7f0701e7
- int dimen space_422 0x7f0701e8
- int dimen space_424 0x7f0701e9
- int dimen space_426 0x7f0701ea
- int dimen space_428 0x7f0701eb
- int dimen space_430 0x7f0701ec
- int dimen space_432 0x7f0701ed
- int dimen space_434 0x7f0701ee
- int dimen space_436 0x7f0701ef
- int dimen space_438 0x7f0701f0
- int dimen space_44 0x7f0701f1
- int dimen space_440 0x7f0701f2
- int dimen space_442 0x7f0701f3
- int dimen space_444 0x7f0701f4
- int dimen space_446 0x7f0701f5
- int dimen space_448 0x7f0701f6
- int dimen space_450 0x7f0701f7
- int dimen space_452 0x7f0701f8
- int dimen space_454 0x7f0701f9
- int dimen space_456 0x7f0701fa
- int dimen space_458 0x7f0701fb
- int dimen space_46 0x7f0701fc
- int dimen space_460 0x7f0701fd
- int dimen space_462 0x7f0701fe
- int dimen space_464 0x7f0701ff
- int dimen space_466 0x7f070200
- int dimen space_468 0x7f070201
- int dimen space_470 0x7f070202
- int dimen space_472 0x7f070203
- int dimen space_474 0x7f070204
- int dimen space_476 0x7f070205
- int dimen space_478 0x7f070206
- int dimen space_48 0x7f070207
- int dimen space_480 0x7f070208
- int dimen space_482 0x7f070209
- int dimen space_484 0x7f07020a
- int dimen space_486 0x7f07020b
- int dimen space_488 0x7f07020c
- int dimen space_490 0x7f07020d
- int dimen space_492 0x7f07020e
- int dimen space_494 0x7f07020f
- int dimen space_496 0x7f070210
- int dimen space_498 0x7f070211
- int dimen space_50 0x7f070212
- int dimen space_500 0x7f070213
- int dimen space_502 0x7f070214
- int dimen space_504 0x7f070215
- int dimen space_506 0x7f070216
- int dimen space_508 0x7f070217
- int dimen space_510 0x7f070218
- int dimen space_512 0x7f070219
- int dimen space_514 0x7f07021a
- int dimen space_516 0x7f07021b
- int dimen space_518 0x7f07021c
- int dimen space_52 0x7f07021d
- int dimen space_520 0x7f07021e
- int dimen space_522 0x7f07021f
- int dimen space_524 0x7f070220
- int dimen space_526 0x7f070221
- int dimen space_528 0x7f070222
- int dimen space_530 0x7f070223
- int dimen space_532 0x7f070224
- int dimen space_534 0x7f070225
- int dimen space_536 0x7f070226
- int dimen space_538 0x7f070227
- int dimen space_54 0x7f070228
- int dimen space_540 0x7f070229
- int dimen space_542 0x7f07022a
- int dimen space_544 0x7f07022b
- int dimen space_546 0x7f07022c
- int dimen space_548 0x7f07022d
- int dimen space_550 0x7f07022e
- int dimen space_552 0x7f07022f
- int dimen space_554 0x7f070230
- int dimen space_556 0x7f070231
- int dimen space_558 0x7f070232
- int dimen space_56 0x7f070233
- int dimen space_560 0x7f070234
- int dimen space_562 0x7f070235
- int dimen space_564 0x7f070236
- int dimen space_566 0x7f070237
- int dimen space_568 0x7f070238
- int dimen space_570 0x7f070239
- int dimen space_572 0x7f07023a
- int dimen space_574 0x7f07023b
- int dimen space_576 0x7f07023c
- int dimen space_578 0x7f07023d
- int dimen space_58 0x7f07023e
- int dimen space_580 0x7f07023f
- int dimen space_582 0x7f070240
- int dimen space_584 0x7f070241
- int dimen space_586 0x7f070242
- int dimen space_588 0x7f070243
- int dimen space_590 0x7f070244
- int dimen space_592 0x7f070245
- int dimen space_594 0x7f070246
- int dimen space_596 0x7f070247
- int dimen space_598 0x7f070248
- int dimen space_6 0x7f070249
- int dimen space_60 0x7f07024a
- int dimen space_600 0x7f07024b
- int dimen space_602 0x7f07024c
- int dimen space_604 0x7f07024d
- int dimen space_606 0x7f07024e
- int dimen space_608 0x7f07024f
- int dimen space_610 0x7f070250
- int dimen space_612 0x7f070251
- int dimen space_614 0x7f070252
- int dimen space_616 0x7f070253
- int dimen space_618 0x7f070254
- int dimen space_62 0x7f070255
- int dimen space_620 0x7f070256
- int dimen space_622 0x7f070257
- int dimen space_624 0x7f070258
- int dimen space_626 0x7f070259
- int dimen space_628 0x7f07025a
- int dimen space_630 0x7f07025b
- int dimen space_632 0x7f07025c
- int dimen space_634 0x7f07025d
- int dimen space_636 0x7f07025e
- int dimen space_638 0x7f07025f
- int dimen space_64 0x7f070260
- int dimen space_640 0x7f070261
- int dimen space_642 0x7f070262
- int dimen space_644 0x7f070263
- int dimen space_646 0x7f070264
- int dimen space_648 0x7f070265
- int dimen space_650 0x7f070266
- int dimen space_652 0x7f070267
- int dimen space_654 0x7f070268
- int dimen space_656 0x7f070269
- int dimen space_658 0x7f07026a
- int dimen space_66 0x7f07026b
- int dimen space_660 0x7f07026c
- int dimen space_662 0x7f07026d
- int dimen space_664 0x7f07026e
- int dimen space_666 0x7f07026f
- int dimen space_668 0x7f070270
- int dimen space_670 0x7f070271
- int dimen space_672 0x7f070272
- int dimen space_674 0x7f070273
- int dimen space_676 0x7f070274
- int dimen space_678 0x7f070275
- int dimen space_68 0x7f070276
- int dimen space_680 0x7f070277
- int dimen space_682 0x7f070278
- int dimen space_684 0x7f070279
- int dimen space_686 0x7f07027a
- int dimen space_688 0x7f07027b
- int dimen space_690 0x7f07027c
- int dimen space_692 0x7f07027d
- int dimen space_694 0x7f07027e
- int dimen space_696 0x7f07027f
- int dimen space_698 0x7f070280
- int dimen space_70 0x7f070281
- int dimen space_700 0x7f070282
- int dimen space_702 0x7f070283
- int dimen space_704 0x7f070284
- int dimen space_706 0x7f070285
- int dimen space_708 0x7f070286
- int dimen space_710 0x7f070287
- int dimen space_712 0x7f070288
- int dimen space_714 0x7f070289
- int dimen space_716 0x7f07028a
- int dimen space_718 0x7f07028b
- int dimen space_72 0x7f07028c
- int dimen space_720 0x7f07028d
- int dimen space_722 0x7f07028e
- int dimen space_724 0x7f07028f
- int dimen space_726 0x7f070290
- int dimen space_728 0x7f070291
- int dimen space_730 0x7f070292
- int dimen space_732 0x7f070293
- int dimen space_734 0x7f070294
- int dimen space_736 0x7f070295
- int dimen space_738 0x7f070296
- int dimen space_74 0x7f070297
- int dimen space_740 0x7f070298
- int dimen space_742 0x7f070299
- int dimen space_744 0x7f07029a
- int dimen space_746 0x7f07029b
- int dimen space_748 0x7f07029c
- int dimen space_750 0x7f07029d
- int dimen space_752 0x7f07029e
- int dimen space_754 0x7f07029f
- int dimen space_756 0x7f0702a0
- int dimen space_758 0x7f0702a1
- int dimen space_76 0x7f0702a2
- int dimen space_760 0x7f0702a3
- int dimen space_762 0x7f0702a4
- int dimen space_764 0x7f0702a5
- int dimen space_766 0x7f0702a6
- int dimen space_768 0x7f0702a7
- int dimen space_770 0x7f0702a8
- int dimen space_772 0x7f0702a9
- int dimen space_774 0x7f0702aa
- int dimen space_776 0x7f0702ab
- int dimen space_778 0x7f0702ac
- int dimen space_78 0x7f0702ad
- int dimen space_780 0x7f0702ae
- int dimen space_782 0x7f0702af
- int dimen space_784 0x7f0702b0
- int dimen space_786 0x7f0702b1
- int dimen space_788 0x7f0702b2
- int dimen space_790 0x7f0702b3
- int dimen space_792 0x7f0702b4
- int dimen space_794 0x7f0702b5
- int dimen space_796 0x7f0702b6
- int dimen space_798 0x7f0702b7
- int dimen space_8 0x7f0702b8
- int dimen space_80 0x7f0702b9
- int dimen space_800 0x7f0702ba
- int dimen space_82 0x7f0702bb
- int dimen space_84 0x7f0702bc
- int dimen space_86 0x7f0702bd
- int dimen space_88 0x7f0702be
- int dimen space_90 0x7f0702bf
- int dimen space_92 0x7f0702c0
- int dimen space_94 0x7f0702c1
- int dimen space_96 0x7f0702c2
- int dimen space_98 0x7f0702c3
- int dimen tooltip_corner_radius 0x7f0702c4
- int dimen tooltip_horizontal_padding 0x7f0702c5
- int dimen tooltip_margin 0x7f0702c6
- int dimen tooltip_precise_anchor_extra_offset 0x7f0702c7
- int dimen tooltip_precise_anchor_threshold 0x7f0702c8
- int dimen tooltip_vertical_padding 0x7f0702c9
- int dimen tooltip_y_offset_non_touch 0x7f0702ca
- int dimen tooltip_y_offset_touch 0x7f0702cb
- int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001
- int drawable abc_action_bar_item_background_material 0x7f080002
- int drawable abc_btn_borderless_material 0x7f080003
- int drawable abc_btn_check_material 0x7f080004
- int drawable abc_btn_check_to_on_mtrl_000 0x7f080005
- int drawable abc_btn_check_to_on_mtrl_015 0x7f080006
- int drawable abc_btn_colored_material 0x7f080007
- int drawable abc_btn_default_mtrl_shape 0x7f080008
- int drawable abc_btn_radio_material 0x7f080009
- int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000a
- int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000b
- int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000c
- int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000d
- int drawable abc_cab_background_internal_bg 0x7f08000e
- int drawable abc_cab_background_top_material 0x7f08000f
- int drawable abc_cab_background_top_mtrl_alpha 0x7f080010
- int drawable abc_control_background_material 0x7f080011
- int drawable abc_dialog_material_background 0x7f080012
- int drawable abc_edit_text_material 0x7f080013
- int drawable abc_ic_ab_back_material 0x7f080014
- int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080015
- int drawable abc_ic_clear_material 0x7f080016
- int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080017
- int drawable abc_ic_go_search_api_material 0x7f080018
- int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f080019
- int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001a
- int drawable abc_ic_menu_overflow_material 0x7f08001b
- int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f08001c
- int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f08001d
- int drawable abc_ic_menu_share_mtrl_alpha 0x7f08001e
- int drawable abc_ic_search_api_material 0x7f08001f
- int drawable abc_ic_star_black_16dp 0x7f080020
- int drawable abc_ic_star_black_36dp 0x7f080021
- int drawable abc_ic_star_black_48dp 0x7f080022
- int drawable abc_ic_star_half_black_16dp 0x7f080023
- int drawable abc_ic_star_half_black_36dp 0x7f080024
- int drawable abc_ic_star_half_black_48dp 0x7f080025
- int drawable abc_ic_voice_search_api_material 0x7f080026
- int drawable abc_item_background_holo_dark 0x7f080027
- int drawable abc_item_background_holo_light 0x7f080028
- int drawable abc_list_divider_material 0x7f080029
- int drawable abc_list_divider_mtrl_alpha 0x7f08002a
- int drawable abc_list_focused_holo 0x7f08002b
- int drawable abc_list_longpressed_holo 0x7f08002c
- int drawable abc_list_pressed_holo_dark 0x7f08002d
- int drawable abc_list_pressed_holo_light 0x7f08002e
- int drawable abc_list_selector_background_transition_holo_dark 0x7f08002f
- int drawable abc_list_selector_background_transition_holo_light 0x7f080030
- int drawable abc_list_selector_disabled_holo_dark 0x7f080031
- int drawable abc_list_selector_disabled_holo_light 0x7f080032
- int drawable abc_list_selector_holo_dark 0x7f080033
- int drawable abc_list_selector_holo_light 0x7f080034
- int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080035
- int drawable abc_popup_background_mtrl_mult 0x7f080036
- int drawable abc_ratingbar_indicator_material 0x7f080037
- int drawable abc_ratingbar_material 0x7f080038
- int drawable abc_ratingbar_small_material 0x7f080039
- int drawable abc_scrubber_control_off_mtrl_alpha 0x7f08003a
- int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003b
- int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f08003c
- int drawable abc_scrubber_primary_mtrl_alpha 0x7f08003d
- int drawable abc_scrubber_track_mtrl_alpha 0x7f08003e
- int drawable abc_seekbar_thumb_material 0x7f08003f
- int drawable abc_seekbar_tick_mark_material 0x7f080040
- int drawable abc_seekbar_track_material 0x7f080041
- int drawable abc_spinner_mtrl_am_alpha 0x7f080042
- int drawable abc_spinner_textfield_background_material 0x7f080043
- int drawable abc_switch_thumb_material 0x7f080044
- int drawable abc_switch_track_mtrl_alpha 0x7f080045
- int drawable abc_tab_indicator_material 0x7f080046
- int drawable abc_tab_indicator_mtrl_alpha 0x7f080047
- int drawable abc_text_cursor_material 0x7f080048
- int drawable abc_text_select_handle_left_mtrl_dark 0x7f080049
- int drawable abc_text_select_handle_left_mtrl_light 0x7f08004a
- int drawable abc_text_select_handle_middle_mtrl_dark 0x7f08004b
- int drawable abc_text_select_handle_middle_mtrl_light 0x7f08004c
- int drawable abc_text_select_handle_right_mtrl_dark 0x7f08004d
- int drawable abc_text_select_handle_right_mtrl_light 0x7f08004e
- int drawable abc_textfield_activated_mtrl_alpha 0x7f08004f
- int drawable abc_textfield_default_mtrl_alpha 0x7f080050
- int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080051
- int drawable abc_textfield_search_default_mtrl_alpha 0x7f080052
- int drawable abc_textfield_search_material 0x7f080053
- int drawable abc_vector_test 0x7f080054
- int drawable avd_hide_password 0x7f080055
- int drawable avd_show_password 0x7f080056
- int drawable design_bottom_navigation_item_background 0x7f080057
- int drawable design_fab_background 0x7f080058
- int drawable design_ic_visibility 0x7f080059
- int drawable design_ic_visibility_off 0x7f08005a
- int drawable design_password_eye 0x7f08005b
- int drawable design_snackbar_background 0x7f08005c
- int drawable ic_input_hide 0x7f08005d
- int drawable ic_input_show 0x7f08005e
- int drawable ic_mtrl_chip_checked_black 0x7f08005f
- int drawable ic_mtrl_chip_checked_circle 0x7f080060
- int drawable ic_mtrl_chip_close_circle 0x7f080061
- int drawable ic_stat_name 0x7f080062
- int drawable mtrl_snackbar_background 0x7f080063
- int drawable mtrl_tabs_default_indicator 0x7f080064
- int drawable navigation_empty_icon 0x7f080065
- int drawable notification_action_background 0x7f080066
- int drawable notification_bg 0x7f080067
- int drawable notification_bg_low 0x7f080068
- int drawable notification_bg_low_normal 0x7f080069
- int drawable notification_bg_low_pressed 0x7f08006a
- int drawable notification_bg_normal 0x7f08006b
- int drawable notification_bg_normal_pressed 0x7f08006c
- int drawable notification_icon_background 0x7f08006d
- int drawable notification_template_icon_bg 0x7f08006e
- int drawable notification_template_icon_low_bg 0x7f08006f
- int drawable notification_tile_bg 0x7f080070
- int drawable notify_panel_notification_icon_bg 0x7f080071
- int drawable tooltip_frame_dark 0x7f080072
- int drawable tooltip_frame_light 0x7f080073
- int drawable widget_bg_settting_bar_selector 0x7f080074
- int id action_bar 0x7f0b0001
- int id action_bar_activity_content 0x7f0b0002
- int id action_bar_container 0x7f0b0003
- int id action_bar_root 0x7f0b0004
- int id action_bar_spinner 0x7f0b0005
- int id action_bar_subtitle 0x7f0b0006
- int id action_bar_title 0x7f0b0007
- int id action_container 0x7f0b0008
- int id action_context_bar 0x7f0b0009
- int id action_divider 0x7f0b000a
- int id action_image 0x7f0b000b
- int id action_menu_divider 0x7f0b000c
- int id action_menu_presenter 0x7f0b000d
- int id action_mode_bar 0x7f0b000e
- int id action_mode_bar_stub 0x7f0b000f
- int id action_mode_close_button 0x7f0b0010
- int id action_text 0x7f0b0011
- int id actions 0x7f0b0012
- int id activity_chooser_view_content 0x7f0b0013
- int id add 0x7f0b0014
- int id alertTitle 0x7f0b0015
- int id async 0x7f0b0016
- int id auto 0x7f0b0017
- int id blocking 0x7f0b0018
- int id bottom 0x7f0b0019
- int id buttonPanel 0x7f0b001a
- int id center 0x7f0b001b
- int id checkbox 0x7f0b001c
- int id chinese 0x7f0b001d
- int id chronometer 0x7f0b001e
- int id container 0x7f0b001f
- int id content 0x7f0b0020
- int id contentPanel 0x7f0b0021
- int id coordinator 0x7f0b0022
- int id count 0x7f0b0023
- int id custom 0x7f0b0024
- int id customPanel 0x7f0b0025
- int id decor_content_parent 0x7f0b0026
- int id default_activity_button 0x7f0b0027
- int id design_bottom_sheet 0x7f0b0028
- int id design_menu_item_action_area 0x7f0b0029
- int id design_menu_item_action_area_stub 0x7f0b002a
- int id design_menu_item_text 0x7f0b002b
- int id design_navigation_view 0x7f0b002c
- int id dialog_id_click_listener 0x7f0b002d
- int id dialog_id_this 0x7f0b002e
- int id edit_query 0x7f0b002f
- int id end 0x7f0b0030
- int id english 0x7f0b0031
- int id expand_activities_button 0x7f0b0032
- int id expanded_menu 0x7f0b0033
- int id fill 0x7f0b0034
- int id filled 0x7f0b0035
- int id fixed 0x7f0b0036
- int id forever 0x7f0b0037
- int id ghost_view 0x7f0b0038
- int id group_divider 0x7f0b0039
- int id home 0x7f0b003a
- int id icon 0x7f0b003b
- int id icon_group 0x7f0b003c
- int id image 0x7f0b003d
- int id info 0x7f0b003e
- int id italic 0x7f0b003f
- int id item_touch_helper_previous_elevation 0x7f0b0040
- int id iv_hint_icon 0x7f0b0041
- int id iv_hint_text 0x7f0b0042
- int id labeled 0x7f0b0043
- int id largeLabel 0x7f0b0044
- int id left 0x7f0b0045
- int id line1 0x7f0b0046
- int id line3 0x7f0b0047
- int id listMode 0x7f0b0048
- int id list_item 0x7f0b0049
- int id masked 0x7f0b004a
- int id message 0x7f0b004b
- int id mini 0x7f0b004c
- int id mobile 0x7f0b004d
- int id mtrl_child_content_container 0x7f0b004e
- int id mtrl_internal_children_alpha_tag 0x7f0b004f
- int id multiply 0x7f0b0050
- int id name 0x7f0b0051
- int id navigation_header_container 0x7f0b0052
- int id none 0x7f0b0053
- int id nonnull 0x7f0b0054
- int id normal 0x7f0b0055
- int id notification_background 0x7f0b0056
- int id notification_main_column 0x7f0b0057
- int id notification_main_column_container 0x7f0b0058
- int id outline 0x7f0b0059
- int id parallax 0x7f0b005a
- int id parentPanel 0x7f0b005b
- int id parent_matrix 0x7f0b005c
- int id pin 0x7f0b005d
- int id progress_circular 0x7f0b005e
- int id progress_horizontal 0x7f0b005f
- int id radio 0x7f0b0060
- int id right 0x7f0b0061
- int id right_icon 0x7f0b0062
- int id right_side 0x7f0b0063
- int id save_image_matrix 0x7f0b0064
- int id save_non_transition_alpha 0x7f0b0065
- int id save_scale_type 0x7f0b0066
- int id screen 0x7f0b0067
- int id scrollIndicatorDown 0x7f0b0068
- int id scrollIndicatorUp 0x7f0b0069
- int id scrollView 0x7f0b006a
- int id scrollable 0x7f0b006b
- int id search_badge 0x7f0b006c
- int id search_bar 0x7f0b006d
- int id search_button 0x7f0b006e
- int id search_close_btn 0x7f0b006f
- int id search_edit_frame 0x7f0b0070
- int id search_go_btn 0x7f0b0071
- int id search_mag_icon 0x7f0b0072
- int id search_plate 0x7f0b0073
- int id search_src_text 0x7f0b0074
- int id search_voice_btn 0x7f0b0075
- int id select_dialog_listview 0x7f0b0076
- int id selected 0x7f0b0077
- int id shortcut 0x7f0b0078
- int id smallLabel 0x7f0b0079
- int id snackbar_action 0x7f0b007a
- int id snackbar_text 0x7f0b007b
- int id spacer 0x7f0b007c
- int id split_action_bar 0x7f0b007d
- int id src_atop 0x7f0b007e
- int id src_in 0x7f0b007f
- int id src_over 0x7f0b0080
- int id start 0x7f0b0081
- int id stretch 0x7f0b0082
- int id submenuarrow 0x7f0b0083
- int id submit_area 0x7f0b0084
- int id tabMode 0x7f0b0085
- int id tag_transition_group 0x7f0b0086
- int id tag_unhandled_key_event_manager 0x7f0b0087
- int id tag_unhandled_key_listeners 0x7f0b0088
- int id text 0x7f0b0089
- int id text2 0x7f0b008a
- int id textSpacerNoButtons 0x7f0b008b
- int id textSpacerNoTitle 0x7f0b008c
- int id text_input_password_toggle 0x7f0b008d
- int id textinput_counter 0x7f0b008e
- int id textinput_error 0x7f0b008f
- int id textinput_helper_text 0x7f0b0090
- int id time 0x7f0b0091
- int id title 0x7f0b0092
- int id titleDividerNoCustom 0x7f0b0093
- int id title_template 0x7f0b0094
- int id top 0x7f0b0095
- int id topPanel 0x7f0b0096
- int id touch_outside 0x7f0b0097
- int id transition_current_scene 0x7f0b0098
- int id transition_layout_save 0x7f0b0099
- int id transition_position 0x7f0b009a
- int id transition_scene_layoutid_cache 0x7f0b009b
- int id transition_transform 0x7f0b009c
- int id tv_setting_bar_left 0x7f0b009d
- int id tv_setting_bar_right 0x7f0b009e
- int id uniform 0x7f0b009f
- int id unlabeled 0x7f0b00a0
- int id up 0x7f0b00a1
- int id v_setting_bar_line 0x7f0b00a2
- int id view_offset_helper 0x7f0b00a3
- int id visible 0x7f0b00a4
- int id wrap_content 0x7f0b00a5
- int integer abc_config_activityDefaultDur 0x7f0c0001
- int integer abc_config_activityShortDur 0x7f0c0002
- int integer anim_duration_long 0x7f0c0003
- int integer anim_duration_medium 0x7f0c0004
- int integer app_bar_elevation_anim_duration 0x7f0c0005
- int integer bottom_sheet_slide_duration 0x7f0c0006
- int integer cancel_button_image_alpha 0x7f0c0007
- int integer config_tooltipAnimTime 0x7f0c0008
- int integer design_snackbar_text_max_lines 0x7f0c0009
- int integer design_tab_indicator_anim_duration_ms 0x7f0c000a
- int integer hide_password_duration 0x7f0c000b
- int integer mtrl_btn_anim_delay_ms 0x7f0c000c
- int integer mtrl_btn_anim_duration_ms 0x7f0c000d
- int integer mtrl_chip_anim_duration 0x7f0c000e
- int integer mtrl_tab_indicator_anim_duration_ms 0x7f0c000f
- int integer show_password_duration 0x7f0c0010
- int integer status_bar_notification_info_maxnum 0x7f0c0011
- int interpolator mtrl_fast_out_linear_in 0x7f0d0001
- int interpolator mtrl_fast_out_slow_in 0x7f0d0002
- int interpolator mtrl_linear 0x7f0d0003
- int interpolator mtrl_linear_out_slow_in 0x7f0d0004
- int layout abc_action_bar_title_item 0x7f0e0001
- int layout abc_action_bar_up_container 0x7f0e0002
- int layout abc_action_menu_item_layout 0x7f0e0003
- int layout abc_action_menu_layout 0x7f0e0004
- int layout abc_action_mode_bar 0x7f0e0005
- int layout abc_action_mode_close_item_material 0x7f0e0006
- int layout abc_activity_chooser_view 0x7f0e0007
- int layout abc_activity_chooser_view_list_item 0x7f0e0008
- int layout abc_alert_dialog_button_bar_material 0x7f0e0009
- int layout abc_alert_dialog_material 0x7f0e000a
- int layout abc_alert_dialog_title_material 0x7f0e000b
- int layout abc_cascading_menu_item_layout 0x7f0e000c
- int layout abc_dialog_title_material 0x7f0e000d
- int layout abc_expanded_menu_layout 0x7f0e000e
- int layout abc_list_menu_item_checkbox 0x7f0e000f
- int layout abc_list_menu_item_icon 0x7f0e0010
- int layout abc_list_menu_item_layout 0x7f0e0011
- int layout abc_list_menu_item_radio 0x7f0e0012
- int layout abc_popup_menu_header_item_layout 0x7f0e0013
- int layout abc_popup_menu_item_layout 0x7f0e0014
- int layout abc_screen_content_include 0x7f0e0015
- int layout abc_screen_simple 0x7f0e0016
- int layout abc_screen_simple_overlay_action_mode 0x7f0e0017
- int layout abc_screen_toolbar 0x7f0e0018
- int layout abc_search_dropdown_item_icons_2line 0x7f0e0019
- int layout abc_search_view 0x7f0e001a
- int layout abc_select_dialog_material 0x7f0e001b
- int layout abc_tooltip 0x7f0e001c
- int layout design_bottom_navigation_item 0x7f0e001d
- int layout design_bottom_sheet_dialog 0x7f0e001e
- int layout design_layout_snackbar 0x7f0e001f
- int layout design_layout_snackbar_include 0x7f0e0020
- int layout design_layout_tab_icon 0x7f0e0021
- int layout design_layout_tab_text 0x7f0e0022
- int layout design_menu_item_action_area 0x7f0e0023
- int layout design_navigation_item 0x7f0e0024
- int layout design_navigation_item_header 0x7f0e0025
- int layout design_navigation_item_separator 0x7f0e0026
- int layout design_navigation_item_subheader 0x7f0e0027
- int layout design_navigation_menu 0x7f0e0028
- int layout design_navigation_menu_item 0x7f0e0029
- int layout design_text_input_password_icon 0x7f0e002a
- int layout mtrl_layout_snackbar 0x7f0e002b
- int layout mtrl_layout_snackbar_include 0x7f0e002c
- int layout notification_action 0x7f0e002d
- int layout notification_action_tombstone 0x7f0e002e
- int layout notification_template_custom_big 0x7f0e002f
- int layout notification_template_icon_group 0x7f0e0030
- int layout notification_template_part_chronometer 0x7f0e0031
- int layout notification_template_part_time 0x7f0e0032
- int layout select_dialog_item_material 0x7f0e0033
- int layout select_dialog_multichoice_material 0x7f0e0034
- int layout select_dialog_singlechoice_material 0x7f0e0035
- int layout support_simple_spinner_dropdown_item 0x7f0e0036
- int layout widget_hint_layout 0x7f0e0037
- int layout widget_setting_bar 0x7f0e0038
- int mipmap widget_input_delete 0x7f100001
- int string abc_action_bar_home_description 0x7f140001
- int string abc_action_bar_up_description 0x7f140002
- int string abc_action_menu_overflow_description 0x7f140003
- int string abc_action_mode_done 0x7f140004
- int string abc_activity_chooser_view_see_all 0x7f140005
- int string abc_activitychooserview_choose_application 0x7f140006
- int string abc_capital_off 0x7f140007
- int string abc_capital_on 0x7f140008
- int string abc_font_family_body_1_material 0x7f140009
- int string abc_font_family_body_2_material 0x7f14000a
- int string abc_font_family_button_material 0x7f14000b
- int string abc_font_family_caption_material 0x7f14000c
- int string abc_font_family_display_1_material 0x7f14000d
- int string abc_font_family_display_2_material 0x7f14000e
- int string abc_font_family_display_3_material 0x7f14000f
- int string abc_font_family_display_4_material 0x7f140010
- int string abc_font_family_headline_material 0x7f140011
- int string abc_font_family_menu_material 0x7f140012
- int string abc_font_family_subhead_material 0x7f140013
- int string abc_font_family_title_material 0x7f140014
- int string abc_menu_alt_shortcut_label 0x7f140015
- int string abc_menu_ctrl_shortcut_label 0x7f140016
- int string abc_menu_delete_shortcut_label 0x7f140017
- int string abc_menu_enter_shortcut_label 0x7f140018
- int string abc_menu_function_shortcut_label 0x7f140019
- int string abc_menu_meta_shortcut_label 0x7f14001a
- int string abc_menu_shift_shortcut_label 0x7f14001b
- int string abc_menu_space_shortcut_label 0x7f14001c
- int string abc_menu_sym_shortcut_label 0x7f14001d
- int string abc_prepend_shortcut_label 0x7f14001e
- int string abc_search_hint 0x7f14001f
- int string abc_searchview_description_clear 0x7f140020
- int string abc_searchview_description_query 0x7f140021
- int string abc_searchview_description_search 0x7f140022
- int string abc_searchview_description_submit 0x7f140023
- int string abc_searchview_description_voice 0x7f140024
- int string abc_shareactionprovider_share_with 0x7f140025
- int string abc_shareactionprovider_share_with_application 0x7f140026
- int string abc_toolbar_collapse_description 0x7f140027
- int string appbar_scrolling_view_behavior 0x7f140028
- int string bottom_sheet_behavior 0x7f140029
- int string character_counter_content_description 0x7f14002a
- int string character_counter_pattern 0x7f14002b
- int string fab_transformation_scrim_behavior 0x7f14002c
- int string fab_transformation_sheet_behavior 0x7f14002d
- int string hide_bottom_view_on_scroll_behavior 0x7f14002e
- int string mtrl_chip_close_icon_content_description 0x7f14002f
- int string password_toggle_content_description 0x7f140030
- int string path_password_eye 0x7f140031
- int string path_password_eye_mask_strike_through 0x7f140032
- int string path_password_eye_mask_visible 0x7f140033
- int string path_password_strike_through 0x7f140034
- int string search_menu_title 0x7f140035
- int string status_bar_notification_info_overflow 0x7f140036
- int style AlertDialog_AppCompat 0x7f150001
- int style AlertDialog_AppCompat_Light 0x7f150002
- int style Animation_AppCompat_Dialog 0x7f150003
- int style Animation_AppCompat_DropDownUp 0x7f150004
- int style Animation_AppCompat_Tooltip 0x7f150005
- int style Animation_Design_BottomSheetDialog 0x7f150006
- int style BaseDialogStyle 0x7f150007
- int style Base_AlertDialog_AppCompat 0x7f150008
- int style Base_AlertDialog_AppCompat_Light 0x7f150009
- int style Base_Animation_AppCompat_Dialog 0x7f15000a
- int style Base_Animation_AppCompat_DropDownUp 0x7f15000b
- int style Base_Animation_AppCompat_Tooltip 0x7f15000c
- int style Base_CardView 0x7f15000d
- int style Base_DialogWindowTitleBackground_AppCompat 0x7f15000e
- int style Base_DialogWindowTitle_AppCompat 0x7f15000f
- int style Base_TextAppearance_AppCompat 0x7f150010
- int style Base_TextAppearance_AppCompat_Body1 0x7f150011
- int style Base_TextAppearance_AppCompat_Body2 0x7f150012
- int style Base_TextAppearance_AppCompat_Button 0x7f150013
- int style Base_TextAppearance_AppCompat_Caption 0x7f150014
- int style Base_TextAppearance_AppCompat_Display1 0x7f150015
- int style Base_TextAppearance_AppCompat_Display2 0x7f150016
- int style Base_TextAppearance_AppCompat_Display3 0x7f150017
- int style Base_TextAppearance_AppCompat_Display4 0x7f150018
- int style Base_TextAppearance_AppCompat_Headline 0x7f150019
- int style Base_TextAppearance_AppCompat_Inverse 0x7f15001a
- int style Base_TextAppearance_AppCompat_Large 0x7f15001b
- int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f15001c
- int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15001d
- int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15001e
- int style Base_TextAppearance_AppCompat_Medium 0x7f15001f
- int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f150020
- int style Base_TextAppearance_AppCompat_Menu 0x7f150021
- int style Base_TextAppearance_AppCompat_SearchResult 0x7f150022
- int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150023
- int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f150024
- int style Base_TextAppearance_AppCompat_Small 0x7f150025
- int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f150026
- int style Base_TextAppearance_AppCompat_Subhead 0x7f150027
- int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f150028
- int style Base_TextAppearance_AppCompat_Title 0x7f150029
- int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f15002a
- int style Base_TextAppearance_AppCompat_Tooltip 0x7f15002b
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f15002c
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15002d
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15002e
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15002f
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f150030
- int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f150031
- int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150032
- int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150033
- int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150034
- int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f150035
- int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150036
- int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f150037
- int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150038
- int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150039
- int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f15003a
- int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f15003b
- int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f15003c
- int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15003d
- int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15003e
- int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15003f
- int style Base_ThemeOverlay_AppCompat 0x7f150040
- int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f150041
- int style Base_ThemeOverlay_AppCompat_Dark 0x7f150042
- int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150043
- int style Base_ThemeOverlay_AppCompat_Dialog 0x7f150044
- int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f150045
- int style Base_ThemeOverlay_AppCompat_Light 0x7f150046
- int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f150047
- int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150048
- int style Base_Theme_AppCompat 0x7f150049
- int style Base_Theme_AppCompat_CompactMenu 0x7f15004a
- int style Base_Theme_AppCompat_Dialog 0x7f15004b
- int style Base_Theme_AppCompat_DialogWhenLarge 0x7f15004c
- int style Base_Theme_AppCompat_Dialog_Alert 0x7f15004d
- int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f15004e
- int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15004f
- int style Base_Theme_AppCompat_Light 0x7f150050
- int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f150051
- int style Base_Theme_AppCompat_Light_Dialog 0x7f150052
- int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f150053
- int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f150054
- int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150055
- int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150056
- int style Base_Theme_MaterialComponents 0x7f150057
- int style Base_Theme_MaterialComponents_Bridge 0x7f150058
- int style Base_Theme_MaterialComponents_CompactMenu 0x7f150059
- int style Base_Theme_MaterialComponents_Dialog 0x7f15005a
- int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f15005b
- int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f15005c
- int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f15005d
- int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f15005e
- int style Base_Theme_MaterialComponents_Light 0x7f15005f
- int style Base_Theme_MaterialComponents_Light_Bridge 0x7f150060
- int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f150061
- int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150062
- int style Base_Theme_MaterialComponents_Light_Dialog 0x7f150063
- int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150064
- int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f150065
- int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f150066
- int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150067
- int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f150068
- int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150069
- int style Base_V14_Theme_MaterialComponents 0x7f15006a
- int style Base_V14_Theme_MaterialComponents_Bridge 0x7f15006b
- int style Base_V14_Theme_MaterialComponents_Dialog 0x7f15006c
- int style Base_V14_Theme_MaterialComponents_Light 0x7f15006d
- int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f15006e
- int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f15006f
- int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f150070
- int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150071
- int style Base_V21_Theme_AppCompat 0x7f150072
- int style Base_V21_Theme_AppCompat_Dialog 0x7f150073
- int style Base_V21_Theme_AppCompat_Light 0x7f150074
- int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150075
- int style Base_V22_Theme_AppCompat 0x7f150076
- int style Base_V22_Theme_AppCompat_Light 0x7f150077
- int style Base_V23_Theme_AppCompat 0x7f150078
- int style Base_V23_Theme_AppCompat_Light 0x7f150079
- int style Base_V26_Theme_AppCompat 0x7f15007a
- int style Base_V26_Theme_AppCompat_Light 0x7f15007b
- int style Base_V26_Widget_AppCompat_Toolbar 0x7f15007c
- int style Base_V28_Theme_AppCompat 0x7f15007d
- int style Base_V28_Theme_AppCompat_Light 0x7f15007e
- int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f15007f
- int style Base_V7_Theme_AppCompat 0x7f150080
- int style Base_V7_Theme_AppCompat_Dialog 0x7f150081
- int style Base_V7_Theme_AppCompat_Light 0x7f150082
- int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f150083
- int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f150084
- int style Base_V7_Widget_AppCompat_EditText 0x7f150085
- int style Base_V7_Widget_AppCompat_Toolbar 0x7f150086
- int style Base_Widget_AppCompat_ActionBar 0x7f150087
- int style Base_Widget_AppCompat_ActionBar_Solid 0x7f150088
- int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f150089
- int style Base_Widget_AppCompat_ActionBar_TabText 0x7f15008a
- int style Base_Widget_AppCompat_ActionBar_TabView 0x7f15008b
- int style Base_Widget_AppCompat_ActionButton 0x7f15008c
- int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f15008d
- int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f15008e
- int style Base_Widget_AppCompat_ActionMode 0x7f15008f
- int style Base_Widget_AppCompat_ActivityChooserView 0x7f150090
- int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f150091
- int style Base_Widget_AppCompat_Button 0x7f150092
- int style Base_Widget_AppCompat_ButtonBar 0x7f150093
- int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f150094
- int style Base_Widget_AppCompat_Button_Borderless 0x7f150095
- int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f150096
- int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150097
- int style Base_Widget_AppCompat_Button_Colored 0x7f150098
- int style Base_Widget_AppCompat_Button_Small 0x7f150099
- int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f15009a
- int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f15009b
- int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f15009c
- int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f15009d
- int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f15009e
- int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f15009f
- int style Base_Widget_AppCompat_EditText 0x7f1500a0
- int style Base_Widget_AppCompat_ImageButton 0x7f1500a1
- int style Base_Widget_AppCompat_Light_ActionBar 0x7f1500a2
- int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f1500a3
- int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f1500a4
- int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f1500a5
- int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f1500a6
- int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f1500a7
- int style Base_Widget_AppCompat_Light_PopupMenu 0x7f1500a8
- int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1500a9
- int style Base_Widget_AppCompat_ListMenuView 0x7f1500aa
- int style Base_Widget_AppCompat_ListPopupWindow 0x7f1500ab
- int style Base_Widget_AppCompat_ListView 0x7f1500ac
- int style Base_Widget_AppCompat_ListView_DropDown 0x7f1500ad
- int style Base_Widget_AppCompat_ListView_Menu 0x7f1500ae
- int style Base_Widget_AppCompat_PopupMenu 0x7f1500af
- int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f1500b0
- int style Base_Widget_AppCompat_PopupWindow 0x7f1500b1
- int style Base_Widget_AppCompat_ProgressBar 0x7f1500b2
- int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f1500b3
- int style Base_Widget_AppCompat_RatingBar 0x7f1500b4
- int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f1500b5
- int style Base_Widget_AppCompat_RatingBar_Small 0x7f1500b6
- int style Base_Widget_AppCompat_SearchView 0x7f1500b7
- int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f1500b8
- int style Base_Widget_AppCompat_SeekBar 0x7f1500b9
- int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f1500ba
- int style Base_Widget_AppCompat_Spinner 0x7f1500bb
- int style Base_Widget_AppCompat_Spinner_Underlined 0x7f1500bc
- int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f1500bd
- int style Base_Widget_AppCompat_Toolbar 0x7f1500be
- int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500bf
- int style Base_Widget_Design_TabLayout 0x7f1500c0
- int style Base_Widget_MaterialComponents_Chip 0x7f1500c1
- int style Base_Widget_MaterialComponents_TextInputEditText 0x7f1500c2
- int style Base_Widget_MaterialComponents_TextInputLayout 0x7f1500c3
- int style BottomAnimStyle 0x7f1500c4
- int style CardView 0x7f1500c5
- int style CardView_Dark 0x7f1500c6
- int style CardView_Light 0x7f1500c7
- int style IOSAnimStyle 0x7f1500c8
- int style LeftAnimStyle 0x7f1500c9
- int style Platform_AppCompat 0x7f1500ca
- int style Platform_AppCompat_Light 0x7f1500cb
- int style Platform_MaterialComponents 0x7f1500cc
- int style Platform_MaterialComponents_Dialog 0x7f1500cd
- int style Platform_MaterialComponents_Light 0x7f1500ce
- int style Platform_MaterialComponents_Light_Dialog 0x7f1500cf
- int style Platform_ThemeOverlay_AppCompat 0x7f1500d0
- int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1500d1
- int style Platform_ThemeOverlay_AppCompat_Light 0x7f1500d2
- int style Platform_V21_AppCompat 0x7f1500d3
- int style Platform_V21_AppCompat_Light 0x7f1500d4
- int style Platform_V25_AppCompat 0x7f1500d5
- int style Platform_V25_AppCompat_Light 0x7f1500d6
- int style Platform_Widget_AppCompat_Spinner 0x7f1500d7
- int style RightAnimStyle 0x7f1500d8
- int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f1500d9
- int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f1500da
- int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f1500db
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f1500dc
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f1500dd
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f1500de
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f1500df
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f1500e0
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f1500e1
- int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f1500e2
- int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f1500e3
- int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f1500e4
- int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f1500e5
- int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f1500e6
- int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f1500e7
- int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f1500e8
- int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f1500e9
- int style ScaleAnimStyle 0x7f1500ea
- int style TextAppearance_AppCompat 0x7f1500eb
- int style TextAppearance_AppCompat_Body1 0x7f1500ec
- int style TextAppearance_AppCompat_Body2 0x7f1500ed
- int style TextAppearance_AppCompat_Button 0x7f1500ee
- int style TextAppearance_AppCompat_Caption 0x7f1500ef
- int style TextAppearance_AppCompat_Display1 0x7f1500f0
- int style TextAppearance_AppCompat_Display2 0x7f1500f1
- int style TextAppearance_AppCompat_Display3 0x7f1500f2
- int style TextAppearance_AppCompat_Display4 0x7f1500f3
- int style TextAppearance_AppCompat_Headline 0x7f1500f4
- int style TextAppearance_AppCompat_Inverse 0x7f1500f5
- int style TextAppearance_AppCompat_Large 0x7f1500f6
- int style TextAppearance_AppCompat_Large_Inverse 0x7f1500f7
- int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1500f8
- int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1500f9
- int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1500fa
- int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1500fb
- int style TextAppearance_AppCompat_Medium 0x7f1500fc
- int style TextAppearance_AppCompat_Medium_Inverse 0x7f1500fd
- int style TextAppearance_AppCompat_Menu 0x7f1500fe
- int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f1500ff
- int style TextAppearance_AppCompat_SearchResult_Title 0x7f150100
- int style TextAppearance_AppCompat_Small 0x7f150101
- int style TextAppearance_AppCompat_Small_Inverse 0x7f150102
- int style TextAppearance_AppCompat_Subhead 0x7f150103
- int style TextAppearance_AppCompat_Subhead_Inverse 0x7f150104
- int style TextAppearance_AppCompat_Title 0x7f150105
- int style TextAppearance_AppCompat_Title_Inverse 0x7f150106
- int style TextAppearance_AppCompat_Tooltip 0x7f150107
- int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150108
- int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f150109
- int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15010a
- int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15010b
- int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15010c
- int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f15010d
- int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f15010e
- int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f15010f
- int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f150110
- int style TextAppearance_AppCompat_Widget_Button 0x7f150111
- int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150112
- int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f150113
- int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150114
- int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f150115
- int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150116
- int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150117
- int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150118
- int style TextAppearance_AppCompat_Widget_Switch 0x7f150119
- int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f15011a
- int style TextAppearance_Compat_Notification 0x7f15011b
- int style TextAppearance_Compat_Notification_Info 0x7f15011c
- int style TextAppearance_Compat_Notification_Line2 0x7f15011d
- int style TextAppearance_Compat_Notification_Time 0x7f15011e
- int style TextAppearance_Compat_Notification_Title 0x7f15011f
- int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f150120
- int style TextAppearance_Design_Counter 0x7f150121
- int style TextAppearance_Design_Counter_Overflow 0x7f150122
- int style TextAppearance_Design_Error 0x7f150123
- int style TextAppearance_Design_HelperText 0x7f150124
- int style TextAppearance_Design_Hint 0x7f150125
- int style TextAppearance_Design_Snackbar_Message 0x7f150126
- int style TextAppearance_Design_Tab 0x7f150127
- int style TextAppearance_MaterialComponents_Body1 0x7f150128
- int style TextAppearance_MaterialComponents_Body2 0x7f150129
- int style TextAppearance_MaterialComponents_Button 0x7f15012a
- int style TextAppearance_MaterialComponents_Caption 0x7f15012b
- int style TextAppearance_MaterialComponents_Chip 0x7f15012c
- int style TextAppearance_MaterialComponents_Headline1 0x7f15012d
- int style TextAppearance_MaterialComponents_Headline2 0x7f15012e
- int style TextAppearance_MaterialComponents_Headline3 0x7f15012f
- int style TextAppearance_MaterialComponents_Headline4 0x7f150130
- int style TextAppearance_MaterialComponents_Headline5 0x7f150131
- int style TextAppearance_MaterialComponents_Headline6 0x7f150132
- int style TextAppearance_MaterialComponents_Overline 0x7f150133
- int style TextAppearance_MaterialComponents_Subtitle1 0x7f150134
- int style TextAppearance_MaterialComponents_Subtitle2 0x7f150135
- int style TextAppearance_MaterialComponents_Tab 0x7f150136
- int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f150137
- int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f150138
- int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f150139
- int style ThemeOverlay_AppCompat 0x7f15013a
- int style ThemeOverlay_AppCompat_ActionBar 0x7f15013b
- int style ThemeOverlay_AppCompat_Dark 0x7f15013c
- int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f15013d
- int style ThemeOverlay_AppCompat_Dialog 0x7f15013e
- int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f15013f
- int style ThemeOverlay_AppCompat_Light 0x7f150140
- int style ThemeOverlay_MaterialComponents 0x7f150141
- int style ThemeOverlay_MaterialComponents_ActionBar 0x7f150142
- int style ThemeOverlay_MaterialComponents_Dark 0x7f150143
- int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f150144
- int style ThemeOverlay_MaterialComponents_Dialog 0x7f150145
- int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150146
- int style ThemeOverlay_MaterialComponents_Light 0x7f150147
- int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f150148
- int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f150149
- int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f15014a
- int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f15014b
- int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f15014c
- int style Theme_AppCompat 0x7f15014d
- int style Theme_AppCompat_CompactMenu 0x7f15014e
- int style Theme_AppCompat_DayNight 0x7f15014f
- int style Theme_AppCompat_DayNight_DarkActionBar 0x7f150150
- int style Theme_AppCompat_DayNight_Dialog 0x7f150151
- int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f150152
- int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f150153
- int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f150154
- int style Theme_AppCompat_DayNight_NoActionBar 0x7f150155
- int style Theme_AppCompat_Dialog 0x7f150156
- int style Theme_AppCompat_DialogWhenLarge 0x7f150157
- int style Theme_AppCompat_Dialog_Alert 0x7f150158
- int style Theme_AppCompat_Dialog_MinWidth 0x7f150159
- int style Theme_AppCompat_Light 0x7f15015a
- int style Theme_AppCompat_Light_DarkActionBar 0x7f15015b
- int style Theme_AppCompat_Light_Dialog 0x7f15015c
- int style Theme_AppCompat_Light_DialogWhenLarge 0x7f15015d
- int style Theme_AppCompat_Light_Dialog_Alert 0x7f15015e
- int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f15015f
- int style Theme_AppCompat_Light_NoActionBar 0x7f150160
- int style Theme_AppCompat_NoActionBar 0x7f150161
- int style Theme_Design 0x7f150162
- int style Theme_Design_BottomSheetDialog 0x7f150163
- int style Theme_Design_Light 0x7f150164
- int style Theme_Design_Light_BottomSheetDialog 0x7f150165
- int style Theme_Design_Light_NoActionBar 0x7f150166
- int style Theme_Design_NoActionBar 0x7f150167
- int style Theme_MaterialComponents 0x7f150168
- int style Theme_MaterialComponents_BottomSheetDialog 0x7f150169
- int style Theme_MaterialComponents_Bridge 0x7f15016a
- int style Theme_MaterialComponents_CompactMenu 0x7f15016b
- int style Theme_MaterialComponents_Dialog 0x7f15016c
- int style Theme_MaterialComponents_DialogWhenLarge 0x7f15016d
- int style Theme_MaterialComponents_Dialog_Alert 0x7f15016e
- int style Theme_MaterialComponents_Dialog_MinWidth 0x7f15016f
- int style Theme_MaterialComponents_Light 0x7f150170
- int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f150171
- int style Theme_MaterialComponents_Light_Bridge 0x7f150172
- int style Theme_MaterialComponents_Light_DarkActionBar 0x7f150173
- int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150174
- int style Theme_MaterialComponents_Light_Dialog 0x7f150175
- int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150176
- int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f150177
- int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150178
- int style Theme_MaterialComponents_Light_NoActionBar 0x7f150179
- int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f15017a
- int style Theme_MaterialComponents_NoActionBar 0x7f15017b
- int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f15017c
- int style TopAnimStyle 0x7f15017d
- int style TransparentDialogStyle 0x7f15017e
- int style Widget_AppCompat_ActionBar 0x7f15017f
- int style Widget_AppCompat_ActionBar_Solid 0x7f150180
- int style Widget_AppCompat_ActionBar_TabBar 0x7f150181
- int style Widget_AppCompat_ActionBar_TabText 0x7f150182
- int style Widget_AppCompat_ActionBar_TabView 0x7f150183
- int style Widget_AppCompat_ActionButton 0x7f150184
- int style Widget_AppCompat_ActionButton_CloseMode 0x7f150185
- int style Widget_AppCompat_ActionButton_Overflow 0x7f150186
- int style Widget_AppCompat_ActionMode 0x7f150187
- int style Widget_AppCompat_ActivityChooserView 0x7f150188
- int style Widget_AppCompat_AutoCompleteTextView 0x7f150189
- int style Widget_AppCompat_Button 0x7f15018a
- int style Widget_AppCompat_ButtonBar 0x7f15018b
- int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f15018c
- int style Widget_AppCompat_Button_Borderless 0x7f15018d
- int style Widget_AppCompat_Button_Borderless_Colored 0x7f15018e
- int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f15018f
- int style Widget_AppCompat_Button_Colored 0x7f150190
- int style Widget_AppCompat_Button_Small 0x7f150191
- int style Widget_AppCompat_CompoundButton_CheckBox 0x7f150192
- int style Widget_AppCompat_CompoundButton_RadioButton 0x7f150193
- int style Widget_AppCompat_CompoundButton_Switch 0x7f150194
- int style Widget_AppCompat_DrawerArrowToggle 0x7f150195
- int style Widget_AppCompat_DropDownItem_Spinner 0x7f150196
- int style Widget_AppCompat_EditText 0x7f150197
- int style Widget_AppCompat_ImageButton 0x7f150198
- int style Widget_AppCompat_Light_ActionBar 0x7f150199
- int style Widget_AppCompat_Light_ActionBar_Solid 0x7f15019a
- int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f15019b
- int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f15019c
- int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f15019d
- int style Widget_AppCompat_Light_ActionBar_TabText 0x7f15019e
- int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f15019f
- int style Widget_AppCompat_Light_ActionBar_TabView 0x7f1501a0
- int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f1501a1
- int style Widget_AppCompat_Light_ActionButton 0x7f1501a2
- int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f1501a3
- int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f1501a4
- int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f1501a5
- int style Widget_AppCompat_Light_ActivityChooserView 0x7f1501a6
- int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f1501a7
- int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f1501a8
- int style Widget_AppCompat_Light_ListPopupWindow 0x7f1501a9
- int style Widget_AppCompat_Light_ListView_DropDown 0x7f1501aa
- int style Widget_AppCompat_Light_PopupMenu 0x7f1501ab
- int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1501ac
- int style Widget_AppCompat_Light_SearchView 0x7f1501ad
- int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f1501ae
- int style Widget_AppCompat_ListMenuView 0x7f1501af
- int style Widget_AppCompat_ListPopupWindow 0x7f1501b0
- int style Widget_AppCompat_ListView 0x7f1501b1
- int style Widget_AppCompat_ListView_DropDown 0x7f1501b2
- int style Widget_AppCompat_ListView_Menu 0x7f1501b3
- int style Widget_AppCompat_PopupMenu 0x7f1501b4
- int style Widget_AppCompat_PopupMenu_Overflow 0x7f1501b5
- int style Widget_AppCompat_PopupWindow 0x7f1501b6
- int style Widget_AppCompat_ProgressBar 0x7f1501b7
- int style Widget_AppCompat_ProgressBar_Horizontal 0x7f1501b8
- int style Widget_AppCompat_RatingBar 0x7f1501b9
- int style Widget_AppCompat_RatingBar_Indicator 0x7f1501ba
- int style Widget_AppCompat_RatingBar_Small 0x7f1501bb
- int style Widget_AppCompat_SearchView 0x7f1501bc
- int style Widget_AppCompat_SearchView_ActionBar 0x7f1501bd
- int style Widget_AppCompat_SeekBar 0x7f1501be
- int style Widget_AppCompat_SeekBar_Discrete 0x7f1501bf
- int style Widget_AppCompat_Spinner 0x7f1501c0
- int style Widget_AppCompat_Spinner_DropDown 0x7f1501c1
- int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f1501c2
- int style Widget_AppCompat_Spinner_Underlined 0x7f1501c3
- int style Widget_AppCompat_TextView_SpinnerItem 0x7f1501c4
- int style Widget_AppCompat_Toolbar 0x7f1501c5
- int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f1501c6
- int style Widget_Compat_NotificationActionContainer 0x7f1501c7
- int style Widget_Compat_NotificationActionText 0x7f1501c8
- int style Widget_Design_AppBarLayout 0x7f1501c9
- int style Widget_Design_BottomNavigationView 0x7f1501ca
- int style Widget_Design_BottomSheet_Modal 0x7f1501cb
- int style Widget_Design_CollapsingToolbar 0x7f1501cc
- int style Widget_Design_FloatingActionButton 0x7f1501cd
- int style Widget_Design_NavigationView 0x7f1501ce
- int style Widget_Design_ScrimInsetsFrameLayout 0x7f1501cf
- int style Widget_Design_Snackbar 0x7f1501d0
- int style Widget_Design_TabLayout 0x7f1501d1
- int style Widget_Design_TextInputLayout 0x7f1501d2
- int style Widget_MaterialComponents_BottomAppBar 0x7f1501d3
- int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f1501d4
- int style Widget_MaterialComponents_BottomNavigationView 0x7f1501d5
- int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f1501d6
- int style Widget_MaterialComponents_BottomSheet_Modal 0x7f1501d7
- int style Widget_MaterialComponents_Button 0x7f1501d8
- int style Widget_MaterialComponents_Button_Icon 0x7f1501d9
- int style Widget_MaterialComponents_Button_OutlinedButton 0x7f1501da
- int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f1501db
- int style Widget_MaterialComponents_Button_TextButton 0x7f1501dc
- int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f1501dd
- int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f1501de
- int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f1501df
- int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f1501e0
- int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f1501e1
- int style Widget_MaterialComponents_CardView 0x7f1501e2
- int style Widget_MaterialComponents_ChipGroup 0x7f1501e3
- int style Widget_MaterialComponents_Chip_Action 0x7f1501e4
- int style Widget_MaterialComponents_Chip_Choice 0x7f1501e5
- int style Widget_MaterialComponents_Chip_Entry 0x7f1501e6
- int style Widget_MaterialComponents_Chip_Filter 0x7f1501e7
- int style Widget_MaterialComponents_FloatingActionButton 0x7f1501e8
- int style Widget_MaterialComponents_NavigationView 0x7f1501e9
- int style Widget_MaterialComponents_Snackbar 0x7f1501ea
- int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f1501eb
- int style Widget_MaterialComponents_TabLayout 0x7f1501ec
- int style Widget_MaterialComponents_TabLayout_Colored 0x7f1501ed
- int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f1501ee
- int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1501ef
- int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1501f0
- int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1501f1
- int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f1501f2
- int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f1501f3
- int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f1501f4
- int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f1501f5
- int style Widget_MaterialComponents_Toolbar 0x7f1501f6
- int style Widget_Support_CoordinatorLayout 0x7f1501f7
- int[] styleable ActionBar { 0x7f040032, 0x7f040033, 0x7f040034, 0x7f0400a1, 0x7f0400a2, 0x7f0400a3, 0x7f0400a4, 0x7f0400a5, 0x7f0400a6, 0x7f0400b4, 0x7f0400b9, 0x7f0400ba, 0x7f0400c5, 0x7f0400ef, 0x7f0400f4, 0x7f0400f9, 0x7f0400fa, 0x7f0400fc, 0x7f040106, 0x7f040111, 0x7f040134, 0x7f040140, 0x7f04015a, 0x7f04015e, 0x7f04015f, 0x7f04018e, 0x7f040191, 0x7f0401d6, 0x7f0401e0 }
- int styleable ActionBar_background 0
- int styleable ActionBar_backgroundSplit 1
- int styleable ActionBar_backgroundStacked 2
- int styleable ActionBar_contentInsetEnd 3
- int styleable ActionBar_contentInsetEndWithActions 4
- int styleable ActionBar_contentInsetLeft 5
- int styleable ActionBar_contentInsetRight 6
- int styleable ActionBar_contentInsetStart 7
- int styleable ActionBar_contentInsetStartWithNavigation 8
- int styleable ActionBar_customNavigationLayout 9
- int styleable ActionBar_displayOptions 10
- int styleable ActionBar_divider 11
- int styleable ActionBar_elevation 12
- int styleable ActionBar_height 13
- int styleable ActionBar_hideOnContentScroll 14
- int styleable ActionBar_homeAsUpIndicator 15
- int styleable ActionBar_homeLayout 16
- int styleable ActionBar_icon 17
- int styleable ActionBar_indeterminateProgressStyle 18
- int styleable ActionBar_itemPadding 19
- int styleable ActionBar_logo 20
- int styleable ActionBar_navigationMode 21
- int styleable ActionBar_popupTheme 22
- int styleable ActionBar_progressBarPadding 23
- int styleable ActionBar_progressBarStyle 24
- int styleable ActionBar_subtitle 25
- int styleable ActionBar_subtitleTextStyle 26
- int styleable ActionBar_title 27
- int styleable ActionBar_titleTextStyle 28
- int[] styleable ActionBarLayout { 0x10100b3 }
- int styleable ActionBarLayout_android_layout_gravity 0
- int[] styleable ActionMenuItemView { 0x101013f }
- int styleable ActionMenuItemView_android_minWidth 0
- int[] styleable ActionMenuView { }
- int[] styleable ActionMode { 0x7f040032, 0x7f040033, 0x7f04008e, 0x7f0400ef, 0x7f040191, 0x7f0401e0 }
- int styleable ActionMode_background 0
- int styleable ActionMode_backgroundSplit 1
- int styleable ActionMode_closeItemLayout 2
- int styleable ActionMode_height 3
- int styleable ActionMode_subtitleTextStyle 4
- int styleable ActionMode_titleTextStyle 5
- int[] styleable ActivityChooserView { 0x7f0400ca, 0x7f040107 }
- int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
- int styleable ActivityChooserView_initialActivityCount 1
- int[] styleable AlertDialog { 0x10100f2, 0x7f040062, 0x7f040063, 0x7f04012b, 0x7f04012c, 0x7f04013d, 0x7f040176, 0x7f040177 }
- int styleable AlertDialog_android_layout 0
- int styleable AlertDialog_buttonIconDimen 1
- int styleable AlertDialog_buttonPanelSideLayout 2
- int styleable AlertDialog_listItemLayout 3
- int styleable AlertDialog_listLayout 4
- int styleable AlertDialog_multiChoiceItemLayout 5
- int styleable AlertDialog_showTitle 6
- int styleable AlertDialog_singleChoiceItemLayout 7
- int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
- int styleable AnimatedStateListDrawableCompat_android_constantSize 0
- int styleable AnimatedStateListDrawableCompat_android_dither 1
- int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2
- int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3
- int styleable AnimatedStateListDrawableCompat_android_variablePadding 4
- int styleable AnimatedStateListDrawableCompat_android_visible 5
- int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 }
- int styleable AnimatedStateListDrawableItem_android_drawable 0
- int styleable AnimatedStateListDrawableItem_android_id 1
- int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 }
- int styleable AnimatedStateListDrawableTransition_android_drawable 0
- int styleable AnimatedStateListDrawableTransition_android_fromId 1
- int styleable AnimatedStateListDrawableTransition_android_reversible 2
- int styleable AnimatedStateListDrawableTransition_android_toId 3
- int[] styleable AppBarLayout { 0x10100d4, 0x1010540, 0x101048f, 0x7f0400c5, 0x7f0400cb, 0x7f040126 }
- int styleable AppBarLayout_android_background 0
- int styleable AppBarLayout_android_keyboardNavigationCluster 1
- int styleable AppBarLayout_android_touchscreenBlocksFocus 2
- int styleable AppBarLayout_elevation 3
- int styleable AppBarLayout_expanded 4
- int styleable AppBarLayout_liftOnScroll 5
- int[] styleable AppBarLayoutStates { 0x7f040184, 0x7f040185, 0x7f040186, 0x7f040187 }
- int styleable AppBarLayoutStates_state_collapsed 0
- int styleable AppBarLayoutStates_state_collapsible 1
- int styleable AppBarLayoutStates_state_liftable 2
- int styleable AppBarLayoutStates_state_lifted 3
- int[] styleable AppBarLayout_Layout { 0x7f040124, 0x7f040125 }
- int styleable AppBarLayout_Layout_layout_scrollFlags 0
- int styleable AppBarLayout_Layout_layout_scrollInterpolator 1
- int[] styleable AppCompatImageView { 0x1010119, 0x7f040181, 0x7f0401d4, 0x7f0401d5 }
- int styleable AppCompatImageView_android_src 0
- int styleable AppCompatImageView_srcCompat 1
- int styleable AppCompatImageView_tint 2
- int styleable AppCompatImageView_tintMode 3
- int[] styleable AppCompatSeekBar { 0x1010142, 0x7f0401d1, 0x7f0401d2, 0x7f0401d3 }
- int styleable AppCompatSeekBar_android_thumb 0
- int styleable AppCompatSeekBar_tickMark 1
- int styleable AppCompatSeekBar_tickMarkTint 2
- int styleable AppCompatSeekBar_tickMarkTintMode 3
- int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 }
- int styleable AppCompatTextHelper_android_drawableBottom 0
- int styleable AppCompatTextHelper_android_drawableEnd 1
- int styleable AppCompatTextHelper_android_drawableLeft 2
- int styleable AppCompatTextHelper_android_drawableRight 3
- int styleable AppCompatTextHelper_android_drawableStart 4
- int styleable AppCompatTextHelper_android_drawableTop 5
- int styleable AppCompatTextHelper_android_textAppearance 6
- int[] styleable AppCompatTextView { 0x1010034, 0x7f04002d, 0x7f04002e, 0x7f04002f, 0x7f040030, 0x7f040031, 0x7f0400de, 0x7f0400e1, 0x7f040119, 0x7f040127, 0x7f0401b1 }
- int styleable AppCompatTextView_android_textAppearance 0
- int styleable AppCompatTextView_autoSizeMaxTextSize 1
- int styleable AppCompatTextView_autoSizeMinTextSize 2
- int styleable AppCompatTextView_autoSizePresetSizes 3
- int styleable AppCompatTextView_autoSizeStepGranularity 4
- int styleable AppCompatTextView_autoSizeTextType 5
- int styleable AppCompatTextView_firstBaselineToTopHeight 6
- int styleable AppCompatTextView_fontFamily 7
- int styleable AppCompatTextView_lastBaselineToBottomHeight 8
- int styleable AppCompatTextView_lineHeight 9
- int styleable AppCompatTextView_textAllCaps 10
- int[] styleable AppCompatTheme { 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040022, 0x7f040023, 0x7f040024, 0x7f040025, 0x7f040026, 0x10100ae, 0x1010057, 0x7f04002c, 0x7f04004e, 0x7f04005c, 0x7f04005d, 0x7f04005e, 0x7f04005f, 0x7f040060, 0x7f040064, 0x7f040065, 0x7f04006f, 0x7f040074, 0x7f040094, 0x7f040095, 0x7f040096, 0x7f040097, 0x7f040098, 0x7f040099, 0x7f04009a, 0x7f04009b, 0x7f04009c, 0x7f04009e, 0x7f0400ad, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f0400bb, 0x7f0400bd, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400f9, 0x7f040105, 0x7f040129, 0x7f04012a, 0x7f04012d, 0x7f04012e, 0x7f04012f, 0x7f040130, 0x7f040131, 0x7f040132, 0x7f040133, 0x7f040148, 0x7f040149, 0x7f04014a, 0x7f040159, 0x7f04015b, 0x7f040162, 0x7f040163, 0x7f040164, 0x7f040165, 0x7f04016e, 0x7f04016f, 0x7f040170, 0x7f040171, 0x7f04017e, 0x7f04017f, 0x7f040195, 0x7f0401bc, 0x7f0401bd, 0x7f0401be, 0x7f0401bf, 0x7f0401c1, 0x7f0401c2, 0x7f0401c3, 0x7f0401c4, 0x7f0401c7, 0x7f0401c8, 0x7f0401e2, 0x7f0401e3, 0x7f0401e4, 0x7f0401e5, 0x7f0401ec, 0x7f0401ee, 0x7f0401ef, 0x7f0401f0, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7 }
- int styleable AppCompatTheme_actionBarDivider 0
- int styleable AppCompatTheme_actionBarItemBackground 1
- int styleable AppCompatTheme_actionBarPopupTheme 2
- int styleable AppCompatTheme_actionBarSize 3
- int styleable AppCompatTheme_actionBarSplitStyle 4
- int styleable AppCompatTheme_actionBarStyle 5
- int styleable AppCompatTheme_actionBarTabBarStyle 6
- int styleable AppCompatTheme_actionBarTabStyle 7
- int styleable AppCompatTheme_actionBarTabTextStyle 8
- int styleable AppCompatTheme_actionBarTheme 9
- int styleable AppCompatTheme_actionBarWidgetTheme 10
- int styleable AppCompatTheme_actionButtonStyle 11
- int styleable AppCompatTheme_actionDropDownStyle 12
- int styleable AppCompatTheme_actionMenuTextAppearance 13
- int styleable AppCompatTheme_actionMenuTextColor 14
- int styleable AppCompatTheme_actionModeBackground 15
- int styleable AppCompatTheme_actionModeCloseButtonStyle 16
- int styleable AppCompatTheme_actionModeCloseDrawable 17
- int styleable AppCompatTheme_actionModeCopyDrawable 18
- int styleable AppCompatTheme_actionModeCutDrawable 19
- int styleable AppCompatTheme_actionModeFindDrawable 20
- int styleable AppCompatTheme_actionModePasteDrawable 21
- int styleable AppCompatTheme_actionModePopupWindowStyle 22
- int styleable AppCompatTheme_actionModeSelectAllDrawable 23
- int styleable AppCompatTheme_actionModeShareDrawable 24
- int styleable AppCompatTheme_actionModeSplitBackground 25
- int styleable AppCompatTheme_actionModeStyle 26
- int styleable AppCompatTheme_actionModeWebSearchDrawable 27
- int styleable AppCompatTheme_actionOverflowButtonStyle 28
- int styleable AppCompatTheme_actionOverflowMenuStyle 29
- int styleable AppCompatTheme_activityChooserViewStyle 30
- int styleable AppCompatTheme_alertDialogButtonGroupStyle 31
- int styleable AppCompatTheme_alertDialogCenterButtons 32
- int styleable AppCompatTheme_alertDialogStyle 33
- int styleable AppCompatTheme_alertDialogTheme 34
- int styleable AppCompatTheme_android_windowAnimationStyle 35
- int styleable AppCompatTheme_android_windowIsFloating 36
- int styleable AppCompatTheme_autoCompleteTextViewStyle 37
- int styleable AppCompatTheme_borderlessButtonStyle 38
- int styleable AppCompatTheme_buttonBarButtonStyle 39
- int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
- int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
- int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
- int styleable AppCompatTheme_buttonBarStyle 43
- int styleable AppCompatTheme_buttonStyle 44
- int styleable AppCompatTheme_buttonStyleSmall 45
- int styleable AppCompatTheme_checkboxStyle 46
- int styleable AppCompatTheme_checkedTextViewStyle 47
- int styleable AppCompatTheme_colorAccent 48
- int styleable AppCompatTheme_colorBackgroundFloating 49
- int styleable AppCompatTheme_colorButtonNormal 50
- int styleable AppCompatTheme_colorControlActivated 51
- int styleable AppCompatTheme_colorControlHighlight 52
- int styleable AppCompatTheme_colorControlNormal 53
- int styleable AppCompatTheme_colorError 54
- int styleable AppCompatTheme_colorPrimary 55
- int styleable AppCompatTheme_colorPrimaryDark 56
- int styleable AppCompatTheme_colorSwitchThumbNormal 57
- int styleable AppCompatTheme_controlBackground 58
- int styleable AppCompatTheme_dialogCornerRadius 59
- int styleable AppCompatTheme_dialogPreferredPadding 60
- int styleable AppCompatTheme_dialogTheme 61
- int styleable AppCompatTheme_dividerHorizontal 62
- int styleable AppCompatTheme_dividerVertical 63
- int styleable AppCompatTheme_dropDownListViewStyle 64
- int styleable AppCompatTheme_dropdownListPreferredItemHeight 65
- int styleable AppCompatTheme_editTextBackground 66
- int styleable AppCompatTheme_editTextColor 67
- int styleable AppCompatTheme_editTextStyle 68
- int styleable AppCompatTheme_homeAsUpIndicator 69
- int styleable AppCompatTheme_imageButtonStyle 70
- int styleable AppCompatTheme_listChoiceBackgroundIndicator 71
- int styleable AppCompatTheme_listDividerAlertDialog 72
- int styleable AppCompatTheme_listMenuViewStyle 73
- int styleable AppCompatTheme_listPopupWindowStyle 74
- int styleable AppCompatTheme_listPreferredItemHeight 75
- int styleable AppCompatTheme_listPreferredItemHeightLarge 76
- int styleable AppCompatTheme_listPreferredItemHeightSmall 77
- int styleable AppCompatTheme_listPreferredItemPaddingLeft 78
- int styleable AppCompatTheme_listPreferredItemPaddingRight 79
- int styleable AppCompatTheme_panelBackground 80
- int styleable AppCompatTheme_panelMenuListTheme 81
- int styleable AppCompatTheme_panelMenuListWidth 82
- int styleable AppCompatTheme_popupMenuStyle 83
- int styleable AppCompatTheme_popupWindowStyle 84
- int styleable AppCompatTheme_radioButtonStyle 85
- int styleable AppCompatTheme_ratingBarStyle 86
- int styleable AppCompatTheme_ratingBarStyleIndicator 87
- int styleable AppCompatTheme_ratingBarStyleSmall 88
- int styleable AppCompatTheme_searchViewStyle 89
- int styleable AppCompatTheme_seekBarStyle 90
- int styleable AppCompatTheme_selectableItemBackground 91
- int styleable AppCompatTheme_selectableItemBackgroundBorderless 92
- int styleable AppCompatTheme_spinnerDropDownItemStyle 93
- int styleable AppCompatTheme_spinnerStyle 94
- int styleable AppCompatTheme_switchStyle 95
- int styleable AppCompatTheme_textAppearanceLargePopupMenu 96
- int styleable AppCompatTheme_textAppearanceListItem 97
- int styleable AppCompatTheme_textAppearanceListItemSecondary 98
- int styleable AppCompatTheme_textAppearanceListItemSmall 99
- int styleable AppCompatTheme_textAppearancePopupMenuHeader 100
- int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101
- int styleable AppCompatTheme_textAppearanceSearchResultTitle 102
- int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103
- int styleable AppCompatTheme_textColorAlertDialogListItem 104
- int styleable AppCompatTheme_textColorSearchUrl 105
- int styleable AppCompatTheme_toolbarNavigationButtonStyle 106
- int styleable AppCompatTheme_toolbarStyle 107
- int styleable AppCompatTheme_tooltipForegroundColor 108
- int styleable AppCompatTheme_tooltipFrameBackground 109
- int styleable AppCompatTheme_viewInflaterClass 110
- int styleable AppCompatTheme_windowActionBar 111
- int styleable AppCompatTheme_windowActionBarOverlay 112
- int styleable AppCompatTheme_windowActionModeOverlay 113
- int styleable AppCompatTheme_windowFixedHeightMajor 114
- int styleable AppCompatTheme_windowFixedHeightMinor 115
- int styleable AppCompatTheme_windowFixedWidthMajor 116
- int styleable AppCompatTheme_windowFixedWidthMinor 117
- int styleable AppCompatTheme_windowMinWidthMajor 118
- int styleable AppCompatTheme_windowMinWidthMinor 119
- int styleable AppCompatTheme_windowNoTitle 120
- int[] styleable BottomAppBar { 0x7f040035, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f0400f5 }
- int styleable BottomAppBar_backgroundTint 0
- int styleable BottomAppBar_fabAlignmentMode 1
- int styleable BottomAppBar_fabCradleMargin 2
- int styleable BottomAppBar_fabCradleRoundedCornerRadius 3
- int styleable BottomAppBar_fabCradleVerticalOffset 4
- int styleable BottomAppBar_hideOnScroll 5
- int[] styleable BottomNavigationView { 0x7f0400c5, 0x7f04010b, 0x7f04010d, 0x7f04010f, 0x7f040110, 0x7f040114, 0x7f040115, 0x7f040116, 0x7f040118, 0x7f04013c }
- int styleable BottomNavigationView_elevation 0
- int styleable BottomNavigationView_itemBackground 1
- int styleable BottomNavigationView_itemHorizontalTranslationEnabled 2
- int styleable BottomNavigationView_itemIconSize 3
- int styleable BottomNavigationView_itemIconTint 4
- int styleable BottomNavigationView_itemTextAppearanceActive 5
- int styleable BottomNavigationView_itemTextAppearanceInactive 6
- int styleable BottomNavigationView_itemTextColor 7
- int styleable BottomNavigationView_labelVisibilityMode 8
- int styleable BottomNavigationView_menu 9
- int[] styleable BottomSheetBehavior_Layout { 0x7f040048, 0x7f040049, 0x7f04004b, 0x7f04004c }
- int styleable BottomSheetBehavior_Layout_behavior_fitToContents 0
- int styleable BottomSheetBehavior_Layout_behavior_hideable 1
- int styleable BottomSheetBehavior_Layout_behavior_peekHeight 2
- int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 3
- int[] styleable ButtonBarLayout { 0x7f040027 }
- int styleable ButtonBarLayout_allowStacking 0
- int[] styleable CardView { 0x1010140, 0x101013f, 0x7f040068, 0x7f040069, 0x7f04006a, 0x7f04006b, 0x7f04006c, 0x7f04006d, 0x7f0400a7, 0x7f0400a8, 0x7f0400a9, 0x7f0400aa, 0x7f0400ab }
- int styleable CardView_android_minHeight 0
- int styleable CardView_android_minWidth 1
- int styleable CardView_cardBackgroundColor 2
- int styleable CardView_cardCornerRadius 3
- int styleable CardView_cardElevation 4
- int styleable CardView_cardMaxElevation 5
- int styleable CardView_cardPreventCornerOverlap 6
- int styleable CardView_cardUseCompatPadding 7
- int styleable CardView_contentPadding 8
- int styleable CardView_contentPaddingBottom 9
- int styleable CardView_contentPaddingLeft 10
- int styleable CardView_contentPaddingRight 11
- int styleable CardView_contentPaddingTop 12
- int[] styleable Chip { 0x10101e5, 0x10100ab, 0x101011f, 0x101014f, 0x1010034, 0x7f040071, 0x7f040072, 0x7f040073, 0x7f040075, 0x7f040076, 0x7f040077, 0x7f040079, 0x7f04007a, 0x7f04007b, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f040083, 0x7f040084, 0x7f040085, 0x7f040087, 0x7f040088, 0x7f040089, 0x7f04008a, 0x7f04008b, 0x7f04008c, 0x7f04008d, 0x7f0400f3, 0x7f0400fd, 0x7f040101, 0x7f040168, 0x7f040174, 0x7f0401c9, 0x7f0401cb }
- int styleable Chip_android_checkable 0
- int styleable Chip_android_ellipsize 1
- int styleable Chip_android_maxWidth 2
- int styleable Chip_android_text 3
- int styleable Chip_android_textAppearance 4
- int styleable Chip_checkedIcon 5
- int styleable Chip_checkedIconEnabled 6
- int styleable Chip_checkedIconVisible 7
- int styleable Chip_chipBackgroundColor 8
- int styleable Chip_chipCornerRadius 9
- int styleable Chip_chipEndPadding 10
- int styleable Chip_chipIcon 11
- int styleable Chip_chipIconEnabled 12
- int styleable Chip_chipIconSize 13
- int styleable Chip_chipIconTint 14
- int styleable Chip_chipIconVisible 15
- int styleable Chip_chipMinHeight 16
- int styleable Chip_chipStartPadding 17
- int styleable Chip_chipStrokeColor 18
- int styleable Chip_chipStrokeWidth 19
- int styleable Chip_closeIcon 20
- int styleable Chip_closeIconEnabled 21
- int styleable Chip_closeIconEndPadding 22
- int styleable Chip_closeIconSize 23
- int styleable Chip_closeIconStartPadding 24
- int styleable Chip_closeIconTint 25
- int styleable Chip_closeIconVisible 26
- int styleable Chip_hideMotionSpec 27
- int styleable Chip_iconEndPadding 28
- int styleable Chip_iconStartPadding 29
- int styleable Chip_rippleColor 30
- int styleable Chip_showMotionSpec 31
- int styleable Chip_textEndPadding 32
- int styleable Chip_textStartPadding 33
- int[] styleable ChipGroup { 0x7f040070, 0x7f04007f, 0x7f040080, 0x7f040081, 0x7f040178, 0x7f040179 }
- int styleable ChipGroup_checkedChip 0
- int styleable ChipGroup_chipSpacing 1
- int styleable ChipGroup_chipSpacingHorizontal 2
- int styleable ChipGroup_chipSpacingVertical 3
- int styleable ChipGroup_singleLine 4
- int styleable ChipGroup_singleSelection 5
- int[] styleable CollapsingToolbarLayout { 0x7f040091, 0x7f040092, 0x7f0400ac, 0x7f0400cc, 0x7f0400cd, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f040169, 0x7f04016b, 0x7f040189, 0x7f0401d6, 0x7f0401d7, 0x7f0401e1 }
- int styleable CollapsingToolbarLayout_collapsedTitleGravity 0
- int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1
- int styleable CollapsingToolbarLayout_contentScrim 2
- int styleable CollapsingToolbarLayout_expandedTitleGravity 3
- int styleable CollapsingToolbarLayout_expandedTitleMargin 4
- int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5
- int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 6
- int styleable CollapsingToolbarLayout_expandedTitleMarginStart 7
- int styleable CollapsingToolbarLayout_expandedTitleMarginTop 8
- int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 9
- int styleable CollapsingToolbarLayout_scrimAnimationDuration 10
- int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 11
- int styleable CollapsingToolbarLayout_statusBarScrim 12
- int styleable CollapsingToolbarLayout_title 13
- int styleable CollapsingToolbarLayout_titleEnabled 14
- int styleable CollapsingToolbarLayout_toolbarId 15
- int[] styleable CollapsingToolbarLayout_Layout { 0x7f04011f, 0x7f040120 }
- int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0
- int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1
- int[] styleable ColorStateListItem { 0x7f040028, 0x101031f, 0x10101a5 }
- int styleable ColorStateListItem_alpha 0
- int styleable ColorStateListItem_android_alpha 1
- int styleable ColorStateListItem_android_color 2
- int[] styleable CompoundButton { 0x1010107, 0x7f040066, 0x7f040067 }
- int styleable CompoundButton_android_button 0
- int styleable CompoundButton_buttonTint 1
- int styleable CompoundButton_buttonTintMode 2
- int[] styleable CoordinatorLayout { 0x7f040117, 0x7f040188 }
- int styleable CoordinatorLayout_keylines 0
- int styleable CoordinatorLayout_statusBarBackground 1
- int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f04011c, 0x7f04011d, 0x7f04011e, 0x7f040121, 0x7f040122, 0x7f040123 }
- int styleable CoordinatorLayout_Layout_android_layout_gravity 0
- int styleable CoordinatorLayout_Layout_layout_anchor 1
- int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
- int styleable CoordinatorLayout_Layout_layout_behavior 3
- int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
- int styleable CoordinatorLayout_Layout_layout_insetEdge 5
- int styleable CoordinatorLayout_Layout_layout_keyline 6
- int[] styleable DesignTheme { 0x7f040051, 0x7f040052 }
- int styleable DesignTheme_bottomSheetDialogTheme 0
- int styleable DesignTheme_bottomSheetStyle 1
- int[] styleable DrawerArrowToggle { 0x7f04002a, 0x7f04002b, 0x7f040037, 0x7f040093, 0x7f0400be, 0x7f0400ec, 0x7f04017d, 0x7f0401cd }
- int styleable DrawerArrowToggle_arrowHeadLength 0
- int styleable DrawerArrowToggle_arrowShaftLength 1
- int styleable DrawerArrowToggle_barLength 2
- int styleable DrawerArrowToggle_color 3
- int styleable DrawerArrowToggle_drawableSize 4
- int styleable DrawerArrowToggle_gapBetweenBars 5
- int styleable DrawerArrowToggle_spinBars 6
- int styleable DrawerArrowToggle_thickness 7
- int[] styleable FloatingActionButton { 0x7f040035, 0x7f040036, 0x7f04004d, 0x7f0400c5, 0x7f0400d7, 0x7f0400d8, 0x7f0400f3, 0x7f0400fb, 0x7f04013a, 0x7f04015d, 0x7f040168, 0x7f040174, 0x7f0401eb }
- int styleable FloatingActionButton_backgroundTint 0
- int styleable FloatingActionButton_backgroundTintMode 1
- int styleable FloatingActionButton_borderWidth 2
- int styleable FloatingActionButton_elevation 3
- int styleable FloatingActionButton_fabCustomSize 4
- int styleable FloatingActionButton_fabSize 5
- int styleable FloatingActionButton_hideMotionSpec 6
- int styleable FloatingActionButton_hoveredFocusedTranslationZ 7
- int styleable FloatingActionButton_maxImageSize 8
- int styleable FloatingActionButton_pressedTranslationZ 9
- int styleable FloatingActionButton_rippleColor 10
- int styleable FloatingActionButton_showMotionSpec 11
- int styleable FloatingActionButton_useCompatPadding 12
- int[] styleable FloatingActionButton_Behavior_Layout { 0x7f040047 }
- int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0
- int[] styleable FlowLayout { 0x7f040112, 0x7f040128 }
- int styleable FlowLayout_itemSpacing 0
- int styleable FlowLayout_lineSpacing 1
- int[] styleable FontFamily { 0x7f0400e2, 0x7f0400e3, 0x7f0400e4, 0x7f0400e5, 0x7f0400e6, 0x7f0400e7 }
- int styleable FontFamily_fontProviderAuthority 0
- int styleable FontFamily_fontProviderCerts 1
- int styleable FontFamily_fontProviderFetchStrategy 2
- int styleable FontFamily_fontProviderFetchTimeout 3
- int styleable FontFamily_fontProviderPackage 4
- int styleable FontFamily_fontProviderQuery 5
- int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f0400e0, 0x7f0400e8, 0x7f0400e9, 0x7f0400ea, 0x7f0401ea }
- int styleable FontFamilyFont_android_font 0
- int styleable FontFamilyFont_android_fontStyle 1
- int styleable FontFamilyFont_android_fontVariationSettings 2
- int styleable FontFamilyFont_android_fontWeight 3
- int styleable FontFamilyFont_android_ttcIndex 4
- int styleable FontFamilyFont_font 5
- int styleable FontFamilyFont_fontStyle 6
- int styleable FontFamilyFont_fontVariationSettings 7
- int styleable FontFamilyFont_fontWeight 8
- int styleable FontFamilyFont_ttcIndex 9
- int[] styleable ForegroundLinearLayout { 0x1010109, 0x1010200, 0x7f0400eb }
- int styleable ForegroundLinearLayout_android_foreground 0
- int styleable ForegroundLinearLayout_android_foregroundGravity 1
- int styleable ForegroundLinearLayout_foregroundInsidePadding 2
- int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
- int styleable GradientColor_android_centerColor 0
- int styleable GradientColor_android_centerX 1
- int styleable GradientColor_android_centerY 2
- int styleable GradientColor_android_endColor 3
- int styleable GradientColor_android_endX 4
- int styleable GradientColor_android_endY 5
- int styleable GradientColor_android_gradientRadius 6
- int styleable GradientColor_android_startColor 7
- int styleable GradientColor_android_startX 8
- int styleable GradientColor_android_startY 9
- int styleable GradientColor_android_tileMode 10
- int styleable GradientColor_android_type 11
- int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
- int styleable GradientColorItem_android_color 0
- int styleable GradientColorItem_android_offset 1
- int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f0400ba, 0x7f0400bc, 0x7f04013b, 0x7f040173 }
- int styleable LinearLayoutCompat_android_baselineAligned 0
- int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1
- int styleable LinearLayoutCompat_android_gravity 2
- int styleable LinearLayoutCompat_android_orientation 3
- int styleable LinearLayoutCompat_android_weightSum 4
- int styleable LinearLayoutCompat_divider 5
- int styleable LinearLayoutCompat_dividerPadding 6
- int styleable LinearLayoutCompat_measureWithLargestChild 7
- int styleable LinearLayoutCompat_showDividers 8
- int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 }
- int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
- int styleable LinearLayoutCompat_Layout_android_layout_height 1
- int styleable LinearLayoutCompat_Layout_android_layout_weight 2
- int styleable LinearLayoutCompat_Layout_android_layout_width 3
- int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad }
- int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
- int styleable ListPopupWindow_android_dropDownVerticalOffset 1
- int[] styleable MaterialButton { 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x7f040035, 0x7f040036, 0x7f0400af, 0x7f0400fc, 0x7f0400fe, 0x7f0400ff, 0x7f040100, 0x7f040102, 0x7f040103, 0x7f040168, 0x7f04018a, 0x7f04018b }
- int styleable MaterialButton_android_insetBottom 0
- int styleable MaterialButton_android_insetLeft 1
- int styleable MaterialButton_android_insetRight 2
- int styleable MaterialButton_android_insetTop 3
- int styleable MaterialButton_backgroundTint 4
- int styleable MaterialButton_backgroundTintMode 5
- int styleable MaterialButton_cornerRadius 6
- int styleable MaterialButton_icon 7
- int styleable MaterialButton_iconGravity 8
- int styleable MaterialButton_iconPadding 9
- int styleable MaterialButton_iconSize 10
- int styleable MaterialButton_iconTint 11
- int styleable MaterialButton_iconTintMode 12
- int styleable MaterialButton_rippleColor 13
- int styleable MaterialButton_strokeColor 14
- int styleable MaterialButton_strokeWidth 15
- int[] styleable MaterialCardView { 0x7f04018a, 0x7f04018b }
- int styleable MaterialCardView_strokeColor 0
- int styleable MaterialCardView_strokeWidth 1
- int[] styleable MaterialComponentsTheme { 0x7f040051, 0x7f040052, 0x7f040078, 0x7f040082, 0x7f040086, 0x7f040094, 0x7f040095, 0x7f04009b, 0x7f04009c, 0x7f04009d, 0x7f0400c4, 0x7f0400df, 0x7f040136, 0x7f040137, 0x7f040141, 0x7f04016a, 0x7f04017a, 0x7f0401ad, 0x7f0401b2, 0x7f0401b3, 0x7f0401b4, 0x7f0401b5, 0x7f0401b6, 0x7f0401b7, 0x7f0401b8, 0x7f0401b9, 0x7f0401ba, 0x7f0401bb, 0x7f0401c0, 0x7f0401c5, 0x7f0401c6, 0x7f0401ca }
- int styleable MaterialComponentsTheme_bottomSheetDialogTheme 0
- int styleable MaterialComponentsTheme_bottomSheetStyle 1
- int styleable MaterialComponentsTheme_chipGroupStyle 2
- int styleable MaterialComponentsTheme_chipStandaloneStyle 3
- int styleable MaterialComponentsTheme_chipStyle 4
- int styleable MaterialComponentsTheme_colorAccent 5
- int styleable MaterialComponentsTheme_colorBackgroundFloating 6
- int styleable MaterialComponentsTheme_colorPrimary 7
- int styleable MaterialComponentsTheme_colorPrimaryDark 8
- int styleable MaterialComponentsTheme_colorSecondary 9
- int styleable MaterialComponentsTheme_editTextStyle 10
- int styleable MaterialComponentsTheme_floatingActionButtonStyle 11
- int styleable MaterialComponentsTheme_materialButtonStyle 12
- int styleable MaterialComponentsTheme_materialCardViewStyle 13
- int styleable MaterialComponentsTheme_navigationViewStyle 14
- int styleable MaterialComponentsTheme_scrimBackground 15
- int styleable MaterialComponentsTheme_snackbarButtonStyle 16
- int styleable MaterialComponentsTheme_tabStyle 17
- int styleable MaterialComponentsTheme_textAppearanceBody1 18
- int styleable MaterialComponentsTheme_textAppearanceBody2 19
- int styleable MaterialComponentsTheme_textAppearanceButton 20
- int styleable MaterialComponentsTheme_textAppearanceCaption 21
- int styleable MaterialComponentsTheme_textAppearanceHeadline1 22
- int styleable MaterialComponentsTheme_textAppearanceHeadline2 23
- int styleable MaterialComponentsTheme_textAppearanceHeadline3 24
- int styleable MaterialComponentsTheme_textAppearanceHeadline4 25
- int styleable MaterialComponentsTheme_textAppearanceHeadline5 26
- int styleable MaterialComponentsTheme_textAppearanceHeadline6 27
- int styleable MaterialComponentsTheme_textAppearanceOverline 28
- int styleable MaterialComponentsTheme_textAppearanceSubtitle1 29
- int styleable MaterialComponentsTheme_textAppearanceSubtitle2 30
- int styleable MaterialComponentsTheme_textInputStyle 31
- int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 }
- int styleable MenuGroup_android_checkableBehavior 0
- int styleable MenuGroup_android_enabled 1
- int styleable MenuGroup_android_id 2
- int styleable MenuGroup_android_menuCategory 3
- int styleable MenuGroup_android_orderInCategory 4
- int styleable MenuGroup_android_visible 5
- int[] styleable MenuItem { 0x7f04000e, 0x7f040020, 0x7f040021, 0x7f040029, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f0400a0, 0x7f040102, 0x7f040103, 0x7f040142, 0x7f040172, 0x7f0401e6 }
- int styleable MenuItem_actionLayout 0
- int styleable MenuItem_actionProviderClass 1
- int styleable MenuItem_actionViewClass 2
- int styleable MenuItem_alphabeticModifiers 3
- int styleable MenuItem_android_alphabeticShortcut 4
- int styleable MenuItem_android_checkable 5
- int styleable MenuItem_android_checked 6
- int styleable MenuItem_android_enabled 7
- int styleable MenuItem_android_icon 8
- int styleable MenuItem_android_id 9
- int styleable MenuItem_android_menuCategory 10
- int styleable MenuItem_android_numericShortcut 11
- int styleable MenuItem_android_onClick 12
- int styleable MenuItem_android_orderInCategory 13
- int styleable MenuItem_android_title 14
- int styleable MenuItem_android_titleCondensed 15
- int styleable MenuItem_android_visible 16
- int styleable MenuItem_contentDescription 17
- int styleable MenuItem_iconTint 18
- int styleable MenuItem_iconTintMode 19
- int styleable MenuItem_numericModifiers 20
- int styleable MenuItem_showAsAction 21
- int styleable MenuItem_tooltipText 22
- int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f04015c, 0x7f04018c }
- int styleable MenuView_android_headerBackground 0
- int styleable MenuView_android_horizontalDivider 1
- int styleable MenuView_android_itemBackground 2
- int styleable MenuView_android_itemIconDisabledAlpha 3
- int styleable MenuView_android_itemTextAppearance 4
- int styleable MenuView_android_verticalDivider 5
- int styleable MenuView_android_windowAnimationStyle 6
- int styleable MenuView_preserveIconSpacing 7
- int styleable MenuView_subMenuArrow 8
- int[] styleable NavigationView { 0x10100d4, 0x10100dd, 0x101011f, 0x7f0400c5, 0x7f0400ee, 0x7f04010b, 0x7f04010c, 0x7f04010e, 0x7f040110, 0x7f040113, 0x7f040116, 0x7f04013c }
- int styleable NavigationView_android_background 0
- int styleable NavigationView_android_fitsSystemWindows 1
- int styleable NavigationView_android_maxWidth 2
- int styleable NavigationView_elevation 3
- int styleable NavigationView_headerLayout 4
- int styleable NavigationView_itemBackground 5
- int styleable NavigationView_itemHorizontalPadding 6
- int styleable NavigationView_itemIconPadding 7
- int styleable NavigationView_itemIconTint 8
- int styleable NavigationView_itemTextAppearance 9
- int styleable NavigationView_itemTextColor 10
- int styleable NavigationView_menu 11
- int[] styleable NumberProgressBar { 0x7f040150, 0x7f040151, 0x7f040152, 0x7f040153, 0x7f040154, 0x7f040155, 0x7f040156, 0x7f040157, 0x7f040158 }
- int styleable NumberProgressBar_pb_maxProgress 0
- int styleable NumberProgressBar_pb_progress 1
- int styleable NumberProgressBar_pb_reachedColor 2
- int styleable NumberProgressBar_pb_reachedHeight 3
- int styleable NumberProgressBar_pb_textColor 4
- int styleable NumberProgressBar_pb_textOffset 5
- int styleable NumberProgressBar_pb_textSize 6
- int styleable NumberProgressBar_pb_unreachedColor 7
- int styleable NumberProgressBar_pb_unreachedHeight 8
- int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f040143 }
- int styleable PopupWindow_android_popupAnimationStyle 0
- int styleable PopupWindow_android_popupBackground 1
- int styleable PopupWindow_overlapAnchor 2
- int[] styleable PopupWindowBackgroundState { 0x7f040183 }
- int styleable PopupWindowBackgroundState_state_above_anchor 0
- int[] styleable RecycleListView { 0x7f040144, 0x7f040147 }
- int styleable RecycleListView_paddingBottomNoButtons 0
- int styleable RecycleListView_paddingTopNoTitle 1
- int[] styleable RecyclerView { 0x10100f1, 0x10100c4, 0x7f0400d9, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f04011b, 0x7f040167, 0x7f04017c, 0x7f040182 }
- int styleable RecyclerView_android_descendantFocusability 0
- int styleable RecyclerView_android_orientation 1
- int styleable RecyclerView_fastScrollEnabled 2
- int styleable RecyclerView_fastScrollHorizontalThumbDrawable 3
- int styleable RecyclerView_fastScrollHorizontalTrackDrawable 4
- int styleable RecyclerView_fastScrollVerticalThumbDrawable 5
- int styleable RecyclerView_fastScrollVerticalTrackDrawable 6
- int styleable RecyclerView_layoutManager 7
- int styleable RecyclerView_reverseLayout 8
- int styleable RecyclerView_spanCount 9
- int styleable RecyclerView_stackFromEnd 10
- int[] styleable RegexEditText { 0x7f040108, 0x7f040166 }
- int styleable RegexEditText_inputRegex 0
- int styleable RegexEditText_regexType 1
- int[] styleable ScrimInsetsFrameLayout { 0x7f040109 }
- int styleable ScrimInsetsFrameLayout_insetForeground 0
- int[] styleable ScrollingViewBehavior_Layout { 0x7f04004a }
- int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0
- int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f040087, 0x7f04009f, 0x7f0400b5, 0x7f0400ed, 0x7f040104, 0x7f04011a, 0x7f040160, 0x7f040161, 0x7f04016c, 0x7f04016d, 0x7f04018d, 0x7f040192, 0x7f0401ed }
- int styleable SearchView_android_focusable 0
- int styleable SearchView_android_imeOptions 1
- int styleable SearchView_android_inputType 2
- int styleable SearchView_android_maxWidth 3
- int styleable SearchView_closeIcon 4
- int styleable SearchView_commitIcon 5
- int styleable SearchView_defaultQueryHint 6
- int styleable SearchView_goIcon 7
- int styleable SearchView_iconifiedByDefault 8
- int styleable SearchView_layout 9
- int styleable SearchView_queryBackground 10
- int styleable SearchView_queryHint 11
- int styleable SearchView_searchHintIcon 12
- int styleable SearchView_searchIcon 13
- int styleable SearchView_submitBackground 14
- int styleable SearchView_suggestionRowLayout 15
- int styleable SearchView_voiceIcon 16
- int[] styleable SettingBar { 0x7f040038, 0x7f040039, 0x7f04003a, 0x7f04003b, 0x7f04003c, 0x7f04003d, 0x7f04003e, 0x7f04003f, 0x7f040040, 0x7f040041, 0x7f040042, 0x7f040043, 0x7f040044, 0x7f040045, 0x7f040046 }
- int styleable SettingBar_bar_leftColor 0
- int styleable SettingBar_bar_leftColorHint 1
- int styleable SettingBar_bar_leftHint 2
- int styleable SettingBar_bar_leftIcon 3
- int styleable SettingBar_bar_leftSize 4
- int styleable SettingBar_bar_leftText 5
- int styleable SettingBar_bar_lineColor 6
- int styleable SettingBar_bar_lineMargin 7
- int styleable SettingBar_bar_lineSize 8
- int styleable SettingBar_bar_lineVisible 9
- int styleable SettingBar_bar_rightColor 10
- int styleable SettingBar_bar_rightHint 11
- int styleable SettingBar_bar_rightIcon 12
- int styleable SettingBar_bar_rightSize 13
- int styleable SettingBar_bar_rightText 14
- int[] styleable Snackbar { 0x7f04017a, 0x7f04017b }
- int styleable Snackbar_snackbarButtonStyle 0
- int styleable Snackbar_snackbarStyle 1
- int[] styleable SnackbarLayout { 0x101011f, 0x7f0400c5, 0x7f040138 }
- int styleable SnackbarLayout_android_maxWidth 0
- int styleable SnackbarLayout_elevation 1
- int styleable SnackbarLayout_maxActionInlineWidth 2
- int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f04015a }
- int styleable Spinner_android_dropDownWidth 0
- int styleable Spinner_android_entries 1
- int styleable Spinner_android_popupBackground 2
- int styleable Spinner_android_prompt 3
- int styleable Spinner_popupTheme 4
- int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
- int styleable StateListDrawable_android_constantSize 0
- int styleable StateListDrawable_android_dither 1
- int styleable StateListDrawable_android_enterFadeDuration 2
- int styleable StateListDrawable_android_exitFadeDuration 3
- int styleable StateListDrawable_android_variablePadding 4
- int styleable StateListDrawable_android_visible 5
- int[] styleable StateListDrawableItem { 0x1010199 }
- int styleable StateListDrawableItem_android_drawable 0
- int[] styleable SwitchButton { 0x1010106, 0x101000e }
- int styleable SwitchButton_android_checked 0
- int styleable SwitchButton_android_enabled 1
- int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f040175, 0x7f040180, 0x7f040193, 0x7f040194, 0x7f040196, 0x7f0401ce, 0x7f0401cf, 0x7f0401d0, 0x7f0401e7, 0x7f0401e8, 0x7f0401e9 }
- int styleable SwitchCompat_android_textOff 0
- int styleable SwitchCompat_android_textOn 1
- int styleable SwitchCompat_android_thumb 2
- int styleable SwitchCompat_showText 3
- int styleable SwitchCompat_splitTrack 4
- int styleable SwitchCompat_switchMinWidth 5
- int styleable SwitchCompat_switchPadding 6
- int styleable SwitchCompat_switchTextAppearance 7
- int styleable SwitchCompat_thumbTextPadding 8
- int styleable SwitchCompat_thumbTint 9
- int styleable SwitchCompat_thumbTintMode 10
- int styleable SwitchCompat_track 11
- int styleable SwitchCompat_trackTint 12
- int styleable SwitchCompat_trackTintMode 13
- int[] styleable TabItem { 0x1010002, 0x10100f2, 0x101014f }
- int styleable TabItem_android_icon 0
- int styleable TabItem_android_layout 1
- int styleable TabItem_android_text 2
- int[] styleable TabLayout { 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f04019f, 0x7f0401a0, 0x7f0401a1, 0x7f0401a2, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f0401a6, 0x7f0401a7, 0x7f0401a8, 0x7f0401a9, 0x7f0401aa, 0x7f0401ab, 0x7f0401ac, 0x7f0401ae, 0x7f0401af, 0x7f0401b0 }
- int styleable TabLayout_tabBackground 0
- int styleable TabLayout_tabContentStart 1
- int styleable TabLayout_tabGravity 2
- int styleable TabLayout_tabIconTint 3
- int styleable TabLayout_tabIconTintMode 4
- int styleable TabLayout_tabIndicator 5
- int styleable TabLayout_tabIndicatorAnimationDuration 6
- int styleable TabLayout_tabIndicatorColor 7
- int styleable TabLayout_tabIndicatorFullWidth 8
- int styleable TabLayout_tabIndicatorGravity 9
- int styleable TabLayout_tabIndicatorHeight 10
- int styleable TabLayout_tabInlineLabel 11
- int styleable TabLayout_tabMaxWidth 12
- int styleable TabLayout_tabMinWidth 13
- int styleable TabLayout_tabMode 14
- int styleable TabLayout_tabPadding 15
- int styleable TabLayout_tabPaddingBottom 16
- int styleable TabLayout_tabPaddingEnd 17
- int styleable TabLayout_tabPaddingStart 18
- int styleable TabLayout_tabPaddingTop 19
- int styleable TabLayout_tabRippleColor 20
- int styleable TabLayout_tabSelectedTextColor 21
- int styleable TabLayout_tabTextAppearance 22
- int styleable TabLayout_tabTextColor 23
- int styleable TabLayout_tabUnboundedRipple 24
- int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010095, 0x1010097, 0x1010096, 0x7f0400e1, 0x7f0401b1 }
- int styleable TextAppearance_android_fontFamily 0
- int styleable TextAppearance_android_shadowColor 1
- int styleable TextAppearance_android_shadowDx 2
- int styleable TextAppearance_android_shadowDy 3
- int styleable TextAppearance_android_shadowRadius 4
- int styleable TextAppearance_android_textColor 5
- int styleable TextAppearance_android_textColorHint 6
- int styleable TextAppearance_android_textColorLink 7
- int styleable TextAppearance_android_textSize 8
- int styleable TextAppearance_android_textStyle 9
- int styleable TextAppearance_android_typeface 10
- int styleable TextAppearance_fontFamily 11
- int styleable TextAppearance_textAllCaps 12
- int[] styleable TextInputLayout { 0x1010150, 0x101009a, 0x7f040053, 0x7f040054, 0x7f040055, 0x7f040056, 0x7f040057, 0x7f040058, 0x7f040059, 0x7f04005a, 0x7f04005b, 0x7f0400b0, 0x7f0400b1, 0x7f0400b2, 0x7f0400b3, 0x7f0400c8, 0x7f0400c9, 0x7f0400f0, 0x7f0400f1, 0x7f0400f2, 0x7f0400f6, 0x7f0400f7, 0x7f0400f8, 0x7f04014b, 0x7f04014c, 0x7f04014d, 0x7f04014e, 0x7f04014f }
- int styleable TextInputLayout_android_hint 0
- int styleable TextInputLayout_android_textColorHint 1
- int styleable TextInputLayout_boxBackgroundColor 2
- int styleable TextInputLayout_boxBackgroundMode 3
- int styleable TextInputLayout_boxCollapsedPaddingTop 4
- int styleable TextInputLayout_boxCornerRadiusBottomEnd 5
- int styleable TextInputLayout_boxCornerRadiusBottomStart 6
- int styleable TextInputLayout_boxCornerRadiusTopEnd 7
- int styleable TextInputLayout_boxCornerRadiusTopStart 8
- int styleable TextInputLayout_boxStrokeColor 9
- int styleable TextInputLayout_boxStrokeWidth 10
- int styleable TextInputLayout_counterEnabled 11
- int styleable TextInputLayout_counterMaxLength 12
- int styleable TextInputLayout_counterOverflowTextAppearance 13
- int styleable TextInputLayout_counterTextAppearance 14
- int styleable TextInputLayout_errorEnabled 15
- int styleable TextInputLayout_errorTextAppearance 16
- int styleable TextInputLayout_helperText 17
- int styleable TextInputLayout_helperTextEnabled 18
- int styleable TextInputLayout_helperTextTextAppearance 19
- int styleable TextInputLayout_hintAnimationEnabled 20
- int styleable TextInputLayout_hintEnabled 21
- int styleable TextInputLayout_hintTextAppearance 22
- int styleable TextInputLayout_passwordToggleContentDescription 23
- int styleable TextInputLayout_passwordToggleDrawable 24
- int styleable TextInputLayout_passwordToggleEnabled 25
- int styleable TextInputLayout_passwordToggleTint 26
- int styleable TextInputLayout_passwordToggleTintMode 27
- int[] styleable ThemeEnforcement { 0x1010034, 0x7f0400c6, 0x7f0400c7 }
- int styleable ThemeEnforcement_android_textAppearance 0
- int styleable ThemeEnforcement_enforceMaterialTheme 1
- int styleable ThemeEnforcement_enforceTextAppearance 2
- int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f040061, 0x7f04008f, 0x7f040090, 0x7f0400a1, 0x7f0400a2, 0x7f0400a3, 0x7f0400a4, 0x7f0400a5, 0x7f0400a6, 0x7f040134, 0x7f040135, 0x7f040139, 0x7f04013e, 0x7f04013f, 0x7f04015a, 0x7f04018e, 0x7f04018f, 0x7f040190, 0x7f0401d6, 0x7f0401d8, 0x7f0401d9, 0x7f0401da, 0x7f0401db, 0x7f0401dc, 0x7f0401dd, 0x7f0401de, 0x7f0401df }
- int styleable Toolbar_android_gravity 0
- int styleable Toolbar_android_minHeight 1
- int styleable Toolbar_buttonGravity 2
- int styleable Toolbar_collapseContentDescription 3
- int styleable Toolbar_collapseIcon 4
- int styleable Toolbar_contentInsetEnd 5
- int styleable Toolbar_contentInsetEndWithActions 6
- int styleable Toolbar_contentInsetLeft 7
- int styleable Toolbar_contentInsetRight 8
- int styleable Toolbar_contentInsetStart 9
- int styleable Toolbar_contentInsetStartWithNavigation 10
- int styleable Toolbar_logo 11
- int styleable Toolbar_logoDescription 12
- int styleable Toolbar_maxButtonHeight 13
- int styleable Toolbar_navigationContentDescription 14
- int styleable Toolbar_navigationIcon 15
- int styleable Toolbar_popupTheme 16
- int styleable Toolbar_subtitle 17
- int styleable Toolbar_subtitleTextAppearance 18
- int styleable Toolbar_subtitleTextColor 19
- int styleable Toolbar_title 20
- int styleable Toolbar_titleMargin 21
- int styleable Toolbar_titleMarginBottom 22
- int styleable Toolbar_titleMarginEnd 23
- int styleable Toolbar_titleMarginStart 24
- int styleable Toolbar_titleMarginTop 25
- int styleable Toolbar_titleMargins 26
- int styleable Toolbar_titleTextAppearance 27
- int styleable Toolbar_titleTextColor 28
- int[] styleable View { 0x10100da, 0x1010000, 0x7f040145, 0x7f040146, 0x7f0401cc }
- int styleable View_android_focusable 0
- int styleable View_android_theme 1
- int styleable View_paddingEnd 2
- int styleable View_paddingStart 3
- int styleable View_theme 4
- int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f040035, 0x7f040036 }
- int styleable ViewBackgroundHelper_android_background 0
- int styleable ViewBackgroundHelper_backgroundTint 1
- int styleable ViewBackgroundHelper_backgroundTintMode 2
- int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 }
- int styleable ViewStubCompat_android_id 0
- int styleable ViewStubCompat_android_inflatedId 1
- int styleable ViewStubCompat_android_layout 2
|