values.xml 310 KB

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