values.xml 344 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
  3. <attr format="reference" name="animate_relativeTo"/>
  4. <attr format="enum" name="arcMode">
  5. <enum name="startVertical" value="0"/>
  6. <enum name="startHorizontal" value="1"/>
  7. <enum name="flip" value="2"/>
  8. </attr>
  9. <attr format="boolean" name="barrierAllowsGoneWidgets"/>
  10. <attr format="enum" name="barrierDirection">
  11. <enum name="left" value="0"/>
  12. <enum name="right" value="1"/>
  13. <enum name="top" value="2"/>
  14. <enum name="bottom" value="3"/>
  15. <enum name="start" value="5"/>
  16. <enum name="end" value="6"/>
  17. </attr>
  18. <attr format="dimension" name="barrierMargin"/>
  19. <attr format="reference" name="bottomAppBarStyle"/>
  20. <attr format="reference" name="bottomNavigationStyle"/>
  21. <attr format="reference" name="bottomSheetDialogTheme"/>
  22. <attr format="reference" name="bottomSheetStyle"/>
  23. <attr format="reference" name="cardViewStyle"/>
  24. <attr format="boolean" name="chainUseRtl"/>
  25. <attr format="reference" name="chipGroupStyle"/>
  26. <attr format="reference" name="chipStandaloneStyle"/>
  27. <attr format="reference" name="chipStyle"/>
  28. <attr format="dimension" name="circleRadius"/>
  29. <attr format="color" name="colorSecondary"/>
  30. <attr format="reference" name="constraintSet"/>
  31. <attr format="string" name="constraint_referenced_ids"/>
  32. <attr format="reference" name="content"/>
  33. <attr format="reference" name="coordinatorLayoutStyle"/>
  34. <attr format="enum" name="curveFit">
  35. <enum name="spline" value="0"/>
  36. <enum name="linear" value="1"/>
  37. </attr>
  38. <attr format="integer" name="defaultDuration"/>
  39. <attr format="float" name="deltaPolarAngle"/>
  40. <attr format="float" name="deltaPolarRadius"/>
  41. <attr format="enum" name="dragDirection">
  42. <enum name="dragUp" value="0"/>
  43. <enum name="dragDown" value="1"/>
  44. <enum name="dragLeft" value="2"/>
  45. <enum name="dragRight" value="3"/>
  46. </attr>
  47. <attr format="enum" name="drawPath">
  48. <enum name="none" value="0"/>
  49. <enum name="path" value="1"/>
  50. <enum name="pathRelative" value="2"/>
  51. <enum name="deltaRelative" value="3"/>
  52. <enum name="asConfigured" value="4"/>
  53. <enum name="rectangles" value="5"/>
  54. </attr>
  55. <attr format="reference" name="drawerArrowStyle"/>
  56. <attr name="emptyVisibility">
  57. <enum name="gone" value="0"/>
  58. <enum name="invisible" value="1"/>
  59. </attr>
  60. <attr name="floatingActionButtonStyle"/>
  61. <attr format="integer" name="framePosition"/>
  62. <attr format="dimension" name="height"/>
  63. <attr format="reference" name="hideMotionSpec"/>
  64. <attr format="boolean" name="isLightTheme"/>
  65. <attr format="reference" name="layoutDescription"/>
  66. <attr format="boolean" name="layout_constrainedHeight"/>
  67. <attr format="boolean" name="layout_constrainedWidth"/>
  68. <attr format="integer" name="layout_constraintBaseline_creator"/>
  69. <attr format="reference|enum" name="layout_constraintBaseline_toBaselineOf">
  70. <enum name="parent" value="0"/>
  71. </attr>
  72. <attr format="integer" name="layout_constraintBottom_creator"/>
  73. <attr format="reference|enum" name="layout_constraintBottom_toBottomOf">
  74. <enum name="parent" value="0"/>
  75. </attr>
  76. <attr format="reference|enum" name="layout_constraintBottom_toTopOf">
  77. <enum name="parent" value="0"/>
  78. </attr>
  79. <attr format="reference" name="layout_constraintCircle"/>
  80. <attr format="integer" name="layout_constraintCircleAngle"/>
  81. <attr format="dimension" name="layout_constraintCircleRadius"/>
  82. <attr format="string" name="layout_constraintDimensionRatio"/>
  83. <attr format="reference|enum" name="layout_constraintEnd_toEndOf">
  84. <enum name="parent" value="0"/>
  85. </attr>
  86. <attr format="reference|enum" name="layout_constraintEnd_toStartOf">
  87. <enum name="parent" value="0"/>
  88. </attr>
  89. <attr format="dimension" name="layout_constraintGuide_begin"/>
  90. <attr format="dimension" name="layout_constraintGuide_end"/>
  91. <attr format="float" name="layout_constraintGuide_percent"/>
  92. <attr name="layout_constraintHeight_default">
  93. <enum name="spread" value="0"/>
  94. <enum name="wrap" value="1"/>
  95. <enum name="percent" value="2"/>
  96. </attr>
  97. <attr format="dimension|enum" name="layout_constraintHeight_max">
  98. <enum name="wrap" value="-2"/>
  99. </attr>
  100. <attr format="dimension|enum" name="layout_constraintHeight_min">
  101. <enum name="wrap" value="-2"/>
  102. </attr>
  103. <attr format="float" name="layout_constraintHeight_percent"/>
  104. <attr format="float" name="layout_constraintHorizontal_bias"/>
  105. <attr format="enum" name="layout_constraintHorizontal_chainStyle">
  106. <enum name="spread" value="0"/>
  107. <enum name="spread_inside" value="1"/>
  108. <enum name="packed" value="2"/>
  109. </attr>
  110. <attr format="float" name="layout_constraintHorizontal_weight"/>
  111. <attr format="integer" name="layout_constraintLeft_creator"/>
  112. <attr format="reference|enum" name="layout_constraintLeft_toLeftOf">
  113. <enum name="parent" value="0"/>
  114. </attr>
  115. <attr format="reference|enum" name="layout_constraintLeft_toRightOf">
  116. <enum name="parent" value="0"/>
  117. </attr>
  118. <attr format="integer" name="layout_constraintRight_creator"/>
  119. <attr format="reference|enum" name="layout_constraintRight_toLeftOf">
  120. <enum name="parent" value="0"/>
  121. </attr>
  122. <attr format="reference|enum" name="layout_constraintRight_toRightOf">
  123. <enum name="parent" value="0"/>
  124. </attr>
  125. <attr format="reference|enum" name="layout_constraintStart_toEndOf">
  126. <enum name="parent" value="0"/>
  127. </attr>
  128. <attr format="reference|enum" name="layout_constraintStart_toStartOf">
  129. <enum name="parent" value="0"/>
  130. </attr>
  131. <attr format="integer" name="layout_constraintTop_creator"/>
  132. <attr format="reference|enum" name="layout_constraintTop_toBottomOf">
  133. <enum name="parent" value="0"/>
  134. </attr>
  135. <attr format="reference|enum" name="layout_constraintTop_toTopOf">
  136. <enum name="parent" value="0"/>
  137. </attr>
  138. <attr format="float" name="layout_constraintVertical_bias"/>
  139. <attr format="enum" name="layout_constraintVertical_chainStyle">
  140. <enum name="spread" value="0"/>
  141. <enum name="spread_inside" value="1"/>
  142. <enum name="packed" value="2"/>
  143. </attr>
  144. <attr format="float" name="layout_constraintVertical_weight"/>
  145. <attr name="layout_constraintWidth_default">
  146. <enum name="spread" value="0"/>
  147. <enum name="wrap" value="1"/>
  148. <enum name="percent" value="2"/>
  149. </attr>
  150. <attr format="dimension|enum" name="layout_constraintWidth_max">
  151. <enum name="wrap" value="-2"/>
  152. </attr>
  153. <attr format="dimension|enum" name="layout_constraintWidth_min">
  154. <enum name="wrap" value="-2"/>
  155. </attr>
  156. <attr format="float" name="layout_constraintWidth_percent"/>
  157. <attr format="dimension" name="layout_editor_absoluteX"/>
  158. <attr format="dimension" name="layout_editor_absoluteY"/>
  159. <attr format="dimension" name="layout_goneMarginBottom"/>
  160. <attr format="dimension" name="layout_goneMarginEnd"/>
  161. <attr format="dimension" name="layout_goneMarginLeft"/>
  162. <attr format="dimension" name="layout_goneMarginRight"/>
  163. <attr format="dimension" name="layout_goneMarginStart"/>
  164. <attr format="dimension" name="layout_goneMarginTop"/>
  165. <attr name="layout_optimizationLevel">
  166. <flag name="none" value="0"/>
  167. <flag name="standard" value="7"/> <!-- direct, barriers, chains -->
  168. <flag name="direct" value="1"/>
  169. <flag name="barrier" value="2"/>
  170. <flag name="chains" value="4"/>
  171. <flag name="dimensions" value="8"/>
  172. <flag name="ratio" value="16"/>
  173. <flag name="groups" value="32"/>
  174. <flag name="graph" value="64"/>
  175. <flag name="graph_wrap" value="128"/>
  176. </attr>
  177. <attr format="reference" name="materialButtonStyle"/>
  178. <attr format="reference" name="materialCardViewStyle"/>
  179. <attr format="reference" name="navigationViewStyle"/>
  180. <attr format="enum" name="pathMotionArc">
  181. <enum name="none" value="0"/>
  182. <enum name="startVertical" value="1"/>
  183. <enum name="startHorizontal" value="2"/>
  184. <enum name="flip" value="3"/>
  185. </attr>
  186. <attr format="float" name="path_percent"/>
  187. <attr format="float" name="perpendicularPath_percent"/>
  188. <attr format="reference|enum" name="pivotAnchor">
  189. <enum name="parent" value="0"/>
  190. </attr>
  191. <attr format="float" name="progress"/>
  192. <attr format="color" name="rippleColor"/>
  193. <attr format="color|reference" name="scrimBackground"/>
  194. <attr format="reference" name="showMotionSpec"/>
  195. <attr format="float" name="sizePercent"/>
  196. <attr format="color" name="strokeColor"/>
  197. <attr format="dimension" name="strokeWidth"/>
  198. <attr format="reference" name="tabStyle"/>
  199. <attr format="reference" name="targetId"/>
  200. <attr format="reference" name="textAppearanceBody1"/>
  201. <attr format="reference" name="textAppearanceBody2"/>
  202. <attr format="reference" name="textAppearanceButton"/>
  203. <attr format="reference" name="textAppearanceCaption"/>
  204. <attr format="reference" name="textAppearanceHeadline1"/>
  205. <attr format="reference" name="textAppearanceHeadline2"/>
  206. <attr format="reference" name="textAppearanceHeadline3"/>
  207. <attr format="reference" name="textAppearanceHeadline4"/>
  208. <attr format="reference" name="textAppearanceHeadline5"/>
  209. <attr format="reference" name="textAppearanceHeadline6"/>
  210. <attr format="reference" name="textAppearanceOverline"/>
  211. <attr format="reference" name="textAppearanceSubtitle1"/>
  212. <attr format="reference" name="textAppearanceSubtitle2"/>
  213. <attr format="reference" name="textInputStyle"/>
  214. <attr format="string" name="title"/>
  215. <attr format="color" name="tl_divider_color"/>
  216. <attr format="dimension" name="tl_divider_padding"/>
  217. <attr format="dimension" name="tl_divider_width"/>
  218. <attr format="integer" name="tl_indicator_anim_duration"/>
  219. <attr format="boolean" name="tl_indicator_anim_enable"/>
  220. <attr format="boolean" name="tl_indicator_bounce_enable"/>
  221. <attr format="color" name="tl_indicator_color"/>
  222. <attr format="dimension" name="tl_indicator_corner_radius"/>
  223. <attr format="enum" name="tl_indicator_gravity">
  224. <enum name="TOP" value="48"/>
  225. <enum name="BOTTOM" value="80"/>
  226. </attr>
  227. <attr format="dimension" name="tl_indicator_height"/>
  228. <attr format="dimension" name="tl_indicator_margin_bottom"/>
  229. <attr format="dimension" name="tl_indicator_margin_left"/>
  230. <attr format="dimension" name="tl_indicator_margin_right"/>
  231. <attr format="dimension" name="tl_indicator_margin_top"/>
  232. <attr format="enum" name="tl_indicator_style">
  233. <enum name="NORMAL" value="0"/>
  234. <enum name="TRIANGLE" value="1"/>
  235. <enum name="BLOCK" value="2"/>
  236. </attr>
  237. <attr format="dimension" name="tl_indicator_width"/>
  238. <attr format="boolean" name="tl_indicator_width_equal_title"/>
  239. <attr format="dimension" name="tl_tab_padding"/>
  240. <attr format="boolean" name="tl_tab_space_equal"/>
  241. <attr format="dimension" name="tl_tab_width"/>
  242. <attr format="boolean" name="tl_textAllCaps"/>
  243. <attr format="enum" name="tl_textBold">
  244. <enum name="NONE" value="0"/>
  245. <enum name="SELECT" value="1"/>
  246. <enum name="BOTH" value="2"/>
  247. </attr>
  248. <attr format="color" name="tl_textSelectColor"/>
  249. <attr format="color" name="tl_textUnselectColor"/>
  250. <attr format="dimension" name="tl_textsize"/>
  251. <attr format="color" name="tl_underline_color"/>
  252. <attr format="enum" name="tl_underline_gravity">
  253. <enum name="TOP" value="48"/>
  254. <enum name="BOTTOM" value="80"/>
  255. </attr>
  256. <attr format="dimension" name="tl_underline_height"/>
  257. <attr format="reference" name="touchAnchorId"/>
  258. <attr format="enum" name="touchAnchorSide">
  259. <enum name="top" value="0"/>
  260. <enum name="left" value="1"/>
  261. <enum name="right" value="2"/>
  262. <enum name="bottom" value="3"/>
  263. </attr>
  264. <attr format="string|enum" name="transitionEasing">
  265. <enum name="standard" value="0"/>
  266. <enum name="accelerate" value="1"/>
  267. <enum name="decelerate" value="2"/>
  268. <enum name="linear" value="3"/>
  269. </attr>
  270. <attr format="float" name="transitionPathRotate"/>
  271. <attr format="float|dimension" name="waveOffset"/>
  272. <attr format="float" name="wavePeriod"/>
  273. <attr format="enum" name="waveShape">
  274. <enum name="sin" value="0"/>
  275. <enum name="square" value="1"/>
  276. <enum name="triangle" value="2"/>
  277. <enum name="sawtooth" value="3"/>
  278. <enum name="reverseSawtooth" value="4"/>
  279. <enum name="cos" value="5"/>
  280. <enum name="bounce" value="6"/>
  281. </attr>
  282. <attr format="enum" name="waveVariesBy">
  283. <enum name="position" value="0"/>
  284. <enum name="path" value="1"/>
  285. </attr>
  286. <bool name="abc_action_bar_embed_tabs">true</bool>
  287. <bool name="abc_allow_stacked_button_bar">false</bool>
  288. <bool name="abc_config_actionMenuItemAllCaps">true</bool>
  289. <bool name="mtrl_btn_textappearance_all_caps">true</bool>
  290. <bool name="pickerview_customTextSize">false</bool>
  291. <color name="abc_input_method_navigation_guard">@android:color/black</color>
  292. <color name="abc_search_url_text_normal">#7fa87f</color>
  293. <color name="abc_search_url_text_pressed">@android:color/black</color>
  294. <color name="abc_search_url_text_selected">@android:color/black</color>
  295. <color name="accent_material_dark">@color/material_deep_teal_200</color>
  296. <color name="accent_material_light">@color/material_deep_teal_500</color>
  297. <color name="background_floating_material_dark">@color/material_grey_800</color>
  298. <color name="background_floating_material_light">@android:color/white</color>
  299. <color name="background_material_dark">@color/material_grey_850</color>
  300. <color name="background_material_light">@color/material_grey_50</color>
  301. <color name="bgColor_overlay">#60000000</color>
  302. <color name="black_text">#434343</color>
  303. <color name="blue">#398DEF</color>
  304. <color name="blue_light">#DDF7FD</color>
  305. <color name="bright_foreground_disabled_material_dark">#80ffffff</color>
  306. <color name="bright_foreground_disabled_material_light">#80000000</color>
  307. <color name="bright_foreground_inverse_material_dark">@color/bright_foreground_material_light</color>
  308. <color name="bright_foreground_inverse_material_light">@color/bright_foreground_material_dark</color>
  309. <color name="bright_foreground_material_dark">@android:color/white</color>
  310. <color name="bright_foreground_material_light">@android:color/black</color>
  311. <color name="button_material_dark">#ff5a595b</color>
  312. <color name="button_material_light">#ffd6d7d7</color>
  313. <color name="cardview_dark_background">#FF424242</color>
  314. <color name="cardview_light_background">#FFFFFFFF</color>
  315. <color name="cardview_shadow_end_color">#03000000</color>
  316. <color name="cardview_shadow_start_color">#37000000</color>
  317. <color name="colorAccent">#FF0000</color>
  318. <color name="colorPrimary">#FF0000</color>
  319. <color name="colorPrimaryDark">#FF0000</color>
  320. <color name="design_bottom_navigation_shadow_color">#14000000</color>
  321. <color name="design_default_color_primary">#3F51B5</color>
  322. <color name="design_default_color_primary_dark">#303F9F</color>
  323. <color name="design_fab_shadow_end_color">@android:color/transparent</color>
  324. <color name="design_fab_shadow_mid_color">#14000000</color>
  325. <color name="design_fab_shadow_start_color">#44000000</color>
  326. <color name="design_fab_stroke_end_inner_color">#0A000000</color>
  327. <color name="design_fab_stroke_end_outer_color">#0F000000</color>
  328. <color name="design_fab_stroke_top_inner_color">#1AFFFFFF</color>
  329. <color name="design_fab_stroke_top_outer_color">#2EFFFFFF</color>
  330. <color name="design_snackbar_background_color">#323232</color>
  331. <color name="dim_foreground_disabled_material_dark">#80bebebe</color>
  332. <color name="dim_foreground_disabled_material_light">#80323232</color>
  333. <color name="dim_foreground_material_dark">#ffbebebe</color>
  334. <color name="dim_foreground_material_light">#ff323232</color>
  335. <color name="error_color_material_dark">#ff7043</color>
  336. <color name="error_color_material_light">#ff5722</color>
  337. <color name="foreground_material_dark">@android:color/white</color>
  338. <color name="foreground_material_light">@android:color/black</color>
  339. <color name="gray_bg">#F0F0F0</color>
  340. <color name="gray_line">#DCDCDC</color>
  341. <color name="gray_text">#AEAEAE</color>
  342. <color name="highlighted_text_material_dark">#6680cbc4</color>
  343. <color name="highlighted_text_material_light">#66009688</color>
  344. <color name="main_color">#ff0000</color>
  345. <color name="material_blue_grey_800">#ff37474f</color>
  346. <color name="material_blue_grey_900">#ff263238</color>
  347. <color name="material_blue_grey_950">#ff21272b</color>
  348. <color name="material_deep_teal_200">#ff80cbc4</color>
  349. <color name="material_deep_teal_500">#ff008577</color>
  350. <color name="material_grey_100">#fff5f5f5</color>
  351. <color name="material_grey_300">#ffe0e0e0</color>
  352. <color name="material_grey_50">#fffafafa</color>
  353. <color name="material_grey_600">#ff757575</color>
  354. <color name="material_grey_800">#ff424242</color>
  355. <color name="material_grey_850">#ff303030</color>
  356. <color name="material_grey_900">#ff212121</color>
  357. <color name="mtrl_btn_bg_color_disabled">#1F000000</color>
  358. <color name="mtrl_btn_text_color_disabled">#61000000</color>
  359. <color name="mtrl_btn_transparent_bg_color">#00ffffff</color>
  360. <color name="mtrl_scrim_color">#52000000</color>
  361. <color name="mtrl_textinput_default_box_stroke_color">#6B000000</color>
  362. <color name="mtrl_textinput_disabled_color">#1F000000</color>
  363. <color name="mtrl_textinput_filled_box_default_background_color">#0A000000</color>
  364. <color name="mtrl_textinput_hovered_box_stroke_color">#DE000000</color>
  365. <color name="notification_action_color_filter">#ffffffff</color>
  366. <color name="notification_icon_bg_color">#ff9e9e9e</color>
  367. <color name="notification_material_background_media_default_color">#ff424242</color>
  368. <color name="pickerview_bg_topbar">#f5f5f5</color>
  369. <color name="pickerview_timebtn_nor">#057dff</color>
  370. <color name="pickerview_timebtn_pre">#c2daf5</color>
  371. <color name="pickerview_topbar_title">#000000</color>
  372. <color name="pickerview_wheelview_textcolor_center">#2a2a2a</color>
  373. <color name="pickerview_wheelview_textcolor_divider">#d5d5d5</color>
  374. <color name="pickerview_wheelview_textcolor_out">#a8a8a8</color>
  375. <color name="primary_dark_material_dark">@android:color/black</color>
  376. <color name="primary_dark_material_light">@color/material_grey_600</color>
  377. <color name="primary_material_dark">@color/material_grey_900</color>
  378. <color name="primary_material_light">@color/material_grey_100</color>
  379. <color name="primary_text_default_material_dark">#ffffffff</color>
  380. <color name="primary_text_default_material_light">#de000000</color>
  381. <color name="primary_text_disabled_material_dark">#4Dffffff</color>
  382. <color name="primary_text_disabled_material_light">#39000000</color>
  383. <color name="ripple_material_dark">#33ffffff</color>
  384. <color name="ripple_material_light">#1f000000</color>
  385. <color name="secondary_text_default_material_dark">#b3ffffff</color>
  386. <color name="secondary_text_default_material_light">#8a000000</color>
  387. <color name="secondary_text_disabled_material_dark">#36ffffff</color>
  388. <color name="secondary_text_disabled_material_light">#24000000</color>
  389. <color name="switch_thumb_disabled_material_dark">#ff616161</color>
  390. <color name="switch_thumb_disabled_material_light">#ffbdbdbd</color>
  391. <color name="switch_thumb_normal_material_dark">#ffbdbdbd</color>
  392. <color name="switch_thumb_normal_material_light">#fff1f1f1</color>
  393. <color name="tabbar_back_color">#F5F5F7</color>
  394. <color name="tooltip_background_dark">#e6616161</color>
  395. <color name="tooltip_background_light">#e6FFFFFF</color>
  396. <color name="white">#FFFFFF</color>
  397. <declare-styleable name="AVLoadingIndicatorView"><attr name="indicator">
  398. <flag name="BallPulse" value="0"/>
  399. <flag name="BallGridPulse" value="1"/>
  400. <flag name="BallClipRotate" value="2"/>
  401. <flag name="BallClipRotatePulse" value="3"/>
  402. <flag name="SquareSpin" value="4"/>
  403. <flag name="BallClipRotateMultiple" value="5"/>
  404. <flag name="BallPulseRise" value="6"/>
  405. <flag name="BallRotate" value="7"/>
  406. <flag name="CubeTransition" value="8"/>
  407. <flag name="BallZigZag" value="9"/>
  408. <flag name="BallZigZagDeflect" value="10"/>
  409. <flag name="BallTrianglePath" value="11"/>
  410. <flag name="BallScale" value="12"/>
  411. <flag name="LineScale" value="13"/>
  412. <flag name="LineScaleParty" value="14"/>
  413. <flag name="BallScaleMultiple" value="15"/>
  414. <flag name="BallPulseSync" value="16"/>
  415. <flag name="BallBeat" value="17"/>
  416. <flag name="LineScalePulseOut" value="18"/>
  417. <flag name="LineScalePulseOutRapid" value="19"/>
  418. <flag name="BallScaleRipple" value="20"/>
  419. <flag name="BallScaleRippleMultiple" value="21"/>
  420. <flag name="BallSpinFadeLoader" value="22"/>
  421. <flag name="LineSpinFadeLoader" value="23"/>
  422. <flag name="TriangleSkewSpin" value="24"/>
  423. <flag name="Pacman" value="25"/>
  424. <flag name="BallGridBeat" value="26"/>
  425. <flag name="SemiCircleSpin" value="27"/>
  426. </attr><attr format="color" name="indicator_color"/></declare-styleable>
  427. <declare-styleable name="ActionBar">
  428. <!-- The type of navigation to use. -->
  429. <attr name="navigationMode">
  430. <!-- Normal static title text -->
  431. <enum name="normal" value="0"/>
  432. <!-- The action bar will use a selection list for navigation. -->
  433. <enum name="listMode" value="1"/>
  434. <!-- The action bar will use a series of horizontal tabs for navigation. -->
  435. <enum name="tabMode" value="2"/>
  436. </attr>
  437. <!-- Options affecting how the action bar is displayed. -->
  438. <attr name="displayOptions">
  439. <flag name="none" value="0"/>
  440. <flag name="useLogo" value="0x1"/>
  441. <flag name="showHome" value="0x2"/>
  442. <flag name="homeAsUp" value="0x4"/>
  443. <flag name="showTitle" value="0x8"/>
  444. <flag name="showCustom" value="0x10"/>
  445. <flag name="disableHome" value="0x20"/>
  446. </attr>
  447. <!-- Specifies title text used for navigationMode="normal" -->
  448. <attr name="title"/>
  449. <!-- Specifies subtitle text used for navigationMode="normal" -->
  450. <attr format="string" name="subtitle"/>
  451. <!-- Specifies a style to use for title text. -->
  452. <attr format="reference" name="titleTextStyle"/>
  453. <!-- Specifies a style to use for subtitle text. -->
  454. <attr format="reference" name="subtitleTextStyle"/>
  455. <!-- Specifies the drawable used for the application icon. -->
  456. <attr format="reference" name="icon"/>
  457. <!-- Specifies the drawable used for the application logo. -->
  458. <attr format="reference" name="logo"/>
  459. <!-- Specifies the drawable used for item dividers. -->
  460. <attr format="reference" name="divider"/>
  461. <!-- Specifies a background drawable for the action bar. -->
  462. <attr format="reference" name="background"/>
  463. <!-- Specifies a background drawable for a second stacked row of the action bar. -->
  464. <attr format="reference|color" name="backgroundStacked"/>
  465. <!-- Specifies a background drawable for the bottom component of a split action bar. -->
  466. <attr format="reference|color" name="backgroundSplit"/>
  467. <!-- Specifies a layout for custom navigation. Overrides navigationMode. -->
  468. <attr format="reference" name="customNavigationLayout"/>
  469. <!-- Specifies a fixed height. -->
  470. <attr name="height"/>
  471. <!-- Specifies a layout to use for the "home" section of the action bar. -->
  472. <attr format="reference" name="homeLayout"/>
  473. <!-- Specifies a style resource to use for an embedded progress bar. -->
  474. <attr format="reference" name="progressBarStyle"/>
  475. <!-- Specifies a style resource to use for an indeterminate progress spinner. -->
  476. <attr format="reference" name="indeterminateProgressStyle"/>
  477. <!-- Specifies the horizontal padding on either end for an embedded progress bar. -->
  478. <attr format="dimension" name="progressBarPadding"/>
  479. <!-- Up navigation glyph -->
  480. <attr name="homeAsUpIndicator"/>
  481. <!-- Specifies padding that should be applied to the left and right sides of
  482. system-provided items in the bar. -->
  483. <attr format="dimension" name="itemPadding"/>
  484. <!-- Set true to hide the action bar on a vertical nested scroll of content. -->
  485. <attr format="boolean" name="hideOnContentScroll"/>
  486. <!-- Minimum inset for content views within a bar. Navigation buttons and
  487. menu views are excepted. Only valid for some themes and configurations. -->
  488. <attr format="dimension" name="contentInsetStart"/>
  489. <!-- Minimum inset for content views within a bar. Navigation buttons and
  490. menu views are excepted. Only valid for some themes and configurations. -->
  491. <attr format="dimension" name="contentInsetEnd"/>
  492. <!-- Minimum inset for content views within a bar. Navigation buttons and
  493. menu views are excepted. Only valid for some themes and configurations. -->
  494. <attr format="dimension" name="contentInsetLeft"/>
  495. <!-- Minimum inset for content views within a bar. Navigation buttons and
  496. menu views are excepted. Only valid for some themes and configurations. -->
  497. <attr format="dimension" name="contentInsetRight"/>
  498. <!-- Minimum inset for content views within a bar when a navigation button
  499. is present, such as the Up button. Only valid for some themes and configurations. -->
  500. <attr format="dimension" name="contentInsetStartWithNavigation"/>
  501. <!-- Minimum inset for content views within a bar when actions from a menu
  502. are present. Only valid for some themes and configurations. -->
  503. <attr format="dimension" name="contentInsetEndWithActions"/>
  504. <!-- Elevation for the action bar itself -->
  505. <attr format="dimension" name="elevation"/>
  506. <!-- Reference to a theme that should be used to inflate popups
  507. shown by widgets in the action bar. -->
  508. <attr format="reference" name="popupTheme"/>
  509. </declare-styleable>
  510. <declare-styleable name="ActionBarLayout">
  511. <attr name="android:layout_gravity"/>
  512. </declare-styleable>
  513. <declare-styleable name="ActionMenuItemView">
  514. <attr name="android:minWidth"/>
  515. </declare-styleable>
  516. <declare-styleable name="ActionMenuView">
  517. <!-- Size of padding on either end of a divider. -->
  518. </declare-styleable>
  519. <declare-styleable name="ActionMode">
  520. <!-- Specifies a style to use for title text. -->
  521. <attr name="titleTextStyle"/>
  522. <!-- Specifies a style to use for subtitle text. -->
  523. <attr name="subtitleTextStyle"/>
  524. <!-- Specifies a background for the action mode bar. -->
  525. <attr name="background"/>
  526. <!-- Specifies a background for the split action mode bar. -->
  527. <attr name="backgroundSplit"/>
  528. <!-- Specifies a fixed height for the action mode bar. -->
  529. <attr name="height"/>
  530. <!-- Specifies a layout to use for the "close" item at the starting edge. -->
  531. <attr format="reference" name="closeItemLayout"/>
  532. </declare-styleable>
  533. <declare-styleable name="ActivityChooserView">
  534. <!-- The maximal number of items initially shown in the activity list. -->
  535. <attr format="string" name="initialActivityCount"/>
  536. <!-- The drawable to show in the button for expanding the activities overflow popup.
  537. <strong>Note:</strong> Clients would like to set this drawable
  538. as a clue about the action the chosen activity will perform. For
  539. example, if share activity is to be chosen the drawable should
  540. give a clue that sharing is to be performed.
  541. -->
  542. <attr format="reference" name="expandActivityOverflowButtonDrawable"/>
  543. </declare-styleable>
  544. <declare-styleable name="AlertDialog">
  545. <attr name="android:layout"/>
  546. <attr format="reference" name="buttonPanelSideLayout"/>
  547. <attr format="reference" name="listLayout"/>
  548. <attr format="reference" name="multiChoiceItemLayout"/>
  549. <attr format="reference" name="singleChoiceItemLayout"/>
  550. <attr format="reference" name="listItemLayout"/>
  551. <attr format="boolean" name="showTitle"/>
  552. <attr format="dimension" name="buttonIconDimen"/>
  553. </declare-styleable>
  554. <declare-styleable name="AnimatedStateListDrawableCompat">
  555. <!-- Indicates whether the drawable should be initially visible. -->
  556. <attr name="android:visible"/>
  557. <!-- If true, allows the drawable's padding to change based on the
  558. current state that is selected. If false, the padding will
  559. stay the same (based on the maximum padding of all the states).
  560. Enabling this feature requires that the owner of the drawable
  561. deal with performing layout when the state changes, which is
  562. often not supported. -->
  563. <attr name="android:variablePadding"/>
  564. <!-- If true, the drawable's reported internal size will remain
  565. constant as the state changes; the size is the maximum of all
  566. of the states. If false, the size will vary based on the
  567. current state. -->
  568. <attr name="android:constantSize"/>
  569. <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
  570. same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
  571. an RGB 565 screen). -->
  572. <attr name="android:dither"/>
  573. <!-- Amount of time (in milliseconds) to fade in a new state drawable. -->
  574. <attr name="android:enterFadeDuration"/>
  575. <!-- Amount of time (in milliseconds) to fade out an old state drawable. -->
  576. <attr name="android:exitFadeDuration"/>
  577. <!-- Indicates if the drawable needs to be mirrored when its layout direction is
  578. RTL (right-to-left). -->
  579. <!--<attr name="autoMirrored"/>-->
  580. </declare-styleable>
  581. <declare-styleable name="AnimatedStateListDrawableItem">
  582. <!-- Reference to a drawable resource to use for the frame. If not
  583. given, the drawable must be defined by the first child tag. -->
  584. <attr name="android:drawable"/>
  585. <!-- Keyframe identifier for use in specifying transitions. -->
  586. <attr name="android:id"/>
  587. </declare-styleable>
  588. <declare-styleable name="AnimatedStateListDrawableTransition">
  589. <!-- Keyframe identifier for the starting state. -->
  590. <attr name="android:fromId"/>
  591. <!-- Keyframe identifier for the ending state. -->
  592. <attr name="android:toId"/>
  593. <!-- Reference to a animation drawable resource to use for the frame. If not
  594. given, the animation drawable must be defined by the first child tag. -->
  595. <attr name="android:drawable"/>
  596. <!-- Whether this transition is reversible. -->
  597. <attr name="android:reversible"/>
  598. </declare-styleable>
  599. <declare-styleable name="AppBarLayout"><attr name="elevation"/><attr name="android:background"/><attr format="boolean" name="expanded"/><attr name="android:keyboardNavigationCluster"/><attr name="android:touchscreenBlocksFocus"/><attr format="boolean" name="liftOnScroll"/></declare-styleable>
  600. <declare-styleable name="AppBarLayoutStates"><attr format="boolean" name="state_collapsed"/><attr format="boolean" name="state_collapsible"/><attr format="boolean" name="state_lifted"/><attr format="boolean" name="state_liftable"/></declare-styleable>
  601. <declare-styleable name="AppBarLayout_Layout"><attr name="layout_scrollFlags">
  602. <flag name="scroll" value="0x1"/>
  603. <flag name="exitUntilCollapsed" value="0x2"/>
  604. <flag name="enterAlways" value="0x4"/>
  605. <flag name="enterAlwaysCollapsed" value="0x8"/>
  606. <flag name="snap" value="0x10"/>
  607. <flag name="snapMargins" value="0x20"/>
  608. </attr><attr format="reference" name="layout_scrollInterpolator"/></declare-styleable>
  609. <declare-styleable name="AppCompatImageView">
  610. <attr name="android:src"/>
  611. <!-- Sets a drawable as the content of this ImageView. Allows the use of vector drawable
  612. when running on older versions of the platform. -->
  613. <attr format="reference" name="srcCompat"/>
  614. <!-- Tint to apply to the image source. -->
  615. <attr format="color" name="tint"/>
  616. <!-- Blending mode used to apply the image source tint. -->
  617. <attr name="tintMode">
  618. <!-- The tint is drawn on top of the drawable.
  619. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  620. <enum name="src_over" value="3"/>
  621. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  622. color channels are thrown out. [Sa * Da, Sc * Da] -->
  623. <enum name="src_in" value="5"/>
  624. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  625. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  626. <enum name="src_atop" value="9"/>
  627. <!-- Multiplies the color and alpha channels of the drawable with those of
  628. the tint. [Sa * Da, Sc * Dc] -->
  629. <enum name="multiply" value="14"/>
  630. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  631. <enum name="screen" value="15"/>
  632. <!-- Combines the tint and icon color and alpha channels, clamping the
  633. result to valid color values. Saturate(S + D) -->
  634. <enum name="add" value="16"/>
  635. </attr>
  636. </declare-styleable>
  637. <declare-styleable name="AppCompatSeekBar">
  638. <attr name="android:thumb"/>
  639. <!-- Drawable displayed at each progress position on a seekbar. -->
  640. <attr format="reference" name="tickMark"/>
  641. <!-- Tint to apply to the tick mark drawable. -->
  642. <attr format="color" name="tickMarkTint"/>
  643. <!-- Blending mode used to apply the tick mark tint. -->
  644. <attr name="tickMarkTintMode">
  645. <!-- The tint is drawn on top of the drawable.
  646. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  647. <enum name="src_over" value="3"/>
  648. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  649. color channels are thrown out. [Sa * Da, Sc * Da] -->
  650. <enum name="src_in" value="5"/>
  651. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  652. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  653. <enum name="src_atop" value="9"/>
  654. <!-- Multiplies the color and alpha channels of the drawable with those of
  655. the tint. [Sa * Da, Sc * Dc] -->
  656. <enum name="multiply" value="14"/>
  657. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  658. <enum name="screen" value="15"/>
  659. <!-- Combines the tint and drawable color and alpha channels, clamping the
  660. result to valid color values. Saturate(S + D) -->
  661. <enum name="add" value="16"/>
  662. </attr>
  663. </declare-styleable>
  664. <declare-styleable name="AppCompatTextHelper">
  665. <attr name="android:drawableLeft"/>
  666. <attr name="android:drawableTop"/>
  667. <attr name="android:drawableRight"/>
  668. <attr name="android:drawableBottom"/>
  669. <attr name="android:drawableStart"/>
  670. <attr name="android:drawableEnd"/>
  671. <attr name="android:textAppearance"/>
  672. </declare-styleable>
  673. <declare-styleable name="AppCompatTextView">
  674. <!-- Present the text in ALL CAPS. This may use a small-caps form when available. -->
  675. <attr format="reference|boolean" name="textAllCaps"/>
  676. <!-- Set the textLocale by a comma-separated language tag string,
  677. for example "ja-JP,zh-CN". This attribute only takes effect on API 21 and above.
  678. Before API 24, only the first language tag is used. Starting from API 24,
  679. the string will be converted into a {@link android.os.LocaleList} and then used by
  680. {@link android.widget.TextView} -->
  681. <attr format="string" name="textLocale"/>
  682. <attr name="android:textAppearance"/>
  683. <!-- Specify the type of auto-size. Note that this feature is not supported by EditText,
  684. works only for TextView. -->
  685. <attr format="enum" name="autoSizeTextType">
  686. <!-- No auto-sizing (default). -->
  687. <enum name="none" value="0"/>
  688. <!-- Uniform horizontal and vertical text size scaling to fit within the
  689. container. -->
  690. <enum name="uniform" value="1"/>
  691. </attr>
  692. <!-- Specify the auto-size step size if <code>autoSizeTextType</code> is set to
  693. <code>uniform</code>. The default is 1px. Overwrites
  694. <code>autoSizePresetSizes</code> if set. -->
  695. <attr format="dimension" name="autoSizeStepGranularity"/>
  696. <!-- Resource array of dimensions to be used in conjunction with
  697. <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides
  698. <code>autoSizeStepGranularity</code> if set. -->
  699. <attr format="reference" name="autoSizePresetSizes"/>
  700. <!-- The minimum text size constraint to be used when auto-sizing text. -->
  701. <attr format="dimension" name="autoSizeMinTextSize"/>
  702. <!-- The maximum text size constraint to be used when auto-sizing text. -->
  703. <attr format="dimension" name="autoSizeMaxTextSize"/>
  704. <!-- The attribute for the font family. -->
  705. <attr format="string" name="fontFamily"/>
  706. <!-- Explicit height between lines of text. If set, this will override the values set
  707. for lineSpacingExtra and lineSpacingMultiplier. -->
  708. <attr format="dimension" name="lineHeight"/>
  709. <!-- Distance from the top of the TextView to the first text baseline. If set, this
  710. overrides the value set for paddingTop. -->
  711. <attr format="dimension" name="firstBaselineToTopHeight"/>
  712. <!-- Distance from the bottom of the TextView to the last text baseline. If set, this
  713. overrides the value set for paddingBottom. -->
  714. <attr format="dimension" name="lastBaselineToBottomHeight"/>
  715. <!-- OpenType font variation settings, available after api 26. -->
  716. <attr format="string" name="fontVariationSettings"/>
  717. <!-- Compound drawables allowing the use of vector drawable when running on older versions
  718. of the platform. -->
  719. <attr format="reference" name="drawableLeftCompat"/>
  720. <attr format="reference" name="drawableTopCompat"/>
  721. <attr format="reference" name="drawableRightCompat"/>
  722. <attr format="reference" name="drawableBottomCompat"/>
  723. <attr format="reference" name="drawableStartCompat"/>
  724. <attr format="reference" name="drawableEndCompat"/>
  725. <!-- Tint to apply to the compound (left, top, etc.) drawables. -->
  726. <attr format="color" name="drawableTint"/>
  727. <!-- Blending mode used to apply the compound (left, top, etc.) drawables tint. -->
  728. <attr name="drawableTintMode">
  729. <!-- The tint is drawn on top of the drawable.
  730. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  731. <enum name="src_over" value="3"/>
  732. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  733. color channels are thrown out. [Sa * Da, Sc * Da] -->
  734. <enum name="src_in" value="5"/>
  735. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  736. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  737. <enum name="src_atop" value="9"/>
  738. <!-- Multiplies the color and alpha channels of the drawable with those of
  739. the tint. [Sa * Da, Sc * Dc] -->
  740. <enum name="multiply" value="14"/>
  741. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  742. <enum name="screen" value="15"/>
  743. <!-- Combines the tint and drawable color and alpha channels, clamping the
  744. result to valid color values. Saturate(S + D) -->
  745. <enum name="add" value="16"/>
  746. </attr>
  747. </declare-styleable>
  748. <declare-styleable name="AppCompatTheme">
  749. <!-- ============= -->
  750. <!-- Window styles -->
  751. <!-- ============= -->
  752. <eat-comment/>
  753. <!-- Flag indicating whether this window should have an Action Bar
  754. in place of the usual title bar. -->
  755. <attr format="boolean" name="windowActionBar"/>
  756. <!-- Flag indicating whether there should be no title on this window. -->
  757. <attr format="boolean" name="windowNoTitle"/>
  758. <!-- Flag indicating whether this window's Action Bar should overlay
  759. application content. Does nothing if the window would not
  760. have an Action Bar. -->
  761. <attr format="boolean" name="windowActionBarOverlay"/>
  762. <!-- Flag indicating whether action modes should overlay window content
  763. when there is not reserved space for their UI (such as an Action Bar). -->
  764. <attr format="boolean" name="windowActionModeOverlay"/>
  765. <!-- A fixed width for the window along the major axis of the screen,
  766. that is, when in landscape. Can be either an absolute dimension
  767. or a fraction of the screen size in that dimension. -->
  768. <attr format="dimension|fraction" name="windowFixedWidthMajor"/>
  769. <!-- A fixed height for the window along the minor axis of the screen,
  770. that is, when in landscape. Can be either an absolute dimension
  771. or a fraction of the screen size in that dimension. -->
  772. <attr format="dimension|fraction" name="windowFixedHeightMinor"/>
  773. <!-- A fixed width for the window along the minor axis of the screen,
  774. that is, when in portrait. Can be either an absolute dimension
  775. or a fraction of the screen size in that dimension. -->
  776. <attr format="dimension|fraction" name="windowFixedWidthMinor"/>
  777. <!-- A fixed height for the window along the major axis of the screen,
  778. that is, when in portrait. Can be either an absolute dimension
  779. or a fraction of the screen size in that dimension. -->
  780. <attr format="dimension|fraction" name="windowFixedHeightMajor"/>
  781. <!-- The minimum width the window is allowed to be, along the major
  782. axis of the screen. That is, when in landscape. Can be either
  783. an absolute dimension or a fraction of the screen size in that
  784. dimension. -->
  785. <attr format="dimension|fraction" name="windowMinWidthMajor"/>
  786. <!-- The minimum width the window is allowed to be, along the minor
  787. axis of the screen. That is, when in portrait. Can be either
  788. an absolute dimension or a fraction of the screen size in that
  789. dimension. -->
  790. <attr format="dimension|fraction" name="windowMinWidthMinor"/>
  791. <attr name="android:windowIsFloating"/>
  792. <attr name="android:windowAnimationStyle"/>
  793. <!-- =================== -->
  794. <!-- Action bar styles -->
  795. <!-- =================== -->
  796. <eat-comment/>
  797. <!-- Default style for tabs within an action bar -->
  798. <attr format="reference" name="actionBarTabStyle"/>
  799. <attr format="reference" name="actionBarTabBarStyle"/>
  800. <attr format="reference" name="actionBarTabTextStyle"/>
  801. <attr format="reference" name="actionOverflowButtonStyle"/>
  802. <attr format="reference" name="actionOverflowMenuStyle"/>
  803. <!-- Reference to a theme that should be used to inflate popups
  804. shown by widgets in the action bar. -->
  805. <attr format="reference" name="actionBarPopupTheme"/>
  806. <!-- Reference to a style for the Action Bar -->
  807. <attr format="reference" name="actionBarStyle"/>
  808. <!-- Reference to a style for the split Action Bar. This style
  809. controls the split component that holds the menu/action
  810. buttons. actionBarStyle is still used for the primary
  811. bar. -->
  812. <attr format="reference" name="actionBarSplitStyle"/>
  813. <!-- Reference to a theme that should be used to inflate the
  814. action bar. This will be inherited by any widget inflated
  815. into the action bar. -->
  816. <attr format="reference" name="actionBarTheme"/>
  817. <!-- Reference to a theme that should be used to inflate widgets
  818. and layouts destined for the action bar. Most of the time
  819. this will be a reference to the current theme, but when
  820. the action bar has a significantly different contrast
  821. profile than the rest of the activity the difference
  822. can become important. If this is set to @null the current
  823. theme will be used.-->
  824. <attr format="reference" name="actionBarWidgetTheme"/>
  825. <!-- Size of the Action Bar, including the contextual
  826. bar used to present Action Modes. -->
  827. <attr format="dimension" name="actionBarSize">
  828. <enum name="wrap_content" value="0"/>
  829. </attr>
  830. <!-- Custom divider drawable to use for elements in the action bar. -->
  831. <attr format="reference" name="actionBarDivider"/>
  832. <!-- Custom item state list drawable background for action bar items. -->
  833. <attr format="reference" name="actionBarItemBackground"/>
  834. <!-- TextAppearance style that will be applied to text that
  835. appears within action menu items. -->
  836. <attr format="reference" name="actionMenuTextAppearance"/>
  837. <!-- Color for text that appears within action menu items. -->
  838. <!-- Color for text that appears within action menu items. -->
  839. <attr format="color|reference" name="actionMenuTextColor"/>
  840. <!-- =================== -->
  841. <!-- Action mode styles -->
  842. <!-- =================== -->
  843. <eat-comment/>
  844. <attr format="reference" name="actionModeStyle"/>
  845. <attr format="reference" name="actionModeCloseButtonStyle"/>
  846. <!-- Background drawable to use for action mode UI -->
  847. <attr format="reference" name="actionModeBackground"/>
  848. <!-- Background drawable to use for action mode UI in the lower split bar -->
  849. <attr format="reference" name="actionModeSplitBackground"/>
  850. <!-- Drawable to use for the close action mode button -->
  851. <attr format="reference" name="actionModeCloseDrawable"/>
  852. <!-- Drawable to use for the Cut action button in Contextual Action Bar -->
  853. <attr format="reference" name="actionModeCutDrawable"/>
  854. <!-- Drawable to use for the Copy action button in Contextual Action Bar -->
  855. <attr format="reference" name="actionModeCopyDrawable"/>
  856. <!-- Drawable to use for the Paste action button in Contextual Action Bar -->
  857. <attr format="reference" name="actionModePasteDrawable"/>
  858. <!-- Drawable to use for the Select all action button in Contextual Action Bar -->
  859. <attr format="reference" name="actionModeSelectAllDrawable"/>
  860. <!-- Drawable to use for the Share action button in WebView selection action modes -->
  861. <attr format="reference" name="actionModeShareDrawable"/>
  862. <!-- Drawable to use for the Find action button in WebView selection action modes -->
  863. <attr format="reference" name="actionModeFindDrawable"/>
  864. <!-- Drawable to use for the Web Search action button in WebView selection action modes -->
  865. <attr format="reference" name="actionModeWebSearchDrawable"/>
  866. <!-- PopupWindow style to use for action modes when showing as a window overlay. -->
  867. <attr format="reference" name="actionModePopupWindowStyle"/>
  868. <!-- =================== -->
  869. <!-- Text styles -->
  870. <!-- =================== -->
  871. <eat-comment/>
  872. <!-- Text color, typeface, size, and style for the text inside of a popup menu. -->
  873. <attr format="reference" name="textAppearanceLargePopupMenu"/>
  874. <!-- Text color, typeface, size, and style for small text inside of a popup menu. -->
  875. <attr format="reference" name="textAppearanceSmallPopupMenu"/>
  876. <!-- Text color, typeface, size, and style for header text inside of a popup menu. -->
  877. <attr format="reference" name="textAppearancePopupMenuHeader"/>
  878. <!-- =================== -->
  879. <!-- Dialog styles -->
  880. <!-- =================== -->
  881. <eat-comment/>
  882. <!-- Theme to use for dialogs spawned from this theme. -->
  883. <attr format="reference" name="dialogTheme"/>
  884. <!-- Preferred padding for dialog content. -->
  885. <attr format="dimension" name="dialogPreferredPadding"/>
  886. <!-- The list divider used in alert dialogs. -->
  887. <attr format="reference" name="listDividerAlertDialog"/>
  888. <!-- Preferred corner radius of dialogs. -->
  889. <attr format="dimension" name="dialogCornerRadius"/>
  890. <!-- =================== -->
  891. <!-- Other widget styles -->
  892. <!-- =================== -->
  893. <eat-comment/>
  894. <!-- Default ActionBar dropdown style. -->
  895. <attr format="reference" name="actionDropDownStyle"/>
  896. <!-- The preferred item height for dropdown lists. -->
  897. <attr format="dimension" name="dropdownListPreferredItemHeight"/>
  898. <!-- Default Spinner style. -->
  899. <attr format="reference" name="spinnerDropDownItemStyle"/>
  900. <!-- Specifies a drawable to use for the 'home as up' indicator. -->
  901. <attr format="reference" name="homeAsUpIndicator"/>
  902. <!-- Default action button style. -->
  903. <attr format="reference" name="actionButtonStyle"/>
  904. <!-- Style for button bars -->
  905. <attr format="reference" name="buttonBarStyle"/>
  906. <!-- Style for buttons within button bars -->
  907. <attr format="reference" name="buttonBarButtonStyle"/>
  908. <!-- A style that may be applied to buttons or other selectable items
  909. that should react to pressed and focus states, but that do not
  910. have a clear visual border along the edges. -->
  911. <attr format="reference" name="selectableItemBackground"/>
  912. <!-- Background drawable for borderless standalone items that need focus/pressed states. -->
  913. <attr format="reference" name="selectableItemBackgroundBorderless"/>
  914. <!-- Style for buttons without an explicit border, often used in groups. -->
  915. <attr format="reference" name="borderlessButtonStyle"/>
  916. <!-- A drawable that may be used as a vertical divider between visual elements. -->
  917. <attr format="reference" name="dividerVertical"/>
  918. <!-- A drawable that may be used as a horizontal divider between visual elements. -->
  919. <attr format="reference" name="dividerHorizontal"/>
  920. <!-- Default ActivityChooserView style. -->
  921. <attr format="reference" name="activityChooserViewStyle"/>
  922. <!-- Default Toolbar style. -->
  923. <attr format="reference" name="toolbarStyle"/>
  924. <!-- Default Toolar NavigationButtonStyle -->
  925. <attr format="reference" name="toolbarNavigationButtonStyle"/>
  926. <!-- Default PopupMenu style. -->
  927. <attr format="reference" name="popupMenuStyle"/>
  928. <!-- Default PopupWindow style. -->
  929. <attr format="reference" name="popupWindowStyle"/>
  930. <!-- EditText text foreground color. -->
  931. <attr format="reference|color" name="editTextColor"/>
  932. <!-- EditText background drawable. -->
  933. <attr format="reference" name="editTextBackground"/>
  934. <!-- ImageButton background drawable. -->
  935. <attr format="reference" name="imageButtonStyle"/>
  936. <!-- ============================ -->
  937. <!-- SearchView styles and assets -->
  938. <!-- ============================ -->
  939. <eat-comment/>
  940. <!-- Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. -->
  941. <attr format="reference" name="textAppearanceSearchResultTitle"/>
  942. <!-- Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. -->
  943. <attr format="reference" name="textAppearanceSearchResultSubtitle"/>
  944. <!-- Text color for urls in search suggestions, used by things like global search -->
  945. <attr format="reference|color" name="textColorSearchUrl"/>
  946. <!-- Style for the search query widget. -->
  947. <attr format="reference" name="searchViewStyle"/>
  948. <!-- =========== -->
  949. <!-- List styles -->
  950. <!-- =========== -->
  951. <eat-comment/>
  952. <!-- The preferred list item height. -->
  953. <attr format="dimension" name="listPreferredItemHeight"/>
  954. <!-- A smaller, sleeker list item height. -->
  955. <attr format="dimension" name="listPreferredItemHeightSmall"/>
  956. <!-- A larger, more robust list item height. -->
  957. <attr format="dimension" name="listPreferredItemHeightLarge"/>
  958. <!-- The preferred padding along the left edge of list items. -->
  959. <attr format="dimension" name="listPreferredItemPaddingLeft"/>
  960. <!-- The preferred padding along the right edge of list items. -->
  961. <attr format="dimension" name="listPreferredItemPaddingRight"/>
  962. <!-- The preferred padding along the start edge of list items. -->
  963. <attr format="dimension" name="listPreferredItemPaddingStart"/>
  964. <!-- The preferred padding along the end edge of list items. -->
  965. <attr format="dimension" name="listPreferredItemPaddingEnd"/>
  966. <!-- ListPopupWindow compatibility -->
  967. <attr format="reference" name="dropDownListViewStyle"/>
  968. <attr format="reference" name="listPopupWindowStyle"/>
  969. <!-- The preferred TextAppearance for the primary text of list items. -->
  970. <attr format="reference" name="textAppearanceListItem"/>
  971. <!-- The preferred TextAppearance for the secondary text of list items. -->
  972. <attr format="reference" name="textAppearanceListItemSecondary"/>
  973. <!-- The preferred TextAppearance for the primary text of small list items. -->
  974. <attr format="reference" name="textAppearanceListItemSmall"/>
  975. <!-- ============ -->
  976. <!-- Panel styles -->
  977. <!-- ============ -->
  978. <eat-comment/>
  979. <!-- The background of a panel when it is inset from the left and right edges of the screen. -->
  980. <attr format="reference" name="panelBackground"/>
  981. <!-- Default Panel Menu width. -->
  982. <attr format="dimension" name="panelMenuListWidth"/>
  983. <!-- Default Panel Menu style. -->
  984. <attr format="reference" name="panelMenuListTheme"/>
  985. <!-- Drawable used as a background for selected list items. -->
  986. <attr format="reference" name="listChoiceBackgroundIndicator"/>
  987. <!-- ============= -->
  988. <!-- Color palette -->
  989. <!-- ============= -->
  990. <eat-comment/>
  991. <!-- The primary branding color for the app. By default, this is the color applied to the
  992. action bar background. -->
  993. <attr format="color" name="colorPrimary"/>
  994. <!-- Dark variant of the primary branding color. By default, this is the color applied to
  995. the status bar (via statusBarColor) and navigation bar (via navigationBarColor). -->
  996. <attr format="color" name="colorPrimaryDark"/>
  997. <!-- Bright complement to the primary branding color. By default, this is the color applied
  998. to framework controls (via colorControlActivated). -->
  999. <attr format="color" name="colorAccent"/>
  1000. <!-- The color applied to framework controls in their normal state. -->
  1001. <attr format="color" name="colorControlNormal"/>
  1002. <!-- The color applied to framework controls in their activated (ex. checked) state. -->
  1003. <attr format="color" name="colorControlActivated"/>
  1004. <!-- The color applied to framework control highlights (ex. ripples, list selectors). -->
  1005. <attr format="color" name="colorControlHighlight"/>
  1006. <!-- The color applied to framework buttons in their normal state. -->
  1007. <attr format="color" name="colorButtonNormal"/>
  1008. <!-- The color applied to framework switch thumbs in their normal state. -->
  1009. <attr format="color" name="colorSwitchThumbNormal"/>
  1010. <!-- The background used by framework controls. -->
  1011. <attr format="reference" name="controlBackground"/>
  1012. <!-- Default color of background imagery for floating components, ex. dialogs, popups, and cards. -->
  1013. <attr format="color" name="colorBackgroundFloating"/>
  1014. <!-- ============ -->
  1015. <!-- Alert Dialog styles -->
  1016. <!-- ============ -->
  1017. <eat-comment/>
  1018. <attr format="reference" name="alertDialogStyle"/>
  1019. <attr format="reference" name="alertDialogButtonGroupStyle"/>
  1020. <attr format="boolean" name="alertDialogCenterButtons"/>
  1021. <!-- Theme to use for alert dialogs spawned from this theme. -->
  1022. <attr format="reference" name="alertDialogTheme"/>
  1023. <!-- Color of list item text in alert dialogs. -->
  1024. <attr format="reference|color" name="textColorAlertDialogListItem"/>
  1025. <!-- Style for the "positive" buttons within button bars -->
  1026. <attr format="reference" name="buttonBarPositiveButtonStyle"/>
  1027. <!-- Style for the "negative" buttons within button bars -->
  1028. <attr format="reference" name="buttonBarNegativeButtonStyle"/>
  1029. <!-- Style for the "neutral" buttons within button bars -->
  1030. <attr format="reference" name="buttonBarNeutralButtonStyle"/>
  1031. <!-- ===================== -->
  1032. <!-- Default widget styles -->
  1033. <!-- ===================== -->
  1034. <eat-comment/>
  1035. <!-- Default AutoCompleteTextView style. -->
  1036. <attr format="reference" name="autoCompleteTextViewStyle"/>
  1037. <!-- Normal Button style. -->
  1038. <attr format="reference" name="buttonStyle"/>
  1039. <!-- Small Button style. -->
  1040. <attr format="reference" name="buttonStyleSmall"/>
  1041. <!-- Default Checkbox style. -->
  1042. <attr format="reference" name="checkboxStyle"/>
  1043. <!-- Default CheckedTextView style. -->
  1044. <attr format="reference" name="checkedTextViewStyle"/>
  1045. <!-- Default EditText style. -->
  1046. <attr format="reference" name="editTextStyle"/>
  1047. <!-- Default RadioButton style. -->
  1048. <attr format="reference" name="radioButtonStyle"/>
  1049. <!-- Default RatingBar style. -->
  1050. <attr format="reference" name="ratingBarStyle"/>
  1051. <!-- Indicator RatingBar style. -->
  1052. <attr format="reference" name="ratingBarStyleIndicator"/>
  1053. <!-- Small indicator RatingBar style. -->
  1054. <attr format="reference" name="ratingBarStyleSmall"/>
  1055. <!-- Default SeekBar style. -->
  1056. <attr format="reference" name="seekBarStyle"/>
  1057. <!-- Default Spinner style. -->
  1058. <attr format="reference" name="spinnerStyle"/>
  1059. <!-- Default style for the Switch widget. -->
  1060. <attr format="reference" name="switchStyle"/>
  1061. <!-- Default menu-style ListView style. -->
  1062. <attr format="reference" name="listMenuViewStyle"/>
  1063. <!-- ===================== -->
  1064. <!-- Tooltip styles -->
  1065. <!-- ===================== -->
  1066. <eat-comment/>
  1067. <!-- Background to use for tooltips -->
  1068. <attr format="reference" name="tooltipFrameBackground"/>
  1069. <!-- Foreground color to use for tooltips -->
  1070. <attr format="reference|color" name="tooltipForegroundColor"/>
  1071. <!-- Color used for error states and things that need to be drawn to
  1072. the user's attention. -->
  1073. <attr format="reference|color" name="colorError"/>
  1074. <attr format="string" name="viewInflaterClass"/>
  1075. <!-- ===================== -->
  1076. <!-- Animated list choice indicators -->
  1077. <!-- ===================== -->
  1078. <eat-comment/>
  1079. <!-- Animated Drawable to use for single choice indicators. -->
  1080. <attr format="reference" name="listChoiceIndicatorMultipleAnimated"/>
  1081. <!-- Animated Drawable to use for multiple choice indicators. -->
  1082. <attr format="reference" name="listChoiceIndicatorSingleAnimated"/>
  1083. </declare-styleable>
  1084. <declare-styleable name="Banner"><attr format="integer" name="delay_time"/><attr format="integer" name="scroll_time"/><attr format="boolean" name="is_auto_play"/><attr format="color|reference" name="title_background"/><attr format="color" name="title_textcolor"/><attr format="dimension" name="title_textsize"/><attr format="dimension" name="title_height"/><attr format="dimension" name="indicator_width"/><attr format="dimension" name="indicator_height"/><attr format="dimension" name="indicator_margin"/><attr format="reference" name="indicator_drawable_selected"/><attr format="reference" name="indicator_drawable_unselected"/><attr format="reference" name="banner_layout"/><attr format="reference" name="banner_default_image"/><attr format="enum" name="image_scale_type">
  1085. <enum name="center" value="0"/>
  1086. <enum name="center_crop" value="1"/>
  1087. <enum name="center_inside" value="2"/>
  1088. <enum name="fit_center" value="3"/>
  1089. <enum name="fit_end" value="4"/>
  1090. <enum name="fit_start" value="5"/>
  1091. <enum name="fit_xy" value="6"/>
  1092. <enum name="matrix" value="7"/>
  1093. </attr></declare-styleable>
  1094. <declare-styleable name="BottomAppBar"><attr name="backgroundTint"/><attr name="fabAlignmentMode">
  1095. <enum name="center" value="0"/>
  1096. <enum name="end" value="1"/>
  1097. </attr><attr format="dimension" name="fabCradleMargin"/><attr format="dimension" name="fabCradleRoundedCornerRadius"/><attr format="dimension" name="fabCradleVerticalOffset"/><attr format="boolean" name="hideOnScroll"/></declare-styleable>
  1098. <declare-styleable name="BottomNavigationView"><attr name="menu"/><attr name="labelVisibilityMode">
  1099. <enum name="auto" value="-1"/>
  1100. <enum name="selected" value="0"/>
  1101. <enum name="labeled" value="1"/>
  1102. <enum name="unlabeled" value="2"/>
  1103. </attr><attr name="itemBackground"/><attr format="dimension" name="itemIconSize"/><attr name="itemIconTint"/><attr format="reference" name="itemTextAppearanceInactive"/><attr format="reference" name="itemTextAppearanceActive"/><attr name="itemTextColor"/><attr format="boolean" name="itemHorizontalTranslationEnabled"/><attr name="elevation"/></declare-styleable>
  1104. <declare-styleable name="BottomSheetBehavior_Layout"><attr format="dimension" name="behavior_peekHeight">
  1105. <enum name="auto" value="-1"/>
  1106. </attr><attr format="boolean" name="behavior_hideable"/><attr format="boolean" name="behavior_skipCollapsed"/><attr format="boolean" name="behavior_fitToContents"/></declare-styleable>
  1107. <declare-styleable name="ButtonBarLayout">
  1108. <!-- Whether to automatically stack the buttons when there is not
  1109. enough space to lay them out side-by-side. -->
  1110. <attr format="boolean" name="allowStacking"/>
  1111. </declare-styleable>
  1112. <declare-styleable name="CardView">
  1113. <!-- Background color for CardView. -->
  1114. <attr format="color" name="cardBackgroundColor"/>
  1115. <!-- Corner radius for CardView. -->
  1116. <attr format="dimension" name="cardCornerRadius"/>
  1117. <!-- Elevation for CardView. -->
  1118. <attr format="dimension" name="cardElevation"/>
  1119. <!-- Maximum Elevation for CardView. -->
  1120. <attr format="dimension" name="cardMaxElevation"/>
  1121. <!-- Add padding in API v21+ as well to have the same measurements with previous versions. -->
  1122. <attr format="boolean" name="cardUseCompatPadding"/>
  1123. <!-- Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. -->
  1124. <attr format="boolean" name="cardPreventCornerOverlap"/>
  1125. <!-- Inner padding between the edges of the Card and children of the CardView. -->
  1126. <attr format="dimension" name="contentPadding"/>
  1127. <!-- Inner padding between the left edge of the Card and children of the CardView. -->
  1128. <attr format="dimension" name="contentPaddingLeft"/>
  1129. <!-- Inner padding between the right edge of the Card and children of the CardView. -->
  1130. <attr format="dimension" name="contentPaddingRight"/>
  1131. <!-- Inner padding between the top edge of the Card and children of the CardView. -->
  1132. <attr format="dimension" name="contentPaddingTop"/>
  1133. <!-- Inner padding between the bottom edge of the Card and children of the CardView. -->
  1134. <attr format="dimension" name="contentPaddingBottom"/>
  1135. <!-- Workaround to read user defined minimum width -->
  1136. <attr name="android:minWidth"/>
  1137. <!-- Workaround to read user defined minimum height -->
  1138. <attr name="android:minHeight"/>
  1139. </declare-styleable>
  1140. <declare-styleable name="Chip"><attr format="color" name="chipBackgroundColor"/><attr format="dimension" name="chipMinHeight"/><attr format="dimension" name="chipCornerRadius"/><attr format="color" name="chipStrokeColor"/><attr format="dimension" name="chipStrokeWidth"/><attr name="rippleColor"/><attr name="android:text"/><attr name="android:textAppearance"/><attr name="android:ellipsize"/><attr name="android:maxWidth"/><attr format="boolean" name="chipIconVisible"/><attr format="boolean" name="chipIconEnabled"/><attr format="reference" name="chipIcon"/><attr format="color" name="chipIconTint"/><attr format="dimension" name="chipIconSize"/><attr format="boolean" name="closeIconVisible"/><attr format="boolean" name="closeIconEnabled"/><attr format="reference" name="closeIcon"/><attr format="color" name="closeIconTint"/><attr format="dimension" name="closeIconSize"/><attr name="android:checkable"/><attr format="boolean" name="checkedIconVisible"/><attr format="boolean" name="checkedIconEnabled"/><attr format="reference" name="checkedIcon"/><attr name="showMotionSpec"/><attr name="hideMotionSpec"/><attr format="dimension" name="chipStartPadding"/><attr format="dimension" name="iconStartPadding"/><attr format="dimension" name="iconEndPadding"/><attr format="dimension" name="textStartPadding"/><attr format="dimension" name="textEndPadding"/><attr format="dimension" name="closeIconStartPadding"/><attr format="dimension" name="closeIconEndPadding"/><attr format="dimension" name="chipEndPadding"/></declare-styleable>
  1141. <declare-styleable name="ChipGroup"><attr format="dimension" name="chipSpacing"/><attr format="dimension" name="chipSpacingHorizontal"/><attr format="dimension" name="chipSpacingVertical"/><attr format="boolean" name="singleLine"/><attr format="boolean" name="singleSelection"/><attr format="reference" name="checkedChip"/></declare-styleable>
  1142. <declare-styleable name="CollapsingToolbarLayout"><attr format="dimension" name="expandedTitleMargin"/><attr format="dimension" name="expandedTitleMarginStart"/><attr format="dimension" name="expandedTitleMarginTop"/><attr format="dimension" name="expandedTitleMarginEnd"/><attr format="dimension" name="expandedTitleMarginBottom"/><attr format="reference" name="expandedTitleTextAppearance"/><attr format="reference" name="collapsedTitleTextAppearance"/><attr format="color" name="contentScrim"/><attr format="color" name="statusBarScrim"/><attr format="reference" name="toolbarId"/><attr format="dimension" name="scrimVisibleHeightTrigger"/><attr format="integer" name="scrimAnimationDuration"/><attr name="collapsedTitleGravity">
  1143. <flag name="top" value="0x30"/>
  1144. <flag name="bottom" value="0x50"/>
  1145. <flag name="left" value="0x03"/>
  1146. <flag name="right" value="0x05"/>
  1147. <flag name="center_vertical" value="0x10"/>
  1148. <flag name="fill_vertical" value="0x70"/>
  1149. <flag name="center_horizontal" value="0x01"/>
  1150. <flag name="center" value="0x11"/>
  1151. <flag name="start" value="0x00800003"/>
  1152. <flag name="end" value="0x00800005"/>
  1153. </attr><attr name="expandedTitleGravity">
  1154. <flag name="top" value="0x30"/>
  1155. <flag name="bottom" value="0x50"/>
  1156. <flag name="left" value="0x03"/>
  1157. <flag name="right" value="0x05"/>
  1158. <flag name="center_vertical" value="0x10"/>
  1159. <flag name="fill_vertical" value="0x70"/>
  1160. <flag name="center_horizontal" value="0x01"/>
  1161. <flag name="center" value="0x11"/>
  1162. <flag name="start" value="0x00800003"/>
  1163. <flag name="end" value="0x00800005"/>
  1164. </attr><attr format="boolean" name="titleEnabled"/><attr name="title"/></declare-styleable>
  1165. <declare-styleable name="CollapsingToolbarLayout_Layout"><attr name="layout_collapseMode">
  1166. <enum name="none" value="0"/>
  1167. <enum name="pin" value="1"/>
  1168. <enum name="parallax" value="2"/>
  1169. </attr><attr format="float" name="layout_collapseParallaxMultiplier"/></declare-styleable>
  1170. <declare-styleable name="ColorStateListItem">
  1171. <!-- Base color for this state. -->
  1172. <attr name="android:color"/>
  1173. <!-- Alpha multiplier applied to the base color. -->
  1174. <attr format="float" name="alpha"/>
  1175. <attr name="android:alpha"/>
  1176. </declare-styleable>
  1177. <declare-styleable name="CommonTabLayout"><attr name="tl_indicator_color"/><attr name="tl_indicator_height"/><attr name="tl_indicator_width"/><attr name="tl_indicator_margin_left"/><attr name="tl_indicator_margin_top"/><attr name="tl_indicator_margin_right"/><attr name="tl_indicator_margin_bottom"/><attr name="tl_indicator_corner_radius"/><attr name="tl_indicator_gravity"/><attr name="tl_indicator_style"/><attr name="tl_indicator_anim_enable"/><attr name="tl_indicator_anim_duration"/><attr name="tl_indicator_bounce_enable"/><attr name="tl_underline_color"/><attr name="tl_underline_height"/><attr name="tl_underline_gravity"/><attr name="tl_divider_color"/><attr name="tl_divider_width"/><attr name="tl_divider_padding"/><attr name="tl_tab_padding"/><attr name="tl_tab_space_equal"/><attr name="tl_tab_width"/><attr name="tl_textsize"/><attr name="tl_textSelectColor"/><attr name="tl_textUnselectColor"/><attr name="tl_textBold"/><attr name="tl_textAllCaps"/><attr format="dimension" name="tl_iconWidth"/><attr format="dimension" name="tl_iconHeight"/><attr format="boolean" name="tl_iconVisible"/><attr format="enum" name="tl_iconGravity">
  1178. <enum name="LEFT" value="3"/>
  1179. <enum name="TOP" value="48"/>
  1180. <enum name="RIGHT" value="5"/>
  1181. <enum name="BOTTOM" value="80"/>
  1182. </attr><attr format="dimension" name="tl_iconMargin"/></declare-styleable>
  1183. <declare-styleable name="CompoundButton">
  1184. <attr name="android:button"/>
  1185. <!-- Compat attr to load backported drawable types -->
  1186. <attr format="reference" name="buttonCompat"/>
  1187. <!-- Tint to apply to the button drawable. -->
  1188. <attr format="color" name="buttonTint"/>
  1189. <!-- Blending mode used to apply the button tint. -->
  1190. <attr name="buttonTintMode">
  1191. <!-- The tint is drawn on top of the drawable.
  1192. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  1193. <enum name="src_over" value="3"/>
  1194. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  1195. color channels are thrown out. [Sa * Da, Sc * Da] -->
  1196. <enum name="src_in" value="5"/>
  1197. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  1198. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  1199. <enum name="src_atop" value="9"/>
  1200. <!-- Multiplies the color and alpha channels of the drawable with those of
  1201. the tint. [Sa * Da, Sc * Dc] -->
  1202. <enum name="multiply" value="14"/>
  1203. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  1204. <enum name="screen" value="15"/>
  1205. <!-- Combines the tint and icon color and alpha channels, clamping the
  1206. result to valid color values. Saturate(S + D) -->
  1207. <enum name="add" value="16"/>
  1208. </attr>
  1209. </declare-styleable>
  1210. <declare-styleable name="Constraint"><attr name="android:orientation"/><attr name="android:id"/><attr name="android:visibility"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="pivotAnchor"/><attr name="android:pivotX"/><attr name="android:pivotY"/><attr name="android:transformPivotX"/><attr name="android:transformPivotY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_marginStart"/><attr name="android:layout_marginBottom"/><attr name="android:layout_marginTop"/><attr name="android:layout_marginEnd"/><attr name="android:layout_marginLeft"/><attr name="android:layout_marginRight"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/><attr name="barrierDirection"/><attr name="barrierMargin"/><attr name="constraint_referenced_ids"/><attr name="android:maxHeight"/><attr name="android:maxWidth"/><attr name="android:minHeight"/><attr name="android:minWidth"/><attr name="barrierAllowsGoneWidgets"/><attr name="chainUseRtl"/><attr name="animate_relativeTo"/><attr name="transitionEasing"/><attr name="pathMotionArc"/><attr name="transitionPathRotate"/><attr name="drawPath"/><attr name="progress"/></declare-styleable>
  1211. <declare-styleable name="ConstraintLayout_Layout"><attr name="android:orientation"/><attr name="android:minWidth"/><attr name="android:minHeight"/><attr name="android:maxWidth"/><attr name="android:maxHeight"/><attr name="layout_optimizationLevel"/><attr name="layoutDescription"/><attr name="constraintSet"/><attr name="barrierDirection"/><attr name="barrierAllowsGoneWidgets"/><attr name="barrierMargin"/><attr name="constraint_referenced_ids"/><attr name="chainUseRtl"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/></declare-styleable>
  1212. <declare-styleable name="ConstraintLayout_placeholder"><attr name="emptyVisibility"/><attr name="content"/></declare-styleable>
  1213. <declare-styleable name="ConstraintSet"><attr name="android:orientation"/><attr name="android:id"/><attr name="android:visibility"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="pivotAnchor"/><attr name="android:pivotX"/><attr name="android:pivotY"/><attr name="android:transformPivotX"/><attr name="android:transformPivotY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_marginStart"/><attr name="android:layout_marginBottom"/><attr name="android:layout_marginTop"/><attr name="android:layout_marginEnd"/><attr name="android:layout_marginLeft"/><attr name="android:layout_marginRight"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/><attr name="barrierDirection"/><attr name="constraint_referenced_ids"/><attr name="barrierMargin"/><attr name="android:maxHeight"/><attr name="android:maxWidth"/><attr name="android:minHeight"/><attr name="android:minWidth"/><attr name="barrierAllowsGoneWidgets"/><attr name="chainUseRtl"/><attr name="animate_relativeTo"/><attr name="transitionEasing"/><attr name="pathMotionArc"/><attr name="transitionPathRotate"/><attr name="drawPath"/><attr name="motionProgress"/></declare-styleable>
  1214. <declare-styleable name="CoordinatorLayout">
  1215. <!-- A reference to an array of integers representing the
  1216. locations of horizontal keylines in dp from the starting edge.
  1217. Child views can refer to these keylines for alignment using
  1218. layout_keyline="index" where index is a 0-based index into
  1219. this array. -->
  1220. <attr format="reference" name="keylines"/>
  1221. <!-- Drawable to display behind the status bar when the view is set to draw behind it. -->
  1222. <attr format="color|reference" name="statusBarBackground"/>
  1223. </declare-styleable>
  1224. <declare-styleable name="CoordinatorLayout_Layout">
  1225. <attr name="android:layout_gravity"/>
  1226. <!-- The class name of a Behavior class defining special runtime behavior
  1227. for this child view. -->
  1228. <attr format="string" name="layout_behavior"/>
  1229. <!-- The id of an anchor view that this view should position relative to. -->
  1230. <attr format="reference" name="layout_anchor"/>
  1231. <!-- The index of a keyline this view should position relative to.
  1232. android:layout_gravity will affect how the view aligns to the
  1233. specified keyline. -->
  1234. <attr format="integer" name="layout_keyline"/>
  1235. <!-- Specifies how an object should position relative to an anchor, on both the X and Y axes,
  1236. within its parent's bounds. -->
  1237. <attr name="layout_anchorGravity">
  1238. <!-- Push object to the top of its container, not changing its size. -->
  1239. <flag name="top" value="0x30"/>
  1240. <!-- Push object to the bottom of its container, not changing its size. -->
  1241. <flag name="bottom" value="0x50"/>
  1242. <!-- Push object to the left of its container, not changing its size. -->
  1243. <flag name="left" value="0x03"/>
  1244. <!-- Push object to the right of its container, not changing its size. -->
  1245. <flag name="right" value="0x05"/>
  1246. <!-- Place object in the vertical center of its container, not changing its size. -->
  1247. <flag name="center_vertical" value="0x10"/>
  1248. <!-- Grow the vertical size of the object if needed so it completely fills its container. -->
  1249. <flag name="fill_vertical" value="0x70"/>
  1250. <!-- Place object in the horizontal center of its container, not changing its size. -->
  1251. <flag name="center_horizontal" value="0x01"/>
  1252. <!-- Grow the horizontal size of the object if needed so it completely fills its container. -->
  1253. <flag name="fill_horizontal" value="0x07"/>
  1254. <!-- Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. -->
  1255. <flag name="center" value="0x11"/>
  1256. <!-- Grow the horizontal and vertical size of the object if needed so it completely fills its container. -->
  1257. <flag name="fill" value="0x77"/>
  1258. <!-- Additional option that can be set to have the top and/or bottom edges of
  1259. the child clipped to its container's bounds.
  1260. The clip will be based on the vertical gravity: a top gravity will clip the bottom
  1261. edge, a bottom gravity will clip the top edge, and neither will clip both edges. -->
  1262. <flag name="clip_vertical" value="0x80"/>
  1263. <!-- Additional option that can be set to have the left and/or right edges of
  1264. the child clipped to its container's bounds.
  1265. The clip will be based on the horizontal gravity: a left gravity will clip the right
  1266. edge, a right gravity will clip the left edge, and neither will clip both edges. -->
  1267. <flag name="clip_horizontal" value="0x08"/>
  1268. <!-- Push object to the beginning of its container, not changing its size. -->
  1269. <flag name="start" value="0x00800003"/>
  1270. <!-- Push object to the end of its container, not changing its size. -->
  1271. <flag name="end" value="0x00800005"/>
  1272. </attr>
  1273. <!-- Specifies how this view insets the CoordinatorLayout and make some other views
  1274. dodge it. -->
  1275. <attr format="enum" name="layout_insetEdge">
  1276. <!-- Don't inset. -->
  1277. <enum name="none" value="0x0"/>
  1278. <!-- Inset the top edge. -->
  1279. <enum name="top" value="0x30"/>
  1280. <!-- Inset the bottom edge. -->
  1281. <enum name="bottom" value="0x50"/>
  1282. <!-- Inset the left edge. -->
  1283. <enum name="left" value="0x03"/>
  1284. <!-- Inset the right edge. -->
  1285. <enum name="right" value="0x05"/>
  1286. <!-- Inset the start edge. -->
  1287. <enum name="start" value="0x00800003"/>
  1288. <!-- Inset the end edge. -->
  1289. <enum name="end" value="0x00800005"/>
  1290. </attr>
  1291. <!-- Specifies how this view dodges the inset edges of the CoordinatorLayout. -->
  1292. <attr name="layout_dodgeInsetEdges">
  1293. <!-- Don't dodge any edges -->
  1294. <flag name="none" value="0x0"/>
  1295. <!-- Dodge the top inset edge. -->
  1296. <flag name="top" value="0x30"/>
  1297. <!-- Dodge the bottom inset edge. -->
  1298. <flag name="bottom" value="0x50"/>
  1299. <!-- Dodge the left inset edge. -->
  1300. <flag name="left" value="0x03"/>
  1301. <!-- Dodge the right inset edge. -->
  1302. <flag name="right" value="0x05"/>
  1303. <!-- Dodge the start inset edge. -->
  1304. <flag name="start" value="0x00800003"/>
  1305. <!-- Dodge the end inset edge. -->
  1306. <flag name="end" value="0x00800005"/>
  1307. <!-- Dodge all the inset edges. -->
  1308. <flag name="all" value="0x77"/>
  1309. </attr>
  1310. </declare-styleable>
  1311. <declare-styleable name="CustomAttribute"><attr format="string" name="attributeName"/><attr format="color" name="customColorValue"/><attr format="color" name="customColorDrawableValue"/><attr format="integer" name="customIntegerValue"/><attr format="float" name="customFloatValue"/><attr format="string" name="customStringValue"/><attr format="dimension" name="customDimension"/><attr format="dimension" name="customPixelDimension"/><attr format="boolean" name="customBoolean"/></declare-styleable>
  1312. <declare-styleable name="DesignTheme"><attr name="bottomSheetDialogTheme"/><attr name="bottomSheetStyle"/></declare-styleable>
  1313. <declare-styleable name="DrawerArrowToggle">
  1314. <!-- The drawing color for the bars -->
  1315. <attr format="color" name="color"/>
  1316. <!-- Whether bars should rotate or not during transition -->
  1317. <attr format="boolean" name="spinBars"/>
  1318. <!-- The total size of the drawable -->
  1319. <attr format="dimension" name="drawableSize"/>
  1320. <!-- The max gap between the bars when they are parallel to each other -->
  1321. <attr format="dimension" name="gapBetweenBars"/>
  1322. <!-- The length of the arrow head when formed to make an arrow -->
  1323. <attr format="dimension" name="arrowHeadLength"/>
  1324. <!-- The length of the shaft when formed to make an arrow -->
  1325. <attr format="dimension" name="arrowShaftLength"/>
  1326. <!-- The length of the bars when they are parallel to each other -->
  1327. <attr format="dimension" name="barLength"/>
  1328. <!-- The thickness (stroke size) for the bar paint -->
  1329. <attr format="dimension" name="thickness"/>
  1330. </declare-styleable>
  1331. <declare-styleable name="FloatingActionButton"><attr name="backgroundTint"/><attr name="backgroundTintMode"/><attr name="rippleColor"/><attr name="fabSize">
  1332. <enum name="auto" value="-1"/>
  1333. <enum name="normal" value="0"/>
  1334. <enum name="mini" value="1"/>
  1335. </attr><attr format="dimension" name="fabCustomSize"/><attr name="elevation"/><attr format="dimension" name="hoveredFocusedTranslationZ"/><attr format="dimension" name="pressedTranslationZ"/><attr format="dimension" name="borderWidth"/><attr format="boolean" name="useCompatPadding"/><attr format="dimension" name="maxImageSize"/><attr name="showMotionSpec"/><attr name="hideMotionSpec"/></declare-styleable>
  1336. <declare-styleable name="FloatingActionButton_Behavior_Layout"><attr format="boolean" name="behavior_autoHide"/></declare-styleable>
  1337. <declare-styleable name="FlowLayout"><attr format="dimension" name="itemSpacing"/><attr format="dimension" name="lineSpacing"/></declare-styleable>
  1338. <declare-styleable name="FontFamily">
  1339. <!-- The authority of the Font Provider to be used for the request. -->
  1340. <attr format="string" name="fontProviderAuthority"/>
  1341. <!-- The package for the Font Provider to be used for the request. This is used to verify
  1342. the identity of the provider. -->
  1343. <attr format="string" name="fontProviderPackage"/>
  1344. <!-- The query to be sent over to the provider. Refer to your font provider's documentation
  1345. on the format of this string. -->
  1346. <attr format="string" name="fontProviderQuery"/>
  1347. <!-- The sets of hashes for the certificates the provider should be signed with. This is
  1348. used to verify the identity of the provider, and is only required if the provider is not
  1349. part of the system image. This value may point to one list or a list of lists, where each
  1350. individual list represents one collection of signature hashes. Refer to your font provider's
  1351. documentation for these values. -->
  1352. <attr format="reference" name="fontProviderCerts"/>
  1353. <!-- The strategy to be used when fetching font data from a font provider in XML layouts.
  1354. This attribute is ignored when the resource is loaded from code, as it is equivalent to the
  1355. choice of API between {@link
  1356. androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and
  1357. {@link
  1358. androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)}
  1359. (async). -->
  1360. <attr name="fontProviderFetchStrategy">
  1361. <!-- The blocking font fetch works as follows.
  1362. First, check the local cache, then if the requested font is not cached, request the
  1363. font from the provider and wait until it is finished. You can change the length of
  1364. the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the
  1365. default typeface will be used instead. -->
  1366. <enum name="blocking" value="0"/>
  1367. <!-- The async font fetch works as follows.
  1368. First, check the local cache, then if the requeted font is not cached, trigger a
  1369. request the font and continue with layout inflation. Once the font fetch succeeds, the
  1370. target text view will be refreshed with the downloaded font data. The
  1371. fontProviderFetchTimeout will be ignored if async loading is specified. -->
  1372. <enum name="async" value="1"/>
  1373. </attr>
  1374. <!-- The length of the timeout during fetching. -->
  1375. <attr format="integer" name="fontProviderFetchTimeout">
  1376. <!-- A special value for the timeout. In this case, the blocking font fetching will not
  1377. timeout and wait until a reply is received from the font provider. -->
  1378. <enum name="forever" value="-1"/>
  1379. </attr>
  1380. </declare-styleable>
  1381. <declare-styleable name="FontFamilyFont">
  1382. <!-- The style of the given font file. This will be used when the font is being loaded into
  1383. the font stack and will override any style information in the font's header tables. If
  1384. unspecified, the value in the font's header tables will be used. -->
  1385. <attr name="fontStyle">
  1386. <enum name="normal" value="0"/>
  1387. <enum name="italic" value="1"/>
  1388. </attr>
  1389. <!-- The reference to the font file to be used. This should be a file in the res/font folder
  1390. and should therefore have an R reference value. E.g. @font/myfont -->
  1391. <attr format="reference" name="font"/>
  1392. <!-- The weight of the given font file. This will be used when the font is being loaded into
  1393. the font stack and will override any weight information in the font's header tables. Must
  1394. be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most
  1395. common values are 400 for regular weight and 700 for bold weight. If unspecified, the value
  1396. in the font's header tables will be used. -->
  1397. <attr format="integer" name="fontWeight"/>
  1398. <!-- The variation settings to be applied to the font. The string should be in the following
  1399. format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be
  1400. used, or the font used does not support variation settings, this attribute needs not be
  1401. specified. -->
  1402. <attr format="string" name="fontVariationSettings"/>
  1403. <!-- The index of the font in the tcc font file. If the font file referenced is not in the
  1404. tcc format, this attribute needs not be specified. -->
  1405. <attr format="integer" name="ttcIndex"/>
  1406. <!-- References to the framework attrs -->
  1407. <attr name="android:fontStyle"/>
  1408. <attr name="android:font"/>
  1409. <attr name="android:fontWeight"/>
  1410. <attr name="android:fontVariationSettings"/>
  1411. <attr name="android:ttcIndex"/>
  1412. </declare-styleable>
  1413. <declare-styleable name="ForegroundLinearLayout"><attr name="android:foreground"/><attr name="android:foregroundGravity"/><attr format="boolean" name="foregroundInsidePadding"/></declare-styleable>
  1414. <declare-styleable name="GradientColor">
  1415. <!-- Start color of the gradient. -->
  1416. <attr name="android:startColor"/>
  1417. <!-- Optional center color. -->
  1418. <attr name="android:centerColor"/>
  1419. <!-- End color of the gradient. -->
  1420. <attr name="android:endColor"/>
  1421. <!-- Type of gradient. The default type is linear. -->
  1422. <attr name="android:type"/>
  1423. <!-- Only applied to RadialGradient-->
  1424. <!-- Radius of the gradient, used only with radial gradient. -->
  1425. <attr name="android:gradientRadius"/>
  1426. <!-- Only applied to SweepGradient / RadialGradient-->
  1427. <!-- X coordinate of the center of the gradient within the path. -->
  1428. <attr name="android:centerX"/>
  1429. <!-- Y coordinate of the center of the gradient within the path. -->
  1430. <attr name="android:centerY"/>
  1431. <!-- LinearGradient specific -->
  1432. <!-- X coordinate of the start point origin of the gradient.
  1433. Defined in same coordinates as the path itself -->
  1434. <attr name="android:startX"/>
  1435. <!-- Y coordinate of the start point of the gradient within the shape.
  1436. Defined in same coordinates as the path itself -->
  1437. <attr name="android:startY"/>
  1438. <!-- X coordinate of the end point origin of the gradient.
  1439. Defined in same coordinates as the path itself -->
  1440. <attr name="android:endX"/>
  1441. <!-- Y coordinate of the end point of the gradient within the shape.
  1442. Defined in same coordinates as the path itself -->
  1443. <attr name="android:endY"/>
  1444. <!-- Defines the tile mode of the gradient. SweepGradient doesn't support tiling. -->
  1445. <attr name="android:tileMode"/>
  1446. </declare-styleable>
  1447. <declare-styleable name="GradientColorItem">
  1448. <!-- The offset (or ratio) of this current color item inside the gradient.
  1449. The value is only meaningful when it is between 0 and 1. -->
  1450. <attr name="android:offset"/>
  1451. <!-- The current color for the offset inside the gradient. -->
  1452. <attr name="android:color"/>
  1453. </declare-styleable>
  1454. <declare-styleable name="ImageFilterView"><attr format="reference" name="altSrc"/><attr format="float" name="saturation"/><attr format="float" name="brightness"/><attr format="float" name="warmth"/><attr format="float" name="contrast"/><attr format="float" name="crossfade"/><attr format="dimension" name="round"/><attr format="boolean" name="overlay"/><attr format="float" name="roundPercent"/></declare-styleable>
  1455. <declare-styleable name="KeyAttribute"><attr name="framePosition"/><attr name="motionTarget"/><attr name="transitionEasing"/><attr name="curveFit"/><attr name="motionProgress"/><attr name="android:visibility"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="transitionPathRotate"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/></declare-styleable>
  1456. <declare-styleable name="KeyCycle"><attr name="motionTarget"/><attr name="curveFit"/><attr name="framePosition"/><attr name="transitionEasing"/><attr name="motionProgress"/><attr name="waveShape"/><attr name="wavePeriod"/><attr name="waveOffset"/><attr name="waveVariesBy"/><attr name="transitionPathRotate"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/></declare-styleable>
  1457. <declare-styleable name="KeyFrame"/>
  1458. <declare-styleable name="KeyFramesAcceleration"/>
  1459. <declare-styleable name="KeyFramesVelocity"/>
  1460. <declare-styleable name="KeyPosition"><attr format="enum" name="keyPositionType">
  1461. <enum name="deltaRelative" value="0"/>
  1462. <enum name="pathRelative" value="1"/>
  1463. <enum name="parentRelative" value="2"/>
  1464. </attr><attr format="float" name="percentX"/><attr format="float" name="percentY"/><attr format="float" name="percentWidth"/><attr format="float" name="percentHeight"/><attr name="framePosition"/><attr name="motionTarget"/><attr name="transitionEasing"/><attr name="pathMotionArc"/><attr name="curveFit"/><attr name="drawPath"/><attr name="sizePercent"/></declare-styleable>
  1465. <declare-styleable name="KeyTimeCycle"><attr name="framePosition"/><attr name="motionTarget"/><attr name="transitionEasing"/><attr name="curveFit"/><attr name="waveShape"/><attr name="wavePeriod"/><attr name="motionProgress"/><attr name="waveOffset"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="transitionPathRotate"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/></declare-styleable>
  1466. <declare-styleable name="KeyTrigger"><attr name="framePosition"/><attr name="motionTarget"/><attr format="string" name="onNegativeCross"/><attr format="string" name="onPositiveCross"/><attr format="string" name="onCross"/><attr format="float" name="triggerSlack"/><attr format="reference" name="triggerId"/><attr format="boolean" name="motion_postLayoutCollision"/><attr format="reference" name="motion_triggerOnCollision"/></declare-styleable>
  1467. <declare-styleable name="Layout"><attr format="dimension" name="layout_width">
  1468. <enum name="fill_parent" value="-1"/>
  1469. <enum name="match_parent" value="-1"/>
  1470. <enum name="wrap_content" value="-2"/>
  1471. </attr><attr format="dimension" name="layout_height">
  1472. <enum name="fill_parent" value="-1"/>
  1473. <enum name="match_parent" value="-1"/>
  1474. <enum name="wrap_content" value="-2"/>
  1475. </attr><attr format="dimension" name="layout_marginStart"/><attr name="layout_marginBottom"/><attr format="dimension" name="layout_marginTop"/><attr format="dimension" name="layout_marginEnd"/><attr format="dimension" name="layout_marginLeft"/><attr format="dimension" name="layout_marginRight"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="android:orientation"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/><attr name="barrierDirection"/><attr name="barrierMargin"/><attr name="constraint_referenced_ids"/><attr format="dimension" name="maxHeight"/><attr format="dimension" name="maxWidth"/><attr format="dimension" name="minHeight"/><attr format="dimension" name="minWidth"/><attr name="barrierAllowsGoneWidgets"/><attr name="chainUseRtl"/></declare-styleable>
  1476. <declare-styleable name="LinearLayoutCompat">
  1477. <!-- Should the layout be a column or a row? Use "horizontal"
  1478. for a row, "vertical" for a column. The default is
  1479. horizontal. -->
  1480. <attr name="android:orientation"/>
  1481. <attr name="android:gravity"/>
  1482. <!-- When set to false, prevents the layout from aligning its children's
  1483. baselines. This attribute is particularly useful when the children
  1484. use different values for gravity. The default value is true. -->
  1485. <attr name="android:baselineAligned"/>
  1486. <!-- When a linear layout is part of another layout that is baseline
  1487. aligned, it can specify which of its children to baseline align to
  1488. (that is, which child TextView).-->
  1489. <attr name="android:baselineAlignedChildIndex"/>
  1490. <!-- Defines the maximum weight sum. If unspecified, the sum is computed
  1491. by adding the layout_weight of all of the children. This can be
  1492. used for instance to give a single child 50% of the total available
  1493. space by giving it a layout_weight of 0.5 and setting the weightSum
  1494. to 1.0. -->
  1495. <attr name="android:weightSum"/>
  1496. <!-- When set to true, all children with a weight will be considered having
  1497. the minimum size of the largest child. If false, all children are
  1498. measured normally. -->
  1499. <attr format="boolean" name="measureWithLargestChild"/>
  1500. <!-- Drawable to use as a vertical divider between buttons. -->
  1501. <attr name="divider"/>
  1502. <!-- Setting for which dividers to show. -->
  1503. <attr name="showDividers">
  1504. <flag name="none" value="0"/>
  1505. <flag name="beginning" value="1"/>
  1506. <flag name="middle" value="2"/>
  1507. <flag name="end" value="4"/>
  1508. </attr>
  1509. <!-- Size of padding on either end of a divider. -->
  1510. <attr format="dimension" name="dividerPadding"/>
  1511. </declare-styleable>
  1512. <declare-styleable name="LinearLayoutCompat_Layout">
  1513. <attr name="android:layout_width"/>
  1514. <attr name="android:layout_height"/>
  1515. <attr name="android:layout_weight"/>
  1516. <attr name="android:layout_gravity"/>
  1517. </declare-styleable>
  1518. <declare-styleable name="ListPopupWindow">
  1519. <!-- Amount of pixels by which the drop down should be offset vertically. -->
  1520. <attr name="android:dropDownVerticalOffset"/>
  1521. <!-- Amount of pixels by which the drop down should be offset horizontally. -->
  1522. <attr name="android:dropDownHorizontalOffset"/>
  1523. </declare-styleable>
  1524. <declare-styleable name="MaterialButton"><attr name="android:insetLeft"/><attr name="android:insetRight"/><attr name="android:insetTop"/><attr name="android:insetBottom"/><attr name="backgroundTint"/><attr name="backgroundTintMode"/><attr format="reference" name="icon"/><attr format="dimension" name="iconSize"/><attr format="dimension" name="iconPadding"/><attr name="iconGravity">
  1525. <flag name="start" value="0x1"/>
  1526. <flag name="textStart" value="0x2"/>
  1527. </attr><attr format="color" name="iconTint"/><attr name="iconTintMode"/><attr name="strokeColor"/><attr name="strokeWidth"/><attr format="dimension" name="cornerRadius"/><attr name="rippleColor"/></declare-styleable>
  1528. <declare-styleable name="MaterialCardView"><attr name="strokeColor"/><attr name="strokeWidth"/></declare-styleable>
  1529. <declare-styleable name="MaterialComponentsTheme"><attr name="colorAccent"/><attr name="colorPrimary"/><attr name="colorPrimaryDark"/><attr name="colorSecondary"/><attr name="scrimBackground"/><attr name="colorBackgroundFloating"/><attr name="bottomSheetDialogTheme"/><attr name="bottomSheetStyle"/><attr name="materialButtonStyle"/><attr name="chipGroupStyle"/><attr name="chipStyle"/><attr name="chipStandaloneStyle"/><attr name="editTextStyle"/><attr name="floatingActionButtonStyle"/><attr name="materialCardViewStyle"/><attr name="navigationViewStyle"/><attr name="tabStyle"/><attr name="textInputStyle"/><attr name="snackbarButtonStyle"/><attr name="textAppearanceHeadline1"/><attr name="textAppearanceHeadline2"/><attr name="textAppearanceHeadline3"/><attr name="textAppearanceHeadline4"/><attr name="textAppearanceHeadline5"/><attr name="textAppearanceHeadline6"/><attr name="textAppearanceSubtitle1"/><attr name="textAppearanceSubtitle2"/><attr name="textAppearanceBody1"/><attr name="textAppearanceBody2"/><attr name="textAppearanceCaption"/><attr name="textAppearanceButton"/><attr name="textAppearanceOverline"/></declare-styleable>
  1530. <declare-styleable name="MenuGroup">
  1531. <!-- The ID of the group. -->
  1532. <attr name="android:id"/>
  1533. <!-- The category applied to all items within this group.
  1534. (This will be or'ed with the orderInCategory attribute.) -->
  1535. <attr name="android:menuCategory"/>
  1536. <!-- The order within the category applied to all items within this group.
  1537. (This will be or'ed with the category attribute.) -->
  1538. <attr name="android:orderInCategory"/>
  1539. <!-- Whether the items are capable of displaying a check mark. -->
  1540. <attr name="android:checkableBehavior"/>
  1541. <!-- Whether the items are shown/visible. -->
  1542. <attr name="android:visible"/>
  1543. <!-- Whether the items are enabled. -->
  1544. <attr name="android:enabled"/>
  1545. </declare-styleable>
  1546. <declare-styleable name="MenuItem">
  1547. <!-- The ID of the item. -->
  1548. <attr name="android:id"/>
  1549. <!-- The category applied to the item.
  1550. (This will be or'ed with the orderInCategory attribute.) -->
  1551. <attr name="android:menuCategory"/>
  1552. <!-- The order within the category applied to the item.
  1553. (This will be or'ed with the category attribute.) -->
  1554. <attr name="android:orderInCategory"/>
  1555. <!-- The title associated with the item. -->
  1556. <attr name="android:title"/>
  1557. <!-- The condensed title associated with the item. This is used in situations where the
  1558. normal title may be too long to be displayed. -->
  1559. <attr name="android:titleCondensed"/>
  1560. <!-- The icon associated with this item. This icon will not always be shown, so
  1561. the title should be sufficient in describing this item. -->
  1562. <attr name="android:icon"/>
  1563. <!-- The alphabetic shortcut key. This is the shortcut when using a keyboard
  1564. with alphabetic keys. -->
  1565. <attr name="android:alphabeticShortcut"/>
  1566. <!-- The alphabetic modifier key. This is the modifier when using a keyboard
  1567. with alphabetic keys. The values should be kept in sync with KeyEvent -->
  1568. <attr name="alphabeticModifiers">
  1569. <flag name="META" value="0x10000"/>
  1570. <flag name="CTRL" value="0x1000"/>
  1571. <flag name="ALT" value="0x02"/>
  1572. <flag name="SHIFT" value="0x1"/>
  1573. <flag name="SYM" value="0x4"/>
  1574. <flag name="FUNCTION" value="0x8"/>
  1575. </attr>
  1576. <!-- The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key)
  1577. keyboard. -->
  1578. <attr name="android:numericShortcut"/>
  1579. <!-- The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key)
  1580. keyboard. The values should be kept in sync with KeyEvent -->
  1581. <attr name="numericModifiers">
  1582. <flag name="META" value="0x10000"/>
  1583. <flag name="CTRL" value="0x1000"/>
  1584. <flag name="ALT" value="0x02"/>
  1585. <flag name="SHIFT" value="0x1"/>
  1586. <flag name="SYM" value="0x4"/>
  1587. <flag name="FUNCTION" value="0x8"/>
  1588. </attr>
  1589. <!-- Whether the item is capable of displaying a check mark. -->
  1590. <attr name="android:checkable"/>
  1591. <!-- Whether the item is checked. Note that you must first have enabled checking with
  1592. the checkable attribute or else the check mark will not appear. -->
  1593. <attr name="android:checked"/>
  1594. <!-- Whether the item is shown/visible. -->
  1595. <attr name="android:visible"/>
  1596. <!-- Whether the item is enabled. -->
  1597. <attr name="android:enabled"/>
  1598. <!-- Name of a method on the Context used to inflate the menu that will be
  1599. called when the item is clicked. -->
  1600. <attr name="android:onClick"/>
  1601. <!-- How this item should display in the Action Bar, if present. -->
  1602. <attr name="showAsAction">
  1603. <!-- Never show this item in an action bar, show it in the overflow menu instead.
  1604. Mutually exclusive with "ifRoom" and "always". -->
  1605. <flag name="never" value="0"/>
  1606. <!-- Show this item in an action bar if there is room for it as determined
  1607. by the system. Favor this option over "always" where possible.
  1608. Mutually exclusive with "never" and "always". -->
  1609. <flag name="ifRoom" value="1"/>
  1610. <!-- Always show this item in an actionbar, even if it would override
  1611. the system's limits of how much stuff to put there. This may make
  1612. your action bar look bad on some screens. In most cases you should
  1613. use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". -->
  1614. <flag name="always" value="2"/>
  1615. <!-- When this item is shown as an action in the action bar, show a text
  1616. label with it even if it has an icon representation. -->
  1617. <flag name="withText" value="4"/>
  1618. <!-- This item's action view collapses to a normal menu
  1619. item. When expanded, the action view takes over a
  1620. larger segment of its container. -->
  1621. <flag name="collapseActionView" value="8"/>
  1622. </attr>
  1623. <!-- An optional layout to be used as an action view.
  1624. See {@link android.view.MenuItem#setActionView(android.view.View)}
  1625. for more info. -->
  1626. <attr format="reference" name="actionLayout"/>
  1627. <!-- The name of an optional View class to instantiate and use as an
  1628. action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
  1629. for more info. -->
  1630. <attr format="string" name="actionViewClass"/>
  1631. <!-- The name of an optional ActionProvider class to instantiate an action view
  1632. and perform operations such as default action for that menu item.
  1633. See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
  1634. for more info. -->
  1635. <attr format="string" name="actionProviderClass"/>
  1636. <!-- The content description associated with the item. -->
  1637. <attr format="string" name="contentDescription"/>
  1638. <!-- The tooltip text associated with the item. -->
  1639. <attr format="string" name="tooltipText"/>
  1640. <!-- Tint to apply to the icon. -->
  1641. <attr format="color" name="iconTint"/>
  1642. <!-- Blending mode used to apply the icon tint. -->
  1643. <attr name="iconTintMode">
  1644. <!-- The tint is drawn on top of the icon.
  1645. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  1646. <enum name="src_over" value="3"/>
  1647. <!-- The tint is masked by the alpha channel of the icon. The icon’s
  1648. color channels are thrown out. [Sa * Da, Sc * Da] -->
  1649. <enum name="src_in" value="5"/>
  1650. <!-- The tint is drawn above the icon, but with the icon’s alpha
  1651. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  1652. <enum name="src_atop" value="9"/>
  1653. <!-- Multiplies the color and alpha channels of the icon with those of
  1654. the tint. [Sa * Da, Sc * Dc] -->
  1655. <enum name="multiply" value="14"/>
  1656. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  1657. <enum name="screen" value="15"/>
  1658. <!-- Combines the tint and icon color and alpha channels, clamping the
  1659. result to valid color values. Saturate(S + D) -->
  1660. <enum name="add" value="16"/>
  1661. </attr>
  1662. </declare-styleable>
  1663. <declare-styleable name="MenuView">
  1664. <!-- Default appearance of menu item text. -->
  1665. <attr name="android:itemTextAppearance"/>
  1666. <!-- Default horizontal divider between rows of menu items. -->
  1667. <attr name="android:horizontalDivider"/>
  1668. <!-- Default vertical divider between menu items. -->
  1669. <attr name="android:verticalDivider"/>
  1670. <!-- Default background for the menu header. -->
  1671. <attr name="android:headerBackground"/>
  1672. <!-- Default background for each menu item. -->
  1673. <attr name="android:itemBackground"/>
  1674. <!-- Default animations for the menu. -->
  1675. <attr name="android:windowAnimationStyle"/>
  1676. <!-- Default disabled icon alpha for each menu item that shows an icon. -->
  1677. <attr name="android:itemIconDisabledAlpha"/>
  1678. <!-- Whether space should be reserved in layout when an icon is missing. -->
  1679. <attr format="boolean" name="preserveIconSpacing"/>
  1680. <!-- Drawable for the arrow icon indicating a particular item is a submenu. -->
  1681. <attr format="reference" name="subMenuArrow"/>
  1682. </declare-styleable>
  1683. <declare-styleable name="MockView"><attr format="string" name="mock_label"/><attr format="color" name="mock_labelColor"/><attr format="color" name="mock_labelBackgroundColor"/><attr format="color" name="mock_diagonalsColor"/><attr format="boolean" name="mock_showDiagonals"/><attr format="boolean" name="mock_showLabel"/></declare-styleable>
  1684. <declare-styleable name="Motion"><attr name="animate_relativeTo"/><attr name="transitionEasing"/><attr name="pathMotionArc"/><attr name="motionPathRotate"/><attr name="drawPath"/></declare-styleable>
  1685. <declare-styleable name="MotionHelper"><attr format="boolean" name="onShow"/><attr format="boolean" name="onHide"/></declare-styleable>
  1686. <declare-styleable name="MotionLayout"><attr name="layoutDescription"/><attr format="reference" name="currentState"/><attr name="motionProgress"/><attr format="boolean" name="applyMotionScene"/><attr format="boolean" name="showPaths"/><attr format="enum" name="motionDebug">
  1687. <enum name="NO_DEBUG" value="0"/>
  1688. <enum name="SHOW_PROGRESS" value="1"/>
  1689. <enum name="SHOW_PATH" value="2"/>
  1690. <enum name="SHOW_ALL" value="3"/>
  1691. </attr></declare-styleable>
  1692. <declare-styleable name="MotionScene"><attr name="defaultDuration"/></declare-styleable>
  1693. <declare-styleable name="MsgView"><attr format="color" name="mv_backgroundColor"/><attr format="dimension" name="mv_cornerRadius"/><attr format="dimension" name="mv_strokeWidth"/><attr format="color" name="mv_strokeColor"/><attr format="boolean" name="mv_isRadiusHalfHeight"/><attr format="boolean" name="mv_isWidthHeightEqual"/></declare-styleable>
  1694. <declare-styleable name="NavigationView"><attr name="android:background"/><attr name="android:fitsSystemWindows"/><attr name="android:maxWidth"/><attr name="elevation"/><attr format="reference" name="menu"/><attr format="color" name="itemIconTint"/><attr format="color" name="itemTextColor"/><attr format="reference" name="itemBackground"/><attr format="reference" name="itemTextAppearance"/><attr format="reference" name="headerLayout"/><attr format="dimension" name="itemHorizontalPadding"/><attr format="dimension" name="itemIconPadding"/></declare-styleable>
  1695. <declare-styleable name="OnClick"><attr name="targetId"/><attr name="clickAction">
  1696. <flag name="toggle" value="0x0011"/>
  1697. <flag name="transitionToEnd" value="0x0001"/>
  1698. <flag name="transitionToStart" value="0x0010"/>
  1699. <flag name="jumpToEnd" value="0x100"/>
  1700. <flag name="jumpToStart" value="0x1000"/>
  1701. </attr></declare-styleable>
  1702. <declare-styleable name="OnSwipe"><attr format="float" name="dragScale"/><attr format="float" name="maxVelocity"/><attr format="float" name="maxAcceleration"/><attr name="dragDirection"/><attr name="touchAnchorId"/><attr name="touchAnchorSide"/><attr format="boolean" name="moveWhenScrollAtTop"/></declare-styleable>
  1703. <declare-styleable name="PopupWindow">
  1704. <!-- Whether the popup window should overlap its anchor view. -->
  1705. <attr format="boolean" name="overlapAnchor"/>
  1706. <attr name="android:popupBackground"/>
  1707. <attr name="android:popupAnimationStyle"/>
  1708. </declare-styleable>
  1709. <declare-styleable name="PopupWindowBackgroundState">
  1710. <!-- State identifier indicating the popup will be above the anchor. -->
  1711. <attr format="boolean" name="state_above_anchor"/>
  1712. </declare-styleable>
  1713. <declare-styleable name="PropertySet"><attr name="visibility">
  1714. <enum name="visible" value="0"/>
  1715. <enum name="invisible" value="1"/>
  1716. <enum name="gone" value="2"/>
  1717. </attr><attr format="float" name="alpha"/><attr name="motionProgress"/></declare-styleable>
  1718. <declare-styleable name="RecycleListView">
  1719. <!-- Bottom padding to use when no buttons are present. -->
  1720. <attr format="dimension" name="paddingBottomNoButtons"/>
  1721. <!-- Top padding to use when no title is present. -->
  1722. <attr format="dimension" name="paddingTopNoTitle"/>
  1723. </declare-styleable>
  1724. <declare-styleable name="RecyclerView">
  1725. <!-- Class name of the Layout Manager to be used.
  1726. <p/>
  1727. The class must extandroidx.recyclerview.widget.RecyclerViewView$LayoutManager
  1728. and have either a default constructor or constructor with the signature
  1729. (android.content.Context, android.util.AttributeSet, int, int).
  1730. <p/>
  1731. If the name starts with a '.', application package is prefixed.
  1732. Else, if the name contains a '.', the classname is assumed to be a full class name.
  1733. Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. -->
  1734. <attr format="string" name="layoutManager"/>
  1735. <!-- ============================= -->
  1736. <!-- Attributes for Layout Manager -->
  1737. <!-- ============================= -->
  1738. <eat-comment/>
  1739. <attr name="android:orientation"/>
  1740. <attr name="android:descendantFocusability"/>
  1741. <attr format="integer" name="spanCount"/>
  1742. <attr format="boolean" name="reverseLayout"/>
  1743. <attr format="boolean" name="stackFromEnd"/>
  1744. <attr format="boolean" name="fastScrollEnabled"/>
  1745. <attr format="reference" name="fastScrollVerticalThumbDrawable"/>
  1746. <attr format="reference" name="fastScrollVerticalTrackDrawable"/>
  1747. <attr format="reference" name="fastScrollHorizontalThumbDrawable"/>
  1748. <attr format="reference" name="fastScrollHorizontalTrackDrawable"/>
  1749. </declare-styleable>
  1750. <declare-styleable name="ScrimInsetsFrameLayout"><attr format="color|reference" name="insetForeground"/></declare-styleable>
  1751. <declare-styleable name="ScrollingViewBehavior_Layout"><attr format="dimension" name="behavior_overlapTop"/></declare-styleable>
  1752. <declare-styleable name="SearchView">
  1753. <!-- The layout to use for the search view. -->
  1754. <attr format="reference" name="layout"/>
  1755. <!-- The default state of the SearchView. If true, it will be iconified when not in
  1756. use and expanded when clicked. -->
  1757. <attr format="boolean" name="iconifiedByDefault"/>
  1758. <!-- An optional maximum width of the SearchView. -->
  1759. <attr name="android:maxWidth"/>
  1760. <!-- An optional user-defined query hint string to be displayed in the empty query field. -->
  1761. <attr format="string" name="queryHint"/>
  1762. <!-- Default query hint used when {@code queryHint} is undefined and
  1763. the search view's {@code SearchableInfo} does not provide a hint. -->
  1764. <attr format="string" name="defaultQueryHint"/>
  1765. <!-- The IME options to set on the query text field. -->
  1766. <attr name="android:imeOptions"/>
  1767. <!-- The input type to set on the query text field. -->
  1768. <attr name="android:inputType"/>
  1769. <!-- Close button icon -->
  1770. <attr format="reference" name="closeIcon"/>
  1771. <!-- Go button icon -->
  1772. <attr format="reference" name="goIcon"/>
  1773. <!-- Search icon -->
  1774. <attr format="reference" name="searchIcon"/>
  1775. <!-- Search icon displayed as a text field hint -->
  1776. <attr format="reference" name="searchHintIcon"/>
  1777. <!-- Voice button icon -->
  1778. <attr format="reference" name="voiceIcon"/>
  1779. <!-- Commit icon shown in the query suggestion row -->
  1780. <attr format="reference" name="commitIcon"/>
  1781. <!-- Layout for query suggestion rows -->
  1782. <attr format="reference" name="suggestionRowLayout"/>
  1783. <!-- Background for the section containing the search query -->
  1784. <attr format="reference" name="queryBackground"/>
  1785. <!-- Background for the section containing the action (e.g. voice search) -->
  1786. <attr format="reference" name="submitBackground"/>
  1787. <attr name="android:focusable"/>
  1788. </declare-styleable>
  1789. <declare-styleable name="SegmentTabLayout"><attr name="tl_indicator_color"/><attr name="tl_indicator_height"/><attr name="tl_indicator_margin_left"/><attr name="tl_indicator_margin_top"/><attr name="tl_indicator_margin_right"/><attr name="tl_indicator_margin_bottom"/><attr name="tl_indicator_corner_radius"/><attr name="tl_indicator_anim_enable"/><attr name="tl_indicator_anim_duration"/><attr name="tl_indicator_bounce_enable"/><attr name="tl_divider_color"/><attr name="tl_divider_width"/><attr name="tl_divider_padding"/><attr name="tl_tab_padding"/><attr name="tl_tab_space_equal"/><attr name="tl_tab_width"/><attr name="tl_textsize"/><attr name="tl_textSelectColor"/><attr name="tl_textUnselectColor"/><attr name="tl_textBold"/><attr name="tl_textAllCaps"/><attr format="color" name="tl_bar_color"/><attr format="color" name="tl_bar_stroke_color"/><attr format="dimension" name="tl_bar_stroke_width"/></declare-styleable>
  1790. <declare-styleable name="SlidingTabLayout"><attr name="tl_indicator_color"/><attr name="tl_indicator_height"/><attr name="tl_indicator_width"/><attr name="tl_indicator_margin_left"/><attr name="tl_indicator_margin_top"/><attr name="tl_indicator_margin_right"/><attr name="tl_indicator_margin_bottom"/><attr name="tl_indicator_corner_radius"/><attr name="tl_indicator_gravity"/><attr name="tl_indicator_style"/><attr name="tl_indicator_width_equal_title"/><attr name="tl_underline_color"/><attr name="tl_underline_height"/><attr name="tl_underline_gravity"/><attr name="tl_divider_color"/><attr name="tl_divider_width"/><attr name="tl_divider_padding"/><attr name="tl_tab_padding"/><attr name="tl_tab_space_equal"/><attr name="tl_tab_width"/><attr name="tl_textsize"/><attr name="tl_textSelectColor"/><attr name="tl_textUnselectColor"/><attr name="tl_textBold"/><attr name="tl_textAllCaps"/></declare-styleable>
  1791. <declare-styleable name="Snackbar"><attr format="reference" name="snackbarStyle"/><attr format="reference" name="snackbarButtonStyle"/></declare-styleable>
  1792. <declare-styleable name="SnackbarLayout"><attr name="android:maxWidth"/><attr name="elevation"/><attr format="dimension" name="maxActionInlineWidth"/></declare-styleable>
  1793. <declare-styleable name="Spinner">
  1794. <!-- The prompt to display when the spinner's dialog is shown. -->
  1795. <attr name="android:prompt"/>
  1796. <!-- Theme to use for the drop-down or dialog popup window. -->
  1797. <attr name="popupTheme"/>
  1798. <!-- Background drawable to use for the dropdown in spinnerMode="dropdown". -->
  1799. <attr name="android:popupBackground"/>
  1800. <!-- Width of the dropdown in spinnerMode="dropdown". -->
  1801. <attr name="android:dropDownWidth"/>
  1802. <!-- Reference to an array resource that will populate the Spinner. -->
  1803. <attr name="android:entries"/>
  1804. </declare-styleable>
  1805. <declare-styleable name="State"><attr name="android:id"/><attr format="reference" name="constraints"/></declare-styleable>
  1806. <declare-styleable name="StateListDrawable">
  1807. <!-- Indicates whether the drawable should be initially visible. -->
  1808. <attr name="android:visible"/>
  1809. <!-- If true, allows the drawable's padding to change based on the
  1810. current state that is selected. If false, the padding will
  1811. stay the same (based on the maximum padding of all the states).
  1812. Enabling this feature requires that the owner of the drawable
  1813. deal with performing layout when the state changes, which is
  1814. often not supported. -->
  1815. <attr name="android:variablePadding"/>
  1816. <!-- If true, the drawable's reported internal size will remain
  1817. constant as the state changes; the size is the maximum of all
  1818. of the states. If false, the size will vary based on the
  1819. current state. -->
  1820. <attr name="android:constantSize"/>
  1821. <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
  1822. same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
  1823. an RGB 565 screen). -->
  1824. <attr name="android:dither"/>
  1825. <!-- Amount of time (in milliseconds) to fade in a new state drawable. -->
  1826. <attr name="android:enterFadeDuration"/>
  1827. <!-- Amount of time (in milliseconds) to fade out an old state drawable. -->
  1828. <attr name="android:exitFadeDuration"/>
  1829. <!-- Indicates if the drawable needs to be mirrored when its layout direction is
  1830. RTL (right-to-left). -->
  1831. <!--<attr name="autoMirrored"/>-->
  1832. </declare-styleable>
  1833. <declare-styleable name="StateListDrawableItem">
  1834. <!-- Reference to a drawable resource to use for the state. If not
  1835. given, the drawable must be defined by the first child tag. -->
  1836. <attr name="android:drawable"/>
  1837. </declare-styleable>
  1838. <declare-styleable name="StateSet"><attr format="reference" name="defaultState"/></declare-styleable>
  1839. <declare-styleable name="SwitchCompat">
  1840. <!-- Drawable to use as the "thumb" that switches back and forth. -->
  1841. <attr name="android:thumb"/>
  1842. <!-- Tint to apply to the thumb drawable. -->
  1843. <attr format="color" name="thumbTint"/>
  1844. <!-- Blending mode used to apply the thumb tint. -->
  1845. <attr name="thumbTintMode">
  1846. <!-- The tint is drawn on top of the drawable.
  1847. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  1848. <enum name="src_over" value="3"/>
  1849. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  1850. color channels are thrown out. [Sa * Da, Sc * Da] -->
  1851. <enum name="src_in" value="5"/>
  1852. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  1853. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  1854. <enum name="src_atop" value="9"/>
  1855. <!-- Multiplies the color and alpha channels of the drawable with those of
  1856. the tint. [Sa * Da, Sc * Dc] -->
  1857. <enum name="multiply" value="14"/>
  1858. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  1859. <enum name="screen" value="15"/>
  1860. <!-- Combines the tint and drawable color and alpha channels, clamping the
  1861. result to valid color values. Saturate(S + D) -->
  1862. <enum name="add" value="16"/>
  1863. </attr>
  1864. <!-- Drawable to use as the "track" that the switch thumb slides within. -->
  1865. <attr format="reference" name="track"/>
  1866. <!-- Tint to apply to the track. -->
  1867. <attr format="color" name="trackTint"/>
  1868. <!-- Blending mode used to apply the track tint. -->
  1869. <attr name="trackTintMode">
  1870. <!-- The tint is drawn on top of the drawable.
  1871. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  1872. <enum name="src_over" value="3"/>
  1873. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  1874. color channels are thrown out. [Sa * Da, Sc * Da] -->
  1875. <enum name="src_in" value="5"/>
  1876. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  1877. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  1878. <enum name="src_atop" value="9"/>
  1879. <!-- Multiplies the color and alpha channels of the drawable with those of
  1880. the tint. [Sa * Da, Sc * Dc] -->
  1881. <enum name="multiply" value="14"/>
  1882. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  1883. <enum name="screen" value="15"/>
  1884. <!-- Combines the tint and drawable color and alpha channels, clamping the
  1885. result to valid color values. Saturate(S + D) -->
  1886. <enum name="add" value="16"/>
  1887. </attr>
  1888. <!-- Text to use when the switch is in the checked/"on" state. -->
  1889. <attr name="android:textOn"/>
  1890. <!-- Text to use when the switch is in the unchecked/"off" state. -->
  1891. <attr name="android:textOff"/>
  1892. <!-- Amount of padding on either side of text within the switch thumb. -->
  1893. <attr format="dimension" name="thumbTextPadding"/>
  1894. <!-- TextAppearance style for text displayed on the switch thumb. -->
  1895. <attr format="reference" name="switchTextAppearance"/>
  1896. <!-- Minimum width for the switch component -->
  1897. <attr format="dimension" name="switchMinWidth"/>
  1898. <!-- Minimum space between the switch and caption text -->
  1899. <attr format="dimension" name="switchPadding"/>
  1900. <!-- Whether to split the track and leave a gap for the thumb drawable. -->
  1901. <attr format="boolean" name="splitTrack"/>
  1902. <!-- Whether to draw on/off text. -->
  1903. <attr format="boolean" name="showText"/>
  1904. </declare-styleable>
  1905. <declare-styleable name="TabItem"><attr name="android:text"/><attr name="android:icon"/><attr name="android:layout"/></declare-styleable>
  1906. <declare-styleable name="TabLayout"><attr format="color" name="tabIndicatorColor"/><attr format="dimension" name="tabIndicatorHeight"/><attr format="dimension" name="tabContentStart"/><attr format="reference" name="tabBackground"/><attr format="reference" name="tabIndicator"/><attr name="tabIndicatorGravity">
  1907. <enum name="bottom" value="0"/>
  1908. <enum name="center" value="1"/>
  1909. <enum name="top" value="2"/>
  1910. <enum name="stretch" value="3"/>
  1911. </attr><attr format="integer" name="tabIndicatorAnimationDuration"/><attr format="boolean" name="tabIndicatorFullWidth"/><attr name="tabMode">
  1912. <enum name="scrollable" value="0"/>
  1913. <enum name="fixed" value="1"/>
  1914. </attr><attr name="tabGravity">
  1915. <enum name="fill" value="0"/>
  1916. <enum name="center" value="1"/>
  1917. </attr><attr format="boolean" name="tabInlineLabel"/><attr format="dimension" name="tabMinWidth"/><attr format="dimension" name="tabMaxWidth"/><attr format="reference" name="tabTextAppearance"/><attr format="color" name="tabTextColor"/><attr format="color" name="tabSelectedTextColor"/><attr format="dimension" name="tabPaddingStart"/><attr format="dimension" name="tabPaddingTop"/><attr format="dimension" name="tabPaddingEnd"/><attr format="dimension" name="tabPaddingBottom"/><attr format="dimension" name="tabPadding"/><attr format="color" name="tabIconTint"/><attr name="tabIconTintMode">
  1918. <enum name="src_over" value="3"/>
  1919. <enum name="src_in" value="5"/>
  1920. <enum name="src_atop" value="9"/>
  1921. <enum name="multiply" value="14"/>
  1922. <enum name="screen" value="15"/>
  1923. <enum name="add" value="16"/>
  1924. </attr><attr format="color" name="tabRippleColor"/><attr format="boolean" name="tabUnboundedRipple"/></declare-styleable>
  1925. <declare-styleable name="TextAppearance">
  1926. <attr name="android:textSize"/>
  1927. <attr name="android:textColor"/>
  1928. <attr name="android:textColorHint"/>
  1929. <attr name="android:textColorLink"/>
  1930. <attr name="android:textStyle"/>
  1931. <attr name="android:textFontWeight"/>
  1932. <attr name="android:typeface"/>
  1933. <attr name="android:fontFamily"/>
  1934. <attr name="fontFamily"/>
  1935. <attr name="textAllCaps"/>
  1936. <!-- Set the textLocale by a comma-separated language tag string,
  1937. for example "ja-JP,zh-CN". This attribute only takes effect on API 21 and above.
  1938. Before API 24, only the first language tag is used. Starting from API 24,
  1939. the string will be converted into a {@link android.os.LocaleList} and then used by
  1940. {@link android.widget.TextView} -->
  1941. <attr name="textLocale"/>
  1942. <attr name="android:shadowColor"/>
  1943. <attr name="android:shadowDy"/>
  1944. <attr name="android:shadowDx"/>
  1945. <attr name="android:shadowRadius"/>
  1946. <!-- OpenType font variation settings, available aftear api 26. -->
  1947. <attr name="fontVariationSettings"/>
  1948. </declare-styleable>
  1949. <declare-styleable name="TextInputLayout"><attr name="android:textColorHint"/><attr name="android:hint"/><attr format="boolean" name="hintEnabled"/><attr format="boolean" name="hintAnimationEnabled"/><attr format="reference" name="hintTextAppearance"/><attr format="string" name="helperText"/><attr format="boolean" name="helperTextEnabled"/><attr format="reference" name="helperTextTextAppearance"/><attr format="boolean" name="errorEnabled"/><attr format="reference" name="errorTextAppearance"/><attr format="boolean" name="counterEnabled"/><attr format="integer" name="counterMaxLength"/><attr format="reference" name="counterTextAppearance"/><attr format="reference" name="counterOverflowTextAppearance"/><attr format="boolean" name="passwordToggleEnabled"/><attr format="reference" name="passwordToggleDrawable"/><attr format="string" name="passwordToggleContentDescription"/><attr format="color" name="passwordToggleTint"/><attr name="passwordToggleTintMode">
  1950. <enum name="src_over" value="3"/>
  1951. <enum name="src_in" value="5"/>
  1952. <enum name="src_atop" value="9"/>
  1953. <enum name="multiply" value="14"/>
  1954. <enum name="screen" value="15"/>
  1955. </attr><attr name="boxBackgroundMode">
  1956. <enum name="none" value="0"/>
  1957. <enum name="filled" value="1"/>
  1958. <enum name="outline" value="2"/>
  1959. </attr><attr format="dimension" name="boxCollapsedPaddingTop"/><attr format="dimension" name="boxCornerRadiusTopStart"/><attr format="dimension" name="boxCornerRadiusTopEnd"/><attr format="dimension" name="boxCornerRadiusBottomStart"/><attr format="dimension" name="boxCornerRadiusBottomEnd"/><attr format="color" name="boxStrokeColor"/><attr format="color" name="boxBackgroundColor"/><attr format="dimension" name="boxStrokeWidth"/></declare-styleable>
  1960. <declare-styleable name="ThemeEnforcement"><attr format="boolean" name="enforceMaterialTheme"/><attr format="boolean" name="enforceTextAppearance"/><attr name="android:textAppearance"/></declare-styleable>
  1961. <declare-styleable name="Toolbar">
  1962. <attr format="reference" name="titleTextAppearance"/>
  1963. <attr format="reference" name="subtitleTextAppearance"/>
  1964. <attr name="title"/>
  1965. <attr name="subtitle"/>
  1966. <attr name="android:gravity"/>
  1967. <!-- Specifies extra space on the left, start, right and end sides
  1968. of the toolbar's title. Margin values should be positive. -->
  1969. <attr format="dimension" name="titleMargin"/>
  1970. <!-- Specifies extra space on the start side of the toolbar's title.
  1971. If both this attribute and titleMargin are specified, then this
  1972. attribute takes precedence. Margin values should be positive. -->
  1973. <attr format="dimension" name="titleMarginStart"/>
  1974. <!-- Specifies extra space on the end side of the toolbar's title.
  1975. If both this attribute and titleMargin are specified, then this
  1976. attribute takes precedence. Margin values should be positive. -->
  1977. <attr format="dimension" name="titleMarginEnd"/>
  1978. <!-- Specifies extra space on the top side of the toolbar's title.
  1979. If both this attribute and titleMargin are specified, then this
  1980. attribute takes precedence. Margin values should be positive. -->
  1981. <attr format="dimension" name="titleMarginTop"/>
  1982. <!-- Specifies extra space on the bottom side of the toolbar's title.
  1983. If both this attribute and titleMargin are specified, then this
  1984. attribute takes precedence. Margin values should be positive. -->
  1985. <attr format="dimension" name="titleMarginBottom"/>
  1986. <!-- {@deprecated Use titleMargin} -->
  1987. <attr format="dimension" name="titleMargins"/>
  1988. <attr name="contentInsetStart"/>
  1989. <attr name="contentInsetEnd"/>
  1990. <attr name="contentInsetLeft"/>
  1991. <attr name="contentInsetRight"/>
  1992. <attr name="contentInsetStartWithNavigation"/>
  1993. <attr name="contentInsetEndWithActions"/>
  1994. <attr format="dimension" name="maxButtonHeight"/>
  1995. <attr name="buttonGravity">
  1996. <!-- Push object to the top of its container, not changing its size. -->
  1997. <flag name="top" value="0x30"/>
  1998. <!-- Push object to the bottom of its container, not changing its size. -->
  1999. <flag name="bottom" value="0x50"/>
  2000. </attr>
  2001. <!-- Icon drawable to use for the collapse button. -->
  2002. <attr format="reference" name="collapseIcon"/>
  2003. <!-- Text to set as the content description for the collapse button. -->
  2004. <attr format="string" name="collapseContentDescription"/>
  2005. <!-- Reference to a theme that should be used to inflate popups
  2006. shown by widgets in the toolbar. -->
  2007. <attr name="popupTheme"/>
  2008. <!-- Icon drawable to use for the navigation button located at
  2009. the start of the toolbar. -->
  2010. <attr format="reference" name="navigationIcon"/>
  2011. <!-- Text to set as the content description for the navigation button
  2012. located at the start of the toolbar. -->
  2013. <attr format="string" name="navigationContentDescription"/>
  2014. <!-- Drawable to set as the logo that appears at the starting side of
  2015. the Toolbar, just after the navigation button. -->
  2016. <attr name="logo"/>
  2017. <!-- A content description string to describe the appearance of the
  2018. associated logo image. -->
  2019. <attr format="string" name="logoDescription"/>
  2020. <!-- A color to apply to the title string. -->
  2021. <attr format="color" name="titleTextColor"/>
  2022. <!-- A color to apply to the subtitle string. -->
  2023. <attr format="color" name="subtitleTextColor"/>
  2024. <attr name="android:minHeight"/>
  2025. <!-- Menu resource to inflate to be shown in the toolbar -->
  2026. <attr format="reference" name="menu"/>
  2027. </declare-styleable>
  2028. <declare-styleable name="Transform"><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="pivotAnchor"/><attr format="float|fraction" name="pivotX"/><attr format="float|fraction" name="pivotY"/><attr name="android:transformPivotX"/><attr name="android:transformPivotY"/><attr format="dimension" name="android:translationX"/><attr format="dimension" name="android:translationY"/><attr format="dimension" name="android:translationZ"/></declare-styleable>
  2029. <declare-styleable name="Transition"><attr name="android:id"/><attr format="reference" name="constraintSetStart"/><attr format="reference" name="constraintSetEnd"/><attr format="string|reference|enum" name="motionInterpolator">
  2030. <enum name="easeInOut" value="0"/>
  2031. <enum name="easeIn" value="1"/>
  2032. <enum name="easeOut" value="2"/>
  2033. <enum name="linear" value="3"/>
  2034. <enum name="anticipate" value="4"/>
  2035. <enum name="bounce" value="5"/>
  2036. </attr><attr name="duration"/><attr format="float" name="staggered"/></declare-styleable>
  2037. <declare-styleable name="Variant"><attr format="dimension" name="region_widthLessThan"/><attr format="dimension" name="region_widthMoreThan"/><attr format="dimension" name="region_heightLessThan"/><attr format="dimension" name="region_heightMoreThan"/><attr name="constraints"/></declare-styleable>
  2038. <declare-styleable name="View">
  2039. <!-- Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. -->
  2040. <attr format="dimension" name="paddingStart"/>
  2041. <!-- Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. -->
  2042. <attr format="dimension" name="paddingEnd"/>
  2043. <!-- Boolean that controls whether a view can take focus. By default the user can not
  2044. move focus to a view; by setting this attribute to true the view is
  2045. allowed to take focus. This value does not impact the behavior of
  2046. directly calling {@link android.view.View#requestFocus}, which will
  2047. always request focus regardless of this view. It only impacts where
  2048. focus navigation will try to move focus. -->
  2049. <attr name="android:focusable"/>
  2050. <!-- Deprecated. -->
  2051. <attr format="reference" name="theme"/>
  2052. <!-- Specifies a theme override for a view. When a theme override is set, the
  2053. view will be inflated using a {@link android.content.Context} themed with
  2054. the specified resource. -->
  2055. <attr name="android:theme"/>
  2056. </declare-styleable>
  2057. <declare-styleable name="ViewBackgroundHelper">
  2058. <attr name="android:background"/>
  2059. <!-- Tint to apply to the background. -->
  2060. <attr format="color" name="backgroundTint"/>
  2061. <!-- Blending mode used to apply the background tint. -->
  2062. <attr name="backgroundTintMode">
  2063. <!-- The tint is drawn on top of the drawable.
  2064. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  2065. <enum name="src_over" value="3"/>
  2066. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  2067. color channels are thrown out. [Sa * Da, Sc * Da] -->
  2068. <enum name="src_in" value="5"/>
  2069. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  2070. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  2071. <enum name="src_atop" value="9"/>
  2072. <!-- Multiplies the color and alpha channels of the drawable with those of
  2073. the tint. [Sa * Da, Sc * Dc] -->
  2074. <enum name="multiply" value="14"/>
  2075. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  2076. <enum name="screen" value="15"/>
  2077. <!-- Combines the tint and icon color and alpha channels, clamping the
  2078. result to valid color values. Saturate(S + D) -->
  2079. <enum name="add" value="16"/>
  2080. </attr>
  2081. </declare-styleable>
  2082. <declare-styleable name="ViewStubCompat">
  2083. <!-- Supply an identifier for the layout resource to inflate when the ViewStub
  2084. becomes visible or when forced to do so. The layout resource must be a
  2085. valid reference to a layout. -->
  2086. <attr name="android:layout"/>
  2087. <!-- Overrides the id of the inflated View with this value. -->
  2088. <attr name="android:inflatedId"/>
  2089. <attr name="android:id"/>
  2090. </declare-styleable>
  2091. <declare-styleable name="background"><attr format="enum" name="bl_shape">
  2092. <enum name="rectangle" value="0"/>
  2093. <enum name="oval" value="1"/>
  2094. <enum name="line" value="2"/>
  2095. <enum name="ring" value="3"/>
  2096. </attr><attr format="color" name="bl_solid_color"/><attr format="dimension" name="bl_corners_radius"/><attr format="dimension" name="bl_corners_bottomLeftRadius"/><attr format="dimension" name="bl_corners_bottomRightRadius"/><attr format="dimension" name="bl_corners_topLeftRadius"/><attr format="dimension" name="bl_corners_topRightRadius"/><attr format="integer" name="bl_gradient_angle"/><attr format="float" name="bl_gradient_centerX"/><attr format="float" name="bl_gradient_centerY"/><attr format="color" name="bl_gradient_centerColor"/><attr format="color" name="bl_gradient_endColor"/><attr format="color" name="bl_gradient_startColor"/><attr format="dimension" name="bl_gradient_gradientRadius"/><attr format="enum" name="bl_gradient_type">
  2097. <enum name="linear" value="0"/>
  2098. <enum name="radial" value="1"/>
  2099. <enum name="sweep" value="2"/>
  2100. </attr><attr format="boolean" name="bl_gradient_useLevel"/><attr format="dimension" name="bl_padding_left"/><attr format="dimension" name="bl_padding_top"/><attr format="dimension" name="bl_padding_right"/><attr format="dimension" name="bl_padding_bottom"/><attr format="dimension" name="bl_size_width">
  2101. <enum name="wrap_content" value="-2"/>
  2102. <enum name="match_parent" value="-1"/>
  2103. </attr><attr format="dimension" name="bl_size_height">
  2104. <enum name="wrap_content" value="-2"/>
  2105. <enum name="match_parent" value="-1"/>
  2106. </attr><attr format="dimension" name="bl_stroke_width"/><attr format="color" name="bl_stroke_color"/><attr format="dimension" name="bl_stroke_dashWidth"/><attr format="dimension" name="bl_stroke_dashGap"/><attr format="boolean" name="bl_ripple_enable"/><attr format="color" name="bl_ripple_color"/><attr format="color" name="bl_checkable_stroke_color"/><attr format="color" name="bl_checked_stroke_color"/><attr format="color" name="bl_enabled_stroke_color"/><attr format="color" name="bl_selected_stroke_color"/><attr format="color" name="bl_pressed_stroke_color"/><attr format="color" name="bl_focused_stroke_color"/><attr format="color" name="bl_unCheckable_stroke_color"/><attr format="color" name="bl_unChecked_stroke_color"/><attr format="color" name="bl_unEnabled_stroke_color"/><attr format="color" name="bl_unSelected_stroke_color"/><attr format="color" name="bl_unPressed_stroke_color"/><attr format="color" name="bl_unFocused_stroke_color"/></declare-styleable>
  2107. <declare-styleable name="background_press"><attr format="color" name="bl_unpressed_color"/><attr format="color" name="bl_pressed_color"/></declare-styleable>
  2108. <declare-styleable name="background_selector"><attr format="color|reference" name="bl_checkable_drawable"/><attr format="color|reference" name="bl_checked_drawable"/><attr format="color|reference" name="bl_enabled_drawable"/><attr format="color|reference" name="bl_selected_drawable"/><attr format="color|reference" name="bl_pressed_drawable"/><attr format="color|reference" name="bl_focused_drawable"/><attr format="color|reference" name="bl_focused_hovered"/><attr format="color|reference" name="bl_focused_activated"/><attr format="color|reference" name="bl_unCheckable_drawable"/><attr format="color|reference" name="bl_unChecked_drawable"/><attr format="color|reference" name="bl_unEnabled_drawable"/><attr format="color|reference" name="bl_unSelected_drawable"/><attr format="color|reference" name="bl_unPressed_drawable"/><attr format="color|reference" name="bl_unFocused_drawable"/><attr format="color|reference" name="bl_unFocused_hovered"/><attr format="color|reference" name="bl_unFocused_activated"/></declare-styleable>
  2109. <declare-styleable name="pickerview"><attr name="pickerview_gravity"><enum name="center" value="17"/><enum name="left" value="3"/><enum name="right" value="5"/></attr><attr format="dimension" name="pickerview_textSize"/><attr format="color" name="pickerview_textColorOut"/><attr format="color" name="pickerview_textColorCenter"/><attr format="color" name="pickerview_dividerColor"/></declare-styleable>
  2110. <declare-styleable name="text_selector"><attr format="color" name="bl_checkable_textColor"/><attr format="color" name="bl_checked_textColor"/><attr format="color" name="bl_enabled_textColor"/><attr format="color" name="bl_selected_textColor"/><attr format="color" name="bl_pressed_textColor"/><attr format="color" name="bl_focused_textColor"/><attr format="color" name="bl_unCheckable_textColor"/><attr format="color" name="bl_unChecked_textColor"/><attr format="color" name="bl_unEnabled_textColor"/><attr format="color" name="bl_unSelected_textColor"/><attr format="color" name="bl_unPressed_textColor"/><attr format="color" name="bl_unFocused_textColor"/></declare-styleable>
  2111. <dimen name="abc_action_bar_content_inset_material">16dp</dimen>
  2112. <dimen name="abc_action_bar_content_inset_with_nav">72dp</dimen>
  2113. <dimen name="abc_action_bar_default_height_material">56dp</dimen>
  2114. <dimen name="abc_action_bar_default_padding_end_material">0dp</dimen>
  2115. <dimen name="abc_action_bar_default_padding_start_material">0dp</dimen>
  2116. <dimen name="abc_action_bar_elevation_material">4dp</dimen>
  2117. <dimen name="abc_action_bar_icon_vertical_padding_material">16dp</dimen>
  2118. <dimen name="abc_action_bar_overflow_padding_end_material">10dp</dimen>
  2119. <dimen name="abc_action_bar_overflow_padding_start_material">6dp</dimen>
  2120. <dimen name="abc_action_bar_stacked_max_height">48dp</dimen>
  2121. <dimen name="abc_action_bar_stacked_tab_max_width">180dp</dimen>
  2122. <dimen name="abc_action_bar_subtitle_bottom_margin_material">5dp</dimen>
  2123. <dimen name="abc_action_bar_subtitle_top_margin_material">-3dp</dimen>
  2124. <dimen name="abc_action_button_min_height_material">48dp</dimen>
  2125. <dimen name="abc_action_button_min_width_material">48dp</dimen>
  2126. <dimen name="abc_action_button_min_width_overflow_material">36dp</dimen>
  2127. <dimen name="abc_alert_dialog_button_bar_height">48dp</dimen>
  2128. <dimen name="abc_alert_dialog_button_dimen">48dp</dimen>
  2129. <dimen name="abc_button_inset_horizontal_material">@dimen/abc_control_inset_material</dimen>
  2130. <dimen name="abc_button_inset_vertical_material">6dp</dimen>
  2131. <dimen name="abc_button_padding_horizontal_material">8dp</dimen>
  2132. <dimen name="abc_button_padding_vertical_material">@dimen/abc_control_padding_material</dimen>
  2133. <dimen name="abc_cascading_menus_min_smallest_width">720dp</dimen>
  2134. <dimen name="abc_config_prefDialogWidth">320dp</dimen>
  2135. <dimen name="abc_control_corner_material">2dp</dimen>
  2136. <dimen name="abc_control_inset_material">4dp</dimen>
  2137. <dimen name="abc_control_padding_material">4dp</dimen>
  2138. <dimen name="abc_dialog_corner_radius_material">2dp</dimen>
  2139. <item name="abc_dialog_fixed_height_major" type="dimen">80%</item>
  2140. <item name="abc_dialog_fixed_height_minor" type="dimen">100%</item>
  2141. <item name="abc_dialog_fixed_width_major" type="dimen">320dp</item>
  2142. <item name="abc_dialog_fixed_width_minor" type="dimen">320dp</item>
  2143. <dimen name="abc_dialog_list_padding_bottom_no_buttons">8dp</dimen>
  2144. <dimen name="abc_dialog_list_padding_top_no_title">8dp</dimen>
  2145. <item name="abc_dialog_min_width_major" type="dimen">65%</item>
  2146. <item name="abc_dialog_min_width_minor" type="dimen">95%</item>
  2147. <dimen name="abc_dialog_padding_material">24dp</dimen>
  2148. <dimen name="abc_dialog_padding_top_material">18dp</dimen>
  2149. <dimen name="abc_dialog_title_divider_material">8dp</dimen>
  2150. <item format="float" name="abc_disabled_alpha_material_dark" type="dimen">0.30</item>
  2151. <item format="float" name="abc_disabled_alpha_material_light" type="dimen">0.26</item>
  2152. <dimen name="abc_dropdownitem_icon_width">32dip</dimen>
  2153. <dimen name="abc_dropdownitem_text_padding_left">8dip</dimen>
  2154. <dimen name="abc_dropdownitem_text_padding_right">8dip</dimen>
  2155. <dimen name="abc_edit_text_inset_bottom_material">7dp</dimen>
  2156. <dimen name="abc_edit_text_inset_horizontal_material">4dp</dimen>
  2157. <dimen name="abc_edit_text_inset_top_material">10dp</dimen>
  2158. <dimen name="abc_floating_window_z">16dp</dimen>
  2159. <dimen name="abc_list_item_height_large_material">80dp</dimen>
  2160. <dimen name="abc_list_item_height_material">64dp</dimen>
  2161. <dimen name="abc_list_item_height_small_material">48dp</dimen>
  2162. <dimen name="abc_list_item_padding_horizontal_material">@dimen/abc_action_bar_content_inset_material</dimen>
  2163. <dimen name="abc_panel_menu_list_width">296dp</dimen>
  2164. <dimen name="abc_progress_bar_height_material">4dp</dimen>
  2165. <dimen name="abc_search_view_preferred_height">48dip</dimen>
  2166. <dimen name="abc_search_view_preferred_width">320dip</dimen>
  2167. <dimen name="abc_seekbar_track_background_height_material">2dp</dimen>
  2168. <dimen name="abc_seekbar_track_progress_height_material">2dp</dimen>
  2169. <dimen name="abc_select_dialog_padding_start_material">20dp</dimen>
  2170. <dimen name="abc_switch_padding">3dp</dimen>
  2171. <dimen name="abc_text_size_body_1_material">14sp</dimen>
  2172. <dimen name="abc_text_size_body_2_material">14sp</dimen>
  2173. <dimen name="abc_text_size_button_material">14sp</dimen>
  2174. <dimen name="abc_text_size_caption_material">12sp</dimen>
  2175. <dimen name="abc_text_size_display_1_material">34sp</dimen>
  2176. <dimen name="abc_text_size_display_2_material">45sp</dimen>
  2177. <dimen name="abc_text_size_display_3_material">56sp</dimen>
  2178. <dimen name="abc_text_size_display_4_material">112sp</dimen>
  2179. <dimen name="abc_text_size_headline_material">24sp</dimen>
  2180. <dimen name="abc_text_size_large_material">22sp</dimen>
  2181. <dimen name="abc_text_size_medium_material">18sp</dimen>
  2182. <dimen name="abc_text_size_menu_header_material">14sp</dimen>
  2183. <dimen name="abc_text_size_menu_material">16sp</dimen>
  2184. <dimen name="abc_text_size_small_material">14sp</dimen>
  2185. <dimen name="abc_text_size_subhead_material">16sp</dimen>
  2186. <dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen>
  2187. <dimen name="abc_text_size_title_material">20sp</dimen>
  2188. <dimen name="abc_text_size_title_material_toolbar">20dp</dimen>
  2189. <dimen name="action">17sp</dimen>
  2190. <dimen name="btn_height">40dp</dimen>
  2191. <dimen name="cardview_compat_inset_shadow">1dp</dimen>
  2192. <dimen name="cardview_default_elevation">2dp</dimen>
  2193. <dimen name="cardview_default_radius">2dp</dimen>
  2194. <dimen name="common">15sp</dimen>
  2195. <dimen name="compat_button_inset_horizontal_material">4dp</dimen>
  2196. <dimen name="compat_button_inset_vertical_material">6dp</dimen>
  2197. <dimen name="compat_button_padding_horizontal_material">8dp</dimen>
  2198. <dimen name="compat_button_padding_vertical_material">4dp</dimen>
  2199. <dimen name="compat_control_corner_material">2dp</dimen>
  2200. <dimen name="compat_notification_large_icon_max_height">320dp</dimen>
  2201. <dimen name="compat_notification_large_icon_max_width">320dp</dimen>
  2202. <dimen name="design_appbar_elevation">4dp</dimen>
  2203. <dimen name="design_bottom_navigation_active_item_max_width">168dp</dimen>
  2204. <dimen name="design_bottom_navigation_active_item_min_width">96dp</dimen>
  2205. <dimen name="design_bottom_navigation_active_text_size">14sp</dimen>
  2206. <dimen name="design_bottom_navigation_elevation">8dp</dimen>
  2207. <dimen name="design_bottom_navigation_height">56dp</dimen>
  2208. <dimen name="design_bottom_navigation_icon_size">24dp</dimen>
  2209. <dimen name="design_bottom_navigation_item_max_width">96dp</dimen>
  2210. <dimen name="design_bottom_navigation_item_min_width">56dp</dimen>
  2211. <dimen name="design_bottom_navigation_margin">8dp</dimen>
  2212. <dimen name="design_bottom_navigation_shadow_height">1dp</dimen>
  2213. <dimen name="design_bottom_navigation_text_size">12sp</dimen>
  2214. <dimen name="design_bottom_sheet_modal_elevation">16dp</dimen>
  2215. <dimen name="design_bottom_sheet_peek_height_min">64dp</dimen>
  2216. <dimen name="design_fab_border_width">0.5dp</dimen>
  2217. <dimen name="design_fab_elevation">6dp</dimen>
  2218. <dimen name="design_fab_image_size">24dp</dimen>
  2219. <dimen name="design_fab_size_mini">40dp</dimen>
  2220. <dimen name="design_fab_size_normal">56dp</dimen>
  2221. <dimen name="design_fab_translation_z_hovered_focused">6dp</dimen>
  2222. <dimen name="design_fab_translation_z_pressed">6dp</dimen>
  2223. <dimen name="design_navigation_elevation">16dp</dimen>
  2224. <dimen name="design_navigation_icon_padding">32dp</dimen>
  2225. <dimen name="design_navigation_icon_size">24dp</dimen>
  2226. <dimen name="design_navigation_item_horizontal_padding">16dp</dimen>
  2227. <dimen name="design_navigation_item_icon_padding">32dp</dimen>
  2228. <dimen name="design_navigation_max_width">280dp</dimen>
  2229. <dimen name="design_navigation_padding_bottom">8dp</dimen>
  2230. <dimen name="design_navigation_separator_vertical_padding">8dp</dimen>
  2231. <dimen name="design_snackbar_action_inline_max_width">128dp</dimen>
  2232. <dimen name="design_snackbar_background_corner_radius">0dp</dimen>
  2233. <dimen name="design_snackbar_elevation">6dp</dimen>
  2234. <dimen name="design_snackbar_extra_spacing_horizontal">0dp</dimen>
  2235. <dimen name="design_snackbar_max_width">-1px</dimen>
  2236. <dimen name="design_snackbar_min_width">-1px</dimen>
  2237. <dimen name="design_snackbar_padding_horizontal">12dp</dimen>
  2238. <dimen name="design_snackbar_padding_vertical">14dp</dimen>
  2239. <dimen name="design_snackbar_padding_vertical_2lines">24dp</dimen>
  2240. <dimen name="design_snackbar_text_size">14sp</dimen>
  2241. <dimen name="design_tab_max_width">264dp</dimen>
  2242. <dimen name="design_tab_scrollable_min_width">72dp</dimen>
  2243. <dimen name="design_tab_text_size">14sp</dimen>
  2244. <dimen name="design_tab_text_size_2line">12sp</dimen>
  2245. <dimen name="design_textinput_caption_translate_y">5dp</dimen>
  2246. <item format="float" name="disabled_alpha_material_dark" type="dimen">0.30</item>
  2247. <item format="float" name="disabled_alpha_material_light" type="dimen">0.26</item>
  2248. <dimen name="fastscroll_default_thickness">8dp</dimen>
  2249. <dimen name="fastscroll_margin">0dp</dimen>
  2250. <dimen name="fastscroll_minimum_range">50dp</dimen>
  2251. <dimen name="fragment_cell_height">60dp</dimen>
  2252. <dimen name="gap">12dp</dimen>
  2253. <dimen name="gap_top_bottom">10dp</dimen>
  2254. <item format="float" name="highlight_alpha_material_colored" type="dimen">0.26</item>
  2255. <item format="float" name="highlight_alpha_material_dark" type="dimen">0.20</item>
  2256. <item format="float" name="highlight_alpha_material_light" type="dimen">0.12</item>
  2257. <item format="float" name="hint_alpha_material_dark" type="dimen">0.50</item>
  2258. <item format="float" name="hint_alpha_material_light" type="dimen">0.38</item>
  2259. <item format="float" name="hint_pressed_alpha_material_dark" type="dimen">0.70</item>
  2260. <item format="float" name="hint_pressed_alpha_material_light" type="dimen">0.54</item>
  2261. <dimen name="item_touch_helper_max_drag_scroll_per_frame">20dp</dimen>
  2262. <dimen name="item_touch_helper_swipe_escape_max_velocity">800dp</dimen>
  2263. <dimen name="item_touch_helper_swipe_escape_velocity">120dp</dimen>
  2264. <dimen name="layout_cell_height">50dp</dimen>
  2265. <dimen name="layout_task_cell_height">45dp</dimen>
  2266. <dimen name="little">13sp</dimen>
  2267. <dimen name="mtrl_bottomappbar_fabOffsetEndMode">60dp</dimen>
  2268. <dimen name="mtrl_bottomappbar_fab_cradle_margin">5dp</dimen>
  2269. <dimen name="mtrl_bottomappbar_fab_cradle_rounded_corner_radius">8dp</dimen>
  2270. <dimen name="mtrl_bottomappbar_fab_cradle_vertical_offset">0dp</dimen>
  2271. <dimen name="mtrl_bottomappbar_height">56dp</dimen>
  2272. <dimen name="mtrl_btn_corner_radius">4dp</dimen>
  2273. <dimen name="mtrl_btn_dialog_btn_min_width">64dp</dimen>
  2274. <dimen name="mtrl_btn_disabled_elevation">0dp</dimen>
  2275. <dimen name="mtrl_btn_disabled_z">0dp</dimen>
  2276. <dimen name="mtrl_btn_elevation">2dp</dimen>
  2277. <dimen name="mtrl_btn_focused_z">2dp</dimen>
  2278. <dimen name="mtrl_btn_hovered_z">2dp</dimen>
  2279. <dimen name="mtrl_btn_icon_btn_padding_left">12dp</dimen>
  2280. <dimen name="mtrl_btn_icon_padding">8dp</dimen>
  2281. <dimen name="mtrl_btn_inset">6dp</dimen>
  2282. <item format="float" name="mtrl_btn_letter_spacing" type="dimen">0.07</item>
  2283. <dimen name="mtrl_btn_padding_bottom">4dp</dimen>
  2284. <dimen name="mtrl_btn_padding_left">16dp</dimen>
  2285. <dimen name="mtrl_btn_padding_right">16dp</dimen>
  2286. <dimen name="mtrl_btn_padding_top">4dp</dimen>
  2287. <dimen name="mtrl_btn_pressed_z">6dp</dimen>
  2288. <dimen name="mtrl_btn_stroke_size">1dp</dimen>
  2289. <dimen name="mtrl_btn_text_btn_icon_padding">4dp</dimen>
  2290. <dimen name="mtrl_btn_text_btn_padding_left">8dp</dimen>
  2291. <dimen name="mtrl_btn_text_btn_padding_right">8dp</dimen>
  2292. <dimen name="mtrl_btn_text_size">14sp</dimen>
  2293. <dimen name="mtrl_btn_z">0dp</dimen>
  2294. <dimen name="mtrl_card_elevation">1dp</dimen>
  2295. <dimen name="mtrl_card_spacing">8dp</dimen>
  2296. <dimen name="mtrl_chip_pressed_translation_z">3dp</dimen>
  2297. <dimen name="mtrl_chip_text_size">14sp</dimen>
  2298. <dimen name="mtrl_fab_elevation">6dp</dimen>
  2299. <dimen name="mtrl_fab_translation_z_hovered_focused">2dp</dimen>
  2300. <dimen name="mtrl_fab_translation_z_pressed">6dp</dimen>
  2301. <dimen name="mtrl_navigation_elevation">0dp</dimen>
  2302. <dimen name="mtrl_navigation_item_horizontal_padding">22dp</dimen>
  2303. <dimen name="mtrl_navigation_item_icon_padding">14dp</dimen>
  2304. <dimen name="mtrl_snackbar_background_corner_radius">4dp</dimen>
  2305. <dimen name="mtrl_snackbar_margin">8dp</dimen>
  2306. <dimen name="mtrl_textinput_box_bottom_offset">3dp</dimen>
  2307. <dimen name="mtrl_textinput_box_corner_radius_medium">4dp</dimen>
  2308. <dimen name="mtrl_textinput_box_corner_radius_small">0dp</dimen>
  2309. <dimen name="mtrl_textinput_box_label_cutout_padding">4dp</dimen>
  2310. <dimen name="mtrl_textinput_box_padding_end">12dp</dimen>
  2311. <dimen name="mtrl_textinput_box_stroke_width_default">1dp</dimen>
  2312. <dimen name="mtrl_textinput_box_stroke_width_focused">2dp</dimen>
  2313. <dimen name="mtrl_textinput_outline_box_expanded_padding">16dp</dimen>
  2314. <dimen name="mtrl_toolbar_default_height">56dp</dimen>
  2315. <dimen name="notification_action_icon_size">32dp</dimen>
  2316. <dimen name="notification_action_text_size">13sp</dimen>
  2317. <dimen name="notification_big_circle_margin">12dp</dimen>
  2318. <dimen name="notification_content_margin_start">8dp</dimen>
  2319. <dimen name="notification_large_icon_height">64dp</dimen>
  2320. <dimen name="notification_large_icon_width">64dp</dimen>
  2321. <dimen name="notification_main_column_padding_top">10dp</dimen>
  2322. <dimen name="notification_media_narrow_margin">@dimen/notification_content_margin_start</dimen>
  2323. <dimen name="notification_right_icon_size">16dp</dimen>
  2324. <dimen name="notification_right_side_padding_top">2dp</dimen>
  2325. <dimen name="notification_small_icon_background_padding">3dp</dimen>
  2326. <dimen name="notification_small_icon_size_as_large">24dp</dimen>
  2327. <dimen name="notification_subtext_size">13sp</dimen>
  2328. <dimen name="notification_top_pad">10dp</dimen>
  2329. <dimen name="notification_top_pad_large_text">5dp</dimen>
  2330. <dimen name="pickerview_textsize">20sp</dimen>
  2331. <dimen name="pickerview_topbar_btn_textsize">20sp</dimen>
  2332. <dimen name="pickerview_topbar_height">44dp</dimen>
  2333. <dimen name="pickerview_topbar_paddingleft">10dp</dimen>
  2334. <dimen name="pickerview_topbar_paddingright">30dp</dimen>
  2335. <dimen name="pickerview_topbar_title_textsize">21sp</dimen>
  2336. <dimen name="subtitle_corner_radius">2dp</dimen>
  2337. <dimen name="subtitle_outline_width">2dp</dimen>
  2338. <dimen name="subtitle_shadow_offset">2dp</dimen>
  2339. <dimen name="subtitle_shadow_radius">2dp</dimen>
  2340. <dimen name="textandiconmargin">10dp</dimen>
  2341. <dimen name="toolbar">20sp</dimen>
  2342. <dimen name="tooltip_corner_radius">2dp</dimen>
  2343. <dimen name="tooltip_horizontal_padding">16dp</dimen>
  2344. <dimen name="tooltip_margin">8dp</dimen>
  2345. <dimen name="tooltip_precise_anchor_extra_offset">8dp</dimen>
  2346. <dimen name="tooltip_precise_anchor_threshold">96dp</dimen>
  2347. <dimen name="tooltip_vertical_padding">6.5dp</dimen>
  2348. <dimen name="tooltip_y_offset_non_touch">0dp</dimen>
  2349. <dimen name="tooltip_y_offset_touch">16dp</dimen>
  2350. <drawable name="notification_template_icon_bg">#3333B5E5</drawable>
  2351. <drawable name="notification_template_icon_low_bg">#0cffffff</drawable>
  2352. <item name="accessibility_action_clickable_span" type="id"/>
  2353. <item name="accessibility_custom_action_0" type="id"/>
  2354. <item name="accessibility_custom_action_1" type="id"/>
  2355. <item name="accessibility_custom_action_10" type="id"/>
  2356. <item name="accessibility_custom_action_11" type="id"/>
  2357. <item name="accessibility_custom_action_12" type="id"/>
  2358. <item name="accessibility_custom_action_13" type="id"/>
  2359. <item name="accessibility_custom_action_14" type="id"/>
  2360. <item name="accessibility_custom_action_15" type="id"/>
  2361. <item name="accessibility_custom_action_16" type="id"/>
  2362. <item name="accessibility_custom_action_17" type="id"/>
  2363. <item name="accessibility_custom_action_18" type="id"/>
  2364. <item name="accessibility_custom_action_19" type="id"/>
  2365. <item name="accessibility_custom_action_2" type="id"/>
  2366. <item name="accessibility_custom_action_20" type="id"/>
  2367. <item name="accessibility_custom_action_21" type="id"/>
  2368. <item name="accessibility_custom_action_22" type="id"/>
  2369. <item name="accessibility_custom_action_23" type="id"/>
  2370. <item name="accessibility_custom_action_24" type="id"/>
  2371. <item name="accessibility_custom_action_25" type="id"/>
  2372. <item name="accessibility_custom_action_26" type="id"/>
  2373. <item name="accessibility_custom_action_27" type="id"/>
  2374. <item name="accessibility_custom_action_28" type="id"/>
  2375. <item name="accessibility_custom_action_29" type="id"/>
  2376. <item name="accessibility_custom_action_3" type="id"/>
  2377. <item name="accessibility_custom_action_30" type="id"/>
  2378. <item name="accessibility_custom_action_31" type="id"/>
  2379. <item name="accessibility_custom_action_4" type="id"/>
  2380. <item name="accessibility_custom_action_5" type="id"/>
  2381. <item name="accessibility_custom_action_6" type="id"/>
  2382. <item name="accessibility_custom_action_7" type="id"/>
  2383. <item name="accessibility_custom_action_8" type="id"/>
  2384. <item name="accessibility_custom_action_9" type="id"/>
  2385. <item name="action_bar_activity_content" type="id"/>
  2386. <item name="action_bar_spinner" type="id"/>
  2387. <item name="action_menu_divider" type="id"/>
  2388. <item name="action_menu_presenter" type="id"/>
  2389. <item name="bannerContainer" type="id"/>
  2390. <item name="bannerDefaultImage" type="id"/>
  2391. <item name="bannerTitle" type="id"/>
  2392. <item name="bannerViewPager" type="id"/>
  2393. <item name="circleIndicator" type="id"/>
  2394. <item name="ghost_view" type="id"/>
  2395. <item name="home" type="id"/>
  2396. <item name="indicatorInside" type="id"/>
  2397. <item name="item_touch_helper_previous_elevation" type="id"/>
  2398. <item name="line1" type="id"/>
  2399. <item name="line3" type="id"/>
  2400. <item name="mtrl_child_content_container" type="id"/>
  2401. <item name="mtrl_internal_children_alpha_tag" type="id"/>
  2402. <item name="numIndicator" type="id"/>
  2403. <item name="numIndicatorInside" type="id"/>
  2404. <item name="parent_matrix" type="id"/>
  2405. <item name="progress_circular" type="id"/>
  2406. <item name="progress_horizontal" type="id"/>
  2407. <item name="save_image_matrix" type="id"/>
  2408. <item name="save_non_transition_alpha" type="id"/>
  2409. <item name="save_scale_type" type="id"/>
  2410. <item name="snackbar_action" type="id"/>
  2411. <item name="snackbar_text" type="id"/>
  2412. <item name="split_action_bar" type="id"/>
  2413. <item name="tag_accessibility_actions" type="id"/>
  2414. <item name="tag_accessibility_clickable_spans" type="id"/>
  2415. <item name="tag_accessibility_heading" type="id"/>
  2416. <item name="tag_accessibility_pane_title" type="id"/>
  2417. <item name="tag_screen_reader_focusable" type="id"/>
  2418. <item name="tag_transition_group" type="id"/>
  2419. <item name="tag_unhandled_key_event_manager" type="id"/>
  2420. <item name="tag_unhandled_key_listeners" type="id"/>
  2421. <item name="text" type="id"/>
  2422. <item name="text2" type="id"/>
  2423. <item name="textinput_counter" type="id"/>
  2424. <item name="textinput_error" type="id"/>
  2425. <item name="textinput_helper_text" type="id"/>
  2426. <item name="title" type="id"/>
  2427. <item name="titleView" type="id"/>
  2428. <item name="transition_current_scene" type="id"/>
  2429. <item name="transition_layout_save" type="id"/>
  2430. <item name="transition_position" type="id"/>
  2431. <item name="transition_scene_layoutid_cache" type="id"/>
  2432. <item name="transition_transform" type="id"/>
  2433. <item name="up" type="id"/>
  2434. <item name="view_offset_helper" type="id"/>
  2435. <integer name="abc_config_activityDefaultDur">220</integer>
  2436. <integer name="abc_config_activityShortDur">150</integer>
  2437. <integer name="animation_default_duration">300</integer>
  2438. <integer name="app_bar_elevation_anim_duration">150</integer>
  2439. <integer name="bottom_sheet_slide_duration">150</integer>
  2440. <integer name="cancel_button_image_alpha">127</integer>
  2441. <integer name="config_tooltipAnimTime">150</integer>
  2442. <integer name="design_snackbar_text_max_lines">2</integer>
  2443. <integer name="design_tab_indicator_anim_duration_ms">300</integer>
  2444. <integer name="hide_password_duration">320</integer>
  2445. <integer name="mtrl_btn_anim_delay_ms">100</integer>
  2446. <integer name="mtrl_btn_anim_duration_ms">100</integer>
  2447. <integer name="mtrl_chip_anim_duration">100</integer>
  2448. <integer name="mtrl_tab_indicator_anim_duration_ms">250</integer>
  2449. <integer name="show_password_duration">200</integer>
  2450. <integer name="status_bar_notification_info_maxnum">999</integer>
  2451. <string name="abc_action_bar_home_description">Navigate home</string>
  2452. <string name="abc_action_bar_up_description">Navigate up</string>
  2453. <string name="abc_action_menu_overflow_description">More options</string>
  2454. <string name="abc_action_mode_done">Done</string>
  2455. <string name="abc_activity_chooser_view_see_all">See all</string>
  2456. <string name="abc_activitychooserview_choose_application">Choose an app</string>
  2457. <string name="abc_capital_off">OFF</string>
  2458. <string name="abc_capital_on">ON</string>
  2459. <string name="abc_menu_alt_shortcut_label">Alt+</string>
  2460. <string name="abc_menu_ctrl_shortcut_label">Ctrl+</string>
  2461. <string name="abc_menu_delete_shortcut_label">delete</string>
  2462. <string name="abc_menu_enter_shortcut_label">enter</string>
  2463. <string name="abc_menu_function_shortcut_label">Function+</string>
  2464. <string name="abc_menu_meta_shortcut_label">Meta+</string>
  2465. <string name="abc_menu_shift_shortcut_label">Shift+</string>
  2466. <string name="abc_menu_space_shortcut_label">space</string>
  2467. <string name="abc_menu_sym_shortcut_label">Sym+</string>
  2468. <string name="abc_prepend_shortcut_label">Menu+</string>
  2469. <string name="abc_search_hint">Search…</string>
  2470. <string name="abc_searchview_description_clear">Clear query</string>
  2471. <string name="abc_searchview_description_query">Search query</string>
  2472. <string name="abc_searchview_description_search">Search</string>
  2473. <string name="abc_searchview_description_submit">Submit query</string>
  2474. <string name="abc_searchview_description_voice">Voice search</string>
  2475. <string name="abc_shareactionprovider_share_with">Share with</string>
  2476. <string name="abc_shareactionprovider_share_with_application">Share with <ns1:g example="Mail" id="application_name">%s</ns1:g></string>
  2477. <string name="abc_toolbar_collapse_description">Collapse</string>
  2478. <string name="app_name">WareWMS</string>
  2479. <string name="appbar_scrolling_view_behavior" translatable="false">com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior</string>
  2480. <string name="bottom_sheet_behavior" translatable="false">com.google.android.material.bottomsheet.BottomSheetBehavior</string>
  2481. <string name="character_counter_content_description">Character limit exceeded %1$d of %2$d</string>
  2482. <string name="character_counter_pattern" translatable="false">%1$d / %2$d</string>
  2483. <string name="default_user_name">演示用户</string>
  2484. <string name="fab_transformation_scrim_behavior" translatable="false">com.google.android.material.transformation.FabTransformationScrimBehavior</string>
  2485. <string name="fab_transformation_sheet_behavior" translatable="false">com.google.android.material.transformation.FabTransformationSheetBehavior</string>
  2486. <string name="general_string_add">新增</string>
  2487. <string name="general_string_alert">提示</string>
  2488. <string name="general_string_cancel">取消</string>
  2489. <string name="general_string_close">关闭</string>
  2490. <string name="general_string_confirm">确定</string>
  2491. <string name="general_string_next">下一步</string>
  2492. <string name="general_string_next_info">下一条</string>
  2493. <string name="general_string_open">开启</string>
  2494. <string name="general_string_personal">个人中心</string>
  2495. <string name="general_string_previous_info">上一条</string>
  2496. <string name="general_string_progress_list">明细列表</string>
  2497. <string name="general_string_remark">备注:</string>
  2498. <string name="general_string_reset">重置</string>
  2499. <string name="general_string_save">保存</string>
  2500. <string name="general_string_skip">跳过</string>
  2501. <string name="general_string_submit">提交</string>
  2502. <string name="general_string_submit_success">提交成功</string>
  2503. <string name="general_value_default">00000000</string>
  2504. <string name="hide_bottom_view_on_scroll_behavior" translatable="false">com.google.android.material.behavior.HideBottomViewOnScrollBehavior</string>
  2505. <string name="item_in_acceptance">质量验收</string>
  2506. <string name="item_in_putaway">上架</string>
  2507. <string name="item_in_receive_goods">入库上架</string>
  2508. <string name="item_operation_check">盘点</string>
  2509. <string name="item_operation_conserve">库存养护</string>
  2510. <string name="item_operation_move">移库</string>
  2511. <string name="item_out_package_recheck">包装复核(冷链)</string>
  2512. <string name="item_out_recheck">复核</string>
  2513. <string name="item_search_goods">产品库存查询</string>
  2514. <string name="item_search_storage">库位库存查询</string>
  2515. <string name="item_user_feedback">意见反馈</string>
  2516. <string name="item_user_information">个人信息</string>
  2517. <string name="item_user_log_out">注销登录</string>
  2518. <string name="item_user_psw_edit">修改密码</string>
  2519. <string name="listview_header_hint_normal">pull to refresh</string>
  2520. <string name="listview_header_hint_release">release to start refresh</string>
  2521. <string name="listview_header_last_time">last update:</string>
  2522. <string name="listview_loading">loading...</string>
  2523. <string name="loading_done">loading done</string>
  2524. <string name="login_account_password_hint">请输入密码</string>
  2525. <string name="login_action_next">登录</string>
  2526. <string name="login_copyright">Copyright © 2011–2019 WARE WMS</string>
  2527. <string name="login_user_name_hint">请输入用户名</string>
  2528. <string name="login_welcome_slogan">欢迎使用Ware WMS仓储管理系统</string>
  2529. <string name="mtrl_chip_close_icon_content_description">Remove %1$s</string>
  2530. <string name="nomore_loading">no more to be loaded</string>
  2531. <string name="password_toggle_content_description">Show password</string>
  2532. <string name="path_password_eye" translatable="false">M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z</string>
  2533. <string name="path_password_eye_mask_strike_through" translatable="false">M2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z</string>
  2534. <string name="path_password_eye_mask_visible" translatable="false">M2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z</string>
  2535. <string name="path_password_strike_through" translatable="false">M3.27,4.27 L19.74,20.74</string>
  2536. <string name="pickerview_cancel">取消</string>
  2537. <string name="pickerview_day">日</string>
  2538. <string name="pickerview_hours">时</string>
  2539. <string name="pickerview_minutes">分</string>
  2540. <string name="pickerview_month">月</string>
  2541. <string name="pickerview_seconds">秒</string>
  2542. <string name="pickerview_submit">确定</string>
  2543. <string name="pickerview_year">年</string>
  2544. <string name="refresh_done">refresh done</string>
  2545. <string name="refreshing">refreshing...</string>
  2546. <string name="search_menu_title">Search</string>
  2547. <string name="status_bar_notification_info_overflow">999+</string>
  2548. <string name="str_RKDH_notice">注:请输入、扫描或者选择上架任务单号。</string>
  2549. <string name="str_RKDH_number">上架任务单号:</string>
  2550. <string name="str_RKDH_number_hint">请输入上架任务单号</string>
  2551. <string name="str_RKDH_putaway_list">上架任务明细</string>
  2552. <string name="str_accept_custom">自由验收</string>
  2553. <string name="str_accept_list">验收清单</string>
  2554. <string name="str_accept_note">验收说明:</string>
  2555. <string name="str_accept_note_1">未见异常,检查验收合格</string>
  2556. <string name="str_accept_note_2">近效期,包装外观未见异常</string>
  2557. <string name="str_accept_note_3">退货经检查验收,包装外观符合要求,可入库</string>
  2558. <string name="str_accept_note_4">包装损坏,产品经检验后合格,可入库</string>
  2559. <string name="str_accept_note_5">包装破损,不合格</string>
  2560. <string name="str_accept_note_6">无中文标签,不合格</string>
  2561. <string name="str_accept_note_7">无合格证明文件,不合格</string>
  2562. <string name="str_accept_note_8">产品经检验后判定不合格</string>
  2563. <string name="str_accept_piece">验收件数:</string>
  2564. <string name="str_accept_status">验收状态:</string>
  2565. <string name="str_app_download">应用更新流程</string>
  2566. <string name="str_available_stock">可用库存:</string>
  2567. <string name="str_batch_sterilization">灭菌批号:</string>
  2568. <string name="str_check_list">盘点清单</string>
  2569. <string name="str_check_notice">注:请输入、扫描或者选择盘点任务单号。</string>
  2570. <string name="str_check_odd_num">盘点任务单号:</string>
  2571. <string name="str_check_odd_num_hint">请输入盘点任务单号</string>
  2572. <string name="str_check_piece">盘点件数:</string>
  2573. <string name="str_check_piece_hint">请输入盘点件数</string>
  2574. <string name="str_conserve_hygienic_condition">卫生环境:</string>
  2575. <string name="str_conserve_loc_age">库龄:</string>
  2576. <string name="str_conserve_notice">注:请输入、扫描或者选择养护计划单号</string>
  2577. <string name="str_conserve_odd_num">养护计划单号:</string>
  2578. <string name="str_conserve_odd_num_hint">请输入养护计划单号</string>
  2579. <string name="str_conserve_piece">养护件数:</string>
  2580. <string name="str_conserve_piece_hint">请输入养护件数</string>
  2581. <string name="str_conserve_protective_measures">防护措施:</string>
  2582. <string name="str_conserve_qualified_default">合格请点击此处</string>
  2583. <string name="str_conserve_sign_clear">标志清晰:</string>
  2584. <string name="str_conserve_storage_condition">贮存条件:</string>
  2585. <string name="str_conserve_task_end">结束养护计划</string>
  2586. <string name="str_conserve_task_list">养护清单</string>
  2587. <string name="str_conserve_work_flow">作业流程:</string>
  2588. <string name="str_customer_num">客户单号:</string>
  2589. <string name="str_default_note">请选择</string>
  2590. <string name="str_end_check_task">结束盘点任务</string>
  2591. <string name="str_end_receive">结束收货</string>
  2592. <string name="str_end_recheck">结束复核</string>
  2593. <string name="str_expiry_date">有效期/失效期:</string>
  2594. <string name="str_goods_barcode">产品条码:</string>
  2595. <string name="str_goods_barcode_hint">请输入产品条码</string>
  2596. <string name="str_goods_certificate">产品双证:</string>
  2597. <string name="str_goods_certificate_hint">请检查并确认</string>
  2598. <string name="str_goods_code">产品代码:</string>
  2599. <string name="str_goods_code_hint">请扫描产品条码</string>
  2600. <string name="str_goods_loc">产品库位:</string>
  2601. <string name="str_goods_model">规格/型号:</string>
  2602. <string name="str_goods_name">产品名称:</string>
  2603. <string name="str_goods_notice">注:请输入、扫描或者选择产品条码。</string>
  2604. <string name="str_goods_num">数量:</string>
  2605. <string name="str_goods_owner">货主:</string>
  2606. <string name="str_goods_pending">待处理</string>
  2607. <string name="str_goods_piece">件数:</string>
  2608. <string name="str_goods_qualified">合格</string>
  2609. <string name="str_goods_status">产品状态:</string>
  2610. <string name="str_goods_status_alert">确认修改之后将为此产品新建待检任务。
  2611. 是否修改产品状态为待检?</string>
  2612. <string name="str_goods_unchecked">待检</string>
  2613. <string name="str_goods_unqualified">不合格</string>
  2614. <string name="str_inventory_status">库存状态:</string>
  2615. <string name="str_last_search_result">上一条</string>
  2616. <string name="str_loc_confirm">库位确认:</string>
  2617. <string name="str_loc_confirm_hint">请扫描库位</string>
  2618. <string name="str_location">库位:</string>
  2619. <string name="str_location_hint">请输入库位</string>
  2620. <string name="str_lock_alert">请先扫描库位条码</string>
  2621. <string name="str_lock_goods_code">连续收货</string>
  2622. <string name="str_lock_loc">连续上架</string>
  2623. <string name="str_lot_no">批号:</string>
  2624. <string name="str_lot_no_hint">请输入批号(非必填)</string>
  2625. <string name="str_manufacturer">生产企业:</string>
  2626. <string name="str_manufacturer_code">生产许可证号/备案号:</string>
  2627. <string name="str_material">物料(*):</string>
  2628. <string name="str_material_height_level">物料高度档位(*):</string>
  2629. <string name="str_material_hint">请输入物料</string>
  2630. <string name="str_material_pcs">数量(*):</string>
  2631. <string name="str_material_pcs_hint">请输入数量</string>
  2632. <string name="str_move_in_loc">移入库位:</string>
  2633. <string name="str_move_in_loc_hint">扫描移入库位作为提交</string>
  2634. <string name="str_move_notice">注:请输入、扫描或者选择移库任务单号。</string>
  2635. <string name="str_move_odd_num">移库任务单号:</string>
  2636. <string name="str_move_odd_num_hint">请输入移库任务单号</string>
  2637. <string name="str_move_out_loc">移出库位:</string>
  2638. <string name="str_move_out_loc_hint">请输入移出库位</string>
  2639. <string name="str_move_piece">本次移库件数:</string>
  2640. <string name="str_move_piece_hint">请输入本次移库件数</string>
  2641. <string name="str_move_task_add">新增移库任务</string>
  2642. <string name="str_new_asn">提交入库</string>
  2643. <string name="str_new_asn_hint">当前入库明细为空,请新增物料</string>
  2644. <string name="str_new_material">新增物料</string>
  2645. <string name="str_next_search_result">下一条</string>
  2646. <string name="str_out_notice">注:请输入、扫描或者选择出库单号。</string>
  2647. <string name="str_out_num">出库数量:</string>
  2648. <string name="str_out_odd_num">出库单号:</string>
  2649. <string name="str_out_odd_num_hint">请输入出库单号</string>
  2650. <string name="str_pack_complete">装箱完成</string>
  2651. <string name="str_prd_batch">生产批号:</string>
  2652. <string name="str_prd_date">生产日期:</string>
  2653. <string name="str_putaway_finish">结束上架</string>
  2654. <string name="str_putaway_loc">上架库位:</string>
  2655. <string name="str_putaway_loc_hint">请输入实际上架库位</string>
  2656. <string name="str_putawayed_piece">已上架件数:</string>
  2657. <string name="str_putawaying_piece">本次上架件数:</string>
  2658. <string name="str_putawaying_piece_hint">请输入本次上架件数</string>
  2659. <string name="str_qualified_file">合格证明文件:</string>
  2660. <string name="str_qualified_file_hint">请检查并确认</string>
  2661. <string name="str_receive_num">收货数量:</string>
  2662. <string name="str_receive_piece">收货件数:</string>
  2663. <string name="str_receive_task_num">收货任务单号:</string>
  2664. <string name="str_received_num">已收货数量:</string>
  2665. <string name="str_received_piece">已收货件数:</string>
  2666. <string name="str_receiving_num">本次收货数量:</string>
  2667. <string name="str_receiving_piece">本次收货件数:</string>
  2668. <string name="str_receiving_piece_hint">请输入本次收货件数</string>
  2669. <string name="str_recheck_note">复核说明:</string>
  2670. <string name="str_recheck_note_1">未见异常,检查合格</string>
  2671. <string name="str_recheck_note_2">近效期,包装外观未见异常</string>
  2672. <string name="str_recheck_note_3">不合格:包装出现破损、污染、封口不牢、封条损坏等问题</string>
  2673. <string name="str_recheck_note_4">不合格:标签脱落、字迹模糊不清或者标示内容与实物不符</string>
  2674. <string name="str_recheck_note_5">不合格:超过有效期</string>
  2675. <string name="str_recheck_note_6">不合格:存在其他异常情况</string>
  2676. <string name="str_recheck_num">复核数量:</string>
  2677. <string name="str_recheck_piece">复核件数:</string>
  2678. <string name="str_recheck_status">复核结论:</string>
  2679. <string name="str_recommend_loc">推荐库位:</string>
  2680. <string name="str_register_code">注册证号/备案:</string>
  2681. <string name="str_search_batch_num">同批数量:</string>
  2682. <string name="str_search_batch_piece">同批件数:</string>
  2683. <string name="str_search_result">搜索结果</string>
  2684. <string name="str_search_storage_num">库存数量:</string>
  2685. <string name="str_search_storage_piece">库存件数:</string>
  2686. <string name="str_serial_num">序列号:</string>
  2687. <string name="str_status_checked">已盘点</string>
  2688. <string name="str_status_unchecked">待盘点</string>
  2689. <string name="str_storage">库位:</string>
  2690. <string name="str_storage_condition">储存条件:</string>
  2691. <string name="str_storage_condition_hint">请输入储存条件</string>
  2692. <string name="str_storage_notice">注:请输入、扫描或者选择库位条码。</string>
  2693. <string name="str_storage_number">库位条码:</string>
  2694. <string name="str_storage_number_hint">请输入库位条码</string>
  2695. <string name="str_transit_location">过渡库位(*):</string>
  2696. <string name="str_transit_location_hint">请输入过渡库位</string>
  2697. <string name="str_unit">单位:</string>
  2698. <string name="str_unreceived_num">待收货数量:</string>
  2699. <string name="str_unreceived_piece">待收货件数:</string>
  2700. <string name="str_version_code">版本号:</string>
  2701. <string name="str_version_code_hint">请输入版本号(非必填)</string>
  2702. <string name="tab_in">入库管理</string>
  2703. <string name="tab_operation">仓内操作</string>
  2704. <string name="tab_out">出库管理</string>
  2705. <string name="tab_quality">质量管理</string>
  2706. <string name="tab_search">库存查询</string>
  2707. <style name="AlertDialog.AppCompat" parent="Base.AlertDialog.AppCompat"/>
  2708. <style name="AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat.Light"/>
  2709. <style name="Animation.AppCompat.Dialog" parent="Base.Animation.AppCompat.Dialog"/>
  2710. <style name="Animation.AppCompat.DropDownUp" parent="Base.Animation.AppCompat.DropDownUp"/>
  2711. <style name="Animation.AppCompat.Tooltip" parent="Base.Animation.AppCompat.Tooltip"/>
  2712. <style name="Animation.Design.BottomSheetDialog" parent="Animation.AppCompat.Dialog">
  2713. <item name="android:windowEnterAnimation">@anim/design_bottom_sheet_slide_in</item>
  2714. <item name="android:windowExitAnimation">@anim/design_bottom_sheet_slide_out</item>
  2715. </style>
  2716. <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
  2717. <!-- Customize your theme here. -->
  2718. <item name="colorPrimary">@color/colorPrimary</item>
  2719. <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
  2720. <item name="colorAccent">@color/colorAccent</item>
  2721. <!--<item name="colorControlNormal">@android:color/white</item>-->
  2722. </style>
  2723. <style name="Base.AlertDialog.AppCompat" parent="android:Widget">
  2724. <item name="android:layout">@layout/abc_alert_dialog_material</item>
  2725. <item name="listLayout">@layout/abc_select_dialog_material</item>
  2726. <item name="listItemLayout">@layout/select_dialog_item_material</item>
  2727. <item name="multiChoiceItemLayout">@layout/select_dialog_multichoice_material</item>
  2728. <item name="singleChoiceItemLayout">@layout/select_dialog_singlechoice_material</item>
  2729. <item name="buttonIconDimen">@dimen/abc_alert_dialog_button_dimen</item>
  2730. </style>
  2731. <style name="Base.AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat"/>
  2732. <style name="Base.Animation.AppCompat.Dialog" parent="android:Animation">
  2733. <item name="android:windowEnterAnimation">@anim/abc_popup_enter</item>
  2734. <item name="android:windowExitAnimation">@anim/abc_popup_exit</item>
  2735. </style>
  2736. <style name="Base.Animation.AppCompat.DropDownUp" parent="android:Animation">
  2737. <item name="android:windowEnterAnimation">@anim/abc_grow_fade_in_from_bottom</item>
  2738. <item name="android:windowExitAnimation">@anim/abc_shrink_fade_out_from_bottom</item>
  2739. </style>
  2740. <style name="Base.Animation.AppCompat.Tooltip" parent="android:Animation">
  2741. <item name="android:windowEnterAnimation">@anim/abc_tooltip_enter</item>
  2742. <item name="android:windowExitAnimation">@anim/abc_tooltip_exit</item>
  2743. </style>
  2744. <style name="Base.CardView" parent="android:Widget">
  2745. <item name="cardCornerRadius">@dimen/cardview_default_radius</item>
  2746. <item name="cardElevation">@dimen/cardview_default_elevation</item>
  2747. <item name="cardMaxElevation">@dimen/cardview_default_elevation</item>
  2748. <item name="cardUseCompatPadding">false</item>
  2749. <item name="cardPreventCornerOverlap">true</item>
  2750. </style>
  2751. <style name="Base.DialogWindowTitle.AppCompat" parent="android:Widget">
  2752. <item name="android:maxLines">1</item>
  2753. <item name="android:scrollHorizontally">true</item>
  2754. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Title</item>
  2755. </style>
  2756. <style name="Base.DialogWindowTitleBackground.AppCompat" parent="android:Widget">
  2757. <item name="android:background">@null</item>
  2758. <item name="android:paddingLeft">?attr/dialogPreferredPadding</item>
  2759. <item name="android:paddingRight">?attr/dialogPreferredPadding</item>
  2760. <item name="android:paddingTop">@dimen/abc_dialog_padding_top_material</item>
  2761. </style>
  2762. <style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance">
  2763. <item name="android:textColor">?android:textColorPrimary</item>
  2764. <item name="android:textColorHint">?android:textColorHint</item>
  2765. <item name="android:textColorHighlight">?android:textColorHighlight</item>
  2766. <item name="android:textColorLink">?android:textColorLink</item>
  2767. <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
  2768. </style>
  2769. <style name="Base.TextAppearance.AppCompat.Body1">
  2770. <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
  2771. <item name="android:textColor">?android:textColorPrimary</item>
  2772. </style>
  2773. <style name="Base.TextAppearance.AppCompat.Body2">
  2774. <item name="android:textSize">@dimen/abc_text_size_body_2_material</item>
  2775. <item name="android:textColor">?android:textColorPrimary</item>
  2776. </style>
  2777. <style name="Base.TextAppearance.AppCompat.Button">
  2778. <item name="android:textSize">@dimen/abc_text_size_button_material</item>
  2779. <item name="android:textAllCaps">true</item>
  2780. <item name="android:textColor">?android:textColorPrimary</item>
  2781. </style>
  2782. <style name="Base.TextAppearance.AppCompat.Caption">
  2783. <item name="android:textSize">@dimen/abc_text_size_caption_material</item>
  2784. <item name="android:textColor">?android:textColorSecondary</item>
  2785. </style>
  2786. <style name="Base.TextAppearance.AppCompat.Display1">
  2787. <item name="android:textSize">@dimen/abc_text_size_display_1_material</item>
  2788. <item name="android:textColor">?android:textColorSecondary</item>
  2789. </style>
  2790. <style name="Base.TextAppearance.AppCompat.Display2">
  2791. <item name="android:textSize">@dimen/abc_text_size_display_2_material</item>
  2792. <item name="android:textColor">?android:textColorSecondary</item>
  2793. </style>
  2794. <style name="Base.TextAppearance.AppCompat.Display3">
  2795. <item name="android:textSize">@dimen/abc_text_size_display_3_material</item>
  2796. <item name="android:textColor">?android:textColorSecondary</item>
  2797. </style>
  2798. <style name="Base.TextAppearance.AppCompat.Display4">
  2799. <item name="android:textSize">@dimen/abc_text_size_display_4_material</item>
  2800. <item name="android:textColor">?android:textColorSecondary</item>
  2801. </style>
  2802. <style name="Base.TextAppearance.AppCompat.Headline">
  2803. <item name="android:textSize">@dimen/abc_text_size_headline_material</item>
  2804. <item name="android:textColor">?android:textColorPrimary</item>
  2805. </style>
  2806. <style name="Base.TextAppearance.AppCompat.Inverse">
  2807. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  2808. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  2809. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  2810. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  2811. </style>
  2812. <style name="Base.TextAppearance.AppCompat.Large">
  2813. <item name="android:textSize">@dimen/abc_text_size_large_material</item>
  2814. <item name="android:textColor">?android:attr/textColorPrimary</item>
  2815. </style>
  2816. <style name="Base.TextAppearance.AppCompat.Large.Inverse">
  2817. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  2818. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  2819. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  2820. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  2821. </style>
  2822. <style name="Base.TextAppearance.AppCompat.Medium">
  2823. <item name="android:textSize">@dimen/abc_text_size_medium_material</item>
  2824. <item name="android:textColor">?android:attr/textColorSecondary</item>
  2825. </style>
  2826. <style name="Base.TextAppearance.AppCompat.Medium.Inverse">
  2827. <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
  2828. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  2829. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  2830. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  2831. </style>
  2832. <style name="Base.TextAppearance.AppCompat.Menu">
  2833. <item name="android:textSize">@dimen/abc_text_size_menu_material</item>
  2834. <item name="android:textColor">?android:textColorPrimary</item>
  2835. </style>
  2836. <style name="Base.TextAppearance.AppCompat.SearchResult" parent="">
  2837. <item name="android:textStyle">normal</item>
  2838. <item name="android:textColor">?android:textColorPrimary</item>
  2839. <item name="android:textColorHint">?android:textColorHint</item>
  2840. </style>
  2841. <style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
  2842. <item name="android:textSize">14sp</item>
  2843. <item name="android:textColor">?android:textColorSecondary</item>
  2844. </style>
  2845. <style name="Base.TextAppearance.AppCompat.SearchResult.Title">
  2846. <item name="android:textSize">18sp</item>
  2847. </style>
  2848. <style name="Base.TextAppearance.AppCompat.Small">
  2849. <item name="android:textSize">@dimen/abc_text_size_small_material</item>
  2850. <item name="android:textColor">?android:attr/textColorTertiary</item>
  2851. </style>
  2852. <style name="Base.TextAppearance.AppCompat.Small.Inverse">
  2853. <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
  2854. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  2855. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  2856. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  2857. </style>
  2858. <style name="Base.TextAppearance.AppCompat.Subhead">
  2859. <item name="android:textSize">@dimen/abc_text_size_subhead_material</item>
  2860. <item name="android:textColor">?android:textColorPrimary</item>
  2861. </style>
  2862. <style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
  2863. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  2864. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  2865. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  2866. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  2867. </style>
  2868. <style name="Base.TextAppearance.AppCompat.Title">
  2869. <item name="android:textSize">@dimen/abc_text_size_title_material</item>
  2870. <item name="android:textColor">?android:textColorPrimary</item>
  2871. </style>
  2872. <style name="Base.TextAppearance.AppCompat.Title.Inverse">
  2873. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  2874. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  2875. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  2876. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  2877. </style>
  2878. <style name="Base.TextAppearance.AppCompat.Tooltip">
  2879. <item name="android:textSize">14sp</item>
  2880. </style>
  2881. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="TextAppearance.AppCompat.Button">
  2882. <item name="android:textColor">?attr/actionMenuTextColor</item>
  2883. <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
  2884. </style>
  2885. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="TextAppearance.AppCompat.Subhead">
  2886. <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
  2887. <item name="android:textColor">?android:attr/textColorSecondary</item>
  2888. </style>
  2889. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="TextAppearance.AppCompat.Subhead.Inverse">
  2890. <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
  2891. <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
  2892. </style>
  2893. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="TextAppearance.AppCompat.Title">
  2894. <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
  2895. <item name="android:textColor">?android:attr/textColorPrimary</item>
  2896. </style>
  2897. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="TextAppearance.AppCompat.Title.Inverse">
  2898. <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
  2899. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  2900. </style>
  2901. <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/>
  2902. <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title"/>
  2903. <style name="Base.TextAppearance.AppCompat.Widget.Button" parent="TextAppearance.AppCompat.Button"/>
  2904. <style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button">
  2905. <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
  2906. </style>
  2907. <style name="Base.TextAppearance.AppCompat.Widget.Button.Colored">
  2908. <item name="android:textColor">@color/abc_btn_colored_text_material</item>
  2909. </style>
  2910. <style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="TextAppearance.AppCompat.Button">
  2911. <item name="android:textColor">?android:textColorPrimaryInverse</item>
  2912. </style>
  2913. <style name="Base.TextAppearance.AppCompat.Widget.DropDownItem" parent="android:TextAppearance.Small">
  2914. <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
  2915. </style>
  2916. <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
  2917. <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
  2918. <item name="android:textColor">?attr/colorAccent</item>
  2919. </style>
  2920. <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu"/>
  2921. <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu"/>
  2922. <style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="TextAppearance.AppCompat.Button"/>
  2923. <style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="TextAppearance.AppCompat.Menu"/>
  2924. <style name="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="android:TextAppearance.Medium">
  2925. <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
  2926. </style>
  2927. <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle">
  2928. </style>
  2929. <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
  2930. </style>
  2931. <style name="Base.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
  2932. </style>
  2933. <style name="Base.Theme.AppCompat.CompactMenu" parent="">
  2934. <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
  2935. <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
  2936. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
  2937. </style>
  2938. <style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog"/>
  2939. <style name="Base.Theme.AppCompat.Dialog.Alert">
  2940. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2941. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2942. </style>
  2943. <style name="Base.Theme.AppCompat.Dialog.FixedSize">
  2944. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  2945. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  2946. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  2947. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  2948. </style>
  2949. <style name="Base.Theme.AppCompat.Dialog.MinWidth">
  2950. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2951. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2952. </style>
  2953. <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Theme.AppCompat"/>
  2954. <style name="Base.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
  2955. </style>
  2956. <style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light">
  2957. <item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item>
  2958. <item name="actionBarWidgetTheme">@null</item>
  2959. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
  2960. <!-- Panel attributes -->
  2961. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
  2962. <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
  2963. <item name="colorPrimary">@color/primary_material_dark</item>
  2964. </style>
  2965. <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog"/>
  2966. <style name="Base.Theme.AppCompat.Light.Dialog.Alert">
  2967. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2968. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2969. </style>
  2970. <style name="Base.Theme.AppCompat.Light.Dialog.FixedSize">
  2971. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  2972. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  2973. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  2974. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  2975. </style>
  2976. <style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
  2977. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2978. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2979. </style>
  2980. <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Theme.AppCompat.Light"/>
  2981. <style name="Base.Theme.MaterialComponents" parent="Base.V14.Theme.MaterialComponents"/>
  2982. <style name="Base.Theme.MaterialComponents.Bridge" parent="Base.V14.Theme.MaterialComponents.Bridge"/>
  2983. <style name="Base.Theme.MaterialComponents.CompactMenu" parent="">
  2984. <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
  2985. <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
  2986. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
  2987. </style>
  2988. <style name="Base.Theme.MaterialComponents.Dialog" parent="Base.V14.Theme.MaterialComponents.Dialog"/>
  2989. <style name="Base.Theme.MaterialComponents.Dialog.Alert">
  2990. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2991. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2992. </style>
  2993. <style name="Base.Theme.MaterialComponents.Dialog.FixedSize">
  2994. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  2995. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  2996. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  2997. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  2998. </style>
  2999. <style name="Base.Theme.MaterialComponents.Dialog.MinWidth">
  3000. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  3001. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  3002. </style>
  3003. <style name="Base.Theme.MaterialComponents.DialogWhenLarge" parent="Theme.MaterialComponents"/>
  3004. <style name="Base.Theme.MaterialComponents.Light" parent="Base.V14.Theme.MaterialComponents.Light"/>
  3005. <style name="Base.Theme.MaterialComponents.Light.Bridge" parent="Base.V14.Theme.MaterialComponents.Light.Bridge"/>
  3006. <style name="Base.Theme.MaterialComponents.Light.DarkActionBar" parent="Base.Theme.MaterialComponents.Light">
  3007. <item name="actionBarPopupTheme">@style/ThemeOverlay.MaterialComponents.Light</item>
  3008. <item name="actionBarWidgetTheme">@null</item>
  3009. <item name="actionBarTheme">@style/ThemeOverlay.MaterialComponents.Dark.ActionBar</item>
  3010. <!-- Panel attributes -->
  3011. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
  3012. <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
  3013. <item name="colorPrimary">@color/primary_material_dark</item>
  3014. </style>
  3015. <style name="Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge"/>
  3016. <style name="Base.Theme.MaterialComponents.Light.Dialog" parent="Base.V14.Theme.MaterialComponents.Light.Dialog"/>
  3017. <style name="Base.Theme.MaterialComponents.Light.Dialog.Alert">
  3018. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  3019. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  3020. </style>
  3021. <style name="Base.Theme.MaterialComponents.Light.Dialog.FixedSize">
  3022. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  3023. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  3024. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  3025. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  3026. </style>
  3027. <style name="Base.Theme.MaterialComponents.Light.Dialog.MinWidth">
  3028. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  3029. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  3030. </style>
  3031. <style name="Base.Theme.MaterialComponents.Light.DialogWhenLarge" parent="Theme.MaterialComponents.Light"/>
  3032. <style name="Base.ThemeOverlay.AppCompat" parent="Platform.ThemeOverlay.AppCompat"/>
  3033. <style name="Base.ThemeOverlay.AppCompat.ActionBar">
  3034. <item name="colorControlNormal">?android:attr/textColorPrimary</item>
  3035. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
  3036. </style>
  3037. <style name="Base.ThemeOverlay.AppCompat.Dark" parent="Platform.ThemeOverlay.AppCompat.Dark">
  3038. <item name="android:windowBackground">@color/background_material_dark</item>
  3039. <item name="android:colorForeground">@color/foreground_material_dark</item>
  3040. <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
  3041. <item name="android:colorBackground">@color/background_material_dark</item>
  3042. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
  3043. <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
  3044. <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
  3045. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
  3046. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  3047. <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
  3048. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
  3049. <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
  3050. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
  3051. <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
  3052. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
  3053. <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
  3054. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  3055. <item name="colorControlHighlight">@color/ripple_material_dark</item>
  3056. <item name="colorButtonNormal">@color/button_material_dark</item>
  3057. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
  3058. <!-- Used by MediaRouter -->
  3059. <item name="isLightTheme">false</item>
  3060. </style>
  3061. <style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar">
  3062. <item name="colorControlNormal">?android:attr/textColorPrimary</item>
  3063. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
  3064. </style>
  3065. <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog"/>
  3066. <style name="Base.ThemeOverlay.AppCompat.Dialog.Alert">
  3067. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  3068. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  3069. </style>
  3070. <style name="Base.ThemeOverlay.AppCompat.Light" parent="Platform.ThemeOverlay.AppCompat.Light">
  3071. <item name="android:windowBackground">@color/background_material_light</item>
  3072. <item name="android:colorForeground">@color/foreground_material_light</item>
  3073. <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
  3074. <item name="android:colorBackground">@color/background_material_light</item>
  3075. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
  3076. <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
  3077. <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
  3078. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
  3079. <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
  3080. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
  3081. <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
  3082. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
  3083. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
  3084. <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  3085. <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
  3086. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
  3087. <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
  3088. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  3089. <item name="colorControlHighlight">@color/ripple_material_light</item>
  3090. <item name="colorButtonNormal">@color/button_material_light</item>
  3091. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
  3092. <!-- Used by MediaRouter -->
  3093. <item name="isLightTheme">true</item>
  3094. </style>
  3095. <style name="Base.ThemeOverlay.MaterialComponents.Dialog" parent="Base.V14.ThemeOverlay.MaterialComponents.Dialog"/>
  3096. <style name="Base.ThemeOverlay.MaterialComponents.Dialog.Alert" parent="Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert"/>
  3097. <style name="Base.V14.Theme.MaterialComponents" parent="Base.V14.Theme.MaterialComponents.Bridge">
  3098. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  3099. <!-- Colors -->
  3100. <item name="colorPrimary">@color/design_default_color_primary</item>
  3101. <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
  3102. <item name="colorAccent">?attr/colorSecondary</item>
  3103. <!-- Widget styles -->
  3104. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  3105. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  3106. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView.Colored</item>
  3107. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  3108. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  3109. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  3110. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  3111. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  3112. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  3113. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  3114. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  3115. <item name="snackbarButtonStyle">?attr/borderlessButtonStyle</item>
  3116. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout.Colored</item>
  3117. <item name="textInputStyle">@style/Widget.Design.TextInputLayout</item>
  3118. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  3119. <!-- Dialog themes -->
  3120. <item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert</item>
  3121. <item name="android:datePickerDialogTheme" ns2:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  3122. <item name="android:timePickerDialogTheme" ns2:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  3123. </style>
  3124. <style name="Base.V14.Theme.MaterialComponents.Bridge" parent="Platform.MaterialComponents">
  3125. <item name="colorSecondary">?attr/colorPrimary</item>
  3126. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  3127. <!-- Type styles -->
  3128. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  3129. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  3130. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  3131. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  3132. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  3133. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  3134. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  3135. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  3136. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  3137. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  3138. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  3139. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  3140. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  3141. </style>
  3142. <style name="Base.V14.Theme.MaterialComponents.Dialog" parent="Platform.MaterialComponents.Dialog">
  3143. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  3144. <!-- Colors -->
  3145. <item name="colorPrimary">@color/design_default_color_primary</item>
  3146. <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
  3147. <item name="colorSecondary">?attr/colorPrimary</item>
  3148. <item name="colorAccent">?attr/colorSecondary</item>
  3149. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  3150. <!-- Widget styles -->
  3151. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  3152. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  3153. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView.Colored</item>
  3154. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  3155. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  3156. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  3157. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  3158. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  3159. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  3160. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  3161. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  3162. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  3163. <item name="snackbarButtonStyle">?attr/borderlessButtonStyle</item>
  3164. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout.Colored</item>
  3165. <item name="textInputStyle">@style/Widget.Design.TextInputLayout</item>
  3166. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  3167. <!-- Type styles -->
  3168. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  3169. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  3170. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  3171. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  3172. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  3173. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  3174. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  3175. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  3176. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  3177. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  3178. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  3179. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  3180. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  3181. </style>
  3182. <style name="Base.V14.Theme.MaterialComponents.Light" parent="Base.V14.Theme.MaterialComponents.Light.Bridge">
  3183. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  3184. <!-- Colors -->
  3185. <item name="colorPrimary">@color/design_default_color_primary</item>
  3186. <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
  3187. <item name="colorAccent">?attr/colorSecondary</item>
  3188. <!-- Widget styles -->
  3189. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  3190. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  3191. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView</item>
  3192. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  3193. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  3194. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  3195. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  3196. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  3197. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  3198. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  3199. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  3200. <item name="snackbarButtonStyle">?attr/borderlessButtonStyle</item>
  3201. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout</item>
  3202. <item name="textInputStyle">@style/Widget.Design.TextInputLayout</item>
  3203. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  3204. <!-- Dialog themes -->
  3205. <item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert</item>
  3206. <item name="android:datePickerDialogTheme" ns2:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  3207. <item name="android:timePickerDialogTheme" ns2:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  3208. </style>
  3209. <style name="Base.V14.Theme.MaterialComponents.Light.Bridge" parent="Platform.MaterialComponents.Light">
  3210. <item name="colorSecondary">?attr/colorPrimary</item>
  3211. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  3212. <!-- Type styles -->
  3213. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  3214. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  3215. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  3216. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  3217. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  3218. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  3219. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  3220. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  3221. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  3222. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  3223. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  3224. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  3225. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  3226. </style>
  3227. <style name="Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Theme.AppCompat.Light.DarkActionBar">
  3228. <item name="colorSecondary">?attr/colorPrimary</item>
  3229. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  3230. <!-- Type styles -->
  3231. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  3232. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  3233. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  3234. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  3235. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  3236. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  3237. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  3238. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  3239. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  3240. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  3241. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  3242. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  3243. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  3244. </style>
  3245. <style name="Base.V14.Theme.MaterialComponents.Light.Dialog" parent="Platform.MaterialComponents.Light.Dialog">
  3246. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  3247. <!-- Colors -->
  3248. <item name="colorPrimary">@color/design_default_color_primary</item>
  3249. <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
  3250. <item name="colorSecondary">?attr/colorPrimary</item>
  3251. <item name="colorAccent">?attr/colorSecondary</item>
  3252. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  3253. <!-- Widget styles -->
  3254. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  3255. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  3256. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView</item>
  3257. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  3258. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  3259. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  3260. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  3261. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  3262. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  3263. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  3264. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  3265. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  3266. <item name="snackbarButtonStyle">?attr/borderlessButtonStyle</item>
  3267. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout</item>
  3268. <item name="textInputStyle">@style/Widget.Design.TextInputLayout</item>
  3269. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  3270. <!-- Type styles -->
  3271. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  3272. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  3273. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  3274. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  3275. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  3276. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  3277. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  3278. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  3279. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  3280. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  3281. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  3282. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  3283. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  3284. </style>
  3285. <style name="Base.V14.ThemeOverlay.MaterialComponents.Dialog" parent="ThemeOverlay.AppCompat.Dialog">
  3286. <!-- Widget styles -->
  3287. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  3288. </style>
  3289. <style name="Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert" parent="ThemeOverlay.AppCompat.Dialog.Alert">
  3290. <!-- Widget styles -->
  3291. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  3292. </style>
  3293. <style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">
  3294. <item name="viewInflaterClass">androidx.appcompat.app.AppCompatViewInflater</item>
  3295. <item name="windowNoTitle">false</item>
  3296. <item name="windowActionBar">true</item>
  3297. <item name="windowActionBarOverlay">false</item>
  3298. <item name="windowActionModeOverlay">false</item>
  3299. <item name="actionBarPopupTheme">@null</item>
  3300. <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
  3301. <!-- Used by MediaRouter -->
  3302. <item name="isLightTheme">false</item>
  3303. <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
  3304. <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
  3305. <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  3306. <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
  3307. <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
  3308. <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
  3309. <!-- Action Bar Styles -->
  3310. <item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item>
  3311. <item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item>
  3312. <item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item>
  3313. <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
  3314. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
  3315. <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.PopupMenu.Overflow</item>
  3316. <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item>
  3317. <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
  3318. <item name="actionBarWidgetTheme">@null</item>
  3319. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
  3320. <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
  3321. <item name="actionBarDivider">?attr/dividerVertical</item>
  3322. <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
  3323. <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
  3324. <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
  3325. <!-- Dropdown Spinner Attributes -->
  3326. <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
  3327. <!-- Action Mode -->
  3328. <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
  3329. <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
  3330. <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
  3331. <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
  3332. <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
  3333. <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
  3334. <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
  3335. <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
  3336. <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
  3337. <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
  3338. <!-- Panel attributes -->
  3339. <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
  3340. <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
  3341. <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
  3342. <item name="android:panelBackground">@android:color/transparent</item>
  3343. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
  3344. <!-- List attributes -->
  3345. <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  3346. <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  3347. <item name="textAppearanceListItemSecondary">@style/TextAppearance.AppCompat.Body1</item>
  3348. <item name="listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  3349. <item name="listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  3350. <item name="listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  3351. <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  3352. <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  3353. <item name="listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  3354. <item name="listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  3355. <!-- Spinner styles -->
  3356. <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
  3357. <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
  3358. <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
  3359. <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
  3360. <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  3361. <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
  3362. <!-- Popup Menu styles -->
  3363. <item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item>
  3364. <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>
  3365. <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>
  3366. <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
  3367. <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
  3368. <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
  3369. <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
  3370. <!-- SearchView attributes -->
  3371. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView</item>
  3372. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  3373. <item name="textColorSearchUrl">@color/abc_search_url_text</item>
  3374. <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
  3375. <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
  3376. <!-- ShareActionProvider attributes -->
  3377. <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
  3378. <!-- Toolbar styles -->
  3379. <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
  3380. <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
  3381. <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
  3382. <item name="editTextBackground">@drawable/abc_edit_text_material</item>
  3383. <item name="editTextColor">?android:attr/textColorPrimary</item>
  3384. <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  3385. <item name="android:textViewStyle">@style/Widget.AppCompat.TextView</item>
  3386. <!-- Color palette -->
  3387. <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
  3388. <item name="colorPrimary">@color/primary_material_dark</item>
  3389. <item name="colorAccent">@color/accent_material_dark</item>
  3390. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  3391. <item name="colorControlActivated">?attr/colorAccent</item>
  3392. <item name="colorControlHighlight">@color/ripple_material_dark</item>
  3393. <item name="colorButtonNormal">@color/button_material_dark</item>
  3394. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
  3395. <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
  3396. <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
  3397. <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
  3398. <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
  3399. <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
  3400. <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
  3401. <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
  3402. <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
  3403. <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
  3404. <!-- Button styles -->
  3405. <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
  3406. <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
  3407. <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
  3408. <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
  3409. <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
  3410. <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
  3411. <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
  3412. <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
  3413. <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
  3414. <!-- Dialog attributes -->
  3415. <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
  3416. <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
  3417. <item name="dialogCornerRadius">@dimen/abc_dialog_corner_radius_material</item>
  3418. <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
  3419. <item name="alertDialogStyle">@style/AlertDialog.AppCompat</item>
  3420. <item name="alertDialogCenterButtons">false</item>
  3421. <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
  3422. <item name="listDividerAlertDialog">@null</item>
  3423. <!-- Define these here; ContextThemeWrappers around themes that define them should
  3424. always clear these values. -->
  3425. <item name="windowFixedWidthMajor">@null</item>
  3426. <item name="windowFixedWidthMinor">@null</item>
  3427. <item name="windowFixedHeightMajor">@null</item>
  3428. <item name="windowFixedHeightMinor">@null</item>
  3429. <!-- Tooltip attributes -->
  3430. <item name="tooltipFrameBackground">@drawable/tooltip_frame_light</item>
  3431. <item name="tooltipForegroundColor">@color/foreground_material_light</item>
  3432. <item name="colorError">@color/error_color_material_dark</item>
  3433. </style>
  3434. <style name="Base.V7.Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat">
  3435. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  3436. <item name="android:colorBackgroundCacheHint">@null</item>
  3437. <item name="android:windowFrame">@null</item>
  3438. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  3439. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  3440. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  3441. <item name="android:windowIsFloating">true</item>
  3442. <item name="android:backgroundDimEnabled">true</item>
  3443. <item name="android:windowContentOverlay">@null</item>
  3444. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  3445. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  3446. <item name="windowActionBar">false</item>
  3447. <item name="windowActionModeOverlay">true</item>
  3448. <item name="listPreferredItemPaddingLeft">24dip</item>
  3449. <item name="listPreferredItemPaddingRight">24dip</item>
  3450. <item name="android:listDivider">@null</item>
  3451. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  3452. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  3453. <item name="android:windowCloseOnTouchOutside">true</item>
  3454. </style>
  3455. <style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light">
  3456. <item name="viewInflaterClass">androidx.appcompat.app.AppCompatViewInflater</item>
  3457. <item name="windowNoTitle">false</item>
  3458. <item name="windowActionBar">true</item>
  3459. <item name="windowActionBarOverlay">false</item>
  3460. <item name="windowActionModeOverlay">false</item>
  3461. <item name="actionBarPopupTheme">@null</item>
  3462. <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
  3463. <!-- Used by MediaRouter -->
  3464. <item name="isLightTheme">true</item>
  3465. <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
  3466. <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
  3467. <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  3468. <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
  3469. <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
  3470. <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
  3471. <!-- Action Bar Styles -->
  3472. <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item>
  3473. <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>
  3474. <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item>
  3475. <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
  3476. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
  3477. <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>
  3478. <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item>
  3479. <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
  3480. <item name="actionBarWidgetTheme">@null</item>
  3481. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
  3482. <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
  3483. <item name="actionBarDivider">?attr/dividerVertical</item>
  3484. <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
  3485. <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
  3486. <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
  3487. <!-- Action Mode -->
  3488. <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
  3489. <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
  3490. <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
  3491. <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
  3492. <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
  3493. <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
  3494. <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
  3495. <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
  3496. <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
  3497. <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
  3498. <!-- Dropdown Spinner Attributes -->
  3499. <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
  3500. <!-- Panel attributes -->
  3501. <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
  3502. <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
  3503. <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
  3504. <item name="android:panelBackground">@android:color/transparent</item>
  3505. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>
  3506. <!-- List attributes -->
  3507. <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  3508. <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  3509. <item name="textAppearanceListItemSecondary">@style/TextAppearance.AppCompat.Body1</item>
  3510. <item name="listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  3511. <item name="listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  3512. <item name="listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  3513. <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  3514. <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  3515. <item name="listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  3516. <item name="listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  3517. <!-- Spinner styles -->
  3518. <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
  3519. <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
  3520. <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
  3521. <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
  3522. <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  3523. <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
  3524. <!-- Popup Menu styles -->
  3525. <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item>
  3526. <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>
  3527. <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>
  3528. <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
  3529. <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
  3530. <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
  3531. <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
  3532. <!-- SearchView attributes -->
  3533. <item name="searchViewStyle">@style/Widget.AppCompat.Light.SearchView</item>
  3534. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  3535. <item name="textColorSearchUrl">@color/abc_search_url_text</item>
  3536. <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
  3537. <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
  3538. <!-- ShareActionProvider attributes -->
  3539. <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
  3540. <!-- Toolbar styles -->
  3541. <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
  3542. <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
  3543. <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
  3544. <item name="editTextBackground">@drawable/abc_edit_text_material</item>
  3545. <item name="editTextColor">?android:attr/textColorPrimary</item>
  3546. <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  3547. <item name="android:textViewStyle">@style/Widget.AppCompat.TextView</item>
  3548. <!-- Color palette -->
  3549. <item name="colorPrimaryDark">@color/primary_dark_material_light</item>
  3550. <item name="colorPrimary">@color/primary_material_light</item>
  3551. <item name="colorAccent">@color/accent_material_light</item>
  3552. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  3553. <item name="colorControlActivated">?attr/colorAccent</item>
  3554. <item name="colorControlHighlight">@color/ripple_material_light</item>
  3555. <item name="colorButtonNormal">@color/button_material_light</item>
  3556. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
  3557. <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
  3558. <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
  3559. <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
  3560. <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
  3561. <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
  3562. <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
  3563. <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
  3564. <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
  3565. <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
  3566. <!-- Button styles -->
  3567. <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
  3568. <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
  3569. <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
  3570. <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
  3571. <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
  3572. <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
  3573. <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
  3574. <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
  3575. <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
  3576. <!-- Dialog attributes -->
  3577. <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
  3578. <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
  3579. <item name="dialogCornerRadius">@dimen/abc_dialog_corner_radius_material</item>
  3580. <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
  3581. <item name="alertDialogStyle">@style/AlertDialog.AppCompat.Light</item>
  3582. <item name="alertDialogCenterButtons">false</item>
  3583. <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
  3584. <item name="listDividerAlertDialog">@null</item>
  3585. <!-- Define these here; ContextThemeWrappers around themes that define them should
  3586. always clear these values. -->
  3587. <item name="windowFixedWidthMajor">@null</item>
  3588. <item name="windowFixedWidthMinor">@null</item>
  3589. <item name="windowFixedHeightMajor">@null</item>
  3590. <item name="windowFixedHeightMinor">@null</item>
  3591. <!-- Tooltip attributes -->
  3592. <item name="tooltipFrameBackground">@drawable/tooltip_frame_dark</item>
  3593. <item name="tooltipForegroundColor">@color/foreground_material_dark</item>
  3594. <item name="colorError">@color/error_color_material_light</item>
  3595. </style>
  3596. <style name="Base.V7.Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light">
  3597. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  3598. <item name="android:colorBackgroundCacheHint">@null</item>
  3599. <item name="android:windowFrame">@null</item>
  3600. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  3601. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  3602. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  3603. <item name="android:windowIsFloating">true</item>
  3604. <item name="android:backgroundDimEnabled">true</item>
  3605. <item name="android:windowContentOverlay">@null</item>
  3606. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  3607. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  3608. <item name="windowActionBar">false</item>
  3609. <item name="windowActionModeOverlay">true</item>
  3610. <item name="listPreferredItemPaddingLeft">24dip</item>
  3611. <item name="listPreferredItemPaddingRight">24dip</item>
  3612. <item name="android:listDivider">@null</item>
  3613. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  3614. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  3615. <item name="android:windowCloseOnTouchOutside">true</item>
  3616. </style>
  3617. <style name="Base.V7.ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat">
  3618. <item name="android:colorBackgroundCacheHint">@null</item>
  3619. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  3620. <item name="android:windowFrame">@null</item>
  3621. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  3622. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  3623. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  3624. <item name="android:windowIsFloating">true</item>
  3625. <item name="android:backgroundDimEnabled">true</item>
  3626. <item name="android:windowContentOverlay">@null</item>
  3627. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  3628. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  3629. <item name="windowActionBar">false</item>
  3630. <item name="windowActionModeOverlay">true</item>
  3631. <item name="listPreferredItemPaddingLeft">24dip</item>
  3632. <item name="listPreferredItemPaddingRight">24dip</item>
  3633. <item name="android:listDivider">@null</item>
  3634. <item name="windowFixedWidthMajor">@null</item>
  3635. <item name="windowFixedWidthMinor">@null</item>
  3636. <item name="windowFixedHeightMajor">@null</item>
  3637. <item name="windowFixedHeightMinor">@null</item>
  3638. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  3639. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  3640. <item name="android:windowCloseOnTouchOutside">true</item>
  3641. </style>
  3642. <style name="Base.V7.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.AutoCompleteTextView">
  3643. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  3644. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  3645. <item name="android:background">?attr/editTextBackground</item>
  3646. <item name="android:textColor">?attr/editTextColor</item>
  3647. <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
  3648. <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
  3649. </style>
  3650. <style name="Base.V7.Widget.AppCompat.EditText" parent="android:Widget.EditText">
  3651. <item name="android:background">?attr/editTextBackground</item>
  3652. <item name="android:textColor">?attr/editTextColor</item>
  3653. <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
  3654. <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
  3655. </style>
  3656. <style name="Base.V7.Widget.AppCompat.Toolbar" parent="android:Widget">
  3657. <item name="titleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item>
  3658. <item name="subtitleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item>
  3659. <item name="android:minHeight">?attr/actionBarSize</item>
  3660. <item name="titleMargin">4dp</item>
  3661. <item name="maxButtonHeight">@dimen/abc_action_bar_default_height_material</item>
  3662. <item name="buttonGravity">top</item>
  3663. <item name="collapseIcon">?attr/homeAsUpIndicator</item>
  3664. <item name="collapseContentDescription">@string/abc_toolbar_collapse_description</item>
  3665. <item name="contentInsetStart">16dp</item>
  3666. <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
  3667. <item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item>
  3668. <item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item>
  3669. </style>
  3670. <style name="Base.Widget.AppCompat.ActionBar" parent="">
  3671. <item name="displayOptions">showTitle</item>
  3672. <item name="divider">?attr/dividerVertical</item>
  3673. <item name="height">?attr/actionBarSize</item>
  3674. <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>
  3675. <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item>
  3676. <item name="background">@null</item>
  3677. <item name="backgroundStacked">@null</item>
  3678. <item name="backgroundSplit">@null</item>
  3679. <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
  3680. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
  3681. <item name="android:gravity">center_vertical</item>
  3682. <item name="contentInsetStart">@dimen/abc_action_bar_content_inset_material</item>
  3683. <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
  3684. <item name="contentInsetEnd">@dimen/abc_action_bar_content_inset_material</item>
  3685. <item name="elevation">@dimen/abc_action_bar_elevation_material</item>
  3686. <item name="popupTheme">?attr/actionBarPopupTheme</item>
  3687. </style>
  3688. <style name="Base.Widget.AppCompat.ActionBar.Solid">
  3689. <item name="background">?attr/colorPrimary</item>
  3690. <item name="backgroundStacked">?attr/colorPrimary</item>
  3691. <item name="backgroundSplit">?attr/colorPrimary</item>
  3692. </style>
  3693. <style name="Base.Widget.AppCompat.ActionBar.TabBar" parent="">
  3694. <item name="divider">?attr/actionBarDivider</item>
  3695. <item name="showDividers">middle</item>
  3696. <item name="dividerPadding">8dip</item>
  3697. </style>
  3698. <style name="Base.Widget.AppCompat.ActionBar.TabText" parent="">
  3699. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium</item>
  3700. <item name="android:textColor">?android:attr/textColorPrimary</item>
  3701. <item name="android:textSize">12sp</item>
  3702. <item name="android:textStyle">bold</item>
  3703. <item name="android:ellipsize">marquee</item>
  3704. <item name="android:maxLines">2</item>
  3705. <item name="android:maxWidth">180dp</item>
  3706. <item name="textAllCaps">true</item>
  3707. </style>
  3708. <style name="Base.Widget.AppCompat.ActionBar.TabView" parent="">
  3709. <item name="android:background">@drawable/abc_tab_indicator_material</item>
  3710. <item name="android:gravity">center_horizontal</item>
  3711. <item name="android:paddingLeft">16dip</item>
  3712. <item name="android:paddingRight">16dip</item>
  3713. <item name="android:layout_width">0dip</item>
  3714. <item name="android:layout_weight">1</item>
  3715. <item name="android:minWidth">80dip</item>
  3716. </style>
  3717. <style name="Base.Widget.AppCompat.ActionButton" parent="RtlUnderlay.Widget.AppCompat.ActionButton">
  3718. <item name="android:background">?attr/actionBarItemBackground</item>
  3719. <item name="android:minWidth">@dimen/abc_action_button_min_width_material</item>
  3720. <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
  3721. <item name="android:scaleType">center</item>
  3722. <item name="android:gravity">center</item>
  3723. <item name="android:maxLines">2</item>
  3724. <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
  3725. </style>
  3726. <style name="Base.Widget.AppCompat.ActionButton.CloseMode">
  3727. <item name="android:background">?attr/controlBackground</item>
  3728. <item name="android:minWidth">56dp</item>
  3729. </style>
  3730. <style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow">
  3731. <item name="srcCompat">@drawable/abc_ic_menu_overflow_material</item>
  3732. <item name="android:background">?attr/actionBarItemBackground</item>
  3733. <item name="android:contentDescription">@string/abc_action_menu_overflow_description</item>
  3734. <item name="android:minWidth">@dimen/abc_action_button_min_width_overflow_material</item>
  3735. <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
  3736. </style>
  3737. <style name="Base.Widget.AppCompat.ActionMode" parent="">
  3738. <item name="background">?attr/actionModeBackground</item>
  3739. <item name="backgroundSplit">?attr/actionModeSplitBackground</item>
  3740. <item name="height">?attr/actionBarSize</item>
  3741. <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>
  3742. <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item>
  3743. <item name="closeItemLayout">@layout/abc_action_mode_close_item_material</item>
  3744. </style>
  3745. <style name="Base.Widget.AppCompat.ActivityChooserView" parent="">
  3746. <item name="android:gravity">center</item>
  3747. <item name="android:background">@drawable/abc_ab_share_pack_mtrl_alpha</item>
  3748. <item name="divider">?attr/dividerVertical</item>
  3749. <item name="showDividers">middle</item>
  3750. <item name="dividerPadding">6dip</item>
  3751. </style>
  3752. <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView"/>
  3753. <style name="Base.Widget.AppCompat.Button" parent="android:Widget">
  3754. <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
  3755. <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
  3756. <item name="android:minHeight">48dip</item>
  3757. <item name="android:minWidth">88dip</item>
  3758. <item name="android:focusable">true</item>
  3759. <item name="android:clickable">true</item>
  3760. <item name="android:gravity">center_vertical|center_horizontal</item>
  3761. </style>
  3762. <style name="Base.Widget.AppCompat.Button.Borderless">
  3763. <item name="android:background">@drawable/abc_btn_borderless_material</item>
  3764. </style>
  3765. <style name="Base.Widget.AppCompat.Button.Borderless.Colored">
  3766. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored</item>
  3767. </style>
  3768. <style name="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Widget.AppCompat.Button.Borderless.Colored">
  3769. <item name="android:minWidth">64dp</item>
  3770. <item name="android:minHeight">@dimen/abc_alert_dialog_button_bar_height</item>
  3771. </style>
  3772. <style name="Base.Widget.AppCompat.Button.Colored">
  3773. <item name="android:background">@drawable/abc_btn_colored_material</item>
  3774. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Colored</item>
  3775. </style>
  3776. <style name="Base.Widget.AppCompat.Button.Small">
  3777. <item name="android:minHeight">48dip</item>
  3778. <item name="android:minWidth">48dip</item>
  3779. </style>
  3780. <style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget">
  3781. <item name="android:background">@null</item>
  3782. </style>
  3783. <style name="Base.Widget.AppCompat.ButtonBar.AlertDialog"/>
  3784. <style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.CompoundButton.CheckBox">
  3785. <item name="android:button">?android:attr/listChoiceIndicatorMultiple</item>
  3786. <item name="buttonCompat">?attr/listChoiceIndicatorMultipleAnimated</item>
  3787. <item name="android:background">?attr/controlBackground</item>
  3788. </style>
  3789. <style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.CompoundButton.RadioButton">
  3790. <item name="android:button">?android:attr/listChoiceIndicatorSingle</item>
  3791. <item name="buttonCompat">?attr/listChoiceIndicatorSingleAnimated</item>
  3792. <item name="android:background">?attr/controlBackground</item>
  3793. </style>
  3794. <style name="Base.Widget.AppCompat.CompoundButton.Switch" parent="android:Widget.CompoundButton">
  3795. <item name="track">@drawable/abc_switch_track_mtrl_alpha</item>
  3796. <item name="android:thumb">@drawable/abc_switch_thumb_material</item>
  3797. <item name="switchTextAppearance">@style/TextAppearance.AppCompat.Widget.Switch</item>
  3798. <item name="android:background">?attr/controlBackground</item>
  3799. <item name="showText">false</item>
  3800. <item name="switchPadding">@dimen/abc_switch_padding</item>
  3801. <item name="android:textOn">@string/abc_capital_on</item>
  3802. <item name="android:textOff">@string/abc_capital_off</item>
  3803. </style>
  3804. <style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
  3805. <item name="barLength">18dp</item>
  3806. <item name="gapBetweenBars">3dp</item>
  3807. <item name="drawableSize">24dp</item>
  3808. </style>
  3809. <style name="Base.Widget.AppCompat.DrawerArrowToggle.Common" parent="">
  3810. <item name="color">?android:attr/textColorSecondary</item>
  3811. <item name="spinBars">true</item>
  3812. <item name="thickness">2dp</item>
  3813. <item name="arrowShaftLength">16dp</item>
  3814. <item name="arrowHeadLength">8dp</item>
  3815. </style>
  3816. <style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="">
  3817. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.DropDownItem</item>
  3818. <item name="android:paddingLeft">8dp</item>
  3819. <item name="android:paddingRight">8dp</item>
  3820. <item name="android:gravity">center_vertical</item>
  3821. </style>
  3822. <style name="Base.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText"/>
  3823. <style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.ImageButton">
  3824. <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
  3825. </style>
  3826. <style name="Base.Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
  3827. <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
  3828. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
  3829. </style>
  3830. <style name="Base.Widget.AppCompat.Light.ActionBar.Solid">
  3831. <item name="background">?attr/colorPrimary</item>
  3832. <item name="backgroundStacked">?attr/colorPrimary</item>
  3833. <item name="backgroundSplit">?attr/colorPrimary</item>
  3834. </style>
  3835. <style name="Base.Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
  3836. </style>
  3837. <style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
  3838. </style>
  3839. <style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
  3840. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  3841. </style>
  3842. <style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
  3843. <item name="android:background">@drawable/abc_tab_indicator_material</item>
  3844. </style>
  3845. <style name="Base.Widget.AppCompat.Light.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
  3846. </style>
  3847. <style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
  3848. <item name="overlapAnchor">true</item>
  3849. <item name="android:dropDownHorizontalOffset">-4dip</item>
  3850. </style>
  3851. <style name="Base.Widget.AppCompat.ListMenuView" parent="android:Widget">
  3852. <item name="subMenuArrow">@drawable/abc_ic_arrow_drop_right_black_24dp</item>
  3853. </style>
  3854. <style name="Base.Widget.AppCompat.ListPopupWindow" parent="">
  3855. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  3856. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  3857. <item name="android:dropDownVerticalOffset">0dip</item>
  3858. <item name="android:dropDownHorizontalOffset">0dip</item>
  3859. <item name="android:dropDownWidth">wrap_content</item>
  3860. </style>
  3861. <style name="Base.Widget.AppCompat.ListView" parent="android:Widget.ListView">
  3862. <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
  3863. </style>
  3864. <style name="Base.Widget.AppCompat.ListView.DropDown">
  3865. <item name="android:divider">@null</item>
  3866. </style>
  3867. <style name="Base.Widget.AppCompat.ListView.Menu" parent="android:Widget.ListView.Menu">
  3868. <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
  3869. <item name="android:divider">?attr/dividerHorizontal</item>
  3870. </style>
  3871. <style name="Base.Widget.AppCompat.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
  3872. </style>
  3873. <style name="Base.Widget.AppCompat.PopupMenu.Overflow">
  3874. <item name="overlapAnchor">true</item>
  3875. <item name="android:dropDownHorizontalOffset">-4dip</item>
  3876. </style>
  3877. <style name="Base.Widget.AppCompat.PopupWindow" parent="android:Widget.PopupWindow">
  3878. </style>
  3879. <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Holo.ProgressBar">
  3880. </style>
  3881. <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Holo.ProgressBar.Horizontal">
  3882. </style>
  3883. <style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.RatingBar">
  3884. <item name="android:progressDrawable">@drawable/abc_ratingbar_material</item>
  3885. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_material</item>
  3886. </style>
  3887. <style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.RatingBar">
  3888. <item name="android:progressDrawable">@drawable/abc_ratingbar_indicator_material</item>
  3889. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_indicator_material</item>
  3890. <item name="android:minHeight">36dp</item>
  3891. <item name="android:maxHeight">36dp</item>
  3892. <item name="android:isIndicator">true</item>
  3893. <item name="android:thumb">@null</item>
  3894. </style>
  3895. <style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.RatingBar">
  3896. <item name="android:progressDrawable">@drawable/abc_ratingbar_small_material</item>
  3897. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_small_material</item>
  3898. <item name="android:minHeight">16dp</item>
  3899. <item name="android:maxHeight">16dp</item>
  3900. <item name="android:isIndicator">true</item>
  3901. <item name="android:thumb">@null</item>
  3902. </style>
  3903. <style name="Base.Widget.AppCompat.SearchView" parent="android:Widget">
  3904. <item name="layout">@layout/abc_search_view</item>
  3905. <item name="queryBackground">@drawable/abc_textfield_search_material</item>
  3906. <item name="submitBackground">@drawable/abc_textfield_search_material</item>
  3907. <item name="closeIcon">@drawable/abc_ic_clear_material</item>
  3908. <item name="searchIcon">@drawable/abc_ic_search_api_material</item>
  3909. <item name="searchHintIcon">@drawable/abc_ic_search_api_material</item>
  3910. <item name="goIcon">@drawable/abc_ic_go_search_api_material</item>
  3911. <item name="voiceIcon">@drawable/abc_ic_voice_search_api_material</item>
  3912. <item name="commitIcon">@drawable/abc_ic_commit_search_api_mtrl_alpha</item>
  3913. <item name="suggestionRowLayout">@layout/abc_search_dropdown_item_icons_2line</item>
  3914. </style>
  3915. <style name="Base.Widget.AppCompat.SearchView.ActionBar">
  3916. <item name="queryBackground">@null</item>
  3917. <item name="submitBackground">@null</item>
  3918. <item name="searchHintIcon">@null</item>
  3919. <item name="defaultQueryHint">@string/abc_search_hint</item>
  3920. </style>
  3921. <style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget">
  3922. <item name="android:indeterminateOnly">false</item>
  3923. <item name="android:progressDrawable">@drawable/abc_seekbar_track_material</item>
  3924. <item name="android:indeterminateDrawable">@drawable/abc_seekbar_track_material</item>
  3925. <item name="android:thumb">@drawable/abc_seekbar_thumb_material</item>
  3926. <item name="android:focusable">true</item>
  3927. <item name="android:paddingLeft">16dip</item>
  3928. <item name="android:paddingRight">16dip</item>
  3929. </style>
  3930. <style name="Base.Widget.AppCompat.SeekBar.Discrete">
  3931. <item name="tickMark">@drawable/abc_seekbar_tick_mark_material</item>
  3932. </style>
  3933. <style name="Base.Widget.AppCompat.Spinner" parent="Platform.Widget.AppCompat.Spinner">
  3934. <item name="android:background">@drawable/abc_spinner_mtrl_am_alpha</item>
  3935. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  3936. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  3937. <item name="android:dropDownVerticalOffset">0dip</item>
  3938. <item name="android:dropDownHorizontalOffset">0dip</item>
  3939. <item name="android:dropDownWidth">wrap_content</item>
  3940. <item name="android:clickable">true</item>
  3941. <item name="android:gravity">left|start|center_vertical</item>
  3942. <item name="overlapAnchor">true</item>
  3943. </style>
  3944. <style name="Base.Widget.AppCompat.Spinner.Underlined">
  3945. <item name="android:background">@drawable/abc_spinner_textfield_background_material</item>
  3946. </style>
  3947. <style name="Base.Widget.AppCompat.TextView" parent="android:Widget.TextView"/>
  3948. <style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.TextView.SpinnerItem">
  3949. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item>
  3950. <item name="android:paddingLeft">8dp</item>
  3951. <item name="android:paddingRight">8dp</item>
  3952. </style>
  3953. <style name="Base.Widget.AppCompat.Toolbar" parent="Base.V7.Widget.AppCompat.Toolbar"/>
  3954. <style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget">
  3955. <item name="android:background">?attr/controlBackground</item>
  3956. <item name="android:minWidth">56dp</item>
  3957. <item name="android:scaleType">center</item>
  3958. </style>
  3959. <style name="Base.Widget.Design.TabLayout" parent="android:Widget">
  3960. <item name="android:background">@null</item>
  3961. <item name="tabIconTint">@null</item>
  3962. <item name="tabMaxWidth">@dimen/design_tab_max_width</item>
  3963. <item name="tabIndicatorAnimationDuration">@integer/design_tab_indicator_anim_duration_ms</item>
  3964. <item name="tabIndicatorColor">?attr/colorAccent</item>
  3965. <item name="tabIndicatorGravity">bottom</item>
  3966. <item name="tabIndicator">@drawable/mtrl_tabs_default_indicator</item>
  3967. <item name="tabPaddingStart">12dp</item>
  3968. <item name="tabPaddingEnd">12dp</item>
  3969. <item name="tabTextAppearance">@style/TextAppearance.Design.Tab</item>
  3970. <item name="tabRippleColor">?attr/colorControlHighlight</item>
  3971. <item name="tabUnboundedRipple">false</item>
  3972. </style>
  3973. <style name="Base.Widget.MaterialComponents.Chip" parent="android:Widget">
  3974. <item name="android:focusable">true</item>
  3975. <item name="android:clickable">true</item>
  3976. <item name="android:checkable">false</item>
  3977. <item name="android:stateListAnimator" ns2:ignore="NewApi">
  3978. @animator/mtrl_chip_state_list_anim
  3979. </item>
  3980. <item name="chipIconVisible">true</item>
  3981. <item name="checkedIconVisible">true</item>
  3982. <item name="closeIconVisible">true</item>
  3983. <item name="chipIcon">@null</item>
  3984. <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_circle</item>
  3985. <item name="closeIcon">@drawable/ic_mtrl_chip_close_circle</item>
  3986. <item name="android:text">@null</item>
  3987. <item name="enforceTextAppearance">true</item>
  3988. <item name="android:textAppearance">?attr/textAppearanceBody2</item>
  3989. <item name="android:textColor">@color/mtrl_chip_text_color</item>
  3990. <item name="closeIconTint">@color/mtrl_chip_close_icon_tint</item>
  3991. <item name="chipBackgroundColor">@color/mtrl_chip_background_color</item>
  3992. <item name="chipStrokeColor">#00000000</item>
  3993. <item name="chipStrokeWidth">0dp</item>
  3994. <item name="rippleColor">@color/mtrl_chip_ripple_color</item>
  3995. <item name="chipMinHeight">32dp</item>
  3996. <item name="chipCornerRadius">16dp</item>
  3997. <item name="chipIconSize">24dp</item>
  3998. <item name="closeIconSize">18dp</item>
  3999. <item name="chipStartPadding">4dp</item>
  4000. <item name="iconStartPadding">0dp</item>
  4001. <item name="iconEndPadding">0dp</item>
  4002. <item name="textStartPadding">8dp</item>
  4003. <item name="textEndPadding">6dp</item>
  4004. <item name="closeIconStartPadding">2dp</item>
  4005. <item name="closeIconEndPadding">2dp</item>
  4006. <item name="chipEndPadding">6dp</item>
  4007. </style>
  4008. <style name="Base.Widget.MaterialComponents.TextInputEditText" parent="Widget.AppCompat.EditText">
  4009. <item name="android:paddingStart" ns2:ignore="NewApi">12dp</item>
  4010. <item name="android:paddingEnd" ns2:ignore="NewApi">12dp</item>
  4011. <item name="android:paddingLeft">12dp</item>
  4012. <item name="android:paddingRight">12dp</item>
  4013. <item name="android:paddingTop">16dp</item>
  4014. <item name="android:paddingBottom">16dp</item>
  4015. </style>
  4016. <style name="Base.Widget.MaterialComponents.TextInputLayout" parent="Widget.Design.TextInputLayout">
  4017. <item name="boxBackgroundMode">outline</item>
  4018. <item name="boxBackgroundColor">@null</item>
  4019. <item name="boxCollapsedPaddingTop">0dp</item>
  4020. <item name="boxCornerRadiusTopStart">@dimen/mtrl_textinput_box_corner_radius_medium</item>
  4021. <item name="boxCornerRadiusTopEnd">@dimen/mtrl_textinput_box_corner_radius_medium</item>
  4022. <item name="boxCornerRadiusBottomEnd">@dimen/mtrl_textinput_box_corner_radius_medium</item>
  4023. <item name="boxCornerRadiusBottomStart">@dimen/mtrl_textinput_box_corner_radius_medium</item>
  4024. <item name="boxStrokeColor">?attr/colorControlActivated</item>
  4025. </style>
  4026. <style name="CardView" parent="Base.CardView">
  4027. </style>
  4028. <style name="CardView.Dark">
  4029. <item name="cardBackgroundColor">@color/cardview_dark_background</item>
  4030. </style>
  4031. <style name="CardView.Light">
  4032. <item name="cardBackgroundColor">@color/cardview_light_background</item>
  4033. </style>
  4034. <style name="Platform.AppCompat" parent="android:Theme.Holo">
  4035. <item name="android:windowNoTitle">true</item>
  4036. <item name="android:windowActionBar">false</item>
  4037. <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
  4038. <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
  4039. <item name="android:borderlessButtonStyle">?attr/borderlessButtonStyle</item>
  4040. <!-- Window colors -->
  4041. <item name="android:colorForeground">@color/foreground_material_dark</item>
  4042. <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
  4043. <item name="android:colorBackground">@color/background_material_dark</item>
  4044. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
  4045. <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
  4046. <item name="android:backgroundDimAmount">0.6</item>
  4047. <item name="android:windowBackground">@color/background_material_dark</item>
  4048. <!-- Text colors -->
  4049. <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
  4050. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
  4051. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  4052. <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
  4053. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
  4054. <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
  4055. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
  4056. <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
  4057. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
  4058. <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
  4059. <item name="android:textColorHighlightInverse">@color/highlighted_text_material_light</item>
  4060. <item name="android:textColorLink">?attr/colorAccent</item>
  4061. <item name="android:textColorLinkInverse">?attr/colorAccent</item>
  4062. <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
  4063. <!-- Text styles -->
  4064. <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
  4065. <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
  4066. <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
  4067. <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
  4068. <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
  4069. <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  4070. <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
  4071. <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
  4072. <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
  4073. <item name="listChoiceIndicatorSingleAnimated">@drawable/abc_btn_radio_material_anim</item>
  4074. <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
  4075. <item name="listChoiceIndicatorMultipleAnimated">@drawable/abc_btn_check_material_anim</item>
  4076. <!-- List attributes -->
  4077. <item name="android:textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  4078. <item name="android:textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  4079. <!-- textAppearanceListItemSecondary is 21+ only so not safe to apply here-->
  4080. <item name="android:listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  4081. <item name="android:listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  4082. <item name="android:listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  4083. <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  4084. <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  4085. <item name="android:listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  4086. <item name="android:listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  4087. <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
  4088. <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
  4089. <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
  4090. <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
  4091. <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_dark</item>
  4092. <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_dark</item>
  4093. <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_dark</item>
  4094. </style>
  4095. <style name="Platform.AppCompat.Light" parent="android:Theme.Holo.Light">
  4096. <item name="android:windowNoTitle">true</item>
  4097. <item name="android:windowActionBar">false</item>
  4098. <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
  4099. <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
  4100. <item name="android:borderlessButtonStyle">?attr/borderlessButtonStyle</item>
  4101. <!-- Window colors -->
  4102. <item name="android:colorForeground">@color/foreground_material_light</item>
  4103. <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
  4104. <item name="android:colorBackground">@color/background_material_light</item>
  4105. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
  4106. <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
  4107. <item name="android:backgroundDimAmount">0.6</item>
  4108. <item name="android:windowBackground">@color/background_material_light</item>
  4109. <!-- Text colors -->
  4110. <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
  4111. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
  4112. <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
  4113. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
  4114. <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
  4115. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
  4116. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
  4117. <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  4118. <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
  4119. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
  4120. <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
  4121. <item name="android:textColorHighlightInverse">@color/highlighted_text_material_dark</item>
  4122. <item name="android:textColorLink">?attr/colorAccent</item>
  4123. <item name="android:textColorLinkInverse">?attr/colorAccent</item>
  4124. <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
  4125. <!-- Text styles -->
  4126. <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
  4127. <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
  4128. <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
  4129. <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
  4130. <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
  4131. <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  4132. <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
  4133. <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
  4134. <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
  4135. <item name="listChoiceIndicatorSingleAnimated">@drawable/abc_btn_radio_material_anim</item>
  4136. <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
  4137. <item name="listChoiceIndicatorMultipleAnimated">@drawable/abc_btn_check_material_anim</item>
  4138. <!-- List attributes -->
  4139. <item name="android:textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  4140. <item name="android:textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  4141. <!-- textAppearanceListItemSecondary is 21+ only so not safe to apply here-->
  4142. <item name="android:listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  4143. <item name="android:listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  4144. <item name="android:listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  4145. <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  4146. <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  4147. <item name="android:listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  4148. <item name="android:listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  4149. <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
  4150. <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
  4151. <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
  4152. <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
  4153. <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_light</item>
  4154. <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_light</item>
  4155. <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_light</item>
  4156. </style>
  4157. <style name="Platform.MaterialComponents" parent="Theme.AppCompat"/>
  4158. <style name="Platform.MaterialComponents.Dialog" parent="Theme.AppCompat.Dialog"/>
  4159. <style name="Platform.MaterialComponents.Light" parent="Theme.AppCompat.Light"/>
  4160. <style name="Platform.MaterialComponents.Light.Dialog" parent="Theme.AppCompat.Light.Dialog"/>
  4161. <style name="Platform.ThemeOverlay.AppCompat" parent=""/>
  4162. <style name="Platform.ThemeOverlay.AppCompat.Dark">
  4163. <!-- Action Bar styles -->
  4164. <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item>
  4165. <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
  4166. <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
  4167. <!-- SearchView styles -->
  4168. <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  4169. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  4170. </style>
  4171. <style name="Platform.ThemeOverlay.AppCompat.Light">
  4172. <item name="actionBarItemBackground">@drawable/abc_item_background_holo_light</item>
  4173. <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
  4174. <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
  4175. <!-- SearchView attributes -->
  4176. <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>
  4177. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  4178. </style>
  4179. <style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Holo.Spinner"/>
  4180. <style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
  4181. </style>
  4182. <style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
  4183. <item name="android:layout_gravity">center_vertical|left</item>
  4184. <item name="android:paddingRight">8dp</item>
  4185. </style>
  4186. <style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
  4187. <item name="android:layout_marginRight">8dp</item>
  4188. </style>
  4189. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
  4190. <item name="android:paddingRight">16dp</item>
  4191. </style>
  4192. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
  4193. <item name="android:layout_marginLeft">16dp</item>
  4194. </style>
  4195. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut" parent="android:Widget">
  4196. <item name="android:layout_marginLeft">16dp</item>
  4197. </style>
  4198. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow" parent="android:Widget">
  4199. <item name="android:layout_marginLeft">8dp</item>
  4200. </style>
  4201. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
  4202. <item name="android:layout_alignParentLeft">true</item>
  4203. </style>
  4204. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Title" parent="android:Widget">
  4205. <item name="android:layout_marginLeft">16dp</item>
  4206. </style>
  4207. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
  4208. <item name="android:paddingLeft">@dimen/abc_dropdownitem_text_padding_left</item>
  4209. <item name="android:paddingRight">4dp</item>
  4210. </style>
  4211. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
  4212. <item name="android:layout_alignParentLeft">true</item>
  4213. </style>
  4214. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
  4215. <item name="android:layout_toLeftOf">@id/edit_query</item>
  4216. </style>
  4217. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
  4218. <item name="android:layout_alignParentRight">true</item>
  4219. </style>
  4220. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
  4221. <item name="android:layout_toLeftOf">@android:id/icon2</item>
  4222. <item name="android:layout_toRightOf">@android:id/icon1</item>
  4223. </style>
  4224. <style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
  4225. <item name="android:layout_marginLeft">@dimen/abc_dropdownitem_text_padding_left</item>
  4226. </style>
  4227. <style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
  4228. <item name="android:paddingLeft">12dp</item>
  4229. <item name="android:paddingRight">12dp</item>
  4230. </style>
  4231. <style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
  4232. <item name="android:paddingLeft">@dimen/abc_action_bar_overflow_padding_start_material</item>
  4233. <item name="android:paddingRight">@dimen/abc_action_bar_overflow_padding_end_material</item>
  4234. </style>
  4235. <style name="TextAppearance.AppCompat" parent="Base.TextAppearance.AppCompat"/>
  4236. <style name="TextAppearance.AppCompat.Body1" parent="Base.TextAppearance.AppCompat.Body1"/>
  4237. <style name="TextAppearance.AppCompat.Body2" parent="Base.TextAppearance.AppCompat.Body2"/>
  4238. <style name="TextAppearance.AppCompat.Button" parent="Base.TextAppearance.AppCompat.Button"/>
  4239. <style name="TextAppearance.AppCompat.Caption" parent="Base.TextAppearance.AppCompat.Caption"/>
  4240. <style name="TextAppearance.AppCompat.Display1" parent="Base.TextAppearance.AppCompat.Display1"/>
  4241. <style name="TextAppearance.AppCompat.Display2" parent="Base.TextAppearance.AppCompat.Display2"/>
  4242. <style name="TextAppearance.AppCompat.Display3" parent="Base.TextAppearance.AppCompat.Display3"/>
  4243. <style name="TextAppearance.AppCompat.Display4" parent="Base.TextAppearance.AppCompat.Display4"/>
  4244. <style name="TextAppearance.AppCompat.Headline" parent="Base.TextAppearance.AppCompat.Headline"/>
  4245. <style name="TextAppearance.AppCompat.Inverse" parent="Base.TextAppearance.AppCompat.Inverse"/>
  4246. <style name="TextAppearance.AppCompat.Large" parent="Base.TextAppearance.AppCompat.Large"/>
  4247. <style name="TextAppearance.AppCompat.Large.Inverse" parent="Base.TextAppearance.AppCompat.Large.Inverse"/>
  4248. <style name="TextAppearance.AppCompat.Light.SearchResult.Subtitle" parent="TextAppearance.AppCompat.SearchResult.Subtitle"/>
  4249. <style name="TextAppearance.AppCompat.Light.SearchResult.Title" parent="TextAppearance.AppCompat.SearchResult.Title"/>
  4250. <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Widget.PopupMenu.Large"/>
  4251. <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Widget.PopupMenu.Small"/>
  4252. <style name="TextAppearance.AppCompat.Medium" parent="Base.TextAppearance.AppCompat.Medium"/>
  4253. <style name="TextAppearance.AppCompat.Medium.Inverse" parent="Base.TextAppearance.AppCompat.Medium.Inverse"/>
  4254. <style name="TextAppearance.AppCompat.Menu" parent="Base.TextAppearance.AppCompat.Menu"/>
  4255. <style name="TextAppearance.AppCompat.SearchResult.Subtitle" parent="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
  4256. </style>
  4257. <style name="TextAppearance.AppCompat.SearchResult.Title" parent="Base.TextAppearance.AppCompat.SearchResult.Title">
  4258. </style>
  4259. <style name="TextAppearance.AppCompat.Small" parent="Base.TextAppearance.AppCompat.Small"/>
  4260. <style name="TextAppearance.AppCompat.Small.Inverse" parent="Base.TextAppearance.AppCompat.Small.Inverse"/>
  4261. <style name="TextAppearance.AppCompat.Subhead" parent="Base.TextAppearance.AppCompat.Subhead"/>
  4262. <style name="TextAppearance.AppCompat.Subhead.Inverse" parent="Base.TextAppearance.AppCompat.Subhead.Inverse"/>
  4263. <style name="TextAppearance.AppCompat.Title" parent="Base.TextAppearance.AppCompat.Title"/>
  4264. <style name="TextAppearance.AppCompat.Title.Inverse" parent="Base.TextAppearance.AppCompat.Title.Inverse"/>
  4265. <style name="TextAppearance.AppCompat.Tooltip" parent="Base.TextAppearance.AppCompat.Tooltip"/>
  4266. <style name="TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu">
  4267. </style>
  4268. <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/>
  4269. <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse">
  4270. </style>
  4271. <style name="TextAppearance.AppCompat.Widget.ActionBar.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title"/>
  4272. <style name="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse">
  4273. </style>
  4274. <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle">
  4275. </style>
  4276. <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Subtitle"/>
  4277. <style name="TextAppearance.AppCompat.Widget.ActionMode.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Title">
  4278. </style>
  4279. <style name="TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Title"/>
  4280. <style name="TextAppearance.AppCompat.Widget.Button" parent="Base.TextAppearance.AppCompat.Widget.Button"/>
  4281. <style name="TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored"/>
  4282. <style name="TextAppearance.AppCompat.Widget.Button.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Colored"/>
  4283. <style name="TextAppearance.AppCompat.Widget.Button.Inverse" parent="Base.TextAppearance.AppCompat.Widget.Button.Inverse"/>
  4284. <style name="TextAppearance.AppCompat.Widget.DropDownItem" parent="Base.TextAppearance.AppCompat.Widget.DropDownItem">
  4285. </style>
  4286. <style name="TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header"/>
  4287. <style name="TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large"/>
  4288. <style name="TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small"/>
  4289. <style name="TextAppearance.AppCompat.Widget.Switch" parent="Base.TextAppearance.AppCompat.Widget.Switch"/>
  4290. <style name="TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem"/>
  4291. <style name="TextAppearance.Compat.Notification" parent="@android:style/TextAppearance.StatusBar.EventContent"/>
  4292. <style name="TextAppearance.Compat.Notification.Info">
  4293. <item name="android:textSize">12sp</item>
  4294. <item name="android:textColor">?android:attr/textColorSecondary</item>
  4295. </style>
  4296. <style name="TextAppearance.Compat.Notification.Info.Media"/>
  4297. <style name="TextAppearance.Compat.Notification.Line2" parent="TextAppearance.Compat.Notification.Info"/>
  4298. <style name="TextAppearance.Compat.Notification.Line2.Media" parent="TextAppearance.Compat.Notification.Info.Media"/>
  4299. <style name="TextAppearance.Compat.Notification.Media"/>
  4300. <style name="TextAppearance.Compat.Notification.Time">
  4301. <item name="android:textSize">12sp</item>
  4302. <item name="android:textColor">?android:attr/textColorSecondary</item>
  4303. </style>
  4304. <style name="TextAppearance.Compat.Notification.Time.Media"/>
  4305. <style name="TextAppearance.Compat.Notification.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/>
  4306. <style name="TextAppearance.Compat.Notification.Title.Media"/>
  4307. <style name="TextAppearance.Design.CollapsingToolbar.Expanded" parent="TextAppearance.AppCompat.Display1">
  4308. <item name="android:textColor">?android:attr/textColorPrimary</item>
  4309. </style>
  4310. <style name="TextAppearance.Design.Counter" parent="TextAppearance.AppCompat.Caption"/>
  4311. <style name="TextAppearance.Design.Counter.Overflow" parent="TextAppearance.AppCompat.Caption">
  4312. <item name="android:textColor">@color/design_error</item>
  4313. </style>
  4314. <style name="TextAppearance.Design.Error" parent="TextAppearance.AppCompat.Caption">
  4315. <item name="android:textColor">@color/design_error</item>
  4316. </style>
  4317. <style name="TextAppearance.Design.HelperText" parent="TextAppearance.AppCompat.Caption"/>
  4318. <style name="TextAppearance.Design.Hint" parent="TextAppearance.AppCompat.Caption">
  4319. <item name="android:textColor">?attr/colorControlActivated</item>
  4320. </style>
  4321. <style name="TextAppearance.Design.Snackbar.Message" parent="android:TextAppearance">
  4322. <item name="android:textSize">@dimen/design_snackbar_text_size</item>
  4323. <item name="android:textColor">?android:textColorPrimary</item>
  4324. </style>
  4325. <style name="TextAppearance.Design.Tab" parent="TextAppearance.AppCompat.Button">
  4326. <item name="android:textSize">@dimen/design_tab_text_size</item>
  4327. <item name="android:textColor">@color/mtrl_tabs_legacy_text_color_selector</item>
  4328. <item name="textAllCaps">true</item>
  4329. </style>
  4330. <style name="TextAppearance.MaterialComponents.Body1" parent="TextAppearance.AppCompat.Body2">
  4331. <item name="fontFamily">sans-serif</item>
  4332. <item name="android:fontFamily">sans-serif</item>
  4333. <item name="android:textStyle">normal</item>
  4334. <item name="android:textAllCaps">false</item>
  4335. <item name="android:textSize">16sp</item>
  4336. <item name="android:letterSpacing">0.03125</item>
  4337. </style>
  4338. <style name="TextAppearance.MaterialComponents.Body2" parent="TextAppearance.AppCompat.Body1">
  4339. <item name="fontFamily">sans-serif</item>
  4340. <item name="android:fontFamily">sans-serif</item>
  4341. <item name="android:textStyle">normal</item>
  4342. <item name="android:textAllCaps">false</item>
  4343. <item name="android:textSize">14sp</item>
  4344. <item name="android:letterSpacing">0.0178571429</item>
  4345. </style>
  4346. <style name="TextAppearance.MaterialComponents.Button" parent="TextAppearance.AppCompat.Button">
  4347. <!-- Fake Roboto Medium. -->
  4348. <item name="fontFamily">sans-serif-medium</item>
  4349. <item name="android:fontFamily">sans-serif-medium</item>
  4350. <item name="android:textStyle">bold</item>
  4351. <item name="android:textAllCaps">true</item>
  4352. <item name="android:textSize">14sp</item>
  4353. <item name="android:letterSpacing">0.0892857143</item>
  4354. </style>
  4355. <style name="TextAppearance.MaterialComponents.Caption" parent="TextAppearance.AppCompat.Caption">
  4356. <item name="fontFamily">sans-serif</item>
  4357. <item name="android:fontFamily">sans-serif</item>
  4358. <item name="android:textStyle">normal</item>
  4359. <item name="android:textAllCaps">false</item>
  4360. <item name="android:textSize">12sp</item>
  4361. <item name="android:letterSpacing">0.0333333333</item>
  4362. </style>
  4363. <style name="TextAppearance.MaterialComponents.Chip" parent="TextAppearance.AppCompat">
  4364. <item name="android:textColor">@color/mtrl_chip_text_color</item>
  4365. <item name="android:textSize">@dimen/mtrl_chip_text_size</item>
  4366. </style>
  4367. <style name="TextAppearance.MaterialComponents.Headline1" parent="TextAppearance.AppCompat.Display4">
  4368. <item name="fontFamily">sans-serif-light</item>
  4369. <item name="android:fontFamily">sans-serif-light</item>
  4370. <item name="android:textStyle">normal</item>
  4371. <item name="android:textAllCaps">false</item>
  4372. <item name="android:textSize">96sp</item>
  4373. <item name="android:letterSpacing">-0.015625</item>
  4374. </style>
  4375. <style name="TextAppearance.MaterialComponents.Headline2" parent="TextAppearance.AppCompat.Display3">
  4376. <item name="fontFamily">sans-serif-light</item>
  4377. <item name="android:fontFamily">sans-serif-light</item>
  4378. <item name="android:textStyle">normal</item>
  4379. <item name="android:textAllCaps">false</item>
  4380. <item name="android:textSize">60sp</item>
  4381. <item name="android:letterSpacing">-0.00833333333</item>
  4382. </style>
  4383. <style name="TextAppearance.MaterialComponents.Headline3" parent="TextAppearance.AppCompat.Display2">
  4384. <item name="fontFamily">sans-serif</item>
  4385. <item name="android:fontFamily">sans-serif</item>
  4386. <item name="android:textStyle">normal</item>
  4387. <item name="android:textAllCaps">false</item>
  4388. <item name="android:textSize">48sp</item>
  4389. <item name="android:letterSpacing">0</item>
  4390. </style>
  4391. <style name="TextAppearance.MaterialComponents.Headline4" parent="TextAppearance.AppCompat.Display1">
  4392. <item name="fontFamily">sans-serif</item>
  4393. <item name="android:fontFamily">sans-serif</item>
  4394. <item name="android:textStyle">normal</item>
  4395. <item name="android:textAllCaps">false</item>
  4396. <item name="android:textSize">34sp</item>
  4397. <item name="android:letterSpacing">0.00735294118</item>
  4398. </style>
  4399. <style name="TextAppearance.MaterialComponents.Headline5" parent="TextAppearance.AppCompat.Headline">
  4400. <item name="fontFamily">sans-serif</item>
  4401. <item name="android:fontFamily">sans-serif</item>
  4402. <item name="android:textStyle">normal</item>
  4403. <item name="android:textAllCaps">false</item>
  4404. <item name="android:textSize">24sp</item>
  4405. <item name="android:letterSpacing">0</item>
  4406. </style>
  4407. <style name="TextAppearance.MaterialComponents.Headline6" parent="TextAppearance.AppCompat.Title">
  4408. <!-- Fake Roboto Medium. -->
  4409. <item name="fontFamily">sans-serif-medium</item>
  4410. <item name="android:fontFamily">sans-serif-medium</item>
  4411. <item name="android:textStyle">bold</item>
  4412. <item name="android:textAllCaps">false</item>
  4413. <item name="android:textSize">20sp</item>
  4414. <item name="android:letterSpacing">0.0125</item>
  4415. </style>
  4416. <style name="TextAppearance.MaterialComponents.Overline" parent="TextAppearance.AppCompat">
  4417. <!-- Fake Roboto Medium. -->
  4418. <item name="fontFamily">sans-serif-medium</item>
  4419. <item name="android:fontFamily">sans-serif-medium</item>
  4420. <item name="android:textStyle">bold</item>
  4421. <item name="android:textAllCaps">true</item>
  4422. <item name="android:textSize">12sp</item>
  4423. <item name="android:letterSpacing">0.166666667</item>
  4424. </style>
  4425. <style name="TextAppearance.MaterialComponents.Subtitle1" parent="TextAppearance.AppCompat.Subhead">
  4426. <item name="fontFamily">sans-serif</item>
  4427. <item name="android:fontFamily">sans-serif</item>
  4428. <item name="android:textStyle">normal</item>
  4429. <item name="android:textAllCaps">false</item>
  4430. <item name="android:textSize">16sp</item>
  4431. <item name="android:letterSpacing">0.009375</item>
  4432. </style>
  4433. <style name="TextAppearance.MaterialComponents.Subtitle2" parent="TextAppearance.AppCompat.Subhead">
  4434. <!-- Fake Roboto Medium. -->
  4435. <item name="fontFamily">sans-serif-medium</item>
  4436. <item name="android:fontFamily">sans-serif-medium</item>
  4437. <item name="android:textStyle">bold</item>
  4438. <item name="android:textAllCaps">false</item>
  4439. <item name="android:textSize">14sp</item>
  4440. <item name="android:letterSpacing">0.00714285714</item>
  4441. </style>
  4442. <style name="TextAppearance.MaterialComponents.Tab" parent="TextAppearance.Design.Tab">
  4443. <item name="android:textColor">@color/mtrl_tabs_icon_color_selector</item>
  4444. </style>
  4445. <style name="TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item">
  4446. </style>
  4447. <style name="TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle">
  4448. </style>
  4449. <style name="TextAppearance.Widget.AppCompat.Toolbar.Title" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Title">
  4450. </style>
  4451. <style name="Theme.AppCompat" parent="Base.Theme.AppCompat"/>
  4452. <style name="Theme.AppCompat.CompactMenu" parent="Base.Theme.AppCompat.CompactMenu"/>
  4453. <style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat.Light"/>
  4454. <style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat.Light.DarkActionBar"/>
  4455. <style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Light.Dialog"/>
  4456. <style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Light.Dialog.Alert"/>
  4457. <style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Light.Dialog.MinWidth"/>
  4458. <style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.Light.DialogWhenLarge"/>
  4459. <style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar"/>
  4460. <style name="Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat.Dialog"/>
  4461. <style name="Theme.AppCompat.Dialog.Alert" parent="Base.Theme.AppCompat.Dialog.Alert"/>
  4462. <style name="Theme.AppCompat.Dialog.MinWidth" parent="Base.Theme.AppCompat.Dialog.MinWidth"/>
  4463. <style name="Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.DialogWhenLarge">
  4464. </style>
  4465. <style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light"/>
  4466. <style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar"/>
  4467. <style name="Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light.Dialog"/>
  4468. <style name="Theme.AppCompat.Light.Dialog.Alert" parent="Base.Theme.AppCompat.Light.Dialog.Alert"/>
  4469. <style name="Theme.AppCompat.Light.Dialog.MinWidth" parent="Base.Theme.AppCompat.Light.Dialog.MinWidth"/>
  4470. <style name="Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.DialogWhenLarge">
  4471. </style>
  4472. <style name="Theme.AppCompat.Light.NoActionBar">
  4473. <item name="windowActionBar">false</item>
  4474. <item name="windowNoTitle">true</item>
  4475. </style>
  4476. <style name="Theme.AppCompat.NoActionBar">
  4477. <item name="windowActionBar">false</item>
  4478. <item name="windowNoTitle">true</item>
  4479. </style>
  4480. <style name="Theme.Design" parent="Theme.AppCompat">
  4481. </style>
  4482. <style name="Theme.Design.BottomSheetDialog" parent="Theme.AppCompat.Dialog">
  4483. <item name="android:windowBackground">@android:color/transparent</item>
  4484. <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item>
  4485. <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item>
  4486. </style>
  4487. <style name="Theme.Design.Light" parent="Theme.AppCompat.Light">
  4488. </style>
  4489. <style name="Theme.Design.Light.BottomSheetDialog" parent="Theme.AppCompat.Light.Dialog">
  4490. <item name="android:windowBackground">@android:color/transparent</item>
  4491. <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item>
  4492. <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item>
  4493. </style>
  4494. <style name="Theme.Design.Light.NoActionBar">
  4495. <item name="windowActionBar">false</item>
  4496. <item name="windowNoTitle">true</item>
  4497. </style>
  4498. <style name="Theme.Design.NoActionBar">
  4499. <item name="windowActionBar">false</item>
  4500. <item name="windowNoTitle">true</item>
  4501. </style>
  4502. <style name="Theme.MaterialComponents" parent="Base.Theme.MaterialComponents"/>
  4503. <style name="Theme.MaterialComponents.BottomSheetDialog" parent="Theme.MaterialComponents.Dialog">
  4504. <item name="android:windowBackground">@android:color/transparent</item>
  4505. <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item>
  4506. <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item>
  4507. </style>
  4508. <style name="Theme.MaterialComponents.Bridge" parent="Base.Theme.MaterialComponents.Bridge"/>
  4509. <style name="Theme.MaterialComponents.CompactMenu" parent="Base.Theme.MaterialComponents.CompactMenu"/>
  4510. <style name="Theme.MaterialComponents.Dialog" parent="Base.Theme.MaterialComponents.Dialog"/>
  4511. <style name="Theme.MaterialComponents.Dialog.Alert" parent="Base.Theme.MaterialComponents.Dialog.Alert"/>
  4512. <style name="Theme.MaterialComponents.Dialog.MinWidth" parent="Base.Theme.MaterialComponents.Dialog.MinWidth"/>
  4513. <style name="Theme.MaterialComponents.DialogWhenLarge" parent="Base.Theme.MaterialComponents.DialogWhenLarge">
  4514. </style>
  4515. <style name="Theme.MaterialComponents.Light" parent="Base.Theme.MaterialComponents.Light"/>
  4516. <style name="Theme.MaterialComponents.Light.BottomSheetDialog" parent="Theme.MaterialComponents.Light.Dialog">
  4517. <item name="android:windowBackground">@android:color/transparent</item>
  4518. <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item>
  4519. <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item>
  4520. </style>
  4521. <style name="Theme.MaterialComponents.Light.Bridge" parent="Base.Theme.MaterialComponents.Light.Bridge"/>
  4522. <style name="Theme.MaterialComponents.Light.DarkActionBar" parent="Base.Theme.MaterialComponents.Light.DarkActionBar"/>
  4523. <style name="Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge"/>
  4524. <style name="Theme.MaterialComponents.Light.Dialog" parent="Base.Theme.MaterialComponents.Light.Dialog"/>
  4525. <style name="Theme.MaterialComponents.Light.Dialog.Alert" parent="Base.Theme.MaterialComponents.Light.Dialog.Alert"/>
  4526. <style name="Theme.MaterialComponents.Light.Dialog.MinWidth" parent="Base.Theme.MaterialComponents.Light.Dialog.MinWidth"/>
  4527. <style name="Theme.MaterialComponents.Light.DialogWhenLarge" parent="Base.Theme.MaterialComponents.Light.DialogWhenLarge">
  4528. </style>
  4529. <style name="Theme.MaterialComponents.Light.NoActionBar">
  4530. <item name="windowActionBar">false</item>
  4531. <item name="windowNoTitle">true</item>
  4532. </style>
  4533. <style name="Theme.MaterialComponents.Light.NoActionBar.Bridge" parent="Theme.MaterialComponents.Light.Bridge">
  4534. <item name="windowActionBar">false</item>
  4535. <item name="windowNoTitle">true</item>
  4536. </style>
  4537. <style name="Theme.MaterialComponents.NoActionBar">
  4538. <item name="windowActionBar">false</item>
  4539. <item name="windowNoTitle">true</item>
  4540. </style>
  4541. <style name="Theme.MaterialComponents.NoActionBar.Bridge" parent="Theme.MaterialComponents.Bridge">
  4542. <item name="windowActionBar">false</item>
  4543. <item name="windowNoTitle">true</item>
  4544. </style>
  4545. <style name="ThemeOverlay.AppCompat" parent="Base.ThemeOverlay.AppCompat"/>
  4546. <style name="ThemeOverlay.AppCompat.ActionBar" parent="Base.ThemeOverlay.AppCompat.ActionBar"/>
  4547. <style name="ThemeOverlay.AppCompat.Dark" parent="Base.ThemeOverlay.AppCompat.Dark"/>
  4548. <style name="ThemeOverlay.AppCompat.Dark.ActionBar" parent="Base.ThemeOverlay.AppCompat.Dark.ActionBar"/>
  4549. <style name="ThemeOverlay.AppCompat.DayNight" parent="ThemeOverlay.AppCompat.Light"/>
  4550. <style name="ThemeOverlay.AppCompat.DayNight.ActionBar">
  4551. <item name="colorControlNormal">?android:attr/textColorPrimary</item>
  4552. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
  4553. </style>
  4554. <style name="ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat.Dialog"/>
  4555. <style name="ThemeOverlay.AppCompat.Dialog.Alert" parent="Base.ThemeOverlay.AppCompat.Dialog.Alert"/>
  4556. <style name="ThemeOverlay.AppCompat.Light" parent="Base.ThemeOverlay.AppCompat.Light"/>
  4557. <style name="ThemeOverlay.MaterialComponents" parent="ThemeOverlay.AppCompat"/>
  4558. <style name="ThemeOverlay.MaterialComponents.ActionBar" parent="ThemeOverlay.AppCompat.ActionBar"/>
  4559. <style name="ThemeOverlay.MaterialComponents.Dark" parent="ThemeOverlay.AppCompat.Dark"/>
  4560. <style name="ThemeOverlay.MaterialComponents.Dark.ActionBar" parent="ThemeOverlay.AppCompat.Dark.ActionBar"/>
  4561. <style name="ThemeOverlay.MaterialComponents.Dialog" parent="Base.ThemeOverlay.MaterialComponents.Dialog"/>
  4562. <style name="ThemeOverlay.MaterialComponents.Dialog.Alert" parent="Base.ThemeOverlay.MaterialComponents.Dialog.Alert"/>
  4563. <style name="ThemeOverlay.MaterialComponents.Light" parent="ThemeOverlay.AppCompat.Light"/>
  4564. <style name="ThemeOverlay.MaterialComponents.TextInputEditText" parent=""/>
  4565. <style name="ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox">
  4566. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.FilledBox</item>
  4567. </style>
  4568. <style name="ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense">
  4569. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.FilledBox.Dense
  4570. </item>
  4571. </style>
  4572. <style name="ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox">
  4573. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.OutlinedBox</item>
  4574. </style>
  4575. <style name="ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense">
  4576. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense
  4577. </item>
  4578. </style>
  4579. <style name="Widget.AppCompat.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
  4580. </style>
  4581. <style name="Widget.AppCompat.ActionBar.Solid" parent="Base.Widget.AppCompat.ActionBar.Solid">
  4582. </style>
  4583. <style name="Widget.AppCompat.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
  4584. </style>
  4585. <style name="Widget.AppCompat.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
  4586. </style>
  4587. <style name="Widget.AppCompat.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
  4588. </style>
  4589. <style name="Widget.AppCompat.ActionButton" parent="Base.Widget.AppCompat.ActionButton"/>
  4590. <style name="Widget.AppCompat.ActionButton.CloseMode" parent="Base.Widget.AppCompat.ActionButton.CloseMode"/>
  4591. <style name="Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton.Overflow"/>
  4592. <style name="Widget.AppCompat.ActionMode" parent="Base.Widget.AppCompat.ActionMode">
  4593. </style>
  4594. <style name="Widget.AppCompat.ActivityChooserView" parent="Base.Widget.AppCompat.ActivityChooserView">
  4595. </style>
  4596. <style name="Widget.AppCompat.AutoCompleteTextView" parent="Base.Widget.AppCompat.AutoCompleteTextView">
  4597. </style>
  4598. <style name="Widget.AppCompat.Button" parent="Base.Widget.AppCompat.Button"/>
  4599. <style name="Widget.AppCompat.Button.Borderless" parent="Base.Widget.AppCompat.Button.Borderless"/>
  4600. <style name="Widget.AppCompat.Button.Borderless.Colored" parent="Base.Widget.AppCompat.Button.Borderless.Colored"/>
  4601. <style name="Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog"/>
  4602. <style name="Widget.AppCompat.Button.Colored" parent="Base.Widget.AppCompat.Button.Colored"/>
  4603. <style name="Widget.AppCompat.Button.Small" parent="Base.Widget.AppCompat.Button.Small"/>
  4604. <style name="Widget.AppCompat.ButtonBar" parent="Base.Widget.AppCompat.ButtonBar"/>
  4605. <style name="Widget.AppCompat.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.ButtonBar.AlertDialog"/>
  4606. <style name="Widget.AppCompat.CompoundButton.CheckBox" parent="Base.Widget.AppCompat.CompoundButton.CheckBox"/>
  4607. <style name="Widget.AppCompat.CompoundButton.RadioButton" parent="Base.Widget.AppCompat.CompoundButton.RadioButton"/>
  4608. <style name="Widget.AppCompat.CompoundButton.Switch" parent="Base.Widget.AppCompat.CompoundButton.Switch"/>
  4609. <style name="Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle">
  4610. <item name="color">?attr/colorControlNormal</item>
  4611. </style>
  4612. <style name="Widget.AppCompat.DropDownItem.Spinner" parent="RtlOverlay.Widget.AppCompat.Search.DropDown.Text"/>
  4613. <style name="Widget.AppCompat.EditText" parent="Base.Widget.AppCompat.EditText"/>
  4614. <style name="Widget.AppCompat.ImageButton" parent="Base.Widget.AppCompat.ImageButton"/>
  4615. <style name="Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.Light.ActionBar">
  4616. </style>
  4617. <style name="Widget.AppCompat.Light.ActionBar.Solid" parent="Base.Widget.AppCompat.Light.ActionBar.Solid">
  4618. </style>
  4619. <style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse"/>
  4620. <style name="Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.Light.ActionBar.TabBar">
  4621. </style>
  4622. <style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse"/>
  4623. <style name="Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
  4624. </style>
  4625. <style name="Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse">
  4626. </style>
  4627. <style name="Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.Light.ActionBar.TabView">
  4628. </style>
  4629. <style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse"/>
  4630. <style name="Widget.AppCompat.Light.ActionButton" parent="Widget.AppCompat.ActionButton"/>
  4631. <style name="Widget.AppCompat.Light.ActionButton.CloseMode" parent="Widget.AppCompat.ActionButton.CloseMode"/>
  4632. <style name="Widget.AppCompat.Light.ActionButton.Overflow" parent="Widget.AppCompat.ActionButton.Overflow"/>
  4633. <style name="Widget.AppCompat.Light.ActionMode.Inverse" parent="Widget.AppCompat.ActionMode"/>
  4634. <style name="Widget.AppCompat.Light.ActivityChooserView" parent="Widget.AppCompat.ActivityChooserView"/>
  4635. <style name="Widget.AppCompat.Light.AutoCompleteTextView" parent="Widget.AppCompat.AutoCompleteTextView"/>
  4636. <style name="Widget.AppCompat.Light.DropDownItem.Spinner" parent="Widget.AppCompat.DropDownItem.Spinner"/>
  4637. <style name="Widget.AppCompat.Light.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"/>
  4638. <style name="Widget.AppCompat.Light.ListView.DropDown" parent="Widget.AppCompat.ListView.DropDown"/>
  4639. <style name="Widget.AppCompat.Light.PopupMenu" parent="Base.Widget.AppCompat.Light.PopupMenu"/>
  4640. <style name="Widget.AppCompat.Light.PopupMenu.Overflow" parent="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
  4641. </style>
  4642. <style name="Widget.AppCompat.Light.SearchView" parent="Widget.AppCompat.SearchView"/>
  4643. <style name="Widget.AppCompat.Light.Spinner.DropDown.ActionBar" parent="Widget.AppCompat.Spinner.DropDown.ActionBar"/>
  4644. <style name="Widget.AppCompat.ListMenuView" parent="Base.Widget.AppCompat.ListMenuView"/>
  4645. <style name="Widget.AppCompat.ListPopupWindow" parent="Base.Widget.AppCompat.ListPopupWindow">
  4646. </style>
  4647. <style name="Widget.AppCompat.ListView" parent="Base.Widget.AppCompat.ListView"/>
  4648. <style name="Widget.AppCompat.ListView.DropDown" parent="Base.Widget.AppCompat.ListView.DropDown"/>
  4649. <style name="Widget.AppCompat.ListView.Menu" parent="Base.Widget.AppCompat.ListView.Menu"/>
  4650. <style name="Widget.AppCompat.PopupMenu" parent="Base.Widget.AppCompat.PopupMenu"/>
  4651. <style name="Widget.AppCompat.PopupMenu.Overflow" parent="Base.Widget.AppCompat.PopupMenu.Overflow">
  4652. </style>
  4653. <style name="Widget.AppCompat.PopupWindow" parent="Base.Widget.AppCompat.PopupWindow">
  4654. </style>
  4655. <style name="Widget.AppCompat.ProgressBar" parent="Base.Widget.AppCompat.ProgressBar">
  4656. </style>
  4657. <style name="Widget.AppCompat.ProgressBar.Horizontal" parent="Base.Widget.AppCompat.ProgressBar.Horizontal">
  4658. </style>
  4659. <style name="Widget.AppCompat.RatingBar" parent="Base.Widget.AppCompat.RatingBar"/>
  4660. <style name="Widget.AppCompat.RatingBar.Indicator" parent="Base.Widget.AppCompat.RatingBar.Indicator"/>
  4661. <style name="Widget.AppCompat.RatingBar.Small" parent="Base.Widget.AppCompat.RatingBar.Small"/>
  4662. <style name="Widget.AppCompat.SearchView" parent="Base.Widget.AppCompat.SearchView"/>
  4663. <style name="Widget.AppCompat.SearchView.ActionBar" parent="Base.Widget.AppCompat.SearchView.ActionBar"/>
  4664. <style name="Widget.AppCompat.SeekBar" parent="Base.Widget.AppCompat.SeekBar"/>
  4665. <style name="Widget.AppCompat.SeekBar.Discrete" parent="Base.Widget.AppCompat.SeekBar.Discrete"/>
  4666. <style name="Widget.AppCompat.Spinner" parent="Base.Widget.AppCompat.Spinner"/>
  4667. <style name="Widget.AppCompat.Spinner.DropDown"/>
  4668. <style name="Widget.AppCompat.Spinner.DropDown.ActionBar"/>
  4669. <style name="Widget.AppCompat.Spinner.Underlined" parent="Base.Widget.AppCompat.Spinner.Underlined"/>
  4670. <style name="Widget.AppCompat.TextView" parent="Base.Widget.AppCompat.TextView"/>
  4671. <style name="Widget.AppCompat.TextView.SpinnerItem" parent="Base.Widget.AppCompat.TextView.SpinnerItem"/>
  4672. <style name="Widget.AppCompat.Toolbar" parent="Base.Widget.AppCompat.Toolbar"/>
  4673. <style name="Widget.AppCompat.Toolbar.Button.Navigation" parent="Base.Widget.AppCompat.Toolbar.Button.Navigation"/>
  4674. <style name="Widget.Compat.NotificationActionContainer" parent=""/>
  4675. <style name="Widget.Compat.NotificationActionText" parent=""/>
  4676. <style name="Widget.Design.AppBarLayout" parent="android:Widget">
  4677. <item name="android:background">?attr/colorPrimary</item>
  4678. <item name="android:stateListAnimator" ns2:ignore="NewApi">
  4679. @animator/design_appbar_state_list_animator
  4680. </item>
  4681. <item name="android:keyboardNavigationCluster" ns2:ignore="NewApi">true</item>
  4682. <item name="android:touchscreenBlocksFocus" ns2:ignore="NewApi">true</item>
  4683. </style>
  4684. <style name="Widget.Design.BottomNavigationView" parent="">
  4685. <item name="elevation">@dimen/design_bottom_navigation_elevation</item>
  4686. <item name="itemBackground">?attr/selectableItemBackgroundBorderless</item>
  4687. <item name="itemHorizontalTranslationEnabled">true</item>
  4688. <item name="itemIconSize">@dimen/design_bottom_navigation_icon_size</item>
  4689. <item name="labelVisibilityMode">auto</item>
  4690. </style>
  4691. <style name="Widget.Design.BottomSheet.Modal" parent="android:Widget">
  4692. <item name="android:background">?android:attr/colorBackground</item>
  4693. <item name="android:elevation" ns2:ignore="NewApi">
  4694. @dimen/design_bottom_sheet_modal_elevation
  4695. </item>
  4696. <item name="behavior_peekHeight">auto</item>
  4697. <item name="behavior_hideable">true</item>
  4698. <item name="behavior_skipCollapsed">false</item>
  4699. </style>
  4700. <style name="Widget.Design.CollapsingToolbar" parent="android:Widget">
  4701. <item name="expandedTitleMargin">32dp</item>
  4702. <item name="statusBarScrim">?attr/colorPrimaryDark</item>
  4703. </style>
  4704. <style name="Widget.Design.FloatingActionButton" parent="android:Widget">
  4705. <item name="android:background">@drawable/design_fab_background</item>
  4706. <item name="android:clickable">true</item>
  4707. <item name="android:focusable">true</item>
  4708. <item name="backgroundTint">?attr/colorAccent</item>
  4709. <item name="fabSize">auto</item>
  4710. <item name="elevation">@dimen/design_fab_elevation</item>
  4711. <item name="hoveredFocusedTranslationZ">@dimen/design_fab_translation_z_hovered_focused</item>
  4712. <item name="pressedTranslationZ">@dimen/design_fab_translation_z_pressed</item>
  4713. <item name="rippleColor">?attr/colorControlHighlight</item>
  4714. <item name="borderWidth">@dimen/design_fab_border_width</item>
  4715. <item name="maxImageSize">@dimen/design_fab_image_size</item>
  4716. <item name="showMotionSpec">@animator/design_fab_show_motion_spec</item>
  4717. <item name="hideMotionSpec">@animator/design_fab_hide_motion_spec</item>
  4718. </style>
  4719. <style name="Widget.Design.NavigationView" parent="">
  4720. <item name="elevation">@dimen/design_navigation_elevation</item>
  4721. <item name="itemIconPadding">@dimen/design_navigation_item_icon_padding</item>
  4722. <item name="itemHorizontalPadding">@dimen/design_navigation_item_horizontal_padding</item>
  4723. <item name="android:background">?android:attr/windowBackground</item>
  4724. <item name="android:fitsSystemWindows">true</item>
  4725. <item name="android:maxWidth">@dimen/design_navigation_max_width</item>
  4726. </style>
  4727. <style name="Widget.Design.ScrimInsetsFrameLayout" parent="">
  4728. <item name="insetForeground">#4000</item>
  4729. </style>
  4730. <style name="Widget.Design.Snackbar" parent="android:Widget">
  4731. <item name="android:minWidth">@dimen/design_snackbar_min_width</item>
  4732. <item name="android:maxWidth">@dimen/design_snackbar_max_width</item>
  4733. <item name="android:background">@drawable/design_snackbar_background</item>
  4734. <item name="android:paddingLeft">@dimen/design_snackbar_padding_horizontal</item>
  4735. <item name="android:paddingRight">@dimen/design_snackbar_padding_horizontal</item>
  4736. <item name="elevation">@dimen/design_snackbar_elevation</item>
  4737. <item name="maxActionInlineWidth">@dimen/design_snackbar_action_inline_max_width</item>
  4738. </style>
  4739. <style name="Widget.Design.TabLayout" parent="Base.Widget.Design.TabLayout">
  4740. <item name="tabGravity">fill</item>
  4741. <item name="tabMode">fixed</item>
  4742. <item name="tabIndicatorFullWidth">true</item>
  4743. </style>
  4744. <style name="Widget.Design.TextInputLayout" parent="android:Widget">
  4745. <item name="boxBackgroundMode">none</item>
  4746. <item name="hintTextAppearance">@style/TextAppearance.Design.Hint</item>
  4747. <item name="helperTextTextAppearance">@style/TextAppearance.Design.HelperText</item>
  4748. <item name="errorTextAppearance">@style/TextAppearance.Design.Error</item>
  4749. <item name="counterTextAppearance">@style/TextAppearance.Design.Counter</item>
  4750. <item name="counterOverflowTextAppearance">@style/TextAppearance.Design.Counter.Overflow</item>
  4751. <item name="passwordToggleDrawable">@drawable/design_password_eye</item>
  4752. <item name="passwordToggleTint">@color/design_tint_password_toggle</item>
  4753. <item name="passwordToggleContentDescription">@string/password_toggle_content_description</item>
  4754. </style>
  4755. <style name="Widget.MaterialComponents.BottomAppBar" parent="Widget.AppCompat.Toolbar">
  4756. <item name="backgroundTint">@android:color/white</item>
  4757. <item name="fabCradleMargin">@dimen/mtrl_bottomappbar_fab_cradle_margin</item>
  4758. <item name="fabCradleRoundedCornerRadius">
  4759. @dimen/mtrl_bottomappbar_fab_cradle_rounded_corner_radius
  4760. </item>
  4761. <item name="fabCradleVerticalOffset">@dimen/mtrl_bottomappbar_fab_cradle_vertical_offset</item>
  4762. </style>
  4763. <style name="Widget.MaterialComponents.BottomAppBar.Colored" parent="Widget.MaterialComponents.BottomAppBar">
  4764. <item name="backgroundTint">?attr/colorPrimary</item>
  4765. </style>
  4766. <style name="Widget.MaterialComponents.BottomNavigationView" parent="Widget.Design.BottomNavigationView">
  4767. <item name="android:background">@android:color/white</item>
  4768. <item name="enforceTextAppearance">true</item>
  4769. <item name="itemHorizontalTranslationEnabled">false</item>
  4770. <item name="itemIconTint">@color/mtrl_bottom_nav_item_tint</item>
  4771. <item name="itemTextAppearanceInactive">?attr/textAppearanceCaption</item>
  4772. <item name="itemTextAppearanceActive">?attr/textAppearanceCaption</item>
  4773. <item name="itemTextColor">@color/mtrl_bottom_nav_item_tint</item>
  4774. </style>
  4775. <style name="Widget.MaterialComponents.BottomNavigationView.Colored">
  4776. <item name="android:background">?attr/colorPrimary</item>
  4777. <item name="itemIconTint">@color/mtrl_bottom_nav_colored_item_tint</item>
  4778. <item name="itemTextAppearanceInactive">?attr/textAppearanceCaption</item>
  4779. <item name="itemTextAppearanceActive">?attr/textAppearanceCaption</item>
  4780. <item name="itemTextColor">@color/mtrl_bottom_nav_colored_item_tint</item>
  4781. </style>
  4782. <style name="Widget.MaterialComponents.BottomSheet.Modal" parent="Widget.Design.BottomSheet.Modal"/>
  4783. <style name="Widget.MaterialComponents.Button" parent="Widget.AppCompat.Button">
  4784. <item name="enforceTextAppearance">true</item>
  4785. <item name="android:textAppearance">?attr/textAppearanceButton</item>
  4786. <item name="android:textColor">@color/mtrl_btn_text_color_selector</item>
  4787. <item name="android:paddingLeft">@dimen/mtrl_btn_padding_left</item>
  4788. <item name="android:paddingRight">@dimen/mtrl_btn_padding_right</item>
  4789. <item name="android:paddingTop">@dimen/mtrl_btn_padding_top</item>
  4790. <item name="android:paddingBottom">@dimen/mtrl_btn_padding_bottom</item>
  4791. <item name="android:insetLeft">0dp</item>
  4792. <item name="android:insetRight">0dp</item>
  4793. <item name="android:insetTop">@dimen/mtrl_btn_inset</item>
  4794. <item name="android:insetBottom">@dimen/mtrl_btn_inset</item>
  4795. <item name="android:stateListAnimator" ns2:ignore="NewApi">@animator/mtrl_btn_state_list_anim</item>
  4796. <item name="cornerRadius">@dimen/mtrl_btn_corner_radius</item>
  4797. <item name="iconPadding">@dimen/mtrl_btn_icon_padding</item>
  4798. <item name="iconTint">@color/mtrl_btn_text_color_selector</item>
  4799. <item name="rippleColor">@color/mtrl_btn_ripple_color</item>
  4800. <item name="backgroundTint">@color/mtrl_btn_bg_color_selector</item>
  4801. </style>
  4802. <style name="Widget.MaterialComponents.Button.Icon">
  4803. <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item>
  4804. </style>
  4805. <style name="Widget.MaterialComponents.Button.OutlinedButton" parent="Widget.MaterialComponents.Button.TextButton">
  4806. <item name="android:paddingLeft">@dimen/mtrl_btn_padding_left</item>
  4807. <item name="android:paddingRight">@dimen/mtrl_btn_padding_right</item>
  4808. <item name="strokeColor">@color/mtrl_btn_stroke_color_selector</item>
  4809. <item name="strokeWidth">@dimen/mtrl_btn_stroke_size</item>
  4810. </style>
  4811. <style name="Widget.MaterialComponents.Button.OutlinedButton.Icon">
  4812. <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item>
  4813. </style>
  4814. <style name="Widget.MaterialComponents.Button.TextButton" parent="Widget.MaterialComponents.Button.UnelevatedButton">
  4815. <item name="android:textColor">@color/mtrl_text_btn_text_color_selector</item>
  4816. <item name="android:paddingLeft">@dimen/mtrl_btn_text_btn_padding_left</item>
  4817. <item name="android:paddingRight">@dimen/mtrl_btn_text_btn_padding_right</item>
  4818. <item name="iconTint">@color/mtrl_text_btn_text_color_selector</item>
  4819. <item name="iconPadding">@dimen/mtrl_btn_text_btn_icon_padding</item>
  4820. <item name="backgroundTint">@color/mtrl_btn_transparent_bg_color</item>
  4821. <item name="rippleColor">@color/mtrl_btn_text_btn_ripple_color</item>
  4822. </style>
  4823. <style name="Widget.MaterialComponents.Button.TextButton.Dialog">
  4824. <item name="android:minWidth">@dimen/mtrl_btn_dialog_btn_min_width</item>
  4825. </style>
  4826. <style name="Widget.MaterialComponents.Button.TextButton.Dialog.Icon">
  4827. <!-- Icon text button has the same padding as a regular text button -->
  4828. </style>
  4829. <style name="Widget.MaterialComponents.Button.TextButton.Icon">
  4830. <!-- Icon text button has the same padding as a regular text button -->
  4831. </style>
  4832. <style name="Widget.MaterialComponents.Button.UnelevatedButton">
  4833. <item name="android:stateListAnimator" ns2:ignore="NewApi">@animator/mtrl_btn_unelevated_state_list_anim</item>
  4834. </style>
  4835. <style name="Widget.MaterialComponents.Button.UnelevatedButton.Icon">
  4836. <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item>
  4837. </style>
  4838. <style name="Widget.MaterialComponents.CardView" parent="CardView">
  4839. <item name="cardElevation">@dimen/mtrl_card_elevation</item>
  4840. <item name="cardBackgroundColor">?attr/colorBackgroundFloating</item>
  4841. </style>
  4842. <style name="Widget.MaterialComponents.Chip.Action" parent="Base.Widget.MaterialComponents.Chip">
  4843. <item name="closeIconVisible">false</item>
  4844. </style>
  4845. <style name="Widget.MaterialComponents.Chip.Choice" parent="Base.Widget.MaterialComponents.Chip">
  4846. <item name="android:checkable">true</item>
  4847. <item name="chipIconVisible">false</item>
  4848. <item name="checkedIconVisible">false</item>
  4849. <item name="closeIconVisible">false</item>
  4850. <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_black</item>
  4851. </style>
  4852. <style name="Widget.MaterialComponents.Chip.Entry" parent="Base.Widget.MaterialComponents.Chip">
  4853. <item name="android:checkable">true</item>
  4854. </style>
  4855. <style name="Widget.MaterialComponents.Chip.Filter" parent="Base.Widget.MaterialComponents.Chip">
  4856. <item name="android:checkable">true</item>
  4857. <item name="chipIconVisible">false</item>
  4858. <item name="closeIconVisible">false</item>
  4859. <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_black</item>
  4860. </style>
  4861. <style name="Widget.MaterialComponents.ChipGroup" parent="android:Widget">
  4862. <item name="chipSpacing">4dp</item>
  4863. <item name="singleLine">false</item>
  4864. <item name="singleSelection">false</item>
  4865. </style>
  4866. <style name="Widget.MaterialComponents.FloatingActionButton" parent="Widget.Design.FloatingActionButton">
  4867. <item name="elevation">@dimen/mtrl_fab_elevation</item>
  4868. <item name="hoveredFocusedTranslationZ">@dimen/mtrl_fab_translation_z_hovered_focused</item>
  4869. <item name="pressedTranslationZ">@dimen/mtrl_fab_translation_z_pressed</item>
  4870. <item name="rippleColor">@color/mtrl_fab_ripple_color</item>
  4871. <item name="showMotionSpec">@animator/mtrl_fab_show_motion_spec</item>
  4872. <item name="hideMotionSpec">@animator/mtrl_fab_hide_motion_spec</item>
  4873. </style>
  4874. <style name="Widget.MaterialComponents.NavigationView" parent="Widget.Design.NavigationView">
  4875. <item name="elevation">@dimen/mtrl_navigation_elevation</item>
  4876. <item name="itemIconPadding">@dimen/mtrl_navigation_item_icon_padding</item>
  4877. <item name="itemHorizontalPadding">@dimen/mtrl_navigation_item_horizontal_padding</item>
  4878. </style>
  4879. <style name="Widget.MaterialComponents.Snackbar" parent="Widget.Design.Snackbar">
  4880. <item name="android:background">@drawable/mtrl_snackbar_background</item>
  4881. <item name="android:layout_margin">@dimen/mtrl_snackbar_margin</item>
  4882. </style>
  4883. <style name="Widget.MaterialComponents.Snackbar.FullWidth" parent="Widget.Design.Snackbar"/>
  4884. <style name="Widget.MaterialComponents.TabLayout" parent="Widget.Design.TabLayout">
  4885. <item name="enforceTextAppearance">true</item>
  4886. <item name="android:background">@android:color/white</item>
  4887. <item name="tabIconTint">@color/mtrl_tabs_icon_color_selector</item>
  4888. <item name="tabIndicatorAnimationDuration">@integer/mtrl_tab_indicator_anim_duration_ms</item>
  4889. <item name="tabIndicatorColor">?attr/colorAccent</item>
  4890. <item name="tabTextAppearance">?attr/textAppearanceButton</item>
  4891. <item name="tabTextColor">@color/mtrl_tabs_icon_color_selector</item>
  4892. <item name="tabRippleColor">@color/mtrl_tabs_ripple_color</item>
  4893. <item name="tabUnboundedRipple">true</item>
  4894. </style>
  4895. <style name="Widget.MaterialComponents.TabLayout.Colored">
  4896. <item name="android:background">?attr/colorAccent</item>
  4897. <item name="tabIconTint">@color/mtrl_tabs_icon_color_selector_colored</item>
  4898. <item name="tabIndicatorColor">@android:color/white</item>
  4899. <item name="tabTextColor">@color/mtrl_tabs_icon_color_selector_colored</item>
  4900. <item name="tabRippleColor">@color/mtrl_tabs_colored_ripple_color</item>
  4901. </style>
  4902. <style name="Widget.MaterialComponents.TextInputEditText.FilledBox" parent="Base.Widget.MaterialComponents.TextInputEditText">
  4903. <item name="android:paddingTop">20dp</item>
  4904. <item name="android:paddingBottom">16dp</item>
  4905. </style>
  4906. <style name="Widget.MaterialComponents.TextInputEditText.FilledBox.Dense">
  4907. <item name="android:paddingTop">16dp</item>
  4908. <item name="android:paddingBottom">16dp</item>
  4909. </style>
  4910. <style name="Widget.MaterialComponents.TextInputEditText.OutlinedBox" parent="Base.Widget.MaterialComponents.TextInputEditText"/>
  4911. <style name="Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense">
  4912. <item name="android:paddingTop">12dp</item>
  4913. <item name="android:paddingBottom">12dp</item>
  4914. </style>
  4915. <style name="Widget.MaterialComponents.TextInputLayout.FilledBox" parent="Base.Widget.MaterialComponents.TextInputLayout">
  4916. <item name="android:theme">@style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox</item>
  4917. <item name="boxBackgroundMode">filled</item>
  4918. <item name="boxBackgroundColor">@color/mtrl_textinput_filled_box_default_background_color</item>
  4919. <item name="boxCollapsedPaddingTop">12dp</item>
  4920. <item name="boxCornerRadiusBottomStart">@dimen/mtrl_textinput_box_corner_radius_small</item>
  4921. <item name="boxCornerRadiusBottomEnd">@dimen/mtrl_textinput_box_corner_radius_small</item>
  4922. </style>
  4923. <style name="Widget.MaterialComponents.TextInputLayout.FilledBox.Dense">
  4924. <item name="android:theme">@style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense</item>
  4925. <item name="boxCollapsedPaddingTop">8dp</item>
  4926. </style>
  4927. <style name="Widget.MaterialComponents.TextInputLayout.OutlinedBox" parent="Base.Widget.MaterialComponents.TextInputLayout">
  4928. <item name="android:theme">@style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox
  4929. </item>
  4930. <item name="boxCollapsedPaddingTop">0dp</item>
  4931. </style>
  4932. <style name="Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense">
  4933. <item name="android:theme">
  4934. @style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense
  4935. </item>
  4936. </style>
  4937. <style name="Widget.MaterialComponents.Toolbar" parent="Widget.AppCompat.Toolbar">
  4938. <item name="titleTextAppearance">?attr/textAppearanceHeadline6</item>
  4939. <item name="titleTextColor">?android:attr/textColorPrimary</item>
  4940. <item name="subtitleTextAppearance">?attr/textAppearanceSubtitle1</item>
  4941. <item name="subtitleTextColor">?android:attr/textColorSecondary</item>
  4942. <!-- Overrides minimum height in landscape to avoid headline6 and subtitle1
  4943. height concerns. -->
  4944. <item name="android:minHeight">@dimen/mtrl_toolbar_default_height</item>
  4945. </style>
  4946. <style name="Widget.Support.CoordinatorLayout" parent="android:Widget">
  4947. <item name="statusBarBackground">#000000</item>
  4948. </style>
  4949. </resources>