values.xml 718 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources xmlns:ns1="http://schemas.android.com/tools" xmlns:ns2="urn:oasis:names:tc:xliff:document:1.2">
  3. <attr format="reference" name="animate_relativeTo"/>
  4. <attr format="reference" name="appBarLayoutStyle"/>
  5. <attr format="enum" name="arcMode">
  6. <enum name="startVertical" value="0"/>
  7. <enum name="startHorizontal" value="1"/>
  8. <enum name="flip" value="2"/>
  9. </attr>
  10. <attr format="reference" name="badgeStyle"/>
  11. <attr format="boolean" name="barrierAllowsGoneWidgets"/>
  12. <attr format="enum" name="barrierDirection">
  13. <enum name="left" value="0"/>
  14. <enum name="right" value="1"/>
  15. <enum name="top" value="2"/>
  16. <enum name="bottom" value="3"/>
  17. <enum name="start" value="5"/>
  18. <enum name="end" value="6"/>
  19. </attr>
  20. <attr format="dimension" name="barrierMargin"/>
  21. <attr format="reference" name="bottomAppBarStyle"/>
  22. <attr format="reference" name="bottomNavigationStyle"/>
  23. <attr format="reference" name="bottomSheetDialogTheme"/>
  24. <attr format="reference" name="bottomSheetStyle"/>
  25. <attr format="reference" name="cardViewStyle"/>
  26. <attr format="boolean" name="chainUseRtl"/>
  27. <attr format="reference" name="checkedIcon"/>
  28. <attr format="color" name="checkedIconTint"/>
  29. <attr format="reference" name="chipGroupStyle"/>
  30. <attr format="reference" name="chipStandaloneStyle"/>
  31. <attr format="reference" name="chipStyle"/>
  32. <attr format="dimension" name="circleRadius"/>
  33. <attr format="reference" name="circularProgressIndicatorStyle"/>
  34. <attr format="reference" name="clockIcon"/>
  35. <attr format="reference" name="collapsingToolbarLayoutLargeSize"/>
  36. <attr format="reference" name="collapsingToolbarLayoutLargeStyle"/>
  37. <attr format="reference" name="collapsingToolbarLayoutMediumSize"/>
  38. <attr format="reference" name="collapsingToolbarLayoutMediumStyle"/>
  39. <attr format="reference" name="collapsingToolbarLayoutStyle"/>
  40. <attr format="color" name="colorContainer"/>
  41. <attr format="color" name="colorErrorContainer"/>
  42. <attr name="colorOnBackground"/>
  43. <attr format="color" name="colorOnContainer"/>
  44. <attr format="color" name="colorOnError"/>
  45. <attr format="color" name="colorOnErrorContainer"/>
  46. <attr format="color" name="colorOnPrimary"/>
  47. <attr format="color" name="colorOnPrimaryContainer"/>
  48. <attr format="color" name="colorOnPrimarySurface"/>
  49. <attr format="color" name="colorOnSecondary"/>
  50. <attr format="color" name="colorOnSecondaryContainer"/>
  51. <attr format="color" name="colorOnSurface"/>
  52. <attr format="color" name="colorOnSurfaceInverse"/>
  53. <attr format="color" name="colorOnSurfaceVariant"/>
  54. <attr format="color" name="colorOnTertiary"/>
  55. <attr format="color" name="colorOnTertiaryContainer"/>
  56. <attr format="color" name="colorOutline"/>
  57. <attr format="color" name="colorPrimaryContainer"/>
  58. <attr format="color" name="colorPrimaryInverse"/>
  59. <attr format="color" name="colorPrimarySurface"/>
  60. <attr format="color" name="colorPrimaryVariant"/>
  61. <attr format="color" name="colorSecondary"/>
  62. <attr format="color" name="colorSecondaryContainer"/>
  63. <attr format="color" name="colorSecondaryVariant"/>
  64. <attr format="color" name="colorSurface"/>
  65. <attr format="color" name="colorSurfaceInverse"/>
  66. <attr format="color" name="colorSurfaceVariant"/>
  67. <attr format="color" name="colorTertiary"/>
  68. <attr format="color" name="colorTertiaryContainer"/>
  69. <attr format="reference" name="constraintSet"/>
  70. <attr format="string" name="constraint_referenced_ids"/>
  71. <attr format="reference" name="content"/>
  72. <attr format="reference" name="coordinatorLayoutStyle"/>
  73. <attr format="enum" name="curveFit">
  74. <enum name="spline" value="0"/>
  75. <enum name="linear" value="1"/>
  76. </attr>
  77. <attr format="integer" name="defaultDuration"/>
  78. <attr format="float" name="deltaPolarAngle"/>
  79. <attr format="float" name="deltaPolarRadius"/>
  80. <attr format="dimension" name="dividerInsetEnd"/>
  81. <attr format="dimension" name="dividerInsetStart"/>
  82. <attr format="enum" name="dragDirection">
  83. <enum name="dragUp" value="0"/>
  84. <enum name="dragDown" value="1"/>
  85. <enum name="dragLeft" value="2"/>
  86. <enum name="dragRight" value="3"/>
  87. <enum name="dragStart" value="4"/>
  88. <enum name="dragEnd" value="5"/>
  89. </attr>
  90. <attr format="enum" name="drawPath">
  91. <enum name="none" value="0"/>
  92. <enum name="path" value="1"/>
  93. <enum name="pathRelative" value="2"/>
  94. <enum name="deltaRelative" value="3"/>
  95. <enum name="asConfigured" value="4"/>
  96. <enum name="rectangles" value="5"/>
  97. </attr>
  98. <attr format="reference" name="drawerArrowStyle"/>
  99. <attr format="reference" name="drawerLayoutStyle"/>
  100. <attr format="integer" name="duration"/>
  101. <attr format="reference" name="dynamicColorThemeOverlay"/>
  102. <attr format="dimension" name="elevation"/>
  103. <attr format="color" name="elevationOverlayAccentColor"/>
  104. <attr format="color" name="elevationOverlayColor"/>
  105. <attr format="boolean" name="elevationOverlayEnabled"/>
  106. <attr format="boolean" name="enableEdgeToEdge"/>
  107. <attr format="boolean" name="ensureMinTouchTargetSize"/>
  108. <attr format="reference" name="extendedFloatingActionButtonPrimaryStyle"/>
  109. <attr format="reference" name="extendedFloatingActionButtonSecondaryStyle"/>
  110. <attr format="reference" name="extendedFloatingActionButtonStyle"/>
  111. <attr format="reference" name="extendedFloatingActionButtonSurfaceStyle"/>
  112. <attr format="reference" name="extendedFloatingActionButtonTertiaryStyle"/>
  113. <attr format="reference" name="floatingActionButtonLargePrimaryStyle"/>
  114. <attr format="reference" name="floatingActionButtonLargeSecondaryStyle"/>
  115. <attr format="reference" name="floatingActionButtonLargeStyle"/>
  116. <attr format="reference" name="floatingActionButtonLargeSurfaceStyle"/>
  117. <attr format="reference" name="floatingActionButtonLargeTertiaryStyle"/>
  118. <attr format="reference" name="floatingActionButtonPrimaryStyle"/>
  119. <attr format="reference" name="floatingActionButtonSecondaryStyle"/>
  120. <attr format="reference" name="floatingActionButtonStyle"/>
  121. <attr format="reference" name="floatingActionButtonSurfaceStyle"/>
  122. <attr format="reference" name="floatingActionButtonTertiaryStyle"/>
  123. <attr format="float" name="flow_firstHorizontalBias"/>
  124. <attr format="enum" name="flow_firstHorizontalStyle">
  125. <enum name="spread" value="0"/>
  126. <enum name="spread_inside" value="1"/>
  127. <enum name="packed" value="2"/>
  128. </attr>
  129. <attr format="float" name="flow_firstVerticalBias"/>
  130. <attr format="enum" name="flow_firstVerticalStyle">
  131. <enum name="spread" value="0"/>
  132. <enum name="spread_inside" value="1"/>
  133. <enum name="packed" value="2"/>
  134. </attr>
  135. <attr format="float" name="flow_horizontalAlign">
  136. <enum name="start" value="0"/>
  137. <enum name="end" value="1"/>
  138. <enum name="center" value="2"/>
  139. </attr>
  140. <attr format="float" name="flow_horizontalBias"/>
  141. <attr format="dimension" name="flow_horizontalGap"/>
  142. <attr format="enum" name="flow_horizontalStyle">
  143. <enum name="spread" value="0"/>
  144. <enum name="spread_inside" value="1"/>
  145. <enum name="packed" value="2"/>
  146. </attr>
  147. <attr format="float" name="flow_lastHorizontalBias"/>
  148. <attr format="enum" name="flow_lastHorizontalStyle">
  149. <enum name="spread" value="0"/>
  150. <enum name="spread_inside" value="1"/>
  151. <enum name="packed" value="2"/>
  152. </attr>
  153. <attr format="float" name="flow_lastVerticalBias"/>
  154. <attr format="enum" name="flow_lastVerticalStyle">
  155. <enum name="spread" value="0"/>
  156. <enum name="spread_inside" value="1"/>
  157. <enum name="packed" value="2"/>
  158. </attr>
  159. <attr format="integer" name="flow_maxElementsWrap"/>
  160. <attr format="dimension" name="flow_padding"/>
  161. <attr format="enum" name="flow_verticalAlign">
  162. <enum name="top" value="0"/>
  163. <enum name="bottom" value="1"/>
  164. <enum name="center" value="2"/>
  165. <enum name="baseline" value="3"/>
  166. </attr>
  167. <attr format="float" name="flow_verticalBias"/>
  168. <attr format="dimension" name="flow_verticalGap"/>
  169. <attr format="enum" name="flow_verticalStyle">
  170. <enum name="spread" value="0"/>
  171. <enum name="spread_inside" value="1"/>
  172. <enum name="packed" value="2"/>
  173. </attr>
  174. <attr format="enum" name="flow_wrapMode">
  175. <enum name="none" value="0"/>
  176. <enum name="chain" value="1"/>
  177. <enum name="aligned" value="2"/>
  178. </attr>
  179. <attr format="integer" name="framePosition"/>
  180. <attr format="reference" name="headerLayout"/>
  181. <attr format="dimension" name="height"/>
  182. <attr format="reference" name="hideMotionSpec"/>
  183. <attr format="boolean" name="isLightTheme"/>
  184. <attr format="boolean" name="isMaterial3Theme"/>
  185. <attr format="boolean" name="isMaterialTheme"/>
  186. <attr format="reference" name="itemShapeAppearance"/>
  187. <attr format="reference" name="itemShapeAppearanceOverlay"/>
  188. <attr format="color" name="itemTextColor"/>
  189. <attr format="reference" name="keyboardIcon"/>
  190. <attr format="reference" name="layoutDescription"/>
  191. <attr format="enum" name="layoutDuringTransition">
  192. <enum name="ignoreRequest" value="0"/>
  193. <enum name="honorRequest" value="1"/>
  194. </attr>
  195. <attr format="boolean" name="layout_constrainedHeight"/>
  196. <attr format="boolean" name="layout_constrainedWidth"/>
  197. <attr format="integer" name="layout_constraintBaseline_creator"/>
  198. <attr format="reference|enum" name="layout_constraintBaseline_toBaselineOf">
  199. <enum name="parent" value="0"/>
  200. </attr>
  201. <attr format="integer" name="layout_constraintBottom_creator"/>
  202. <attr format="reference|enum" name="layout_constraintBottom_toBottomOf">
  203. <enum name="parent" value="0"/>
  204. </attr>
  205. <attr format="reference|enum" name="layout_constraintBottom_toTopOf">
  206. <enum name="parent" value="0"/>
  207. </attr>
  208. <attr format="reference" name="layout_constraintCircle"/>
  209. <attr format="integer" name="layout_constraintCircleAngle"/>
  210. <attr format="dimension" name="layout_constraintCircleRadius"/>
  211. <attr format="string" name="layout_constraintDimensionRatio"/>
  212. <attr format="reference|enum" name="layout_constraintEnd_toEndOf">
  213. <enum name="parent" value="0"/>
  214. </attr>
  215. <attr format="reference|enum" name="layout_constraintEnd_toStartOf">
  216. <enum name="parent" value="0"/>
  217. </attr>
  218. <attr format="dimension" name="layout_constraintGuide_begin"/>
  219. <attr format="dimension" name="layout_constraintGuide_end"/>
  220. <attr format="float" name="layout_constraintGuide_percent"/>
  221. <attr name="layout_constraintHeight_default">
  222. <enum name="spread" value="0"/>
  223. <enum name="wrap" value="1"/>
  224. <enum name="percent" value="2"/>
  225. </attr>
  226. <attr format="dimension|enum" name="layout_constraintHeight_max">
  227. <enum name="wrap" value="-2"/>
  228. </attr>
  229. <attr format="dimension|enum" name="layout_constraintHeight_min">
  230. <enum name="wrap" value="-2"/>
  231. </attr>
  232. <attr format="float" name="layout_constraintHeight_percent"/>
  233. <attr format="float" name="layout_constraintHorizontal_bias"/>
  234. <attr format="enum" name="layout_constraintHorizontal_chainStyle">
  235. <enum name="spread" value="0"/>
  236. <enum name="spread_inside" value="1"/>
  237. <enum name="packed" value="2"/>
  238. </attr>
  239. <attr format="float" name="layout_constraintHorizontal_weight"/>
  240. <attr format="integer" name="layout_constraintLeft_creator"/>
  241. <attr format="reference|enum" name="layout_constraintLeft_toLeftOf">
  242. <enum name="parent" value="0"/>
  243. </attr>
  244. <attr format="reference|enum" name="layout_constraintLeft_toRightOf">
  245. <enum name="parent" value="0"/>
  246. </attr>
  247. <attr format="integer" name="layout_constraintRight_creator"/>
  248. <attr format="reference|enum" name="layout_constraintRight_toLeftOf">
  249. <enum name="parent" value="0"/>
  250. </attr>
  251. <attr format="reference|enum" name="layout_constraintRight_toRightOf">
  252. <enum name="parent" value="0"/>
  253. </attr>
  254. <attr format="reference|enum" name="layout_constraintStart_toEndOf">
  255. <enum name="parent" value="0"/>
  256. </attr>
  257. <attr format="reference|enum" name="layout_constraintStart_toStartOf">
  258. <enum name="parent" value="0"/>
  259. </attr>
  260. <attr format="string" name="layout_constraintTag"/>
  261. <attr format="integer" name="layout_constraintTop_creator"/>
  262. <attr format="reference|enum" name="layout_constraintTop_toBottomOf">
  263. <enum name="parent" value="0"/>
  264. </attr>
  265. <attr format="reference|enum" name="layout_constraintTop_toTopOf">
  266. <enum name="parent" value="0"/>
  267. </attr>
  268. <attr format="float" name="layout_constraintVertical_bias"/>
  269. <attr format="enum" name="layout_constraintVertical_chainStyle">
  270. <enum name="spread" value="0"/>
  271. <enum name="spread_inside" value="1"/>
  272. <enum name="packed" value="2"/>
  273. </attr>
  274. <attr format="float" name="layout_constraintVertical_weight"/>
  275. <attr name="layout_constraintWidth_default">
  276. <enum name="spread" value="0"/>
  277. <enum name="wrap" value="1"/>
  278. <enum name="percent" value="2"/>
  279. </attr>
  280. <attr format="dimension|enum" name="layout_constraintWidth_max">
  281. <enum name="wrap" value="-2"/>
  282. </attr>
  283. <attr format="dimension|enum" name="layout_constraintWidth_min">
  284. <enum name="wrap" value="-2"/>
  285. </attr>
  286. <attr format="float" name="layout_constraintWidth_percent"/>
  287. <attr format="dimension" name="layout_editor_absoluteX"/>
  288. <attr format="dimension" name="layout_editor_absoluteY"/>
  289. <attr format="dimension" name="layout_goneMarginBottom"/>
  290. <attr format="dimension" name="layout_goneMarginEnd"/>
  291. <attr format="dimension" name="layout_goneMarginLeft"/>
  292. <attr format="dimension" name="layout_goneMarginRight"/>
  293. <attr format="dimension" name="layout_goneMarginStart"/>
  294. <attr format="dimension" name="layout_goneMarginTop"/>
  295. <attr name="layout_optimizationLevel">
  296. <flag name="none" value="0"/>
  297. <flag name="standard" value="7"/> <!-- direct, barriers, chains -->
  298. <flag name="direct" value="1"/>
  299. <flag name="barrier" value="2"/>
  300. <flag name="chains" value="4"/>
  301. <flag name="dimensions" value="8"/>
  302. <flag name="ratio" value="16"/>
  303. <flag name="groups" value="32"/>
  304. <flag name="graph" value="64"/>
  305. <flag name="graph_wrap" value="128"/>
  306. </attr>
  307. <attr format="reference" name="linearProgressIndicatorStyle"/>
  308. <attr format="reference" name="materialButtonOutlinedStyle"/>
  309. <attr format="reference" name="materialButtonStyle"/>
  310. <attr format="reference" name="materialButtonToggleGroupStyle"/>
  311. <attr format="reference" name="materialCalendarDay"/>
  312. <attr format="reference" name="materialCalendarDayOfWeekLabel"/>
  313. <attr format="reference" name="materialCalendarFullscreenTheme"/>
  314. <attr format="reference" name="materialCalendarHeaderCancelButton"/>
  315. <attr format="reference" name="materialCalendarHeaderConfirmButton"/>
  316. <attr format="reference" name="materialCalendarHeaderDivider"/>
  317. <attr format="reference" name="materialCalendarHeaderLayout"/>
  318. <attr format="reference" name="materialCalendarHeaderSelection"/>
  319. <attr format="reference" name="materialCalendarHeaderTitle"/>
  320. <attr format="reference" name="materialCalendarHeaderToggleButton"/>
  321. <attr format="reference" name="materialCalendarMonth"/>
  322. <attr format="reference" name="materialCalendarMonthNavigationButton"/>
  323. <attr format="reference" name="materialCalendarStyle"/>
  324. <attr format="reference" name="materialCalendarTheme"/>
  325. <attr format="reference" name="materialCalendarYearNavigationButton"/>
  326. <attr format="reference" name="materialCardViewElevatedStyle"/>
  327. <attr format="reference" name="materialCardViewFilledStyle"/>
  328. <attr format="reference" name="materialCardViewOutlinedStyle"/>
  329. <attr format="reference" name="materialCardViewStyle"/>
  330. <attr format="dimension" name="materialCircleRadius"/>
  331. <attr format="reference" name="materialClockStyle"/>
  332. <attr format="reference" name="materialDisplayDividerStyle"/>
  333. <attr name="materialDividerHeavyStyle" type="reference"/>
  334. <attr name="materialDividerStyle" type="reference"/>
  335. <attr format="reference" name="materialThemeOverlay"/>
  336. <attr format="reference" name="materialTimePickerStyle"/>
  337. <attr format="reference" name="materialTimePickerTheme"/>
  338. <attr format="reference" name="materialTimePickerTitleStyle"/>
  339. <attr format="dimension" name="minTouchTargetSize"/>
  340. <attr format="integer" name="motionDurationLong1"/>
  341. <attr format="integer" name="motionDurationLong2"/>
  342. <attr format="integer" name="motionDurationMedium1"/>
  343. <attr format="integer" name="motionDurationMedium2"/>
  344. <attr format="integer" name="motionDurationShort1"/>
  345. <attr format="integer" name="motionDurationShort2"/>
  346. <attr format="string" name="motionEasingAccelerated"/>
  347. <attr format="string" name="motionEasingDecelerated"/>
  348. <attr format="string" name="motionEasingEmphasized"/>
  349. <attr format="string" name="motionEasingLinear"/>
  350. <attr format="string" name="motionEasingStandard"/>
  351. <attr format="enum|string" name="motionPath">
  352. <enum name="linear" value="0"/>
  353. <enum name="arc" value="1"/>
  354. </attr>
  355. <attr format="float" name="motionPathRotate"/>
  356. <attr format="float" name="motionProgress"/>
  357. <attr format="float" name="motionStagger"/>
  358. <attr format="reference|string" name="motionTarget"/>
  359. <attr format="color" name="navigationIconTint"/>
  360. <attr format="reference" name="navigationRailStyle"/>
  361. <attr format="reference" name="navigationViewStyle"/>
  362. <attr format="reference" name="nestedScrollViewStyle"/>
  363. <attr format="enum" name="pathMotionArc">
  364. <enum name="none" value="0"/>
  365. <enum name="startVertical" value="1"/>
  366. <enum name="startHorizontal" value="2"/>
  367. <enum name="flip" value="3"/>
  368. </attr>
  369. <attr format="float" name="path_percent"/>
  370. <attr format="float" name="perpendicularPath_percent"/>
  371. <attr format="reference|enum" name="pivotAnchor">
  372. <enum name="parent" value="0"/>
  373. </attr>
  374. <attr name="placeholder_emptyVisibility">
  375. <enum name="visible" value="0"/>
  376. <enum name="invisible" value="4"/>
  377. <enum name="gone" value="8"/>
  378. </attr>
  379. <attr format="reference" name="popupMenuBackground"/>
  380. <attr format="reference" name="recyclerViewStyle"/>
  381. <attr format="color" name="rippleColor"/>
  382. <attr format="color|reference" name="scrimBackground"/>
  383. <attr format="boolean" name="selectionRequired"/>
  384. <attr format="reference" name="shapeAppearanceLargeComponent"/>
  385. <attr format="reference" name="shapeAppearanceMediumComponent"/>
  386. <attr format="reference" name="shapeAppearanceSmallComponent"/>
  387. <attr format="reference" name="showMotionSpec"/>
  388. <attr format="boolean" name="singleSelection"/>
  389. <attr format="float" name="sizePercent"/>
  390. <attr format="reference" name="sliderStyle"/>
  391. <attr format="color" name="strokeColor"/>
  392. <attr format="dimension" name="strokeWidth"/>
  393. <attr format="reference" name="tabSecondaryStyle"/>
  394. <attr format="reference" name="tabStyle"/>
  395. <attr format="reference" name="targetId"/>
  396. <attr format="reference" name="textAppearanceBody1"/>
  397. <attr format="reference" name="textAppearanceBody2"/>
  398. <attr format="reference" name="textAppearanceBodyLarge"/>
  399. <attr format="reference" name="textAppearanceBodyMedium"/>
  400. <attr format="reference" name="textAppearanceBodySmall"/>
  401. <attr format="reference" name="textAppearanceButton"/>
  402. <attr format="reference" name="textAppearanceCaption"/>
  403. <attr format="reference" name="textAppearanceDisplayLarge"/>
  404. <attr format="reference" name="textAppearanceDisplayMedium"/>
  405. <attr format="reference" name="textAppearanceDisplaySmall"/>
  406. <attr format="reference" name="textAppearanceHeadline1"/>
  407. <attr format="reference" name="textAppearanceHeadline2"/>
  408. <attr format="reference" name="textAppearanceHeadline3"/>
  409. <attr format="reference" name="textAppearanceHeadline4"/>
  410. <attr format="reference" name="textAppearanceHeadline5"/>
  411. <attr format="reference" name="textAppearanceHeadline6"/>
  412. <attr format="reference" name="textAppearanceHeadlineLarge"/>
  413. <attr format="reference" name="textAppearanceHeadlineMedium"/>
  414. <attr format="reference" name="textAppearanceHeadlineSmall"/>
  415. <attr format="reference" name="textAppearanceLabelLarge"/>
  416. <attr format="reference" name="textAppearanceLabelMedium"/>
  417. <attr format="reference" name="textAppearanceLabelSmall"/>
  418. <attr format="boolean" name="textAppearanceLineHeightEnabled"/>
  419. <attr format="reference" name="textAppearanceOverline"/>
  420. <attr format="reference" name="textAppearanceSubtitle1"/>
  421. <attr format="reference" name="textAppearanceSubtitle2"/>
  422. <attr format="reference" name="textAppearanceTitleLarge"/>
  423. <attr format="reference" name="textAppearanceTitleMedium"/>
  424. <attr format="reference" name="textAppearanceTitleSmall"/>
  425. <attr format="reference" name="textInputFilledDenseStyle"/>
  426. <attr format="reference" name="textInputFilledExposedDropdownMenuStyle"/>
  427. <attr format="reference" name="textInputFilledStyle"/>
  428. <attr format="reference" name="textInputOutlinedDenseStyle"/>
  429. <attr format="reference" name="textInputOutlinedExposedDropdownMenuStyle"/>
  430. <attr format="reference" name="textInputOutlinedStyle"/>
  431. <attr format="reference" name="textInputStyle"/>
  432. <attr format="dimension" name="themeLineHeight"/>
  433. <attr format="string" name="title"/>
  434. <attr format="reference" name="toolbarSurfaceStyle"/>
  435. <attr format="reference" name="tooltipStyle"/>
  436. <attr format="reference" name="touchAnchorId"/>
  437. <attr format="enum" name="touchAnchorSide">
  438. <enum name="top" value="0"/>
  439. <enum name="left" value="1"/>
  440. <enum name="right" value="2"/>
  441. <enum name="bottom" value="3"/>
  442. <enum name="middle" value="4"/>
  443. <enum name="start" value="5"/>
  444. <enum name="end" value="6"/>
  445. </attr>
  446. <attr format="color" name="trackColor"/>
  447. <attr format="string|enum" name="transitionEasing">
  448. <enum name="standard" value="0"/>
  449. <enum name="accelerate" value="1"/>
  450. <enum name="decelerate" value="2"/>
  451. <enum name="linear" value="3"/>
  452. </attr>
  453. <attr format="float" name="transitionPathRotate"/>
  454. <attr format="reference" name="transitionShapeAppearance"/>
  455. <attr format="boolean" name="useMaterialThemeColors"/>
  456. <attr format="enum" name="visibilityMode">
  457. <enum name="normal" value="0"/>
  458. <enum name="ignore" value="1"/>
  459. </attr>
  460. <attr format="integer" name="waveDecay"/>
  461. <attr format="float|dimension" name="waveOffset"/>
  462. <attr format="float" name="wavePeriod"/>
  463. <attr format="enum" name="waveShape">
  464. <enum name="sin" value="0"/>
  465. <enum name="square" value="1"/>
  466. <enum name="triangle" value="2"/>
  467. <enum name="sawtooth" value="3"/>
  468. <enum name="reverseSawtooth" value="4"/>
  469. <enum name="cos" value="5"/>
  470. <enum name="bounce" value="6"/>
  471. </attr>
  472. <attr format="enum" name="waveVariesBy">
  473. <enum name="position" value="0"/>
  474. <enum name="path" value="1"/>
  475. </attr>
  476. <bool name="abc_action_bar_embed_tabs">true</bool>
  477. <bool name="abc_config_actionMenuItemAllCaps">true</bool>
  478. <bool name="m3_sys_typescale_body_large_text_all_caps">false</bool>
  479. <bool name="m3_sys_typescale_body_medium_text_all_caps">false</bool>
  480. <bool name="m3_sys_typescale_body_small_text_all_caps">false</bool>
  481. <bool name="m3_sys_typescale_display_large_text_all_caps">false</bool>
  482. <bool name="m3_sys_typescale_display_medium_text_all_caps">false</bool>
  483. <bool name="m3_sys_typescale_display_small_text_all_caps">false</bool>
  484. <bool name="m3_sys_typescale_headline_large_text_all_caps">false</bool>
  485. <bool name="m3_sys_typescale_headline_medium_text_all_caps">false</bool>
  486. <bool name="m3_sys_typescale_headline_small_text_all_caps">false</bool>
  487. <bool name="m3_sys_typescale_label_large_text_all_caps">false</bool>
  488. <bool name="m3_sys_typescale_label_medium_text_all_caps">false</bool>
  489. <bool name="m3_sys_typescale_label_small_text_all_caps">false</bool>
  490. <bool name="m3_sys_typescale_title_large_text_all_caps">false</bool>
  491. <bool name="m3_sys_typescale_title_medium_text_all_caps">false</bool>
  492. <bool name="m3_sys_typescale_title_small_text_all_caps">false</bool>
  493. <bool name="mtrl_btn_textappearance_all_caps">true</bool>
  494. <color name="abc_decor_view_status_guard">#ff000000</color>
  495. <color name="abc_decor_view_status_guard_light">#ffffffff</color>
  496. <color name="abc_search_url_text_normal">#7fa87f</color>
  497. <color name="abc_search_url_text_pressed">@android:color/black</color>
  498. <color name="abc_search_url_text_selected">@android:color/black</color>
  499. <color name="accent_material_dark">@color/material_deep_teal_200</color>
  500. <color name="accent_material_light">@color/material_deep_teal_500</color>
  501. <color name="androidx_core_ripple_material_light">#1f000000</color>
  502. <color name="androidx_core_secondary_text_default_material_light">#8a000000</color>
  503. <color name="background_floating_material_dark">@color/material_grey_800</color>
  504. <color name="background_floating_material_light">@android:color/white</color>
  505. <color name="background_material_dark">@color/material_grey_850</color>
  506. <color name="background_material_light">@color/material_grey_50</color>
  507. <color name="bright_foreground_disabled_material_dark">#80ffffff</color>
  508. <color name="bright_foreground_disabled_material_light">#80000000</color>
  509. <color name="bright_foreground_inverse_material_dark">@color/bright_foreground_material_light</color>
  510. <color name="bright_foreground_inverse_material_light">@color/bright_foreground_material_dark</color>
  511. <color name="bright_foreground_material_dark">@android:color/white</color>
  512. <color name="bright_foreground_material_light">@android:color/black</color>
  513. <color name="button_material_dark">#ff5a595b</color>
  514. <color name="button_material_light">#ffd6d7d7</color>
  515. <color name="cardview_dark_background">#FF424242</color>
  516. <color name="cardview_light_background">#FFFFFFFF</color>
  517. <color name="cardview_shadow_end_color">#03000000</color>
  518. <color name="cardview_shadow_start_color">#37000000</color>
  519. <color name="design_bottom_navigation_shadow_color">#14000000</color>
  520. <color name="design_dark_default_color_background">#121212</color>
  521. <color name="design_dark_default_color_error">#CF6679</color>
  522. <color name="design_dark_default_color_on_background">#FFFFFF</color>
  523. <color name="design_dark_default_color_on_error">#000000</color>
  524. <color name="design_dark_default_color_on_primary">#000000</color>
  525. <color name="design_dark_default_color_on_secondary">#000000</color>
  526. <color name="design_dark_default_color_on_surface">#FFFFFF</color>
  527. <color name="design_dark_default_color_primary">#BA86FC</color>
  528. <color name="design_dark_default_color_primary_dark">#000000</color>
  529. <color name="design_dark_default_color_primary_variant">#3700B3</color>
  530. <color name="design_dark_default_color_secondary">#03DAC6</color>
  531. <color name="design_dark_default_color_secondary_variant">#03DAC6</color>
  532. <color name="design_dark_default_color_surface">#121212</color>
  533. <color name="design_default_color_background">#FFFFFF</color>
  534. <color name="design_default_color_error">#B00020</color>
  535. <color name="design_default_color_on_background">#000000</color>
  536. <color name="design_default_color_on_error">#FFFFFF</color>
  537. <color name="design_default_color_on_primary">#FFFFFF</color>
  538. <color name="design_default_color_on_secondary">#000000</color>
  539. <color name="design_default_color_on_surface">#000000</color>
  540. <color name="design_default_color_primary">#6200EE</color>
  541. <color name="design_default_color_primary_dark">#3700B3</color>
  542. <color name="design_default_color_primary_variant">#3700B3</color>
  543. <color name="design_default_color_secondary">#03DAC6</color>
  544. <color name="design_default_color_secondary_variant">#018786</color>
  545. <color name="design_default_color_surface">#FFFFFF</color>
  546. <color name="design_fab_shadow_end_color">@android:color/transparent</color>
  547. <color name="design_fab_shadow_mid_color">#14000000</color>
  548. <color name="design_fab_shadow_start_color">#44000000</color>
  549. <color name="design_fab_stroke_end_inner_color">#0A000000</color>
  550. <color name="design_fab_stroke_end_outer_color">#0F000000</color>
  551. <color name="design_fab_stroke_top_inner_color">#1AFFFFFF</color>
  552. <color name="design_fab_stroke_top_outer_color">#2EFFFFFF</color>
  553. <color name="design_snackbar_background_color">#323232</color>
  554. <color name="dim_foreground_disabled_material_dark">#80bebebe</color>
  555. <color name="dim_foreground_disabled_material_light">#80323232</color>
  556. <color name="dim_foreground_material_dark">#ffbebebe</color>
  557. <color name="dim_foreground_material_light">#ff323232</color>
  558. <color name="error_color_material_dark">#ff7043</color>
  559. <color name="error_color_material_light">#ff5722</color>
  560. <color name="foreground_material_dark">@android:color/white</color>
  561. <color name="foreground_material_light">@android:color/black</color>
  562. <color name="highlighted_text_material_dark">#6680cbc4</color>
  563. <color name="highlighted_text_material_light">#66009688</color>
  564. <color name="m3_ref_palette_error0">#ff000000</color>
  565. <color name="m3_ref_palette_error10">#ff410e0b</color>
  566. <color name="m3_ref_palette_error100">#ffffffff</color>
  567. <color name="m3_ref_palette_error20">#ff601410</color>
  568. <color name="m3_ref_palette_error30">#ff8c1d18</color>
  569. <color name="m3_ref_palette_error40">#ffb3261e</color>
  570. <color name="m3_ref_palette_error50">#ffdc362e</color>
  571. <color name="m3_ref_palette_error60">#ffe46962</color>
  572. <color name="m3_ref_palette_error70">#ffec928e</color>
  573. <color name="m3_ref_palette_error80">#fff2b8b5</color>
  574. <color name="m3_ref_palette_error90">#fff9dedc</color>
  575. <color name="m3_ref_palette_error95">#fffceeee</color>
  576. <color name="m3_ref_palette_error99">#fffffbf9</color>
  577. <color name="m3_ref_palette_neutral0">#ff000000</color>
  578. <color name="m3_ref_palette_neutral10">#ff1c1b1f</color>
  579. <color name="m3_ref_palette_neutral100">#ffffffff</color>
  580. <color name="m3_ref_palette_neutral20">#ff313033</color>
  581. <color name="m3_ref_palette_neutral30">#ff484649</color>
  582. <color name="m3_ref_palette_neutral40">#ff605d62</color>
  583. <color name="m3_ref_palette_neutral50">#ff787579</color>
  584. <color name="m3_ref_palette_neutral60">#ff939094</color>
  585. <color name="m3_ref_palette_neutral70">#ffaeaaae</color>
  586. <color name="m3_ref_palette_neutral80">#ffc9c5ca</color>
  587. <color name="m3_ref_palette_neutral90">#ffe6e1e5</color>
  588. <color name="m3_ref_palette_neutral95">#fff4eff4</color>
  589. <color name="m3_ref_palette_neutral99">#fffffbfe</color>
  590. <color name="m3_ref_palette_neutral_variant0">#ff000000</color>
  591. <color name="m3_ref_palette_neutral_variant10">#ff1d1a22</color>
  592. <color name="m3_ref_palette_neutral_variant100">#ffffffff</color>
  593. <color name="m3_ref_palette_neutral_variant20">#ff322f37</color>
  594. <color name="m3_ref_palette_neutral_variant30">#ff49454f</color>
  595. <color name="m3_ref_palette_neutral_variant40">#ff605d66</color>
  596. <color name="m3_ref_palette_neutral_variant50">#ff79747e</color>
  597. <color name="m3_ref_palette_neutral_variant60">#ff938f99</color>
  598. <color name="m3_ref_palette_neutral_variant70">#ffaea9b4</color>
  599. <color name="m3_ref_palette_neutral_variant80">#ffcac4d0</color>
  600. <color name="m3_ref_palette_neutral_variant90">#ffe7e0ec</color>
  601. <color name="m3_ref_palette_neutral_variant95">#fff5eefa</color>
  602. <color name="m3_ref_palette_neutral_variant99">#fffffbfe</color>
  603. <color name="m3_ref_palette_primary0">#ff000000</color>
  604. <color name="m3_ref_palette_primary10">#ff21005d</color>
  605. <color name="m3_ref_palette_primary100">#ffffffff</color>
  606. <color name="m3_ref_palette_primary20">#ff381e72</color>
  607. <color name="m3_ref_palette_primary30">#ff4f378b</color>
  608. <color name="m3_ref_palette_primary40">#ff6750a4</color>
  609. <color name="m3_ref_palette_primary50">#ff7f67be</color>
  610. <color name="m3_ref_palette_primary60">#ff9a82db</color>
  611. <color name="m3_ref_palette_primary70">#ffb69df8</color>
  612. <color name="m3_ref_palette_primary80">#ffd0bcff</color>
  613. <color name="m3_ref_palette_primary90">#ffeaddff</color>
  614. <color name="m3_ref_palette_primary95">#fff6edff</color>
  615. <color name="m3_ref_palette_primary99">#fffffbfe</color>
  616. <color name="m3_ref_palette_secondary0">#ff000000</color>
  617. <color name="m3_ref_palette_secondary10">#ff1d192b</color>
  618. <color name="m3_ref_palette_secondary100">#ffffffff</color>
  619. <color name="m3_ref_palette_secondary20">#ff332d41</color>
  620. <color name="m3_ref_palette_secondary30">#ff4a4458</color>
  621. <color name="m3_ref_palette_secondary40">#ff625b71</color>
  622. <color name="m3_ref_palette_secondary50">#ff7a7289</color>
  623. <color name="m3_ref_palette_secondary60">#ff958da5</color>
  624. <color name="m3_ref_palette_secondary70">#ffb0a7c0</color>
  625. <color name="m3_ref_palette_secondary80">#ffccc2dc</color>
  626. <color name="m3_ref_palette_secondary90">#ffe8def8</color>
  627. <color name="m3_ref_palette_secondary95">#fff6edff</color>
  628. <color name="m3_ref_palette_secondary99">#fffffbfe</color>
  629. <color name="m3_ref_palette_tertiary0">#ff000000</color>
  630. <color name="m3_ref_palette_tertiary10">#ff31111d</color>
  631. <color name="m3_ref_palette_tertiary100">#ffffffff</color>
  632. <color name="m3_ref_palette_tertiary20">#ff492532</color>
  633. <color name="m3_ref_palette_tertiary30">#ff633b48</color>
  634. <color name="m3_ref_palette_tertiary40">#ff7d5260</color>
  635. <color name="m3_ref_palette_tertiary50">#ff986977</color>
  636. <color name="m3_ref_palette_tertiary60">#ffb58392</color>
  637. <color name="m3_ref_palette_tertiary70">#ffd29dac</color>
  638. <color name="m3_ref_palette_tertiary80">#ffefb8c8</color>
  639. <color name="m3_ref_palette_tertiary90">#ffffd8e4</color>
  640. <color name="m3_ref_palette_tertiary95">#ffffecf1</color>
  641. <color name="m3_ref_palette_tertiary99">#fffffbfa</color>
  642. <color name="m3_sys_color_dark_background">@color/m3_ref_palette_neutral10</color>
  643. <color name="m3_sys_color_dark_error">@color/m3_ref_palette_error80</color>
  644. <color name="m3_sys_color_dark_error_container">@color/m3_ref_palette_error30</color>
  645. <color name="m3_sys_color_dark_inverse_on_surface">@color/m3_ref_palette_neutral20</color>
  646. <color name="m3_sys_color_dark_inverse_primary">@color/m3_ref_palette_primary40</color>
  647. <color name="m3_sys_color_dark_inverse_surface">@color/m3_ref_palette_neutral90</color>
  648. <color name="m3_sys_color_dark_on_background">@color/m3_ref_palette_neutral90</color>
  649. <color name="m3_sys_color_dark_on_error">@color/m3_ref_palette_error20</color>
  650. <color name="m3_sys_color_dark_on_error_container">@color/m3_ref_palette_error80</color>
  651. <color name="m3_sys_color_dark_on_primary">@color/m3_ref_palette_primary20</color>
  652. <color name="m3_sys_color_dark_on_primary_container">@color/m3_ref_palette_primary90</color>
  653. <color name="m3_sys_color_dark_on_secondary">@color/m3_ref_palette_secondary20</color>
  654. <color name="m3_sys_color_dark_on_secondary_container">@color/m3_ref_palette_secondary90</color>
  655. <color name="m3_sys_color_dark_on_surface">@color/m3_ref_palette_neutral90</color>
  656. <color name="m3_sys_color_dark_on_surface_variant">@color/m3_ref_palette_neutral_variant80</color>
  657. <color name="m3_sys_color_dark_on_tertiary">@color/m3_ref_palette_tertiary20</color>
  658. <color name="m3_sys_color_dark_on_tertiary_container">@color/m3_ref_palette_tertiary90</color>
  659. <color name="m3_sys_color_dark_outline">@color/m3_ref_palette_neutral_variant60</color>
  660. <color name="m3_sys_color_dark_primary">@color/m3_ref_palette_primary80</color>
  661. <color name="m3_sys_color_dark_primary_container">@color/m3_ref_palette_primary30</color>
  662. <color name="m3_sys_color_dark_secondary">@color/m3_ref_palette_secondary80</color>
  663. <color name="m3_sys_color_dark_secondary_container">@color/m3_ref_palette_secondary30</color>
  664. <color name="m3_sys_color_dark_surface">@color/m3_ref_palette_neutral10</color>
  665. <color name="m3_sys_color_dark_surface_variant">@color/m3_ref_palette_neutral_variant30</color>
  666. <color name="m3_sys_color_dark_tertiary">@color/m3_ref_palette_tertiary80</color>
  667. <color name="m3_sys_color_dark_tertiary_container">@color/m3_ref_palette_tertiary30</color>
  668. <color name="m3_sys_color_light_background">@color/m3_ref_palette_neutral99</color>
  669. <color name="m3_sys_color_light_error">@color/m3_ref_palette_error40</color>
  670. <color name="m3_sys_color_light_error_container">@color/m3_ref_palette_error90</color>
  671. <color name="m3_sys_color_light_inverse_on_surface">@color/m3_ref_palette_neutral95</color>
  672. <color name="m3_sys_color_light_inverse_primary">@color/m3_ref_palette_primary80</color>
  673. <color name="m3_sys_color_light_inverse_surface">@color/m3_ref_palette_neutral20</color>
  674. <color name="m3_sys_color_light_on_background">@color/m3_ref_palette_neutral10</color>
  675. <color name="m3_sys_color_light_on_error">@color/m3_ref_palette_error100</color>
  676. <color name="m3_sys_color_light_on_error_container">@color/m3_ref_palette_error10</color>
  677. <color name="m3_sys_color_light_on_primary">@color/m3_ref_palette_primary100</color>
  678. <color name="m3_sys_color_light_on_primary_container">@color/m3_ref_palette_primary10</color>
  679. <color name="m3_sys_color_light_on_secondary">@color/m3_ref_palette_secondary100</color>
  680. <color name="m3_sys_color_light_on_secondary_container">@color/m3_ref_palette_secondary10</color>
  681. <color name="m3_sys_color_light_on_surface">@color/m3_ref_palette_neutral10</color>
  682. <color name="m3_sys_color_light_on_surface_variant">@color/m3_ref_palette_neutral_variant30</color>
  683. <color name="m3_sys_color_light_on_tertiary">@color/m3_ref_palette_tertiary100</color>
  684. <color name="m3_sys_color_light_on_tertiary_container">@color/m3_ref_palette_tertiary10</color>
  685. <color name="m3_sys_color_light_outline">@color/m3_ref_palette_neutral_variant50</color>
  686. <color name="m3_sys_color_light_primary">@color/m3_ref_palette_primary40</color>
  687. <color name="m3_sys_color_light_primary_container">@color/m3_ref_palette_primary90</color>
  688. <color name="m3_sys_color_light_secondary">@color/m3_ref_palette_secondary40</color>
  689. <color name="m3_sys_color_light_secondary_container">@color/m3_ref_palette_secondary90</color>
  690. <color name="m3_sys_color_light_surface">@color/m3_ref_palette_neutral99</color>
  691. <color name="m3_sys_color_light_surface_variant">@color/m3_ref_palette_neutral_variant90</color>
  692. <color name="m3_sys_color_light_tertiary">@color/m3_ref_palette_tertiary40</color>
  693. <color name="m3_sys_color_light_tertiary_container">@color/m3_ref_palette_tertiary90</color>
  694. <color name="material_blue_grey_800">#ff37474f</color>
  695. <color name="material_blue_grey_900">#ff263238</color>
  696. <color name="material_blue_grey_950">#ff21272b</color>
  697. <color name="material_deep_teal_200">#ff80cbc4</color>
  698. <color name="material_deep_teal_500">#ff008577</color>
  699. <color name="material_grey_100">#fff5f5f5</color>
  700. <color name="material_grey_300">#ffe0e0e0</color>
  701. <color name="material_grey_50">#fffafafa</color>
  702. <color name="material_grey_600">#ff757575</color>
  703. <color name="material_grey_800">#ff424242</color>
  704. <color name="material_grey_850">#ff303030</color>
  705. <color name="material_grey_900">#ff212121</color>
  706. <color name="mtrl_btn_text_color_disabled">#61000000</color>
  707. <color name="mtrl_btn_transparent_bg_color">#00ffffff</color>
  708. <color name="mtrl_scrim_color">#52000000</color>
  709. <color name="mtrl_textinput_default_box_stroke_color">#6B000000</color>
  710. <color name="mtrl_textinput_disabled_color">#1F000000</color>
  711. <color name="mtrl_textinput_filled_box_default_background_color">#0A000000</color>
  712. <color name="mtrl_textinput_focused_box_stroke_color">#00000000</color>
  713. <color name="mtrl_textinput_hovered_box_stroke_color">#DE000000</color>
  714. <color name="notification_action_color_filter">#ffffffff</color>
  715. <color name="notification_icon_bg_color">#ff9e9e9e</color>
  716. <color name="primary_dark_material_dark">@android:color/black</color>
  717. <color name="primary_dark_material_light">@color/material_grey_600</color>
  718. <color name="primary_material_dark">@color/material_grey_900</color>
  719. <color name="primary_material_light">@color/material_grey_100</color>
  720. <color name="primary_text_default_material_dark">#ffffffff</color>
  721. <color name="primary_text_default_material_light">#de000000</color>
  722. <color name="primary_text_disabled_material_dark">#4Dffffff</color>
  723. <color name="primary_text_disabled_material_light">#39000000</color>
  724. <color name="ripple_material_dark">#33ffffff</color>
  725. <color name="ripple_material_light">#1f000000</color>
  726. <color name="secondary_text_default_material_dark">#b3ffffff</color>
  727. <color name="secondary_text_default_material_light">#8a000000</color>
  728. <color name="secondary_text_disabled_material_dark">#36ffffff</color>
  729. <color name="secondary_text_disabled_material_light">#24000000</color>
  730. <color name="switch_thumb_disabled_material_dark">#ff616161</color>
  731. <color name="switch_thumb_disabled_material_light">#ffbdbdbd</color>
  732. <color name="switch_thumb_normal_material_dark">#ffbdbdbd</color>
  733. <color name="switch_thumb_normal_material_light">#fff1f1f1</color>
  734. <color name="test_color">#000</color>
  735. <color name="tooltip_background_dark">#e6616161</color>
  736. <color name="tooltip_background_light">#e6FFFFFF</color>
  737. <dimen name="abc_action_bar_content_inset_material">16dp</dimen>
  738. <dimen name="abc_action_bar_content_inset_with_nav">72dp</dimen>
  739. <dimen name="abc_action_bar_default_height_material">56dp</dimen>
  740. <dimen name="abc_action_bar_default_padding_end_material">0dp</dimen>
  741. <dimen name="abc_action_bar_default_padding_start_material">0dp</dimen>
  742. <dimen name="abc_action_bar_elevation_material">4dp</dimen>
  743. <dimen name="abc_action_bar_icon_vertical_padding_material">16dp</dimen>
  744. <dimen name="abc_action_bar_overflow_padding_end_material">10dp</dimen>
  745. <dimen name="abc_action_bar_overflow_padding_start_material">6dp</dimen>
  746. <dimen name="abc_action_bar_stacked_max_height">48dp</dimen>
  747. <dimen name="abc_action_bar_stacked_tab_max_width">180dp</dimen>
  748. <dimen name="abc_action_bar_subtitle_bottom_margin_material">5dp</dimen>
  749. <dimen name="abc_action_bar_subtitle_top_margin_material">-3dp</dimen>
  750. <dimen name="abc_action_button_min_height_material">48dp</dimen>
  751. <dimen name="abc_action_button_min_width_material">48dp</dimen>
  752. <dimen name="abc_action_button_min_width_overflow_material">36dp</dimen>
  753. <dimen name="abc_alert_dialog_button_bar_height">48dp</dimen>
  754. <dimen name="abc_alert_dialog_button_dimen">48dp</dimen>
  755. <dimen name="abc_button_inset_horizontal_material">@dimen/abc_control_inset_material</dimen>
  756. <dimen name="abc_button_inset_vertical_material">6dp</dimen>
  757. <dimen name="abc_button_padding_horizontal_material">8dp</dimen>
  758. <dimen name="abc_button_padding_vertical_material">@dimen/abc_control_padding_material</dimen>
  759. <dimen name="abc_cascading_menus_min_smallest_width">720dp</dimen>
  760. <dimen name="abc_config_prefDialogWidth">320dp</dimen>
  761. <dimen name="abc_control_corner_material">2dp</dimen>
  762. <dimen name="abc_control_inset_material">4dp</dimen>
  763. <dimen name="abc_control_padding_material">4dp</dimen>
  764. <dimen name="abc_dialog_corner_radius_material">2dp</dimen>
  765. <item name="abc_dialog_fixed_height_major" type="dimen">80%</item>
  766. <item name="abc_dialog_fixed_height_minor" type="dimen">100%</item>
  767. <item name="abc_dialog_fixed_width_major" type="dimen">320dp</item>
  768. <item name="abc_dialog_fixed_width_minor" type="dimen">320dp</item>
  769. <dimen name="abc_dialog_list_padding_bottom_no_buttons">8dp</dimen>
  770. <dimen name="abc_dialog_list_padding_top_no_title">8dp</dimen>
  771. <item name="abc_dialog_min_width_major" type="dimen">65%</item>
  772. <item name="abc_dialog_min_width_minor" type="dimen">95%</item>
  773. <dimen name="abc_dialog_padding_material">24dp</dimen>
  774. <dimen name="abc_dialog_padding_top_material">18dp</dimen>
  775. <dimen name="abc_dialog_title_divider_material">8dp</dimen>
  776. <item format="float" name="abc_disabled_alpha_material_dark" type="dimen">0.30</item>
  777. <item format="float" name="abc_disabled_alpha_material_light" type="dimen">0.26</item>
  778. <dimen name="abc_dropdownitem_icon_width">32dip</dimen>
  779. <dimen name="abc_dropdownitem_text_padding_left">8dip</dimen>
  780. <dimen name="abc_dropdownitem_text_padding_right">8dip</dimen>
  781. <dimen name="abc_edit_text_inset_bottom_material">7dp</dimen>
  782. <dimen name="abc_edit_text_inset_horizontal_material">4dp</dimen>
  783. <dimen name="abc_edit_text_inset_top_material">10dp</dimen>
  784. <dimen name="abc_floating_window_z">16dp</dimen>
  785. <dimen name="abc_list_item_height_large_material">80dp</dimen>
  786. <dimen name="abc_list_item_height_material">64dp</dimen>
  787. <dimen name="abc_list_item_height_small_material">48dp</dimen>
  788. <dimen name="abc_list_item_padding_horizontal_material">@dimen/abc_action_bar_content_inset_material</dimen>
  789. <dimen name="abc_panel_menu_list_width">296dp</dimen>
  790. <dimen name="abc_progress_bar_height_material">4dp</dimen>
  791. <dimen name="abc_search_view_preferred_height">48dip</dimen>
  792. <dimen name="abc_search_view_preferred_width">320dip</dimen>
  793. <dimen name="abc_seekbar_track_background_height_material">2dp</dimen>
  794. <dimen name="abc_seekbar_track_progress_height_material">2dp</dimen>
  795. <dimen name="abc_select_dialog_padding_start_material">20dp</dimen>
  796. <dimen name="abc_star_big">48dp</dimen>
  797. <dimen name="abc_star_medium">36dp</dimen>
  798. <dimen name="abc_star_small">16dp</dimen>
  799. <dimen name="abc_switch_padding">3dp</dimen>
  800. <dimen name="abc_text_size_body_1_material">14sp</dimen>
  801. <dimen name="abc_text_size_body_2_material">14sp</dimen>
  802. <dimen name="abc_text_size_button_material">14sp</dimen>
  803. <dimen name="abc_text_size_caption_material">12sp</dimen>
  804. <dimen name="abc_text_size_display_1_material">34sp</dimen>
  805. <dimen name="abc_text_size_display_2_material">45sp</dimen>
  806. <dimen name="abc_text_size_display_3_material">56sp</dimen>
  807. <dimen name="abc_text_size_display_4_material">112sp</dimen>
  808. <dimen name="abc_text_size_headline_material">24sp</dimen>
  809. <dimen name="abc_text_size_large_material">22sp</dimen>
  810. <dimen name="abc_text_size_medium_material">18sp</dimen>
  811. <dimen name="abc_text_size_menu_header_material">14sp</dimen>
  812. <dimen name="abc_text_size_menu_material">16sp</dimen>
  813. <dimen name="abc_text_size_small_material">14sp</dimen>
  814. <dimen name="abc_text_size_subhead_material">16sp</dimen>
  815. <dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen>
  816. <dimen name="abc_text_size_title_material">20sp</dimen>
  817. <dimen name="abc_text_size_title_material_toolbar">20dp</dimen>
  818. <dimen name="action_bar_size">16dp</dimen>
  819. <dimen name="appcompat_dialog_background_inset">16dp</dimen>
  820. <dimen name="cardview_compat_inset_shadow">1dp</dimen>
  821. <dimen name="cardview_default_elevation">2dp</dimen>
  822. <dimen name="cardview_default_radius">2dp</dimen>
  823. <dimen name="clock_face_margin_start">64dp</dimen>
  824. <dimen name="compat_button_inset_horizontal_material">4dp</dimen>
  825. <dimen name="compat_button_inset_vertical_material">6dp</dimen>
  826. <dimen name="compat_button_padding_horizontal_material">8dp</dimen>
  827. <dimen name="compat_button_padding_vertical_material">4dp</dimen>
  828. <dimen name="compat_control_corner_material">2dp</dimen>
  829. <dimen name="compat_notification_large_icon_max_height">320dp</dimen>
  830. <dimen name="compat_notification_large_icon_max_width">320dp</dimen>
  831. <dimen name="def_drawer_elevation">10dp</dimen>
  832. <dimen name="default_dimension">100dp</dimen>
  833. <dimen name="design_appbar_elevation">4dp</dimen>
  834. <dimen name="design_bottom_navigation_active_item_max_width">168dp</dimen>
  835. <dimen name="design_bottom_navigation_active_item_min_width">96dp</dimen>
  836. <dimen name="design_bottom_navigation_active_text_size">14sp</dimen>
  837. <dimen name="design_bottom_navigation_elevation">8dp</dimen>
  838. <dimen name="design_bottom_navigation_height">56dp</dimen>
  839. <dimen name="design_bottom_navigation_icon_size">24dp</dimen>
  840. <dimen name="design_bottom_navigation_item_max_width">96dp</dimen>
  841. <dimen name="design_bottom_navigation_item_min_width">56dp</dimen>
  842. <dimen name="design_bottom_navigation_label_padding">10dp</dimen>
  843. <dimen name="design_bottom_navigation_margin">8dp</dimen>
  844. <dimen name="design_bottom_navigation_shadow_height">1dp</dimen>
  845. <dimen name="design_bottom_navigation_text_size">12sp</dimen>
  846. <dimen name="design_bottom_sheet_elevation">8dp</dimen>
  847. <dimen name="design_bottom_sheet_modal_elevation">16dp</dimen>
  848. <dimen name="design_bottom_sheet_peek_height_min">64dp</dimen>
  849. <dimen name="design_fab_border_width">0.5dp</dimen>
  850. <dimen name="design_fab_elevation">6dp</dimen>
  851. <dimen name="design_fab_image_size">24dp</dimen>
  852. <dimen name="design_fab_size_mini">40dp</dimen>
  853. <dimen name="design_fab_size_normal">56dp</dimen>
  854. <dimen name="design_fab_translation_z_hovered_focused">6dp</dimen>
  855. <dimen name="design_fab_translation_z_pressed">6dp</dimen>
  856. <dimen name="design_navigation_elevation">16dp</dimen>
  857. <dimen name="design_navigation_icon_padding">32dp</dimen>
  858. <dimen name="design_navigation_icon_size">24dp</dimen>
  859. <dimen name="design_navigation_item_horizontal_padding">16dp</dimen>
  860. <dimen name="design_navigation_item_icon_padding">32dp</dimen>
  861. <dimen name="design_navigation_item_vertical_padding">4dp</dimen>
  862. <dimen name="design_navigation_max_width">280dp</dimen>
  863. <dimen name="design_navigation_padding_bottom">8dp</dimen>
  864. <dimen name="design_navigation_separator_vertical_padding">8dp</dimen>
  865. <dimen name="design_snackbar_action_inline_max_width">128dp</dimen>
  866. <item format="float" name="design_snackbar_action_text_color_alpha" type="dimen">1.0</item>
  867. <dimen name="design_snackbar_background_corner_radius">0dp</dimen>
  868. <dimen name="design_snackbar_elevation">6dp</dimen>
  869. <dimen name="design_snackbar_extra_spacing_horizontal">0dp</dimen>
  870. <dimen name="design_snackbar_max_width">-1px</dimen>
  871. <dimen name="design_snackbar_min_width">-1px</dimen>
  872. <dimen name="design_snackbar_padding_horizontal">12dp</dimen>
  873. <dimen name="design_snackbar_padding_vertical">14dp</dimen>
  874. <dimen name="design_snackbar_padding_vertical_2lines">16dp</dimen>
  875. <dimen name="design_snackbar_text_size">14sp</dimen>
  876. <dimen name="design_tab_max_width">264dp</dimen>
  877. <dimen name="design_tab_scrollable_min_width">72dp</dimen>
  878. <dimen name="design_tab_text_size">14sp</dimen>
  879. <dimen name="design_tab_text_size_2line">12sp</dimen>
  880. <dimen name="design_textinput_caption_translate_y">5dp</dimen>
  881. <item format="float" name="disabled_alpha_material_dark" type="dimen">0.30</item>
  882. <item format="float" name="disabled_alpha_material_light" type="dimen">0.26</item>
  883. <dimen name="fastscroll_default_thickness">8dp</dimen>
  884. <dimen name="fastscroll_margin">0dp</dimen>
  885. <dimen name="fastscroll_minimum_range">50dp</dimen>
  886. <item format="float" name="highlight_alpha_material_colored" type="dimen">0.26</item>
  887. <item format="float" name="highlight_alpha_material_dark" type="dimen">0.20</item>
  888. <item format="float" name="highlight_alpha_material_light" type="dimen">0.12</item>
  889. <item format="float" name="hint_alpha_material_dark" type="dimen">0.50</item>
  890. <item format="float" name="hint_alpha_material_light" type="dimen">0.38</item>
  891. <item format="float" name="hint_pressed_alpha_material_dark" type="dimen">0.70</item>
  892. <item format="float" name="hint_pressed_alpha_material_light" type="dimen">0.54</item>
  893. <dimen name="item_touch_helper_max_drag_scroll_per_frame">20dp</dimen>
  894. <dimen name="item_touch_helper_swipe_escape_max_velocity">800dp</dimen>
  895. <dimen name="item_touch_helper_swipe_escape_velocity">120dp</dimen>
  896. <dimen name="m3_alert_dialog_action_bottom_padding">14dp</dimen>
  897. <dimen name="m3_alert_dialog_action_top_padding">14dp</dimen>
  898. <dimen name="m3_alert_dialog_corner_size">28dp</dimen>
  899. <dimen name="m3_alert_dialog_elevation">@dimen/m3_sys_elevation_level3</dimen>
  900. <dimen name="m3_alert_dialog_icon_margin">16dp</dimen>
  901. <dimen name="m3_alert_dialog_icon_size">24dp</dimen>
  902. <dimen name="m3_alert_dialog_title_bottom_margin">16dp</dimen>
  903. <dimen name="m3_appbar_expanded_title_margin_bottom">16dp</dimen>
  904. <dimen name="m3_appbar_expanded_title_margin_horizontal">16dp</dimen>
  905. <dimen name="m3_appbar_scrim_height_trigger">96dp</dimen>
  906. <dimen name="m3_appbar_scrim_height_trigger_large">112dp</dimen>
  907. <dimen name="m3_appbar_scrim_height_trigger_medium">112dp</dimen>
  908. <dimen name="m3_appbar_size_compact">64dp</dimen>
  909. <dimen name="m3_appbar_size_large">152dp</dimen>
  910. <dimen name="m3_appbar_size_medium">112dp</dimen>
  911. <dimen name="m3_badge_horizontal_offset">1.5dp</dimen>
  912. <dimen name="m3_badge_radius">3dp</dimen>
  913. <dimen name="m3_badge_vertical_offset">1.5dp</dimen>
  914. <dimen name="m3_badge_with_text_horizontal_offset">3dp</dimen>
  915. <dimen name="m3_badge_with_text_radius">7dp</dimen>
  916. <dimen name="m3_badge_with_text_vertical_offset">4dp</dimen>
  917. <dimen name="m3_bottom_nav_item_active_indicator_height">32dp</dimen>
  918. <dimen name="m3_bottom_nav_item_active_indicator_margin_horizontal">4dp</dimen>
  919. <dimen name="m3_bottom_nav_item_active_indicator_width">64dp</dimen>
  920. <dimen name="m3_bottom_nav_item_padding_bottom">16dp</dimen>
  921. <dimen name="m3_bottom_nav_item_padding_top">12dp</dimen>
  922. <dimen name="m3_bottom_nav_min_height">80dp</dimen>
  923. <dimen name="m3_bottom_sheet_elevation">@dimen/m3_sys_elevation_level2</dimen>
  924. <dimen name="m3_bottom_sheet_modal_elevation">@dimen/m3_sys_elevation_level3</dimen>
  925. <dimen name="m3_bottomappbar_fab_cradle_margin">6dp</dimen>
  926. <dimen name="m3_bottomappbar_fab_cradle_rounded_corner_radius">4dp</dimen>
  927. <dimen name="m3_bottomappbar_fab_cradle_vertical_offset">12dp</dimen>
  928. <dimen name="m3_btn_dialog_btn_min_width">64dp</dimen>
  929. <dimen name="m3_btn_dialog_btn_spacing">8dp</dimen>
  930. <dimen name="m3_btn_disabled_elevation">0dp</dimen>
  931. <dimen name="m3_btn_disabled_translation_z">0dp</dimen>
  932. <dimen name="m3_btn_elevated_btn_elevation">1dp</dimen>
  933. <dimen name="m3_btn_elevation">0dp</dimen>
  934. <dimen name="m3_btn_icon_btn_padding_left">16dp</dimen>
  935. <dimen name="m3_btn_icon_btn_padding_right">24dp</dimen>
  936. <dimen name="m3_btn_icon_only_default_padding">10dp</dimen>
  937. <dimen name="m3_btn_icon_only_default_size">20dp</dimen>
  938. <dimen name="m3_btn_icon_only_icon_padding">0dp</dimen>
  939. <dimen name="m3_btn_icon_only_min_width">20dp</dimen>
  940. <dimen name="m3_btn_inset">4dp</dimen>
  941. <dimen name="m3_btn_max_width">320dp</dimen>
  942. <dimen name="m3_btn_padding_bottom">6dp</dimen>
  943. <dimen name="m3_btn_padding_left">24dp</dimen>
  944. <dimen name="m3_btn_padding_right">24dp</dimen>
  945. <dimen name="m3_btn_padding_top">6dp</dimen>
  946. <dimen name="m3_btn_stroke_size">1dp</dimen>
  947. <dimen name="m3_btn_text_btn_icon_padding_left">12dp</dimen>
  948. <dimen name="m3_btn_text_btn_icon_padding_right">16dp</dimen>
  949. <dimen name="m3_btn_text_btn_padding_left">12dp</dimen>
  950. <dimen name="m3_btn_text_btn_padding_right">12dp</dimen>
  951. <dimen name="m3_btn_translation_z_base">0dp</dimen>
  952. <dimen name="m3_btn_translation_z_hovered">1dp</dimen>
  953. <dimen name="m3_card_dragged_z">@dimen/m3_sys_elevation_level3</dimen>
  954. <dimen name="m3_card_elevated_dragged_z">7dp</dimen>
  955. <dimen name="m3_card_elevated_elevation">@dimen/m3_sys_elevation_level1</dimen>
  956. <dimen name="m3_card_elevated_hovered_z">2dp</dimen>
  957. <dimen name="m3_card_elevation">@dimen/m3_sys_elevation_level0</dimen>
  958. <dimen name="m3_card_hovered_z">@dimen/m3_sys_elevation_level1</dimen>
  959. <dimen name="m3_card_stroke_width">1dp</dimen>
  960. <dimen name="m3_chip_checked_hovered_translation_z">1dp</dimen>
  961. <dimen name="m3_chip_corner_size">8dp</dimen>
  962. <dimen name="m3_chip_disabled_translation_z">-1dp</dimen>
  963. <dimen name="m3_chip_dragged_translation_z">7dp</dimen>
  964. <dimen name="m3_chip_elevated_elevation">1dp</dimen>
  965. <dimen name="m3_chip_hovered_translation_z">2dp</dimen>
  966. <dimen name="m3_chip_icon_size">18dp</dimen>
  967. <dimen name="m3_datepicker_elevation">@dimen/m3_sys_elevation_level1</dimen>
  968. <dimen name="m3_divider_heavy_thickness">8dp</dimen>
  969. <dimen name="m3_extended_fab_bottom_padding">8dp</dimen>
  970. <dimen name="m3_extended_fab_end_padding">20dp</dimen>
  971. <dimen name="m3_extended_fab_icon_padding">12dp</dimen>
  972. <dimen name="m3_extended_fab_min_height">56dp</dimen>
  973. <dimen name="m3_extended_fab_start_padding">16dp</dimen>
  974. <dimen name="m3_extended_fab_top_padding">8dp</dimen>
  975. <dimen name="m3_fab_border_width">0dp</dimen>
  976. <dimen name="m3_fab_corner_size">30%</dimen>
  977. <dimen name="m3_fab_translation_z_hovered_focused">2dp</dimen>
  978. <dimen name="m3_fab_translation_z_pressed">6dp</dimen>
  979. <dimen name="m3_large_fab_max_image_size">36dp</dimen>
  980. <dimen name="m3_large_fab_size">96dp</dimen>
  981. <dimen name="m3_menu_elevation">@dimen/m3_sys_elevation_level2</dimen>
  982. <dimen name="m3_navigation_drawer_layout_corner_size">16dp</dimen>
  983. <dimen name="m3_navigation_item_horizontal_padding">28dp</dimen>
  984. <dimen name="m3_navigation_item_icon_padding">12dp</dimen>
  985. <dimen name="m3_navigation_item_shape_inset_bottom">0dp</dimen>
  986. <dimen name="m3_navigation_item_shape_inset_end">12dp</dimen>
  987. <dimen name="m3_navigation_item_shape_inset_start">12dp</dimen>
  988. <dimen name="m3_navigation_item_shape_inset_top">0dp</dimen>
  989. <dimen name="m3_navigation_item_vertical_padding">4dp</dimen>
  990. <dimen name="m3_navigation_menu_divider_horizontal_padding">28dp</dimen>
  991. <dimen name="m3_navigation_menu_headline_horizontal_padding">28dp</dimen>
  992. <dimen name="m3_navigation_rail_default_width">80dp</dimen>
  993. <dimen name="m3_navigation_rail_item_active_indicator_height">32dp</dimen>
  994. <dimen name="m3_navigation_rail_item_active_indicator_margin_horizontal">4dp</dimen>
  995. <dimen name="m3_navigation_rail_item_active_indicator_width">56dp</dimen>
  996. <dimen name="m3_navigation_rail_item_min_height">60dp</dimen>
  997. <dimen name="m3_navigation_rail_item_padding_bottom">8dp</dimen>
  998. <dimen name="m3_navigation_rail_item_padding_top">4dp</dimen>
  999. <dimen name="m3_ripple_default_alpha">@dimen/m3_sys_state_dragged_state_layer_opacity</dimen>
  1000. <dimen name="m3_ripple_focused_alpha">@dimen/m3_sys_state_focus_state_layer_opacity</dimen>
  1001. <dimen name="m3_ripple_hovered_alpha">@dimen/m3_sys_state_hover_state_layer_opacity</dimen>
  1002. <dimen name="m3_ripple_pressed_alpha">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen>
  1003. <dimen name="m3_ripple_selectable_pressed_alpha">@dimen/m3_sys_state_pressed_state_layer_opacity</dimen>
  1004. <dimen name="m3_slider_thumb_elevation">2dp</dimen>
  1005. <item format="float" name="m3_snackbar_action_text_color_alpha" type="dimen">1.0</item>
  1006. <dimen name="m3_snackbar_margin">8dp</dimen>
  1007. <dimen name="m3_sys_elevation_level0">0dp</dimen>
  1008. <dimen name="m3_sys_elevation_level1">1dp</dimen>
  1009. <dimen name="m3_sys_elevation_level2">3dp</dimen>
  1010. <dimen name="m3_sys_elevation_level3">6dp</dimen>
  1011. <dimen name="m3_sys_elevation_level4">8dp</dimen>
  1012. <dimen name="m3_sys_elevation_level5">12dp</dimen>
  1013. <dimen name="m3_sys_shape_large_corner_size">8dp</dimen>
  1014. <dimen name="m3_sys_shape_medium_corner_size">8dp</dimen>
  1015. <dimen name="m3_sys_shape_small_corner_size">4dp</dimen>
  1016. <item format="float" name="m3_sys_state_dragged_state_layer_opacity" type="dimen">0.16</item>
  1017. <item format="float" name="m3_sys_state_focus_state_layer_opacity" type="dimen">0.12</item>
  1018. <item format="float" name="m3_sys_state_hover_state_layer_opacity" type="dimen">0.08</item>
  1019. <item format="float" name="m3_sys_state_pressed_state_layer_opacity" type="dimen">0.12</item>
  1020. <item format="float" name="m3_sys_typescale_body_large_letter_spacing" type="dimen">0.03125</item>
  1021. <dimen name="m3_sys_typescale_body_large_text_size">16sp</dimen>
  1022. <item format="float" name="m3_sys_typescale_body_medium_letter_spacing" type="dimen">0.01785714</item>
  1023. <dimen name="m3_sys_typescale_body_medium_text_size">14sp</dimen>
  1024. <item format="float" name="m3_sys_typescale_body_small_letter_spacing" type="dimen">0.03333333</item>
  1025. <dimen name="m3_sys_typescale_body_small_text_size">12sp</dimen>
  1026. <item format="float" name="m3_sys_typescale_display_large_letter_spacing" type="dimen">-0.00438596</item>
  1027. <dimen name="m3_sys_typescale_display_large_text_size">57sp</dimen>
  1028. <item format="float" name="m3_sys_typescale_display_medium_letter_spacing" type="dimen">0</item>
  1029. <dimen name="m3_sys_typescale_display_medium_text_size">45sp</dimen>
  1030. <item format="float" name="m3_sys_typescale_display_small_letter_spacing" type="dimen">0</item>
  1031. <dimen name="m3_sys_typescale_display_small_text_size">36sp</dimen>
  1032. <item format="float" name="m3_sys_typescale_headline_large_letter_spacing" type="dimen">0</item>
  1033. <dimen name="m3_sys_typescale_headline_large_text_size">32sp</dimen>
  1034. <item format="float" name="m3_sys_typescale_headline_medium_letter_spacing" type="dimen">0</item>
  1035. <dimen name="m3_sys_typescale_headline_medium_text_size">28sp</dimen>
  1036. <item format="float" name="m3_sys_typescale_headline_small_letter_spacing" type="dimen">0</item>
  1037. <dimen name="m3_sys_typescale_headline_small_text_size">24sp</dimen>
  1038. <item format="float" name="m3_sys_typescale_label_large_letter_spacing" type="dimen">0.00714286</item>
  1039. <dimen name="m3_sys_typescale_label_large_text_size">14sp</dimen>
  1040. <item format="float" name="m3_sys_typescale_label_medium_letter_spacing" type="dimen">0.04166667</item>
  1041. <dimen name="m3_sys_typescale_label_medium_text_size">12sp</dimen>
  1042. <item format="float" name="m3_sys_typescale_label_small_letter_spacing" type="dimen">0.04545455</item>
  1043. <dimen name="m3_sys_typescale_label_small_text_size">11sp</dimen>
  1044. <item format="float" name="m3_sys_typescale_title_large_letter_spacing" type="dimen">0</item>
  1045. <dimen name="m3_sys_typescale_title_large_text_size">22sp</dimen>
  1046. <item format="float" name="m3_sys_typescale_title_medium_letter_spacing" type="dimen">0.009375</item>
  1047. <dimen name="m3_sys_typescale_title_medium_text_size">16sp</dimen>
  1048. <item format="float" name="m3_sys_typescale_title_small_letter_spacing" type="dimen">0.00714286</item>
  1049. <dimen name="m3_sys_typescale_title_small_text_size">14sp</dimen>
  1050. <dimen name="m3_timepicker_display_stroke_width">2dp</dimen>
  1051. <dimen name="m3_timepicker_window_elevation">@dimen/m3_sys_elevation_level3</dimen>
  1052. <dimen name="material_bottom_sheet_max_width">640dp</dimen>
  1053. <dimen name="material_clock_display_padding">24dp</dimen>
  1054. <dimen name="material_clock_face_margin_top">44dp</dimen>
  1055. <dimen name="material_clock_hand_center_dot_radius">4dp</dimen>
  1056. <dimen name="material_clock_hand_padding">4dp</dimen>
  1057. <dimen name="material_clock_hand_stroke_width">2dp</dimen>
  1058. <dimen name="material_clock_number_text_size">15dp</dimen>
  1059. <dimen name="material_clock_period_toggle_height">96dp</dimen>
  1060. <dimen name="material_clock_period_toggle_margin_left">12dp</dimen>
  1061. <dimen name="material_clock_period_toggle_width">52dp</dimen>
  1062. <dimen name="material_clock_size">256dp</dimen>
  1063. <dimen name="material_cursor_inset_bottom">-6dp</dimen>
  1064. <dimen name="material_cursor_inset_top">-12dp</dimen>
  1065. <dimen name="material_cursor_width">2dp</dimen>
  1066. <dimen name="material_divider_thickness">1dp</dimen>
  1067. <item format="float" name="material_emphasis_disabled" type="dimen">0.38</item>
  1068. <item format="float" name="material_emphasis_disabled_background" type="dimen">0.12</item>
  1069. <item format="float" name="material_emphasis_high_type" type="dimen">0.87</item>
  1070. <item format="float" name="material_emphasis_medium" type="dimen">0.6</item>
  1071. <dimen name="material_filled_edittext_font_1_3_padding_bottom">12dp</dimen>
  1072. <dimen name="material_filled_edittext_font_1_3_padding_top">23dp</dimen>
  1073. <dimen name="material_filled_edittext_font_2_0_padding_bottom">8dp</dimen>
  1074. <dimen name="material_filled_edittext_font_2_0_padding_top">32dp</dimen>
  1075. <dimen name="material_font_1_3_box_collapsed_padding_top">4dp</dimen>
  1076. <dimen name="material_font_2_0_box_collapsed_padding_top">8dp</dimen>
  1077. <dimen name="material_helper_text_default_padding_top">4dp</dimen>
  1078. <dimen name="material_helper_text_font_1_3_padding_horizontal">12dp</dimen>
  1079. <dimen name="material_helper_text_font_1_3_padding_top">8dp</dimen>
  1080. <dimen name="material_input_text_to_prefix_suffix_padding">2dp</dimen>
  1081. <dimen name="material_text_view_test_line_height">200px</dimen>
  1082. <dimen name="material_text_view_test_line_height_override">100px</dimen>
  1083. <dimen name="material_textinput_default_width">245dp</dimen>
  1084. <dimen name="material_textinput_max_width">488dp</dimen>
  1085. <dimen name="material_textinput_min_width">56dp</dimen>
  1086. <dimen name="material_time_picker_minimum_screen_height">560dp</dimen>
  1087. <dimen name="material_time_picker_minimum_screen_width">340dp</dimen>
  1088. <dimen name="material_timepicker_dialog_buttons_margin_top">24dp</dimen>
  1089. <dimen name="mtrl_alert_dialog_background_inset_bottom">80dp</dimen>
  1090. <dimen name="mtrl_alert_dialog_background_inset_end">24dp</dimen>
  1091. <dimen name="mtrl_alert_dialog_background_inset_start">24dp</dimen>
  1092. <dimen name="mtrl_alert_dialog_background_inset_top">80dp</dimen>
  1093. <dimen name="mtrl_alert_dialog_picker_background_inset">24dp</dimen>
  1094. <dimen name="mtrl_badge_horizontal_edge_offset">4dp</dimen>
  1095. <dimen name="mtrl_badge_long_text_horizontal_padding">4dp</dimen>
  1096. <dimen name="mtrl_badge_radius">4dp</dimen>
  1097. <dimen name="mtrl_badge_text_horizontal_edge_offset">6dp</dimen>
  1098. <dimen name="mtrl_badge_text_size">10sp</dimen>
  1099. <dimen name="mtrl_badge_toolbar_action_menu_item_horizontal_offset">12dp</dimen>
  1100. <dimen name="mtrl_badge_toolbar_action_menu_item_vertical_offset">12dp</dimen>
  1101. <dimen name="mtrl_badge_with_text_radius">8dp</dimen>
  1102. <dimen name="mtrl_bottomappbar_fabOffsetEndMode">60dp</dimen>
  1103. <dimen name="mtrl_bottomappbar_fab_bottom_margin">16dp</dimen>
  1104. <dimen name="mtrl_bottomappbar_fab_cradle_margin">5dp</dimen>
  1105. <dimen name="mtrl_bottomappbar_fab_cradle_rounded_corner_radius">8dp</dimen>
  1106. <dimen name="mtrl_bottomappbar_fab_cradle_vertical_offset">0dp</dimen>
  1107. <dimen name="mtrl_bottomappbar_height">56dp</dimen>
  1108. <dimen name="mtrl_btn_corner_radius">4dp</dimen>
  1109. <dimen name="mtrl_btn_dialog_btn_min_width">64dp</dimen>
  1110. <dimen name="mtrl_btn_disabled_elevation">0dp</dimen>
  1111. <dimen name="mtrl_btn_disabled_z">0dp</dimen>
  1112. <dimen name="mtrl_btn_elevation">2dp</dimen>
  1113. <dimen name="mtrl_btn_focused_z">2dp</dimen>
  1114. <dimen name="mtrl_btn_hovered_z">2dp</dimen>
  1115. <dimen name="mtrl_btn_icon_btn_padding_left">12dp</dimen>
  1116. <dimen name="mtrl_btn_icon_padding">8dp</dimen>
  1117. <dimen name="mtrl_btn_inset">6dp</dimen>
  1118. <item format="float" name="mtrl_btn_letter_spacing" type="dimen">0.07</item>
  1119. <dimen name="mtrl_btn_max_width">320dp</dimen>
  1120. <dimen name="mtrl_btn_padding_bottom">4dp</dimen>
  1121. <dimen name="mtrl_btn_padding_left">16dp</dimen>
  1122. <dimen name="mtrl_btn_padding_right">16dp</dimen>
  1123. <dimen name="mtrl_btn_padding_top">4dp</dimen>
  1124. <dimen name="mtrl_btn_pressed_z">6dp</dimen>
  1125. <dimen name="mtrl_btn_snackbar_margin_horizontal">8dp</dimen>
  1126. <dimen name="mtrl_btn_stroke_size">1dp</dimen>
  1127. <dimen name="mtrl_btn_text_btn_icon_padding">4dp</dimen>
  1128. <dimen name="mtrl_btn_text_btn_padding_left">8dp</dimen>
  1129. <dimen name="mtrl_btn_text_btn_padding_right">8dp</dimen>
  1130. <dimen name="mtrl_btn_text_size">14sp</dimen>
  1131. <dimen name="mtrl_btn_z">0dp</dimen>
  1132. <dimen name="mtrl_calendar_action_confirm_button_min_width">64dp</dimen>
  1133. <dimen name="mtrl_calendar_action_height">52dp</dimen>
  1134. <dimen name="mtrl_calendar_action_padding">8dp</dimen>
  1135. <dimen name="mtrl_calendar_bottom_padding">0dp</dimen>
  1136. <dimen name="mtrl_calendar_content_padding">12dp</dimen>
  1137. <dimen name="mtrl_calendar_day_corner">15dp</dimen>
  1138. <dimen name="mtrl_calendar_day_height">32dp</dimen>
  1139. <dimen name="mtrl_calendar_day_horizontal_padding">3dp</dimen>
  1140. <dimen name="mtrl_calendar_day_today_stroke">1dp</dimen>
  1141. <dimen name="mtrl_calendar_day_vertical_padding">1dp</dimen>
  1142. <dimen name="mtrl_calendar_day_width">36dp</dimen>
  1143. <dimen name="mtrl_calendar_days_of_week_height">24dp</dimen>
  1144. <dimen name="mtrl_calendar_dialog_background_inset">16dp</dimen>
  1145. <dimen name="mtrl_calendar_header_content_padding">12dp</dimen>
  1146. <dimen name="mtrl_calendar_header_content_padding_fullscreen">4dp</dimen>
  1147. <dimen name="mtrl_calendar_header_divider_thickness">1dp</dimen>
  1148. <dimen name="mtrl_calendar_header_height">120dp</dimen>
  1149. <dimen name="mtrl_calendar_header_height_fullscreen">128dp</dimen>
  1150. <dimen name="mtrl_calendar_header_selection_line_height">32dp</dimen>
  1151. <dimen name="mtrl_calendar_header_text_padding">12dp</dimen>
  1152. <dimen name="mtrl_calendar_header_toggle_margin_bottom">8dp</dimen>
  1153. <dimen name="mtrl_calendar_header_toggle_margin_top">24dp</dimen>
  1154. <dimen name="mtrl_calendar_landscape_header_width">0dp</dimen>
  1155. <dimen name="mtrl_calendar_maximum_default_fullscreen_minor_axis">480dp</dimen>
  1156. <dimen name="mtrl_calendar_month_horizontal_padding">2dp</dimen>
  1157. <dimen name="mtrl_calendar_month_vertical_padding">0dp</dimen>
  1158. <dimen name="mtrl_calendar_navigation_bottom_padding">4dp</dimen>
  1159. <dimen name="mtrl_calendar_navigation_height">48dp</dimen>
  1160. <dimen name="mtrl_calendar_navigation_top_padding">4dp</dimen>
  1161. <dimen name="mtrl_calendar_pre_l_text_clip_padding">8dp</dimen>
  1162. <dimen name="mtrl_calendar_selection_baseline_to_top_fullscreen">104dp</dimen>
  1163. <dimen name="mtrl_calendar_selection_text_baseline_to_bottom">20dp</dimen>
  1164. <dimen name="mtrl_calendar_selection_text_baseline_to_bottom_fullscreen">24dp</dimen>
  1165. <dimen name="mtrl_calendar_selection_text_baseline_to_top">100dp</dimen>
  1166. <dimen name="mtrl_calendar_text_input_padding_top">16dp</dimen>
  1167. <dimen name="mtrl_calendar_title_baseline_to_top">28dp</dimen>
  1168. <dimen name="mtrl_calendar_title_baseline_to_top_fullscreen">68dp</dimen>
  1169. <dimen name="mtrl_calendar_year_corner">18dp</dimen>
  1170. <dimen name="mtrl_calendar_year_height">52dp</dimen>
  1171. <dimen name="mtrl_calendar_year_horizontal_padding">8dp</dimen>
  1172. <dimen name="mtrl_calendar_year_vertical_padding">8dp</dimen>
  1173. <dimen name="mtrl_calendar_year_width">88dp</dimen>
  1174. <dimen name="mtrl_card_checked_icon_margin">8dp</dimen>
  1175. <dimen name="mtrl_card_checked_icon_size">24dp</dimen>
  1176. <dimen name="mtrl_card_corner_radius">4dp</dimen>
  1177. <dimen name="mtrl_card_dragged_z">5dp</dimen>
  1178. <dimen name="mtrl_card_elevation">1dp</dimen>
  1179. <dimen name="mtrl_card_spacing">8dp</dimen>
  1180. <dimen name="mtrl_chip_pressed_translation_z">3dp</dimen>
  1181. <dimen name="mtrl_chip_text_size">14sp</dimen>
  1182. <dimen name="mtrl_edittext_rectangle_top_offset">12dp</dimen>
  1183. <dimen name="mtrl_exposed_dropdown_menu_popup_elevation">8dp</dimen>
  1184. <dimen name="mtrl_exposed_dropdown_menu_popup_vertical_offset">-8dp</dimen>
  1185. <dimen name="mtrl_exposed_dropdown_menu_popup_vertical_padding">8dp</dimen>
  1186. <dimen name="mtrl_extended_fab_bottom_padding">12dp</dimen>
  1187. <dimen name="mtrl_extended_fab_corner_radius">24dp</dimen>
  1188. <dimen name="mtrl_extended_fab_disabled_elevation">0dp</dimen>
  1189. <dimen name="mtrl_extended_fab_disabled_translation_z">0dp</dimen>
  1190. <dimen name="mtrl_extended_fab_elevation">6dp</dimen>
  1191. <dimen name="mtrl_extended_fab_end_padding">20dp</dimen>
  1192. <dimen name="mtrl_extended_fab_end_padding_icon">20dp</dimen>
  1193. <dimen name="mtrl_extended_fab_icon_size">24dp</dimen>
  1194. <dimen name="mtrl_extended_fab_icon_text_spacing">12dp</dimen>
  1195. <dimen name="mtrl_extended_fab_min_height">48dp</dimen>
  1196. <dimen name="mtrl_extended_fab_min_width">120dp</dimen>
  1197. <dimen name="mtrl_extended_fab_start_padding">20dp</dimen>
  1198. <dimen name="mtrl_extended_fab_start_padding_icon">12dp</dimen>
  1199. <dimen name="mtrl_extended_fab_top_padding">12dp</dimen>
  1200. <dimen name="mtrl_extended_fab_translation_z_base">0dp</dimen>
  1201. <dimen name="mtrl_extended_fab_translation_z_hovered_focused">2dp</dimen>
  1202. <dimen name="mtrl_extended_fab_translation_z_pressed">6dp</dimen>
  1203. <dimen name="mtrl_fab_elevation">6dp</dimen>
  1204. <dimen name="mtrl_fab_min_touch_target">48dp</dimen>
  1205. <dimen name="mtrl_fab_translation_z_hovered_focused">2dp</dimen>
  1206. <dimen name="mtrl_fab_translation_z_pressed">6dp</dimen>
  1207. <item format="float" name="mtrl_high_ripple_default_alpha" type="dimen">0.00</item>
  1208. <item format="float" name="mtrl_high_ripple_focused_alpha" type="dimen">0.24</item>
  1209. <item format="float" name="mtrl_high_ripple_hovered_alpha" type="dimen">0.08</item>
  1210. <item format="float" name="mtrl_high_ripple_pressed_alpha" type="dimen">0.24</item>
  1211. <dimen name="mtrl_large_touch_target">100dp</dimen>
  1212. <item format="float" name="mtrl_low_ripple_default_alpha" type="dimen">0.00</item>
  1213. <item format="float" name="mtrl_low_ripple_focused_alpha" type="dimen">0.12</item>
  1214. <item format="float" name="mtrl_low_ripple_hovered_alpha" type="dimen">0.04</item>
  1215. <item format="float" name="mtrl_low_ripple_pressed_alpha" type="dimen">0.12</item>
  1216. <dimen name="mtrl_min_touch_target_size">48dp</dimen>
  1217. <dimen name="mtrl_navigation_bar_item_default_icon_size">24dp</dimen>
  1218. <dimen name="mtrl_navigation_bar_item_default_margin">8dp</dimen>
  1219. <dimen name="mtrl_navigation_elevation">0dp</dimen>
  1220. <dimen name="mtrl_navigation_item_horizontal_padding">22dp</dimen>
  1221. <dimen name="mtrl_navigation_item_icon_padding">14dp</dimen>
  1222. <dimen name="mtrl_navigation_item_icon_size">24dp</dimen>
  1223. <dimen name="mtrl_navigation_item_shape_horizontal_margin">8dp</dimen>
  1224. <dimen name="mtrl_navigation_item_shape_vertical_margin">4dp</dimen>
  1225. <dimen name="mtrl_navigation_rail_active_text_size" ns1:ignore="SpUsage">14dp</dimen>
  1226. <dimen name="mtrl_navigation_rail_compact_width">56dp</dimen>
  1227. <dimen name="mtrl_navigation_rail_default_width">72dp</dimen>
  1228. <dimen name="mtrl_navigation_rail_elevation">8dp</dimen>
  1229. <dimen name="mtrl_navigation_rail_icon_margin">14dp</dimen>
  1230. <dimen name="mtrl_navigation_rail_icon_size">24dp</dimen>
  1231. <dimen name="mtrl_navigation_rail_margin">8dp</dimen>
  1232. <dimen name="mtrl_navigation_rail_text_bottom_margin">16dp</dimen>
  1233. <dimen name="mtrl_navigation_rail_text_size" ns1:ignore="SpUsage">12dp</dimen>
  1234. <dimen name="mtrl_progress_circular_inset">4dp</dimen>
  1235. <dimen name="mtrl_progress_circular_inset_extra_small">2dp</dimen>
  1236. <dimen name="mtrl_progress_circular_inset_medium">4dp</dimen>
  1237. <dimen name="mtrl_progress_circular_inset_small">4dp</dimen>
  1238. <dimen name="mtrl_progress_circular_radius">18dp</dimen>
  1239. <dimen name="mtrl_progress_circular_size">40dp</dimen>
  1240. <dimen name="mtrl_progress_circular_size_extra_small">20dp</dimen>
  1241. <dimen name="mtrl_progress_circular_size_medium">40dp</dimen>
  1242. <dimen name="mtrl_progress_circular_size_small">28dp</dimen>
  1243. <dimen name="mtrl_progress_circular_track_thickness_extra_small">2.5dp</dimen>
  1244. <dimen name="mtrl_progress_circular_track_thickness_medium">4dp</dimen>
  1245. <dimen name="mtrl_progress_circular_track_thickness_small">3dp</dimen>
  1246. <dimen name="mtrl_progress_indicator_full_rounded_corner_radius">2dp</dimen>
  1247. <dimen name="mtrl_progress_track_thickness">4dp</dimen>
  1248. <dimen name="mtrl_shape_corner_size_large_component">0dp</dimen>
  1249. <dimen name="mtrl_shape_corner_size_medium_component">4dp</dimen>
  1250. <dimen name="mtrl_shape_corner_size_small_component">4dp</dimen>
  1251. <dimen name="mtrl_slider_halo_radius">24dp</dimen>
  1252. <dimen name="mtrl_slider_label_padding">4dp</dimen>
  1253. <dimen name="mtrl_slider_label_radius">13dp</dimen>
  1254. <dimen name="mtrl_slider_label_square_side">26dp</dimen>
  1255. <dimen name="mtrl_slider_thumb_elevation">1dp</dimen>
  1256. <dimen name="mtrl_slider_thumb_radius">10dp</dimen>
  1257. <dimen name="mtrl_slider_track_height">4dp</dimen>
  1258. <dimen name="mtrl_slider_track_side_padding">16dp</dimen>
  1259. <dimen name="mtrl_slider_track_top">24dp</dimen>
  1260. <dimen name="mtrl_slider_widget_height">48dp</dimen>
  1261. <item format="float" name="mtrl_snackbar_action_text_color_alpha" type="dimen">0.5</item>
  1262. <dimen name="mtrl_snackbar_background_corner_radius">4dp</dimen>
  1263. <item format="float" name="mtrl_snackbar_background_overlay_color_alpha" type="dimen">0.8</item>
  1264. <dimen name="mtrl_snackbar_margin">8dp</dimen>
  1265. <dimen name="mtrl_snackbar_message_margin_horizontal">8dp</dimen>
  1266. <dimen name="mtrl_snackbar_padding_horizontal">8dp</dimen>
  1267. <dimen name="mtrl_switch_thumb_elevation">4dp</dimen>
  1268. <dimen name="mtrl_textinput_box_corner_radius_medium">4dp</dimen>
  1269. <dimen name="mtrl_textinput_box_corner_radius_small">0dp</dimen>
  1270. <dimen name="mtrl_textinput_box_label_cutout_padding">4dp</dimen>
  1271. <dimen name="mtrl_textinput_box_stroke_width_default">1dp</dimen>
  1272. <dimen name="mtrl_textinput_box_stroke_width_focused">2dp</dimen>
  1273. <dimen name="mtrl_textinput_counter_margin_start">16dp</dimen>
  1274. <dimen name="mtrl_textinput_end_icon_margin_start">4dp</dimen>
  1275. <dimen name="mtrl_textinput_outline_box_expanded_padding">16dp</dimen>
  1276. <dimen name="mtrl_textinput_start_icon_margin_end">4dp</dimen>
  1277. <dimen name="mtrl_toolbar_default_height">56dp</dimen>
  1278. <dimen name="mtrl_tooltip_arrowSize">14dp</dimen>
  1279. <dimen name="mtrl_tooltip_cornerSize">4dp</dimen>
  1280. <dimen name="mtrl_tooltip_minHeight">32dp</dimen>
  1281. <dimen name="mtrl_tooltip_minWidth">32dp</dimen>
  1282. <dimen name="mtrl_tooltip_padding">12dp</dimen>
  1283. <dimen name="mtrl_transition_shared_axis_slide_distance">30dp</dimen>
  1284. <dimen name="notification_action_icon_size">32dp</dimen>
  1285. <dimen name="notification_action_text_size">13sp</dimen>
  1286. <dimen name="notification_big_circle_margin">12dp</dimen>
  1287. <dimen name="notification_content_margin_start">8dp</dimen>
  1288. <dimen name="notification_large_icon_height">64dp</dimen>
  1289. <dimen name="notification_large_icon_width">64dp</dimen>
  1290. <dimen name="notification_main_column_padding_top">10dp</dimen>
  1291. <dimen name="notification_media_narrow_margin">@dimen/notification_content_margin_start</dimen>
  1292. <dimen name="notification_right_icon_size">16dp</dimen>
  1293. <dimen name="notification_right_side_padding_top">2dp</dimen>
  1294. <dimen name="notification_small_icon_background_padding">3dp</dimen>
  1295. <dimen name="notification_small_icon_size_as_large">24dp</dimen>
  1296. <dimen name="notification_subtext_size">13sp</dimen>
  1297. <dimen name="notification_top_pad">10dp</dimen>
  1298. <dimen name="notification_top_pad_large_text">5dp</dimen>
  1299. <dimen name="test_dimen">2dp</dimen>
  1300. <dimen name="test_mtrl_calendar_day_cornerSize">52dp</dimen>
  1301. <dimen name="test_navigation_bar_active_item_max_width">168dp</dimen>
  1302. <dimen name="test_navigation_bar_active_item_min_width">96dp</dimen>
  1303. <dimen name="test_navigation_bar_active_text_size">14sp</dimen>
  1304. <dimen name="test_navigation_bar_elevation">8dp</dimen>
  1305. <dimen name="test_navigation_bar_height">56dp</dimen>
  1306. <dimen name="test_navigation_bar_icon_size">24dp</dimen>
  1307. <dimen name="test_navigation_bar_item_max_width">96dp</dimen>
  1308. <dimen name="test_navigation_bar_item_min_width">56dp</dimen>
  1309. <dimen name="test_navigation_bar_label_padding">10dp</dimen>
  1310. <dimen name="test_navigation_bar_shadow_height">1dp</dimen>
  1311. <dimen name="test_navigation_bar_text_size">12sp</dimen>
  1312. <dimen name="tooltip_corner_radius">2dp</dimen>
  1313. <dimen name="tooltip_horizontal_padding">16dp</dimen>
  1314. <dimen name="tooltip_margin">8dp</dimen>
  1315. <dimen name="tooltip_precise_anchor_extra_offset">8dp</dimen>
  1316. <dimen name="tooltip_precise_anchor_threshold">96dp</dimen>
  1317. <dimen name="tooltip_vertical_padding">6.5dp</dimen>
  1318. <dimen name="tooltip_y_offset_non_touch">0dp</dimen>
  1319. <dimen name="tooltip_y_offset_touch">16dp</dimen>
  1320. <item name="material_ic_keyboard_arrow_next_black_24dp" type="drawable">@drawable/material_ic_keyboard_arrow_right_black_24dp</item>
  1321. <item name="material_ic_keyboard_arrow_previous_black_24dp" type="drawable">@drawable/material_ic_keyboard_arrow_left_black_24dp</item>
  1322. <drawable name="notification_template_icon_bg">#3333B5E5</drawable>
  1323. <drawable name="notification_template_icon_low_bg">#0cffffff</drawable>
  1324. <item name="accessibility_action_clickable_span" type="id"/>
  1325. <item name="accessibility_custom_action_0" type="id"/>
  1326. <item name="accessibility_custom_action_1" type="id"/>
  1327. <item name="accessibility_custom_action_10" type="id"/>
  1328. <item name="accessibility_custom_action_11" type="id"/>
  1329. <item name="accessibility_custom_action_12" type="id"/>
  1330. <item name="accessibility_custom_action_13" type="id"/>
  1331. <item name="accessibility_custom_action_14" type="id"/>
  1332. <item name="accessibility_custom_action_15" type="id"/>
  1333. <item name="accessibility_custom_action_16" type="id"/>
  1334. <item name="accessibility_custom_action_17" type="id"/>
  1335. <item name="accessibility_custom_action_18" type="id"/>
  1336. <item name="accessibility_custom_action_19" type="id"/>
  1337. <item name="accessibility_custom_action_2" type="id"/>
  1338. <item name="accessibility_custom_action_20" type="id"/>
  1339. <item name="accessibility_custom_action_21" type="id"/>
  1340. <item name="accessibility_custom_action_22" type="id"/>
  1341. <item name="accessibility_custom_action_23" type="id"/>
  1342. <item name="accessibility_custom_action_24" type="id"/>
  1343. <item name="accessibility_custom_action_25" type="id"/>
  1344. <item name="accessibility_custom_action_26" type="id"/>
  1345. <item name="accessibility_custom_action_27" type="id"/>
  1346. <item name="accessibility_custom_action_28" type="id"/>
  1347. <item name="accessibility_custom_action_29" type="id"/>
  1348. <item name="accessibility_custom_action_3" type="id"/>
  1349. <item name="accessibility_custom_action_30" type="id"/>
  1350. <item name="accessibility_custom_action_31" type="id"/>
  1351. <item name="accessibility_custom_action_4" type="id"/>
  1352. <item name="accessibility_custom_action_5" type="id"/>
  1353. <item name="accessibility_custom_action_6" type="id"/>
  1354. <item name="accessibility_custom_action_7" type="id"/>
  1355. <item name="accessibility_custom_action_8" type="id"/>
  1356. <item name="accessibility_custom_action_9" type="id"/>
  1357. <item name="action_bar_activity_content" type="id"/>
  1358. <item name="action_bar_spinner" type="id"/>
  1359. <item name="action_menu_divider" type="id"/>
  1360. <item name="action_menu_presenter" type="id"/>
  1361. <item name="fragment_container_view_tag" type="id"/>
  1362. <item name="ghost_view" type="id"/>
  1363. <item name="ghost_view_holder" type="id"/>
  1364. <item name="home" type="id"/>
  1365. <item name="item_touch_helper_previous_elevation" type="id"/>
  1366. <item name="line1" type="id"/>
  1367. <item name="line3" type="id"/>
  1368. <item name="material_clock_face" type="id"/>
  1369. <item name="material_value_index" type="id"/>
  1370. <item name="motion_base" type="id"/>
  1371. <item name="mtrl_anchor_parent" type="id"/>
  1372. <item name="mtrl_card_checked_layer_id" type="id"/>
  1373. <item name="mtrl_child_content_container" type="id"/>
  1374. <item name="mtrl_internal_children_alpha_tag" type="id"/>
  1375. <item name="mtrl_motion_snapshot_view" type="id"/>
  1376. <item name="mtrl_view_tag_bottom_padding" type="id"/>
  1377. <item name="navigation_bar_item_active_indicator_view" type="id"/>
  1378. <item name="navigation_bar_item_icon_container" type="id"/>
  1379. <item name="navigation_bar_item_icon_view" type="id"/>
  1380. <item name="navigation_bar_item_labels_group" type="id"/>
  1381. <item name="navigation_bar_item_large_label_view" type="id"/>
  1382. <item name="navigation_bar_item_small_label_view" type="id"/>
  1383. <item name="parent_matrix" type="id"/>
  1384. <item name="progress_circular" type="id"/>
  1385. <item name="progress_horizontal" type="id"/>
  1386. <item name="row_index_key" type="id"/>
  1387. <item name="save_non_transition_alpha" type="id"/>
  1388. <item name="save_overlay_view" type="id"/>
  1389. <item name="selection_type" type="id"/>
  1390. <item name="snackbar_action" type="id"/>
  1391. <item name="snackbar_text" type="id"/>
  1392. <item name="special_effects_controller_view_tag" type="id"/>
  1393. <item name="split_action_bar" type="id"/>
  1394. <item name="tag_accessibility_actions" type="id"/>
  1395. <item name="tag_accessibility_clickable_spans" type="id"/>
  1396. <item name="tag_accessibility_heading" type="id"/>
  1397. <item name="tag_accessibility_pane_title" type="id"/>
  1398. <item name="tag_on_apply_window_listener" type="id"/>
  1399. <item name="tag_on_receive_content_listener" type="id"/>
  1400. <item name="tag_on_receive_content_mime_types" type="id"/>
  1401. <item name="tag_screen_reader_focusable" type="id"/>
  1402. <item name="tag_state_description" type="id"/>
  1403. <item name="tag_transition_group" type="id"/>
  1404. <item name="tag_unhandled_key_event_manager" type="id"/>
  1405. <item name="tag_unhandled_key_listeners" type="id"/>
  1406. <item name="tag_window_insets_animation_callback" type="id"/>
  1407. <item name="text" type="id"/>
  1408. <item name="text2" type="id"/>
  1409. <item name="text_input_error_icon" type="id"/>
  1410. <item name="textinput_counter" type="id"/>
  1411. <item name="textinput_error" type="id"/>
  1412. <item name="textinput_helper_text" type="id"/>
  1413. <item name="textinput_placeholder" type="id"/>
  1414. <item name="textinput_prefix_text" type="id"/>
  1415. <item name="textinput_suffix_text" type="id"/>
  1416. <item name="title" type="id"/>
  1417. <item name="transition_current_scene" type="id"/>
  1418. <item name="transition_layout_save" type="id"/>
  1419. <item name="transition_position" type="id"/>
  1420. <item name="transition_scene_layoutid_cache" type="id"/>
  1421. <item name="transition_transform" type="id"/>
  1422. <item name="up" type="id"/>
  1423. <item name="view_offset_helper" type="id"/>
  1424. <id name="view_tree_lifecycle_owner"/>
  1425. <id name="view_tree_saved_state_registry_owner"/>
  1426. <id name="view_tree_view_model_store_owner"/>
  1427. <item name="visible_removing_fragment_view_tag" type="id"/>
  1428. <integer name="abc_config_activityDefaultDur">220</integer>
  1429. <integer name="abc_config_activityShortDur">150</integer>
  1430. <integer name="app_bar_elevation_anim_duration">150</integer>
  1431. <integer name="bottom_sheet_slide_duration">150</integer>
  1432. <integer name="cancel_button_image_alpha">127</integer>
  1433. <integer name="config_tooltipAnimTime">150</integer>
  1434. <integer name="design_snackbar_text_max_lines">2</integer>
  1435. <integer name="design_tab_indicator_anim_duration_ms">300</integer>
  1436. <integer name="hide_password_duration">320</integer>
  1437. <integer name="m3_btn_anim_delay_ms">100</integer>
  1438. <integer name="m3_btn_anim_duration_ms">100</integer>
  1439. <integer name="m3_card_anim_delay_ms">75</integer>
  1440. <integer name="m3_card_anim_duration_ms">120</integer>
  1441. <integer name="m3_chip_anim_duration">100</integer>
  1442. <integer name="m3_sys_motion_duration_long1">500</integer>
  1443. <integer name="m3_sys_motion_duration_long2">600</integer>
  1444. <integer name="m3_sys_motion_duration_medium1">300</integer>
  1445. <integer name="m3_sys_motion_duration_medium2">400</integer>
  1446. <integer name="m3_sys_motion_duration_short1">100</integer>
  1447. <integer name="m3_sys_motion_duration_short2">200</integer>
  1448. <integer name="m3_sys_motion_path">0</integer>
  1449. <integer name="m3_sys_shape_large_corner_family">0</integer>
  1450. <integer name="m3_sys_shape_medium_corner_family">0</integer>
  1451. <integer name="m3_sys_shape_small_corner_family">0</integer>
  1452. <integer name="material_motion_duration_long_1">300</integer>
  1453. <integer name="material_motion_duration_long_2">350</integer>
  1454. <integer name="material_motion_duration_medium_1">200</integer>
  1455. <integer name="material_motion_duration_medium_2">250</integer>
  1456. <integer name="material_motion_duration_short_1">75</integer>
  1457. <integer name="material_motion_duration_short_2">150</integer>
  1458. <integer name="material_motion_path" translatable="false">0</integer>
  1459. <integer name="mtrl_badge_max_character_count">4</integer>
  1460. <integer name="mtrl_btn_anim_delay_ms">100</integer>
  1461. <integer name="mtrl_btn_anim_duration_ms">100</integer>
  1462. <integer name="mtrl_calendar_header_orientation">1</integer>
  1463. <integer name="mtrl_calendar_selection_text_lines">1</integer>
  1464. <integer name="mtrl_calendar_year_selector_span">3</integer>
  1465. <integer name="mtrl_card_anim_delay_ms">75</integer>
  1466. <integer name="mtrl_card_anim_duration_ms">120</integer>
  1467. <integer name="mtrl_chip_anim_duration">100</integer>
  1468. <integer name="mtrl_tab_indicator_anim_duration_ms">250</integer>
  1469. <integer name="mtrl_view_gone">2</integer>
  1470. <integer name="mtrl_view_invisible">1</integer>
  1471. <integer name="mtrl_view_visible">0</integer>
  1472. <integer name="show_password_duration">200</integer>
  1473. <integer name="status_bar_notification_info_maxnum">999</integer>
  1474. <plurals description="Plural form content description for number of new notifications [CHAR_LIMIT=NONE]" name="mtrl_badge_content_description">
  1475. <item quantity="one"><ns2:g id="count">%d</ns2:g> new notification</item>
  1476. <item quantity="other"><ns2:g id="count">%d</ns2:g> new notifications</item>
  1477. </plurals>
  1478. <string name="abc_action_bar_home_description">Navigate home</string>
  1479. <string name="abc_action_bar_up_description">Navigate up</string>
  1480. <string name="abc_action_menu_overflow_description">More options</string>
  1481. <string name="abc_action_mode_done">Done</string>
  1482. <string name="abc_activity_chooser_view_see_all">See all</string>
  1483. <string name="abc_activitychooserview_choose_application">Choose an app</string>
  1484. <string name="abc_capital_off">OFF</string>
  1485. <string name="abc_capital_on">ON</string>
  1486. <string name="abc_menu_alt_shortcut_label">Alt+</string>
  1487. <string name="abc_menu_ctrl_shortcut_label">Ctrl+</string>
  1488. <string name="abc_menu_delete_shortcut_label">delete</string>
  1489. <string name="abc_menu_enter_shortcut_label">enter</string>
  1490. <string name="abc_menu_function_shortcut_label">Function+</string>
  1491. <string name="abc_menu_meta_shortcut_label">Meta+</string>
  1492. <string name="abc_menu_shift_shortcut_label">Shift+</string>
  1493. <string name="abc_menu_space_shortcut_label">space</string>
  1494. <string name="abc_menu_sym_shortcut_label">Sym+</string>
  1495. <string name="abc_prepend_shortcut_label">Menu+</string>
  1496. <string name="abc_search_hint">Search…</string>
  1497. <string name="abc_searchview_description_clear">Clear query</string>
  1498. <string name="abc_searchview_description_query">Search query</string>
  1499. <string name="abc_searchview_description_search">Search</string>
  1500. <string name="abc_searchview_description_submit">Submit query</string>
  1501. <string name="abc_searchview_description_voice">Voice search</string>
  1502. <string name="abc_shareactionprovider_share_with">Share with</string>
  1503. <string name="abc_shareactionprovider_share_with_application">Share with <ns2:g example="Mail" id="application_name">%s</ns2:g></string>
  1504. <string name="abc_toolbar_collapse_description">Collapse</string>
  1505. <string name="androidx_startup" translatable="false">androidx.startup</string>
  1506. <string name="app_name">Sunmi-Printer Utill</string>
  1507. <string name="appbar_scrolling_view_behavior" translatable="false">com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior</string>
  1508. <string name="bottom_sheet_behavior" translatable="false">com.google.android.material.bottomsheet.BottomSheetBehavior</string>
  1509. <string description="A description of an action that a user of an accessibility service can perform to expand a bottomsheet halfway to its full height. [CHAR LIMIT=25]" name="bottomsheet_action_expand_halfway">Expand halfway</string>
  1510. <string name="character_counter_content_description">Characters entered %1$d of %2$d</string>
  1511. <string name="character_counter_overflowed_content_description">Character limit exceeded %1$d of %2$d</string>
  1512. <string name="character_counter_pattern" translatable="false">%1$d/%2$d</string>
  1513. <string name="chip_text">Chip text</string>
  1514. <string name="clear_text_end_icon_content_description">Clear text</string>
  1515. <string name="connect_method">connect method</string>
  1516. <string name="connect_service">Connect</string>
  1517. <string name="disconnect_service">Disconnect</string>
  1518. <string name="error_icon_content_description">Error</string>
  1519. <string name="exposed_dropdown_menu_content_description">Show dropdown menu</string>
  1520. <string name="fab_transformation_scrim_behavior" translatable="false">com.google.android.material.transformation.FabTransformationScrimBehavior</string>
  1521. <string name="fab_transformation_sheet_behavior" translatable="false">com.google.android.material.transformation.FabTransformationSheetBehavior</string>
  1522. <string name="hide_bottom_view_on_scroll_behavior" translatable="false">com.google.android.material.behavior.HideBottomViewOnScrollBehavior</string>
  1523. <string description="Content description for an icon that appears in the title area of a dialog" name="icon_content_description">Dialog Icon</string>
  1524. <string name="info_title">PrinterInformation</string>
  1525. <string name="item_view_role_description">Tab</string>
  1526. <string name="m3_ref_typeface_brand_display_regular" translatable="false">sans-serif</string>
  1527. <string name="m3_ref_typeface_brand_medium" translatable="false">sans-serif-medium</string>
  1528. <string name="m3_ref_typeface_brand_regular" translatable="false">sans-serif</string>
  1529. <string name="m3_ref_typeface_plain_medium" translatable="false">sans-serif-medium</string>
  1530. <string name="m3_ref_typeface_plain_regular" translatable="false">sans-serif</string>
  1531. <string name="m3_sys_motion_easing_accelerated" translatable="false">cubic-bezier(0.4, 0.0, 1.0, 1.0)</string>
  1532. <string name="m3_sys_motion_easing_decelerated" translatable="false">cubic-bezier(0.0, 0.0, 0.2, 1.0)</string>
  1533. <string name="m3_sys_motion_easing_emphasized" translatable="false">path(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1)</string>
  1534. <string name="m3_sys_motion_easing_linear" translatable="false">cubic-bezier(0.0, 0.0, 1.0, 1.0)</string>
  1535. <string name="m3_sys_motion_easing_standard" translatable="false">path(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1)</string>
  1536. <string name="m3_sys_typescale_body_large_font" translatable="false">sans-serif</string>
  1537. <string name="m3_sys_typescale_body_medium_font" translatable="false">sans-serif</string>
  1538. <string name="m3_sys_typescale_body_small_font" translatable="false">sans-serif</string>
  1539. <string name="m3_sys_typescale_display_large_font" translatable="false">sans-serif</string>
  1540. <string name="m3_sys_typescale_display_medium_font" translatable="false">sans-serif</string>
  1541. <string name="m3_sys_typescale_display_small_font" translatable="false">sans-serif</string>
  1542. <string name="m3_sys_typescale_headline_large_font" translatable="false">sans-serif</string>
  1543. <string name="m3_sys_typescale_headline_medium_font" translatable="false">sans-serif</string>
  1544. <string name="m3_sys_typescale_headline_small_font" translatable="false">sans-serif</string>
  1545. <string name="m3_sys_typescale_label_large_font" translatable="false">sans-serif-medium</string>
  1546. <string name="m3_sys_typescale_label_medium_font" translatable="false">sans-serif-medium</string>
  1547. <string name="m3_sys_typescale_label_small_font" translatable="false">sans-serif-medium</string>
  1548. <string name="m3_sys_typescale_title_large_font" translatable="false">sans-serif</string>
  1549. <string name="m3_sys_typescale_title_medium_font" translatable="false">sans-serif-medium</string>
  1550. <string name="m3_sys_typescale_title_small_font" translatable="false">sans-serif-medium</string>
  1551. <string name="material_clock_display_divider" translatable="false">:</string>
  1552. <string description="Description for the toggle to choose between AM and PM [CHAR_LIMIT=NONE] " name="material_clock_toggle_content_description">Select AM or PM</string>
  1553. <string description="Description for button to switch to select the hour [CHAR_LIMIT=NONE]" name="material_hour_selection">Select hour</string>
  1554. <string description="spoken suffix for an hour in the clock [CHAR_LIMIT=10]" name="material_hour_suffix"><ns2:g id="number">%1$s</ns2:g> o\'clock</string>
  1555. <string description="Description for button to switch to select the minute [CHAR_LIMIT=NONE]" name="material_minute_selection">Select minutes</string>
  1556. <string description="spoken suffix for an amount of minutes in the clock [CHAR_LIMIT=16]" name="material_minute_suffix"><ns2:g id="number">%1$s</ns2:g> minutes</string>
  1557. <string name="material_motion_easing_accelerated" translatable="false">cubic-bezier(0.4, 0.0, 1.0, 1.0)</string>
  1558. <string name="material_motion_easing_decelerated" translatable="false">cubic-bezier(0.0, 0.0, 0.2, 1.0)</string>
  1559. <string name="material_motion_easing_emphasized" translatable="false">path(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1)</string>
  1560. <string name="material_motion_easing_linear" translatable="false">cubic-bezier(0.0, 0.0, 1.0, 1.0)</string>
  1561. <string name="material_motion_easing_standard" translatable="false">cubic-bezier(0.4, 0.0, 0.2, 1.0)</string>
  1562. <string description="Content description for the thumb with the maximum value in a Range slider. [CHAR_LIMIT=NONE]" name="material_slider_range_end">Range end, </string>
  1563. <string description="Content description for the thumb with the minimum value in a Range slider. [CHAR_LIMIT=NONE]" name="material_slider_range_start">Range start, </string>
  1564. <string description="Suffix for time in 12-hour standard, before noon. [CHAR_LIMIT=2]" name="material_timepicker_am">AM</string>
  1565. <string name="material_timepicker_clock_mode_description">Switch to clock mode for the time input.</string>
  1566. <string description="The label for a text field to select the hour on the time [CHAR_LIMIT=24]" name="material_timepicker_hour">Hour</string>
  1567. <string description="The label for a text field to select the minute on the hour [CHAR_LIMIT=24]" name="material_timepicker_minute">Minute</string>
  1568. <string description="Suffix for time in 12-hour standard, after noon. [CHAR_LIMIT=2]" name="material_timepicker_pm">PM</string>
  1569. <string description="Title for the dialog with a time picker. [CHAR_LIMIT=32]" name="material_timepicker_select_time">Select time</string>
  1570. <string name="material_timepicker_text_input_mode_description">Switch to text input mode for the time input.</string>
  1571. <string description="Content description for new notification (no number count) [CHAR_LIMIT=NONE]" name="mtrl_badge_numberless_content_description">New notification</string>
  1572. <string description="Content description for a close icon that lets the user remove content from the screen" name="mtrl_chip_close_icon_content_description">Remove %1$s</string>
  1573. <string description="Plural form content description for when the number of new notifications exceeds a maximum count[CHAR_LIMIT=NONE]" name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">More than <ns2:g example="999" id="maximum number">%1$d</ns2:g> new notifications</string>
  1574. <string name="mtrl_exceed_max_badge_number_suffix" translatable="false"><ns2:g example="999" id="maximum number">%1$d</ns2:g><ns2:g example="+" id="suffix">%2$s</ns2:g></string>
  1575. <string description="a11y string to indicate this button moves the calendar to the next month [CHAR_LIMIT=NONE]" name="mtrl_picker_a11y_next_month">Change to next month</string>
  1576. <string description="a11y string to indicate this button moves the calendar to the previous month [CHAR_LIMIT=NONE]" name="mtrl_picker_a11y_prev_month">Change to previous month</string>
  1577. <string description="a11y string read on selection change to indicate the new selection [CHAR_LIMIT=NONE]" name="mtrl_picker_announce_current_selection">Current selection: %1$s</string>
  1578. <string description="Button text to indicate that the widget will ignore the user&apos;s selection [CHAR_LIMIT=16]" name="mtrl_picker_cancel" translatable="false">@android:string/cancel</string>
  1579. <string description="Button text to indicate that the widget will save the user&apos;s selection [CHAR_LIMIT=16]" name="mtrl_picker_confirm">OK</string>
  1580. <string description="A single date [CHAR_LIMIT=60]" name="mtrl_picker_date_header_selected">%1$s</string>
  1581. <string description="Indicates that the user must take the action of picking a date within the calendar [CHAR_LIMIT=60]" name="mtrl_picker_date_header_title">Select Date</string>
  1582. <string description="Placeholder for a single date [CHAR_LIMIT=60]" name="mtrl_picker_date_header_unselected">Selected date</string>
  1583. <string description="a11y string to indicate this is a header for a column of days for one day of the week (e.g., Monday) [CHAR_LIMIT=NONE]" name="mtrl_picker_day_of_week_column_header">Column of days: %1$s</string>
  1584. <string description="Indicates that the user entered date cannot be parsed because its format is wrong. [CHAR_LIMIT=36]" name="mtrl_picker_invalid_format">Invalid format.</string>
  1585. <string description="Tells a user what an example valid entry looks like. [CHAR_LIMIT=18]" name="mtrl_picker_invalid_format_example">Example: %1$s</string>
  1586. <string description="Tells a user what format is expected for their date entry. [CHAR_LIMIT=18]" name="mtrl_picker_invalid_format_use">Use: %1$s</string>
  1587. <string description="Notifies the user that the two entered dates do not represent a valid range of dates [CHAR_LIMIT=36]" name="mtrl_picker_invalid_range">Invalid range.</string>
  1588. <string description="a11y string that informs the user that tapping this button will switch the year [CHAR_LIMIT=NONE]" name="mtrl_picker_navigate_to_year_description">Navigate to year %1$s</string>
  1589. <string description="Notifies the user that the entered date is outside the allowed range [CHAR_LIMIT=36]" name="mtrl_picker_out_of_range">Out of range: %1$s</string>
  1590. <string description="Placeholders for two dates separated by a dash representing a range where end date has been selected [CHAR_LIMIT=60]" name="mtrl_picker_range_header_only_end_selected">Start date – %1$s</string>
  1591. <string description="Placeholders for two dates separated by a dash representing a range where start date has been selected [CHAR_LIMIT=60]" name="mtrl_picker_range_header_only_start_selected">%1$s – End date</string>
  1592. <string description="Two dates separated by a dash representing a range [CHAR_LIMIT=60]" name="mtrl_picker_range_header_selected">%1$s – %2$s</string>
  1593. <string description="Indicates that the user must take the action of picking dates within the calendar to form a range [CHAR_LIMIT=60]" name="mtrl_picker_range_header_title">Select Range</string>
  1594. <string description="Placeholders for two dates separated by a dash representing a range [CHAR_LIMIT=60]" name="mtrl_picker_range_header_unselected">Start date – End date</string>
  1595. <string description="Confirms the selection [CHAR_LIMIT=12]" name="mtrl_picker_save">Save</string>
  1596. <string description="Label for a single date selected by the user [CHAR_LIMIT=60]" name="mtrl_picker_text_input_date_hint">Date</string>
  1597. <string description="Label for the end date in a range selected by the user [CHAR_LIMIT=60]" name="mtrl_picker_text_input_date_range_end_hint">End date</string>
  1598. <string description="Label for the start date in a range selected by the user [CHAR_LIMIT=60]" name="mtrl_picker_text_input_date_range_start_hint">Start date</string>
  1599. <string description="A 1 character abbreviation for day. It will be part of a string such as dd/mm/yyyy or mm/dd/yyyy or y.mm.dd. [CHAR_LIMIT=2]" name="mtrl_picker_text_input_day_abbr">d</string>
  1600. <string description="A 1 character abbreviation for month. It will be part of a string such as dd/mm/yyyy or mm/dd/yyyy or y.mm.dd. [CHAR_LIMIT=2]" name="mtrl_picker_text_input_month_abbr">m</string>
  1601. <string description="A 1 character abbreviation for year. It will be part of a string such as dd/mm/yyyy or mm/dd/yyyy or y.mm.dd. [CHAR_LIMIT=2]" name="mtrl_picker_text_input_year_abbr">y</string>
  1602. <string description="a11y string to indicate this button changes the input mode to a calendar [CHAR_LIMIT=NONE]" name="mtrl_picker_toggle_to_calendar_input_mode">Switch to calendar input mode</string>
  1603. <string description="a11y string to indicate this button switches the user to choosing a day [CHAR_LIMIT=NONE]" name="mtrl_picker_toggle_to_day_selection">Tap to switch to selecting a day</string>
  1604. <string description="a11y string to indicate this button changes the input mode to a text field [CHAR_LIMIT=NONE]" name="mtrl_picker_toggle_to_text_input_mode">Switch to text input mode</string>
  1605. <string description="a11y string to indicate this button switches the user to choosing a year [CHAR_LIMIT=NONE]" name="mtrl_picker_toggle_to_year_selection">Tap to switch to selecting a year</string>
  1606. <string description="Button text to indicate that the widget will save the user&apos;s selection [CHAR_LIMIT=16]" name="mtrl_timepicker_confirm">OK</string>
  1607. <string name="password_toggle_content_description">Show password</string>
  1608. <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>
  1609. <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>
  1610. <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>
  1611. <string name="path_password_strike_through" translatable="false">M3.27,4.27 L19.74,20.74</string>
  1612. <string name="print_density">printer density</string>
  1613. <string name="printer_settings">Printer Settings</string>
  1614. <string name="printing_inprogress">جاري الطباعة ...</string>
  1615. <string name="search_menu_title">Search</string>
  1616. <string name="size_paper">paper size</string>
  1617. <string name="status_bar_notification_info_overflow">999+</string>
  1618. <string name="toast_1">Transaction print,use the AIDL mode!</string>
  1619. <string name="toast_2">The service has been disconnected!</string>
  1620. <string name="toast_3">Bluetooth device is unavailable</string>
  1621. <string name="toast_4">Bluetooth device not detected. Please open Bluetooth!</string>
  1622. <string name="toast_5">Not Found InnterPrinter!</string>
  1623. <string name="toast_6">Bluetooth connect failed!</string>
  1624. <string name="toast_7"> Only a single Qr code is printed for the AIDL mode</string>
  1625. <string name="toast_8">Now QrCode size must be less than 7!</string>
  1626. <style name="AlertDialog.AppCompat" parent="Base.AlertDialog.AppCompat"/>
  1627. <style name="AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat.Light"/>
  1628. <style name="AndroidThemeColorAccentYellow" ns1:ignore="NewApi">
  1629. <item name="android:colorAccent">#FFFFFF00</item>
  1630. </style>
  1631. <style name="Animation.AppCompat.Dialog" parent="Base.Animation.AppCompat.Dialog"/>
  1632. <style name="Animation.AppCompat.DropDownUp" parent="Base.Animation.AppCompat.DropDownUp"/>
  1633. <style name="Animation.AppCompat.Tooltip" parent="Base.Animation.AppCompat.Tooltip"/>
  1634. <style name="Animation.Design.BottomSheetDialog" parent="Animation.AppCompat.Dialog">
  1635. <item name="android:windowEnterAnimation">@anim/design_bottom_sheet_slide_in</item>
  1636. <item name="android:windowExitAnimation">@anim/design_bottom_sheet_slide_out</item>
  1637. </style>
  1638. <style name="Animation.MaterialComponents.BottomSheetDialog" parent="Animation.AppCompat.Dialog">
  1639. <item name="android:windowEnterAnimation">@anim/mtrl_bottom_sheet_slide_in</item>
  1640. <item name="android:windowExitAnimation">@anim/mtrl_bottom_sheet_slide_out</item>
  1641. </style>
  1642. <style name="Base.AlertDialog.AppCompat" parent="android:Widget">
  1643. <item name="android:layout">@layout/abc_alert_dialog_material</item>
  1644. <item name="listLayout">@layout/abc_select_dialog_material</item>
  1645. <item name="listItemLayout">@layout/select_dialog_item_material</item>
  1646. <item name="multiChoiceItemLayout">@layout/select_dialog_multichoice_material</item>
  1647. <item name="singleChoiceItemLayout">@layout/select_dialog_singlechoice_material</item>
  1648. <item name="buttonIconDimen">@dimen/abc_alert_dialog_button_dimen</item>
  1649. </style>
  1650. <style name="Base.AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat"/>
  1651. <style name="Base.Animation.AppCompat.Dialog" parent="android:Animation">
  1652. <item name="android:windowEnterAnimation">@anim/abc_popup_enter</item>
  1653. <item name="android:windowExitAnimation">@anim/abc_popup_exit</item>
  1654. </style>
  1655. <style name="Base.Animation.AppCompat.DropDownUp" parent="android:Animation">
  1656. <item name="android:windowEnterAnimation">@anim/abc_grow_fade_in_from_bottom</item>
  1657. <item name="android:windowExitAnimation">@anim/abc_shrink_fade_out_from_bottom</item>
  1658. </style>
  1659. <style name="Base.Animation.AppCompat.Tooltip" parent="android:Animation">
  1660. <item name="android:windowEnterAnimation">@anim/abc_tooltip_enter</item>
  1661. <item name="android:windowExitAnimation">@anim/abc_tooltip_exit</item>
  1662. </style>
  1663. <style name="Base.CardView" parent="android:Widget">
  1664. <item name="cardCornerRadius">@dimen/cardview_default_radius</item>
  1665. <item name="cardElevation">@dimen/cardview_default_elevation</item>
  1666. <item name="cardMaxElevation">@dimen/cardview_default_elevation</item>
  1667. <item name="cardUseCompatPadding">false</item>
  1668. <item name="cardPreventCornerOverlap">true</item>
  1669. </style>
  1670. <style name="Base.DialogWindowTitle.AppCompat" parent="android:Widget">
  1671. <item name="android:maxLines">1</item>
  1672. <item name="android:scrollHorizontally">true</item>
  1673. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Title</item>
  1674. </style>
  1675. <style name="Base.DialogWindowTitleBackground.AppCompat" parent="android:Widget">
  1676. <item name="android:background">@null</item>
  1677. <item name="android:paddingLeft">?attr/dialogPreferredPadding</item>
  1678. <item name="android:paddingRight">?attr/dialogPreferredPadding</item>
  1679. <item name="android:paddingTop">@dimen/abc_dialog_padding_top_material</item>
  1680. </style>
  1681. <style name="Base.MaterialAlertDialog.MaterialComponents.Title.Icon" parent="android:Widget">
  1682. <item name="android:layout_width">32dip</item>
  1683. <item name="android:layout_height">32dip</item>
  1684. <item name="android:scaleType">fitCenter</item>
  1685. <item name="android:src">@null</item>
  1686. <item name="android:contentDescription">@string/icon_content_description</item>
  1687. </style>
  1688. <style name="Base.MaterialAlertDialog.MaterialComponents.Title.Panel" parent="android:Widget">
  1689. <item name="android:layout_width">match_parent</item>
  1690. <item name="android:layout_height">wrap_content</item>
  1691. <item name="android:paddingLeft">?attr/dialogPreferredPadding</item>
  1692. <item name="android:paddingRight">?attr/dialogPreferredPadding</item>
  1693. <item name="android:paddingTop">@dimen/abc_dialog_padding_top_material</item>
  1694. </style>
  1695. <style name="Base.MaterialAlertDialog.MaterialComponents.Title.Text" parent="RtlOverlay.DialogWindowTitle.AppCompat">
  1696. <item name="android:textAppearance">?attr/textAppearanceSubtitle1</item>
  1697. <item name="android:textColor">@color/material_on_surface_emphasis_high_type</item>
  1698. <item name="android:layout_width">wrap_content</item>
  1699. <item name="android:layout_height">wrap_content</item>
  1700. <item name="android:ellipsize">end</item>
  1701. <item name="android:singleLine">true</item>
  1702. </style>
  1703. <style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance">
  1704. <item name="android:textColor">?android:textColorPrimary</item>
  1705. <item name="android:textColorHint">?android:textColorHint</item>
  1706. <item name="android:textColorHighlight">?android:textColorHighlight</item>
  1707. <item name="android:textColorLink">?android:textColorLink</item>
  1708. <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
  1709. </style>
  1710. <style name="Base.TextAppearance.AppCompat.Body1">
  1711. <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
  1712. <item name="android:textColor">?android:textColorPrimary</item>
  1713. </style>
  1714. <style name="Base.TextAppearance.AppCompat.Body2">
  1715. <item name="android:textSize">@dimen/abc_text_size_body_2_material</item>
  1716. <item name="android:textColor">?android:textColorPrimary</item>
  1717. </style>
  1718. <style name="Base.TextAppearance.AppCompat.Button">
  1719. <item name="android:textSize">@dimen/abc_text_size_button_material</item>
  1720. <item name="android:textAllCaps">true</item>
  1721. <item name="android:textColor">?android:textColorPrimary</item>
  1722. </style>
  1723. <style name="Base.TextAppearance.AppCompat.Caption">
  1724. <item name="android:textSize">@dimen/abc_text_size_caption_material</item>
  1725. <item name="android:textColor">?android:textColorSecondary</item>
  1726. </style>
  1727. <style name="Base.TextAppearance.AppCompat.Display1">
  1728. <item name="android:textSize">@dimen/abc_text_size_display_1_material</item>
  1729. <item name="android:textColor">?android:textColorSecondary</item>
  1730. </style>
  1731. <style name="Base.TextAppearance.AppCompat.Display2">
  1732. <item name="android:textSize">@dimen/abc_text_size_display_2_material</item>
  1733. <item name="android:textColor">?android:textColorSecondary</item>
  1734. </style>
  1735. <style name="Base.TextAppearance.AppCompat.Display3">
  1736. <item name="android:textSize">@dimen/abc_text_size_display_3_material</item>
  1737. <item name="android:textColor">?android:textColorSecondary</item>
  1738. </style>
  1739. <style name="Base.TextAppearance.AppCompat.Display4">
  1740. <item name="android:textSize">@dimen/abc_text_size_display_4_material</item>
  1741. <item name="android:textColor">?android:textColorSecondary</item>
  1742. </style>
  1743. <style name="Base.TextAppearance.AppCompat.Headline">
  1744. <item name="android:textSize">@dimen/abc_text_size_headline_material</item>
  1745. <item name="android:textColor">?android:textColorPrimary</item>
  1746. </style>
  1747. <style name="Base.TextAppearance.AppCompat.Inverse">
  1748. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  1749. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  1750. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  1751. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  1752. </style>
  1753. <style name="Base.TextAppearance.AppCompat.Large">
  1754. <item name="android:textSize">@dimen/abc_text_size_large_material</item>
  1755. <item name="android:textColor">?android:attr/textColorPrimary</item>
  1756. </style>
  1757. <style name="Base.TextAppearance.AppCompat.Large.Inverse">
  1758. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  1759. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  1760. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  1761. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  1762. </style>
  1763. <style name="Base.TextAppearance.AppCompat.Medium">
  1764. <item name="android:textSize">@dimen/abc_text_size_medium_material</item>
  1765. <item name="android:textColor">?android:attr/textColorSecondary</item>
  1766. </style>
  1767. <style name="Base.TextAppearance.AppCompat.Medium.Inverse">
  1768. <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
  1769. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  1770. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  1771. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  1772. </style>
  1773. <style name="Base.TextAppearance.AppCompat.Menu">
  1774. <item name="android:textSize">@dimen/abc_text_size_menu_material</item>
  1775. <item name="android:textColor">?android:textColorPrimary</item>
  1776. </style>
  1777. <style name="Base.TextAppearance.AppCompat.SearchResult" parent="">
  1778. <item name="android:textStyle">normal</item>
  1779. <item name="android:textColor">?android:textColorPrimary</item>
  1780. <item name="android:textColorHint">?android:textColorHint</item>
  1781. </style>
  1782. <style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
  1783. <item name="android:textSize">14sp</item>
  1784. <item name="android:textColor">?android:textColorSecondary</item>
  1785. </style>
  1786. <style name="Base.TextAppearance.AppCompat.SearchResult.Title">
  1787. <item name="android:textSize">18sp</item>
  1788. </style>
  1789. <style name="Base.TextAppearance.AppCompat.Small">
  1790. <item name="android:textSize">@dimen/abc_text_size_small_material</item>
  1791. <item name="android:textColor">?android:attr/textColorTertiary</item>
  1792. </style>
  1793. <style name="Base.TextAppearance.AppCompat.Small.Inverse">
  1794. <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
  1795. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  1796. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  1797. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  1798. </style>
  1799. <style name="Base.TextAppearance.AppCompat.Subhead">
  1800. <item name="android:textSize">@dimen/abc_text_size_subhead_material</item>
  1801. <item name="android:textColor">?android:textColorPrimary</item>
  1802. </style>
  1803. <style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
  1804. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  1805. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  1806. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  1807. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  1808. </style>
  1809. <style name="Base.TextAppearance.AppCompat.Title">
  1810. <item name="android:textSize">@dimen/abc_text_size_title_material</item>
  1811. <item name="android:textColor">?android:textColorPrimary</item>
  1812. </style>
  1813. <style name="Base.TextAppearance.AppCompat.Title.Inverse">
  1814. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  1815. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  1816. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  1817. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  1818. </style>
  1819. <style name="Base.TextAppearance.AppCompat.Tooltip">
  1820. <item name="android:textSize">14sp</item>
  1821. </style>
  1822. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="TextAppearance.AppCompat.Button">
  1823. <item name="android:textColor">?attr/actionMenuTextColor</item>
  1824. <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
  1825. </style>
  1826. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="TextAppearance.AppCompat.Subhead">
  1827. <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
  1828. <item name="android:textColor">?android:attr/textColorSecondary</item>
  1829. </style>
  1830. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="TextAppearance.AppCompat.Subhead.Inverse">
  1831. <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
  1832. <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
  1833. </style>
  1834. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="TextAppearance.AppCompat.Title">
  1835. <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
  1836. <item name="android:textColor">?android:attr/textColorPrimary</item>
  1837. </style>
  1838. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="TextAppearance.AppCompat.Title.Inverse">
  1839. <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
  1840. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  1841. </style>
  1842. <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/>
  1843. <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title"/>
  1844. <style name="Base.TextAppearance.AppCompat.Widget.Button" parent="TextAppearance.AppCompat.Button"/>
  1845. <style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button">
  1846. <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
  1847. </style>
  1848. <style name="Base.TextAppearance.AppCompat.Widget.Button.Colored">
  1849. <item name="android:textColor">@color/abc_btn_colored_text_material</item>
  1850. </style>
  1851. <style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="TextAppearance.AppCompat.Button">
  1852. <item name="android:textColor">?android:textColorPrimaryInverse</item>
  1853. </style>
  1854. <style name="Base.TextAppearance.AppCompat.Widget.DropDownItem" parent="android:TextAppearance.Small">
  1855. <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
  1856. </style>
  1857. <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
  1858. <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
  1859. <item name="android:textColor">?attr/colorAccent</item>
  1860. </style>
  1861. <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu"/>
  1862. <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu"/>
  1863. <style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="TextAppearance.AppCompat.Button"/>
  1864. <style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="TextAppearance.AppCompat.Menu"/>
  1865. <style name="Base.TextAppearance.Material3.LabelLarge" parent="TextAppearance.MaterialComponents.Body2">
  1866. <item name="fontFamily">@string/m3_sys_typescale_label_large_font</item>
  1867. <item name="android:fontFamily">@string/m3_sys_typescale_label_large_font</item>
  1868. <item name="android:textStyle">bold</item>
  1869. <item name="android:textAllCaps">@bool/m3_sys_typescale_label_large_text_all_caps</item>
  1870. <item name="android:textSize">@dimen/m3_sys_typescale_label_large_text_size</item>
  1871. <item name="android:letterSpacing">@dimen/m3_sys_typescale_label_large_letter_spacing</item>
  1872. </style>
  1873. <style name="Base.TextAppearance.Material3.LabelMedium" parent="TextAppearance.MaterialComponents.Caption">
  1874. <item name="fontFamily">@string/m3_sys_typescale_label_medium_font</item>
  1875. <item name="android:fontFamily">@string/m3_sys_typescale_label_medium_font</item>
  1876. <item name="android:textStyle">bold</item>
  1877. <item name="android:textAllCaps">@bool/m3_sys_typescale_label_medium_text_all_caps</item>
  1878. <item name="android:textSize">@dimen/m3_sys_typescale_label_medium_text_size</item>
  1879. <item name="android:letterSpacing">@dimen/m3_sys_typescale_label_medium_letter_spacing</item>
  1880. </style>
  1881. <style name="Base.TextAppearance.Material3.LabelSmall" parent="TextAppearance.MaterialComponents.Caption">
  1882. <item name="fontFamily">@string/m3_sys_typescale_label_small_font</item>
  1883. <item name="android:fontFamily">@string/m3_sys_typescale_label_small_font</item>
  1884. <item name="android:textStyle">bold</item>
  1885. <item name="android:textAllCaps">@bool/m3_sys_typescale_label_small_text_all_caps</item>
  1886. <item name="android:textSize">@dimen/m3_sys_typescale_label_small_text_size</item>
  1887. <item name="android:letterSpacing">@dimen/m3_sys_typescale_label_small_letter_spacing</item>
  1888. </style>
  1889. <style name="Base.TextAppearance.Material3.TitleMedium" parent="TextAppearance.MaterialComponents.Subtitle1">
  1890. <item name="fontFamily">@string/m3_sys_typescale_title_medium_font</item>
  1891. <item name="android:fontFamily">@string/m3_sys_typescale_title_medium_font</item>
  1892. <item name="android:textStyle">bold</item>
  1893. <item name="android:textAllCaps">@bool/m3_sys_typescale_title_medium_text_all_caps</item>
  1894. <item name="android:textSize">@dimen/m3_sys_typescale_title_medium_text_size</item>
  1895. <item name="android:letterSpacing">@dimen/m3_sys_typescale_title_medium_letter_spacing</item>
  1896. </style>
  1897. <style name="Base.TextAppearance.Material3.TitleSmall" parent="TextAppearance.MaterialComponents.Subtitle2">
  1898. <item name="fontFamily">@string/m3_sys_typescale_title_small_font</item>
  1899. <item name="android:fontFamily">@string/m3_sys_typescale_title_small_font</item>
  1900. <item name="android:textStyle">bold</item>
  1901. <item name="android:textAllCaps">@bool/m3_sys_typescale_title_small_text_all_caps</item>
  1902. <item name="android:textSize">@dimen/m3_sys_typescale_title_small_text_size</item>
  1903. <item name="android:letterSpacing">@dimen/m3_sys_typescale_title_small_letter_spacing</item>
  1904. </style>
  1905. <style name="Base.TextAppearance.MaterialComponents.Badge" parent="TextAppearance.AppCompat">
  1906. <!-- Fake Roboto Medium. -->
  1907. <item name="fontFamily">sans-serif-medium</item>
  1908. <item name="android:fontFamily">sans-serif-medium</item>
  1909. <item name="android:textStyle">bold</item>
  1910. <item name="android:textAllCaps">false</item>
  1911. <item name="android:textSize">@dimen/mtrl_badge_text_size</item>
  1912. <item name="android:letterSpacing">0.0892857143</item>
  1913. <item name="android:textColor">?attr/colorOnError</item>
  1914. </style>
  1915. <style name="Base.TextAppearance.MaterialComponents.Button" parent="TextAppearance.AppCompat.Button">
  1916. <!-- Fake Roboto Medium. -->
  1917. <item name="fontFamily">sans-serif-medium</item>
  1918. <item name="android:fontFamily">sans-serif-medium</item>
  1919. <item name="android:textStyle">bold</item>
  1920. <item name="android:textAllCaps">true</item>
  1921. <item name="android:textSize">14sp</item>
  1922. <item name="android:letterSpacing">0.0892857143</item>
  1923. </style>
  1924. <style name="Base.TextAppearance.MaterialComponents.Headline6" parent="TextAppearance.AppCompat.Title">
  1925. <!-- Fake Roboto Medium. -->
  1926. <item name="fontFamily">sans-serif-medium</item>
  1927. <item name="android:fontFamily">sans-serif-medium</item>
  1928. <item name="android:textStyle">bold</item>
  1929. <item name="android:textAllCaps">false</item>
  1930. <item name="android:textSize">20sp</item>
  1931. <item name="android:letterSpacing">0.0125</item>
  1932. </style>
  1933. <style name="Base.TextAppearance.MaterialComponents.Subtitle2" parent="TextAppearance.AppCompat.Subhead">
  1934. <!-- Fake Roboto Medium. -->
  1935. <item name="fontFamily">sans-serif-medium</item>
  1936. <item name="android:fontFamily">sans-serif-medium</item>
  1937. <item name="android:textStyle">bold</item>
  1938. <item name="android:textAllCaps">false</item>
  1939. <item name="android:textSize">14sp</item>
  1940. <item name="android:letterSpacing">0.00714285714</item>
  1941. </style>
  1942. <style name="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="android:TextAppearance.Medium">
  1943. <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
  1944. </style>
  1945. <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle">
  1946. </style>
  1947. <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
  1948. </style>
  1949. <style name="Base.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
  1950. </style>
  1951. <style name="Base.Theme.AppCompat.CompactMenu" parent="">
  1952. <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
  1953. <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
  1954. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
  1955. </style>
  1956. <style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog"/>
  1957. <style name="Base.Theme.AppCompat.Dialog.Alert">
  1958. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  1959. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  1960. </style>
  1961. <style name="Base.Theme.AppCompat.Dialog.FixedSize">
  1962. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  1963. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  1964. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  1965. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  1966. </style>
  1967. <style name="Base.Theme.AppCompat.Dialog.MinWidth">
  1968. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  1969. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  1970. </style>
  1971. <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Theme.AppCompat"/>
  1972. <style name="Base.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
  1973. </style>
  1974. <style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light">
  1975. <item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item>
  1976. <item name="actionBarWidgetTheme">@null</item>
  1977. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
  1978. <item name="actionModeTheme">?attr/actionBarTheme</item>
  1979. <!-- Panel attributes -->
  1980. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
  1981. <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
  1982. <item name="colorPrimary">@color/primary_material_dark</item>
  1983. </style>
  1984. <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog"/>
  1985. <style name="Base.Theme.AppCompat.Light.Dialog.Alert">
  1986. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  1987. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  1988. </style>
  1989. <style name="Base.Theme.AppCompat.Light.Dialog.FixedSize">
  1990. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  1991. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  1992. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  1993. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  1994. </style>
  1995. <style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
  1996. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  1997. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  1998. </style>
  1999. <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Theme.AppCompat.Light"/>
  2000. <style name="Base.Theme.Material3.Dark" parent="Base.V14.Theme.Material3.Dark"/>
  2001. <style name="Base.Theme.Material3.Dark.BottomSheetDialog" parent="Base.V14.Theme.Material3.Dark.BottomSheetDialog"/>
  2002. <style name="Base.Theme.Material3.Dark.Dialog" parent="Base.V14.Theme.Material3.Dark.Dialog"/>
  2003. <style name="Base.Theme.Material3.Light" parent="Base.V14.Theme.Material3.Light"/>
  2004. <style name="Base.Theme.Material3.Light.BottomSheetDialog" parent="Base.V14.Theme.Material3.Light.BottomSheetDialog"/>
  2005. <style name="Base.Theme.Material3.Light.Dialog" parent="Base.V14.Theme.Material3.Light.Dialog"/>
  2006. <style name="Base.Theme.MaterialComponents" parent="Base.V14.Theme.MaterialComponents"/>
  2007. <style name="Base.Theme.MaterialComponents.Bridge" parent="Base.V14.Theme.MaterialComponents.Bridge"/>
  2008. <style name="Base.Theme.MaterialComponents.CompactMenu" parent="">
  2009. <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
  2010. <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
  2011. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
  2012. </style>
  2013. <style name="Base.Theme.MaterialComponents.Dialog" parent="Base.V14.Theme.MaterialComponents.Dialog"/>
  2014. <style name="Base.Theme.MaterialComponents.Dialog.Alert">
  2015. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2016. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2017. </style>
  2018. <style name="Base.Theme.MaterialComponents.Dialog.Bridge" parent="Base.V14.Theme.MaterialComponents.Dialog.Bridge"/>
  2019. <style name="Base.Theme.MaterialComponents.Dialog.FixedSize">
  2020. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  2021. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  2022. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  2023. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  2024. </style>
  2025. <style name="Base.Theme.MaterialComponents.Dialog.MinWidth">
  2026. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2027. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2028. </style>
  2029. <style name="Base.Theme.MaterialComponents.DialogWhenLarge" parent="Theme.MaterialComponents"/>
  2030. <style name="Base.Theme.MaterialComponents.Light" parent="Base.V14.Theme.MaterialComponents.Light"/>
  2031. <style name="Base.Theme.MaterialComponents.Light.Bridge" parent="Base.V14.Theme.MaterialComponents.Light.Bridge"/>
  2032. <style name="Base.Theme.MaterialComponents.Light.DarkActionBar" parent="Base.Theme.MaterialComponents.Light">
  2033. <item name="actionBarWidgetTheme">@null</item>
  2034. <item name="actionBarTheme">@style/ThemeOverlay.MaterialComponents.Dark.ActionBar</item>
  2035. <!-- Panel attributes -->
  2036. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
  2037. <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
  2038. <item name="colorPrimary">@color/primary_material_dark</item>
  2039. </style>
  2040. <style name="Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge"/>
  2041. <style name="Base.Theme.MaterialComponents.Light.Dialog" parent="Base.V14.Theme.MaterialComponents.Light.Dialog"/>
  2042. <style name="Base.Theme.MaterialComponents.Light.Dialog.Alert">
  2043. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2044. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2045. </style>
  2046. <style name="Base.Theme.MaterialComponents.Light.Dialog.Bridge" parent="Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge"/>
  2047. <style name="Base.Theme.MaterialComponents.Light.Dialog.FixedSize">
  2048. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  2049. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  2050. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  2051. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  2052. </style>
  2053. <style name="Base.Theme.MaterialComponents.Light.Dialog.MinWidth">
  2054. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2055. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2056. </style>
  2057. <style name="Base.Theme.MaterialComponents.Light.DialogWhenLarge" parent="Theme.MaterialComponents.Light"/>
  2058. <style name="Base.ThemeOverlay.AppCompat" parent="Platform.ThemeOverlay.AppCompat"/>
  2059. <style name="Base.ThemeOverlay.AppCompat.ActionBar">
  2060. <item name="colorControlNormal">?android:attr/textColorPrimary</item>
  2061. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
  2062. </style>
  2063. <style name="Base.ThemeOverlay.AppCompat.Dark" parent="Platform.ThemeOverlay.AppCompat.Dark">
  2064. <item name="android:windowBackground">@color/background_material_dark</item>
  2065. <item name="android:colorForeground">@color/foreground_material_dark</item>
  2066. <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
  2067. <item name="android:colorBackground">@color/background_material_dark</item>
  2068. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
  2069. <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
  2070. <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
  2071. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
  2072. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  2073. <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
  2074. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
  2075. <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
  2076. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
  2077. <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
  2078. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
  2079. <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
  2080. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  2081. <item name="colorControlHighlight">@color/ripple_material_dark</item>
  2082. <item name="colorButtonNormal">@color/button_material_dark</item>
  2083. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
  2084. <!-- Used by MediaRouter -->
  2085. <item name="isLightTheme">false</item>
  2086. </style>
  2087. <style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar">
  2088. <item name="colorControlNormal">?android:attr/textColorPrimary</item>
  2089. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
  2090. </style>
  2091. <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog"/>
  2092. <style name="Base.ThemeOverlay.AppCompat.Dialog.Alert">
  2093. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2094. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2095. </style>
  2096. <style name="Base.ThemeOverlay.AppCompat.Light" parent="Platform.ThemeOverlay.AppCompat.Light">
  2097. <item name="android:windowBackground">@color/background_material_light</item>
  2098. <item name="android:colorForeground">@color/foreground_material_light</item>
  2099. <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
  2100. <item name="android:colorBackground">@color/background_material_light</item>
  2101. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
  2102. <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
  2103. <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
  2104. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
  2105. <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
  2106. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
  2107. <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
  2108. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
  2109. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
  2110. <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  2111. <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
  2112. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
  2113. <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
  2114. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  2115. <item name="colorControlHighlight">@color/ripple_material_light</item>
  2116. <item name="colorButtonNormal">@color/button_material_light</item>
  2117. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
  2118. <!-- Used by MediaRouter -->
  2119. <item name="isLightTheme">true</item>
  2120. </style>
  2121. <style name="Base.ThemeOverlay.Material3.AutoCompleteTextView" parent="ThemeOverlay.MaterialComponents.AutoCompleteTextView">
  2122. <item name="colorControlActivated">?attr/colorPrimary</item>
  2123. </style>
  2124. <style name="Base.ThemeOverlay.Material3.BottomSheetDialog" parent="Base.V14.ThemeOverlay.Material3.BottomSheetDialog"/>
  2125. <style name="Base.ThemeOverlay.Material3.Dialog" parent="Base.ThemeOverlay.MaterialComponents.Dialog">
  2126. <item name="materialButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog.Flush</item>
  2127. </style>
  2128. <style name="Base.ThemeOverlay.Material3.TextInputEditText" parent="ThemeOverlay.MaterialComponents.TextInputEditText">
  2129. <item name="colorControlActivated">?attr/colorPrimary</item>
  2130. </style>
  2131. <style name="Base.ThemeOverlay.MaterialComponents.Dialog" parent="Base.V14.ThemeOverlay.MaterialComponents.Dialog"/>
  2132. <style name="Base.ThemeOverlay.MaterialComponents.Dialog.Alert" parent="Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert"/>
  2133. <style name="Base.ThemeOverlay.MaterialComponents.MaterialAlertDialog" parent="Base.V14.ThemeOverlay.MaterialComponents.MaterialAlertDialog"/>
  2134. <style name="Base.V14.Theme.Material3.Dark" parent="Theme.MaterialComponents">
  2135. <item name="isMaterial3Theme">true</item>
  2136. <!-- Color palettes -->
  2137. <item name="colorPrimary">@color/m3_sys_color_dark_primary</item>
  2138. <item name="colorPrimaryDark">?attr/colorPrimary</item>
  2139. <item name="colorOnPrimary">@color/m3_sys_color_dark_on_primary</item>
  2140. <item name="colorPrimaryInverse">@color/m3_sys_color_dark_inverse_primary</item>
  2141. <item name="colorPrimaryContainer">@color/m3_sys_color_dark_primary_container</item>
  2142. <item name="colorOnPrimaryContainer">@color/m3_sys_color_dark_on_primary_container</item>
  2143. <item name="colorSecondary">@color/m3_sys_color_dark_secondary</item>
  2144. <item name="colorOnSecondary">@color/m3_sys_color_dark_on_secondary</item>
  2145. <item name="colorSecondaryContainer">@color/m3_sys_color_dark_secondary_container</item>
  2146. <item name="colorOnSecondaryContainer">@color/m3_sys_color_dark_on_secondary_container</item>
  2147. <item name="colorTertiary">@color/m3_sys_color_dark_tertiary</item>
  2148. <item name="colorOnTertiary">@color/m3_sys_color_dark_on_tertiary</item>
  2149. <item name="colorTertiaryContainer">@color/m3_sys_color_dark_tertiary_container</item>
  2150. <item name="colorOnTertiaryContainer">@color/m3_sys_color_dark_on_tertiary_container</item>
  2151. <item name="android:colorBackground">@color/m3_sys_color_dark_background</item>
  2152. <item name="colorOnBackground">@color/m3_sys_color_dark_on_background</item>
  2153. <item name="colorSurface">@color/m3_sys_color_dark_surface</item>
  2154. <item name="colorOnSurface">@color/m3_sys_color_dark_on_surface</item>
  2155. <item name="colorSurfaceVariant">@color/m3_sys_color_dark_surface_variant</item>
  2156. <item name="colorOnSurfaceVariant">@color/m3_sys_color_dark_on_surface_variant</item>
  2157. <item name="colorSurfaceInverse">@color/m3_sys_color_dark_inverse_surface</item>
  2158. <item name="colorOnSurfaceInverse">@color/m3_sys_color_dark_inverse_on_surface</item>
  2159. <item name="colorOutline">@color/m3_sys_color_dark_outline</item>
  2160. <item name="colorError">@color/m3_sys_color_dark_error</item>
  2161. <item name="colorOnError">@color/m3_sys_color_dark_on_error</item>
  2162. <item name="colorErrorContainer">@color/m3_sys_color_dark_error_container</item>
  2163. <item name="colorOnErrorContainer">@color/m3_sys_color_dark_on_error_container</item>
  2164. <!-- Default Framework Text Colors. -->
  2165. <item name="android:textColorPrimary">@color/m3_dark_default_color_primary_text</item>
  2166. <item name="android:textColorPrimaryInverse">@color/m3_default_color_primary_text</item>
  2167. <item name="android:textColorSecondary">@color/m3_dark_default_color_secondary_text</item>
  2168. <item name="android:textColorSecondaryInverse">@color/m3_default_color_secondary_text</item>
  2169. <item name="android:textColorTertiary">@color/m3_dark_default_color_secondary_text</item>
  2170. <item name="android:textColorTertiaryInverse">@color/m3_default_color_secondary_text</item>
  2171. <item name="android:textColorPrimaryDisableOnly">@color/m3_dark_primary_text_disable_only</item>
  2172. <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_primary_text_disable_only</item>
  2173. <item name="android:textColorHint">@color/m3_dark_hint_foreground</item>
  2174. <item name="android:textColorHintInverse">@color/m3_hint_foreground</item>
  2175. <item name="android:textColorHighlight">@color/m3_dark_highlighted_text</item>
  2176. <item name="android:textColorHighlightInverse">@color/m3_highlighted_text</item>
  2177. <item name="android:textColorLink">?attr/colorPrimary</item>
  2178. <item name="android:textColorLinkInverse">?attr/colorPrimaryInverse</item>
  2179. <item name="android:textColorAlertDialogListItem">@color/m3_dark_default_color_primary_text</item>
  2180. <!-- Dialog themes. -->
  2181. <item name="alertDialogTheme">@style/ThemeOverlay.Material3.Dialog.Alert</item>
  2182. <item name="bottomSheetDialogTheme">@style/ThemeOverlay.Material3.BottomSheetDialog</item>
  2183. <item name="materialAlertDialogTheme">@style/ThemeOverlay.Material3.MaterialAlertDialog</item>
  2184. <!-- Picker styles and themes. -->
  2185. <item name="materialCalendarStyle">@style/Widget.Material3.MaterialCalendar</item>
  2186. <item name="materialCalendarFullscreenTheme">@style/ThemeOverlay.Material3.MaterialCalendar.Fullscreen</item>
  2187. <item name="materialCalendarTheme">@style/ThemeOverlay.Material3.MaterialCalendar</item>
  2188. <item name="materialTimePickerTheme">@style/ThemeOverlay.Material3.MaterialTimePicker</item>
  2189. <!-- Widget styles. -->
  2190. <item name="actionBarStyle">@style/Widget.Material3.ActionBar.Solid</item>
  2191. <item name="actionModeStyle">@style/Widget.Material3.ActionMode</item>
  2192. <item name="appBarLayoutStyle">@style/Widget.Material3.AppBarLayout</item>
  2193. <item name="badgeStyle">@style/Widget.Material3.Badge</item>
  2194. <item name="borderlessButtonStyle">@style/Widget.Material3.Button.TextButton</item>
  2195. <item name="bottomAppBarStyle">@style/Widget.Material3.BottomAppBar</item>
  2196. <item name="bottomNavigationStyle">@style/Widget.Material3.BottomNavigationView</item>
  2197. <item name="buttonBarButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item>
  2198. <item name="checkboxStyle">@style/Widget.Material3.CompoundButton.CheckBox</item>
  2199. <item name="chipStyle">@style/Widget.Material3.Chip.Assist</item>
  2200. <item name="chipGroupStyle">@style/Widget.Material3.ChipGroup</item>
  2201. <item name="chipStandaloneStyle">@style/Widget.Material3.Chip.Input</item>
  2202. <item name="circularProgressIndicatorStyle">@style/Widget.Material3.CircularProgressIndicator</item>
  2203. <item name="collapsingToolbarLayoutStyle">@style/Widget.Material3.CollapsingToolbar</item>
  2204. <item name="collapsingToolbarLayoutMediumStyle">@style/Widget.Material3.CollapsingToolbar.Medium</item>
  2205. <item name="collapsingToolbarLayoutLargeStyle">@style/Widget.Material3.CollapsingToolbar.Large</item>
  2206. <item name="drawerLayoutStyle">@style/Widget.Material3.DrawerLayout</item>
  2207. <item name="extendedFloatingActionButtonStyle">?attr/extendedFloatingActionButtonPrimaryStyle</item>
  2208. <item name="extendedFloatingActionButtonPrimaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Primary</item>
  2209. <item name="extendedFloatingActionButtonSecondaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary</item>
  2210. <item name="extendedFloatingActionButtonTertiaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Tertiary</item>
  2211. <item name="extendedFloatingActionButtonSurfaceStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Surface</item>
  2212. <item name="floatingActionButtonStyle">?attr/floatingActionButtonPrimaryStyle</item>
  2213. <item name="floatingActionButtonPrimaryStyle">@style/Widget.Material3.FloatingActionButton.Primary</item>
  2214. <item name="floatingActionButtonSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Secondary</item>
  2215. <item name="floatingActionButtonTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Tertiary</item>
  2216. <item name="floatingActionButtonSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Surface</item>
  2217. <item name="floatingActionButtonLargeStyle">?attr/floatingActionButtonLargePrimaryStyle</item>
  2218. <item name="floatingActionButtonLargePrimaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Primary</item>
  2219. <item name="floatingActionButtonLargeSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Secondary</item>
  2220. <item name="floatingActionButtonLargeTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Tertiary</item>
  2221. <item name="floatingActionButtonLargeSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Large.Surface</item>
  2222. <item name="linearProgressIndicatorStyle">@style/Widget.Material3.LinearProgressIndicator</item>
  2223. <item name="materialButtonOutlinedStyle">@style/Widget.Material3.Button.OutlinedButton</item>
  2224. <item name="materialButtonStyle">@style/Widget.Material3.Button</item>
  2225. <item name="materialCardViewStyle">?attr/materialCardViewOutlinedStyle</item>
  2226. <item name="materialCardViewOutlinedStyle">@style/Widget.Material3.CardView.Outlined</item>
  2227. <item name="materialCardViewFilledStyle">@style/Widget.Material3.CardView.Filled</item>
  2228. <item name="materialCardViewElevatedStyle">@style/Widget.Material3.CardView.Elevated</item>
  2229. <item name="navigationRailStyle">@style/Widget.Material3.NavigationRailView</item>
  2230. <item name="navigationViewStyle">@style/Widget.Material3.NavigationView</item>
  2231. <item name="radioButtonStyle">@style/Widget.Material3.CompoundButton.RadioButton</item>
  2232. <item name="sliderStyle">@style/Widget.Material3.Slider</item>
  2233. <item name="snackbarStyle">@style/Widget.Material3.Snackbar</item>
  2234. <item name="snackbarButtonStyle">@style/Widget.Material3.Button.TextButton.Snackbar</item>
  2235. <item name="snackbarTextViewStyle">@style/Widget.Material3.Snackbar.TextView</item>
  2236. <item name="switchStyle">@style/Widget.Material3.CompoundButton.Switch</item>
  2237. <item name="tabStyle">@style/Widget.Material3.TabLayout</item>
  2238. <item name="tabSecondaryStyle">@style/Widget.Material3.TabLayout.Secondary</item>
  2239. <item name="textInputStyle">?attr/textInputOutlinedStyle</item>
  2240. <item name="textInputOutlinedStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox</item>
  2241. <item name="textInputFilledStyle">@style/Widget.Material3.TextInputLayout.FilledBox</item>
  2242. <item name="textInputOutlinedDenseStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.Dense</item>
  2243. <item name="textInputFilledDenseStyle">@style/Widget.Material3.TextInputLayout.FilledBox.Dense</item>
  2244. <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item>
  2245. <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu</item>
  2246. <item name="toolbarStyle">@style/Widget.Material3.Toolbar</item>
  2247. <item name="toolbarSurfaceStyle">@style/Widget.Material3.Toolbar.Surface</item>
  2248. <!-- Top App Bars. -->
  2249. <item name="actionBarSize">@dimen/m3_appbar_size_compact</item>
  2250. <item name="collapsingToolbarLayoutMediumSize">@dimen/m3_appbar_size_medium</item>
  2251. <item name="collapsingToolbarLayoutLargeSize">@dimen/m3_appbar_size_large</item>
  2252. <!-- Popup Menu styles. -->
  2253. <item name="popupMenuBackground">@drawable/m3_popupmenu_background_overlay</item>
  2254. <item name="listPopupWindowStyle">@style/Widget.Material3.PopupMenu.ListPopupWindow</item>
  2255. <item name="popupMenuStyle">@style/Widget.Material3.PopupMenu</item>
  2256. <item name="actionOverflowMenuStyle">@style/Widget.Material3.PopupMenu.Overflow</item>
  2257. <!-- Divider styles. -->
  2258. <item name="materialDividerStyle">@style/Widget.Material3.MaterialDivider</item>
  2259. <item name="materialDividerHeavyStyle">@style/Widget.Material3.MaterialDivider.Heavy</item>
  2260. <!-- Type styles. -->
  2261. <item name="textAppearanceDisplayLarge">@style/TextAppearance.Material3.DisplayLarge</item>
  2262. <item name="textAppearanceDisplayMedium">@style/TextAppearance.Material3.DisplayMedium</item>
  2263. <item name="textAppearanceDisplaySmall">@style/TextAppearance.Material3.DisplaySmall</item>
  2264. <item name="textAppearanceHeadlineLarge">@style/TextAppearance.Material3.HeadlineLarge</item>
  2265. <item name="textAppearanceHeadlineMedium">@style/TextAppearance.Material3.HeadlineMedium</item>
  2266. <item name="textAppearanceHeadlineSmall">@style/TextAppearance.Material3.HeadlineSmall</item>
  2267. <item name="textAppearanceTitleLarge">@style/TextAppearance.Material3.TitleLarge</item>
  2268. <item name="textAppearanceTitleMedium">@style/TextAppearance.Material3.TitleMedium</item>
  2269. <item name="textAppearanceTitleSmall">@style/TextAppearance.Material3.TitleSmall</item>
  2270. <item name="textAppearanceBodyLarge">@style/TextAppearance.Material3.BodyLarge</item>
  2271. <item name="textAppearanceBodyMedium">@style/TextAppearance.Material3.BodyMedium</item>
  2272. <item name="textAppearanceBodySmall">@style/TextAppearance.Material3.BodySmall</item>
  2273. <item name="textAppearanceLabelLarge">@style/TextAppearance.Material3.LabelLarge</item>
  2274. <item name="textAppearanceLabelMedium">@style/TextAppearance.Material3.LabelMedium</item>
  2275. <item name="textAppearanceLabelSmall">@style/TextAppearance.Material3.LabelSmall</item>
  2276. <!-- Default Framework Text styles. -->
  2277. <item name="android:textAppearanceListItem">?attr/textAppearanceTitleMedium</item>
  2278. <item name="android:textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item>
  2279. <item name="android:textAppearanceListItemSecondary" ns1:targetApi="21">?attr/textAppearanceBodyMedium</item>
  2280. <item name="textAppearanceListItem">?attr/textAppearanceTitleMedium</item>
  2281. <item name="textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item>
  2282. <item name="textAppearanceListItemSecondary">?attr/textAppearanceBodyMedium</item>
  2283. <!-- Menu type styles. -->
  2284. <item name="textAppearanceLargePopupMenu">?attr/textAppearanceBodyLarge</item>
  2285. <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceBodyLarge</item>
  2286. <!-- TODO: Populate font families here -->
  2287. <!-- Shape styles. -->
  2288. <item name="shapeAppearanceSmallComponent">@style/ShapeAppearance.Material3.SmallComponent</item>
  2289. <item name="shapeAppearanceMediumComponent">@style/ShapeAppearance.Material3.MediumComponent</item>
  2290. <item name="shapeAppearanceLargeComponent">@style/ShapeAppearance.Material3.LargeComponent</item>
  2291. <!-- Motion-->
  2292. <item name="motionEasingStandard">@string/m3_sys_motion_easing_standard</item>
  2293. <item name="motionEasingEmphasized">@string/m3_sys_motion_easing_emphasized</item>
  2294. <item name="motionEasingDecelerated">@string/m3_sys_motion_easing_decelerated</item>
  2295. <item name="motionEasingAccelerated">@string/m3_sys_motion_easing_accelerated</item>
  2296. <item name="motionEasingLinear">@string/m3_sys_motion_easing_linear</item>
  2297. <item name="motionDurationShort1">@integer/m3_sys_motion_duration_short1</item>
  2298. <item name="motionDurationShort2">@integer/m3_sys_motion_duration_short2</item>
  2299. <item name="motionDurationMedium1">@integer/m3_sys_motion_duration_medium1</item>
  2300. <item name="motionDurationMedium2">@integer/m3_sys_motion_duration_medium2</item>
  2301. <item name="motionDurationLong1">@integer/m3_sys_motion_duration_long1</item>
  2302. <item name="motionDurationLong2">@integer/m3_sys_motion_duration_long2</item>
  2303. <item name="motionPath">@integer/m3_sys_motion_path</item>
  2304. <!-- Elevation overlays. -->
  2305. <item name="elevationOverlayEnabled">true</item>
  2306. <item name="elevationOverlayColor">?attr/colorPrimary</item>
  2307. <!-- Theme overlays. -->
  2308. <item name="dynamicColorThemeOverlay">@style/ThemeOverlay.Material3.DynamicColors.Dark</item>
  2309. </style>
  2310. <style name="Base.V14.Theme.Material3.Dark.BottomSheetDialog" parent="Theme.Material3.Dark.Dialog">
  2311. <item name="android:windowIsFloating">false</item>
  2312. <item name="android:windowBackground">@android:color/transparent</item>
  2313. <item name="android:windowAnimationStyle">@style/Animation.MaterialComponents.BottomSheetDialog</item>
  2314. <item name="bottomSheetStyle">@style/Widget.Material3.BottomSheet.Modal</item>
  2315. </style>
  2316. <style name="Base.V14.Theme.Material3.Dark.Dialog" parent="Theme.MaterialComponents.Dialog">
  2317. <item name="isMaterial3Theme">true</item>
  2318. <!-- Color palettes -->
  2319. <item name="colorPrimary">@color/m3_sys_color_dark_primary</item>
  2320. <item name="colorPrimaryDark">?attr/colorPrimary</item>
  2321. <item name="colorOnPrimary">@color/m3_sys_color_dark_on_primary</item>
  2322. <item name="colorPrimaryInverse">@color/m3_sys_color_dark_inverse_primary</item>
  2323. <item name="colorPrimaryContainer">@color/m3_sys_color_dark_primary_container</item>
  2324. <item name="colorOnPrimaryContainer">@color/m3_sys_color_dark_on_primary_container</item>
  2325. <item name="colorSecondary">@color/m3_sys_color_dark_secondary</item>
  2326. <item name="colorOnSecondary">@color/m3_sys_color_dark_on_secondary</item>
  2327. <item name="colorSecondaryContainer">@color/m3_sys_color_dark_secondary_container</item>
  2328. <item name="colorOnSecondaryContainer">@color/m3_sys_color_dark_on_secondary_container</item>
  2329. <item name="colorTertiary">@color/m3_sys_color_dark_tertiary</item>
  2330. <item name="colorOnTertiary">@color/m3_sys_color_dark_on_tertiary</item>
  2331. <item name="colorTertiaryContainer">@color/m3_sys_color_dark_tertiary_container</item>
  2332. <item name="colorOnTertiaryContainer">@color/m3_sys_color_dark_on_tertiary_container</item>
  2333. <item name="android:colorBackground">@color/m3_sys_color_dark_background</item>
  2334. <item name="colorOnBackground">@color/m3_sys_color_dark_on_background</item>
  2335. <item name="colorSurface">@color/m3_sys_color_dark_surface</item>
  2336. <item name="colorOnSurface">@color/m3_sys_color_dark_on_surface</item>
  2337. <item name="colorSurfaceVariant">@color/m3_sys_color_dark_surface_variant</item>
  2338. <item name="colorOnSurfaceVariant">@color/m3_sys_color_dark_on_surface_variant</item>
  2339. <item name="colorSurfaceInverse">@color/m3_sys_color_dark_inverse_surface</item>
  2340. <item name="colorOnSurfaceInverse">@color/m3_sys_color_dark_inverse_on_surface</item>
  2341. <item name="colorOutline">@color/m3_sys_color_dark_outline</item>
  2342. <item name="colorError">@color/m3_sys_color_dark_error</item>
  2343. <item name="colorOnError">@color/m3_sys_color_dark_on_error</item>
  2344. <item name="colorErrorContainer">@color/m3_sys_color_dark_error_container</item>
  2345. <item name="colorOnErrorContainer">@color/m3_sys_color_dark_on_error_container</item>
  2346. <!-- Default Framework Text Colors. -->
  2347. <item name="android:textColorPrimary">@color/m3_dark_default_color_primary_text</item>
  2348. <item name="android:textColorPrimaryInverse">@color/m3_default_color_primary_text</item>
  2349. <item name="android:textColorSecondary">@color/m3_dark_default_color_secondary_text</item>
  2350. <item name="android:textColorSecondaryInverse">@color/m3_default_color_secondary_text</item>
  2351. <item name="android:textColorTertiary">@color/m3_dark_default_color_secondary_text</item>
  2352. <item name="android:textColorTertiaryInverse">@color/m3_default_color_secondary_text</item>
  2353. <item name="android:textColorPrimaryDisableOnly">@color/m3_dark_primary_text_disable_only</item>
  2354. <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_primary_text_disable_only</item>
  2355. <item name="android:textColorHint">@color/m3_dark_hint_foreground</item>
  2356. <item name="android:textColorHintInverse">@color/m3_hint_foreground</item>
  2357. <item name="android:textColorHighlight">@color/m3_dark_highlighted_text</item>
  2358. <item name="android:textColorHighlightInverse">@color/m3_highlighted_text</item>
  2359. <item name="android:textColorLink">?attr/colorPrimary</item>
  2360. <item name="android:textColorLinkInverse">?attr/colorPrimaryInverse</item>
  2361. <item name="android:textColorAlertDialogListItem">@color/m3_dark_default_color_primary_text</item>
  2362. <!-- Widget styles. -->
  2363. <item name="actionBarStyle">@style/Widget.Material3.ActionBar.Solid</item>
  2364. <item name="actionModeStyle">@style/Widget.Material3.ActionMode</item>
  2365. <item name="appBarLayoutStyle">@style/Widget.Material3.AppBarLayout</item>
  2366. <item name="badgeStyle">@style/Widget.Material3.Badge</item>
  2367. <item name="borderlessButtonStyle">@style/Widget.Material3.Button.TextButton</item>
  2368. <item name="bottomAppBarStyle">@style/Widget.Material3.BottomAppBar</item>
  2369. <item name="bottomNavigationStyle">@style/Widget.Material3.BottomNavigationView</item>
  2370. <item name="buttonBarButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item>
  2371. <item name="checkboxStyle">@style/Widget.Material3.CompoundButton.CheckBox</item>
  2372. <item name="chipStyle">@style/Widget.Material3.Chip.Assist</item>
  2373. <item name="chipGroupStyle">@style/Widget.Material3.ChipGroup</item>
  2374. <item name="chipStandaloneStyle">@style/Widget.Material3.Chip.Input</item>
  2375. <item name="circularProgressIndicatorStyle">@style/Widget.Material3.CircularProgressIndicator</item>
  2376. <item name="collapsingToolbarLayoutStyle">@style/Widget.Material3.CollapsingToolbar</item>
  2377. <item name="collapsingToolbarLayoutMediumStyle">@style/Widget.Material3.CollapsingToolbar.Medium</item>
  2378. <item name="collapsingToolbarLayoutLargeStyle">@style/Widget.Material3.CollapsingToolbar.Large</item>
  2379. <item name="drawerLayoutStyle">@style/Widget.Material3.DrawerLayout</item>
  2380. <item name="extendedFloatingActionButtonStyle">?attr/extendedFloatingActionButtonPrimaryStyle</item>
  2381. <item name="extendedFloatingActionButtonPrimaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Primary</item>
  2382. <item name="extendedFloatingActionButtonSecondaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary</item>
  2383. <item name="extendedFloatingActionButtonTertiaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Tertiary</item>
  2384. <item name="extendedFloatingActionButtonSurfaceStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Surface</item>
  2385. <item name="floatingActionButtonStyle">?attr/floatingActionButtonPrimaryStyle</item>
  2386. <item name="floatingActionButtonPrimaryStyle">@style/Widget.Material3.FloatingActionButton.Primary</item>
  2387. <item name="floatingActionButtonSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Secondary</item>
  2388. <item name="floatingActionButtonTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Tertiary</item>
  2389. <item name="floatingActionButtonSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Surface</item>
  2390. <item name="floatingActionButtonLargeStyle">?attr/floatingActionButtonLargePrimaryStyle</item>
  2391. <item name="floatingActionButtonLargePrimaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Primary</item>
  2392. <item name="floatingActionButtonLargeSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Secondary</item>
  2393. <item name="floatingActionButtonLargeTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Tertiary</item>
  2394. <item name="floatingActionButtonLargeSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Large.Surface</item>
  2395. <item name="linearProgressIndicatorStyle">@style/Widget.Material3.LinearProgressIndicator</item>
  2396. <item name="materialButtonOutlinedStyle">@style/Widget.Material3.Button.OutlinedButton</item>
  2397. <item name="materialButtonStyle">@style/Widget.Material3.Button</item>
  2398. <item name="materialCardViewStyle">?attr/materialCardViewOutlinedStyle</item>
  2399. <item name="materialCardViewOutlinedStyle">@style/Widget.Material3.CardView.Outlined</item>
  2400. <item name="materialCardViewFilledStyle">@style/Widget.Material3.CardView.Filled</item>
  2401. <item name="materialCardViewElevatedStyle">@style/Widget.Material3.CardView.Elevated</item>
  2402. <item name="navigationRailStyle">@style/Widget.Material3.NavigationRailView</item>
  2403. <item name="navigationViewStyle">@style/Widget.Material3.NavigationView</item>
  2404. <item name="radioButtonStyle">@style/Widget.Material3.CompoundButton.RadioButton</item>
  2405. <item name="sliderStyle">@style/Widget.Material3.Slider</item>
  2406. <item name="snackbarStyle">@style/Widget.Material3.Snackbar</item>
  2407. <item name="snackbarButtonStyle">@style/Widget.Material3.Button.TextButton.Snackbar</item>
  2408. <item name="snackbarTextViewStyle">@style/Widget.Material3.Snackbar.TextView</item>
  2409. <item name="switchStyle">@style/Widget.Material3.CompoundButton.Switch</item>
  2410. <item name="tabStyle">@style/Widget.Material3.TabLayout</item>
  2411. <item name="tabSecondaryStyle">@style/Widget.Material3.TabLayout.Secondary</item>
  2412. <item name="textInputStyle">?attr/textInputOutlinedStyle</item>
  2413. <item name="textInputOutlinedStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox</item>
  2414. <item name="textInputFilledStyle">@style/Widget.Material3.TextInputLayout.FilledBox</item>
  2415. <item name="textInputOutlinedDenseStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.Dense</item>
  2416. <item name="textInputFilledDenseStyle">@style/Widget.Material3.TextInputLayout.FilledBox.Dense</item>
  2417. <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item>
  2418. <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu</item>
  2419. <item name="toolbarStyle">@style/Widget.Material3.Toolbar</item>
  2420. <item name="toolbarSurfaceStyle">@style/Widget.Material3.Toolbar.Surface</item>
  2421. <!-- Top App Bars. -->
  2422. <item name="actionBarSize">@dimen/m3_appbar_size_compact</item>
  2423. <item name="collapsingToolbarLayoutMediumSize">@dimen/m3_appbar_size_medium</item>
  2424. <item name="collapsingToolbarLayoutLargeSize">@dimen/m3_appbar_size_large</item>
  2425. <!-- Popup Menu styles. -->
  2426. <item name="popupMenuBackground">@drawable/m3_popupmenu_background_overlay</item>
  2427. <item name="listPopupWindowStyle">@style/Widget.Material3.PopupMenu.ListPopupWindow</item>
  2428. <item name="popupMenuStyle">@style/Widget.Material3.PopupMenu</item>
  2429. <item name="actionOverflowMenuStyle">@style/Widget.Material3.PopupMenu.Overflow</item>
  2430. <!-- Divider styles. -->
  2431. <item name="materialDividerStyle">@style/Widget.Material3.MaterialDivider</item>
  2432. <item name="materialDividerHeavyStyle">@style/Widget.Material3.MaterialDivider.Heavy</item>
  2433. <!-- Type styles. -->
  2434. <item name="textAppearanceDisplayLarge">@style/TextAppearance.Material3.DisplayLarge</item>
  2435. <item name="textAppearanceDisplayMedium">@style/TextAppearance.Material3.DisplayMedium</item>
  2436. <item name="textAppearanceDisplaySmall">@style/TextAppearance.Material3.DisplaySmall</item>
  2437. <item name="textAppearanceHeadlineLarge">@style/TextAppearance.Material3.HeadlineLarge</item>
  2438. <item name="textAppearanceHeadlineMedium">@style/TextAppearance.Material3.HeadlineMedium</item>
  2439. <item name="textAppearanceHeadlineSmall">@style/TextAppearance.Material3.HeadlineSmall</item>
  2440. <item name="textAppearanceTitleLarge">@style/TextAppearance.Material3.TitleLarge</item>
  2441. <item name="textAppearanceTitleMedium">@style/TextAppearance.Material3.TitleMedium</item>
  2442. <item name="textAppearanceTitleSmall">@style/TextAppearance.Material3.TitleSmall</item>
  2443. <item name="textAppearanceBodyLarge">@style/TextAppearance.Material3.BodyLarge</item>
  2444. <item name="textAppearanceBodyMedium">@style/TextAppearance.Material3.BodyMedium</item>
  2445. <item name="textAppearanceBodySmall">@style/TextAppearance.Material3.BodySmall</item>
  2446. <item name="textAppearanceLabelLarge">@style/TextAppearance.Material3.LabelLarge</item>
  2447. <item name="textAppearanceLabelMedium">@style/TextAppearance.Material3.LabelMedium</item>
  2448. <item name="textAppearanceLabelSmall">@style/TextAppearance.Material3.LabelSmall</item>
  2449. <!-- Default Framework Text styles. -->
  2450. <item name="android:textAppearanceListItem">?attr/textAppearanceTitleMedium</item>
  2451. <item name="android:textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item>
  2452. <item name="android:textAppearanceListItemSecondary" ns1:targetApi="21">?attr/textAppearanceBodyMedium</item>
  2453. <item name="textAppearanceListItem">?attr/textAppearanceTitleMedium</item>
  2454. <item name="textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item>
  2455. <item name="textAppearanceListItemSecondary">?attr/textAppearanceBodyMedium</item>
  2456. <!-- Menu type styles. -->
  2457. <item name="textAppearanceLargePopupMenu">?attr/textAppearanceBodyLarge</item>
  2458. <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceBodyLarge</item>
  2459. <!-- TODO: Populate font families here -->
  2460. <!-- Shape styles. -->
  2461. <item name="shapeAppearanceSmallComponent">@style/ShapeAppearance.Material3.SmallComponent</item>
  2462. <item name="shapeAppearanceMediumComponent">@style/ShapeAppearance.Material3.MediumComponent</item>
  2463. <item name="shapeAppearanceLargeComponent">@style/ShapeAppearance.Material3.LargeComponent</item>
  2464. <!-- Motion-->
  2465. <item name="motionEasingStandard">@string/m3_sys_motion_easing_standard</item>
  2466. <item name="motionEasingEmphasized">@string/m3_sys_motion_easing_emphasized</item>
  2467. <item name="motionEasingDecelerated">@string/m3_sys_motion_easing_decelerated</item>
  2468. <item name="motionEasingAccelerated">@string/m3_sys_motion_easing_accelerated</item>
  2469. <item name="motionEasingLinear">@string/m3_sys_motion_easing_linear</item>
  2470. <item name="motionDurationShort1">@integer/m3_sys_motion_duration_short1</item>
  2471. <item name="motionDurationShort2">@integer/m3_sys_motion_duration_short2</item>
  2472. <item name="motionDurationMedium1">@integer/m3_sys_motion_duration_medium1</item>
  2473. <item name="motionDurationMedium2">@integer/m3_sys_motion_duration_medium2</item>
  2474. <item name="motionDurationLong1">@integer/m3_sys_motion_duration_long1</item>
  2475. <item name="motionDurationLong2">@integer/m3_sys_motion_duration_long2</item>
  2476. <item name="motionPath">@integer/m3_sys_motion_path</item>
  2477. <!-- Elevation overlays. -->
  2478. <item name="elevationOverlayEnabled">true</item>
  2479. <item name="elevationOverlayColor">?attr/colorPrimary</item>
  2480. <!-- Dialog themes. -->
  2481. <item name="alertDialogTheme">@style/ThemeOverlay.Material3.Dialog.Alert</item>
  2482. <item name="materialAlertDialogTheme">@style/ThemeOverlay.Material3.MaterialAlertDialog</item>
  2483. <!-- Theme overlays. -->
  2484. <item name="dynamicColorThemeOverlay">@style/ThemeOverlay.Material3.DynamicColors.Dark</item>
  2485. </style>
  2486. <style name="Base.V14.Theme.Material3.Light" parent="Theme.MaterialComponents.Light">
  2487. <item name="isMaterial3Theme">true</item>
  2488. <!-- Color palettes -->
  2489. <item name="colorPrimary">@color/m3_sys_color_light_primary</item>
  2490. <item name="colorPrimaryDark">?attr/colorPrimary</item>
  2491. <item name="colorOnPrimary">@color/m3_sys_color_light_on_primary</item>
  2492. <item name="colorPrimaryInverse">@color/m3_sys_color_light_inverse_primary</item>
  2493. <item name="colorPrimaryContainer">@color/m3_sys_color_light_primary_container</item>
  2494. <item name="colorOnPrimaryContainer">@color/m3_sys_color_light_on_primary_container</item>
  2495. <item name="colorSecondary">@color/m3_sys_color_light_secondary</item>
  2496. <item name="colorOnSecondary">@color/m3_sys_color_light_on_secondary</item>
  2497. <item name="colorSecondaryContainer">@color/m3_sys_color_light_secondary_container</item>
  2498. <item name="colorOnSecondaryContainer">@color/m3_sys_color_light_on_secondary_container</item>
  2499. <item name="colorTertiary">@color/m3_sys_color_light_tertiary</item>
  2500. <item name="colorOnTertiary">@color/m3_sys_color_light_on_tertiary</item>
  2501. <item name="colorTertiaryContainer">@color/m3_sys_color_light_tertiary_container</item>
  2502. <item name="colorOnTertiaryContainer">@color/m3_sys_color_light_on_tertiary_container</item>
  2503. <item name="android:colorBackground">@color/m3_sys_color_light_background</item>
  2504. <item name="colorOnBackground">@color/m3_sys_color_light_on_background</item>
  2505. <item name="colorSurface">@color/m3_sys_color_light_surface</item>
  2506. <item name="colorOnSurface">@color/m3_sys_color_light_on_surface</item>
  2507. <item name="colorSurfaceVariant">@color/m3_sys_color_light_surface_variant</item>
  2508. <item name="colorOnSurfaceVariant">@color/m3_sys_color_light_on_surface_variant</item>
  2509. <item name="colorSurfaceInverse">@color/m3_sys_color_light_inverse_surface</item>
  2510. <item name="colorOnSurfaceInverse">@color/m3_sys_color_light_inverse_on_surface</item>
  2511. <item name="colorOutline">@color/m3_sys_color_light_outline</item>
  2512. <item name="colorError">@color/m3_sys_color_light_error</item>
  2513. <item name="colorOnError">@color/m3_sys_color_light_on_error</item>
  2514. <item name="colorErrorContainer">@color/m3_sys_color_light_error_container</item>
  2515. <item name="colorOnErrorContainer">@color/m3_sys_color_light_on_error_container</item>
  2516. <!-- Default Framework Text Colors. -->
  2517. <item name="android:textColorPrimary">@color/m3_default_color_primary_text</item>
  2518. <item name="android:textColorPrimaryInverse">@color/m3_dark_default_color_primary_text</item>
  2519. <item name="android:textColorSecondary">@color/m3_default_color_secondary_text</item>
  2520. <item name="android:textColorSecondaryInverse">@color/m3_dark_default_color_secondary_text</item>
  2521. <item name="android:textColorTertiary">@color/m3_default_color_secondary_text</item>
  2522. <item name="android:textColorTertiaryInverse">@color/m3_dark_default_color_secondary_text</item>
  2523. <item name="android:textColorPrimaryDisableOnly">@color/m3_primary_text_disable_only</item>
  2524. <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_dark_primary_text_disable_only</item>
  2525. <item name="android:textColorHint">@color/m3_hint_foreground</item>
  2526. <item name="android:textColorHintInverse">@color/m3_dark_hint_foreground</item>
  2527. <item name="android:textColorHighlight">@color/m3_highlighted_text</item>
  2528. <item name="android:textColorHighlightInverse">@color/m3_dark_highlighted_text</item>
  2529. <item name="android:textColorLink">?attr/colorPrimary</item>
  2530. <item name="android:textColorLinkInverse">?attr/colorPrimaryInverse</item>
  2531. <item name="android:textColorAlertDialogListItem">@color/m3_default_color_primary_text</item>
  2532. <!-- Dialog themes. -->
  2533. <item name="alertDialogTheme">@style/ThemeOverlay.Material3.Dialog.Alert</item>
  2534. <item name="bottomSheetDialogTheme">@style/ThemeOverlay.Material3.BottomSheetDialog</item>
  2535. <item name="materialAlertDialogTheme">@style/ThemeOverlay.Material3.MaterialAlertDialog</item>
  2536. <!-- Picker styles and themes. -->
  2537. <item name="materialCalendarStyle">@style/Widget.Material3.MaterialCalendar</item>
  2538. <item name="materialCalendarFullscreenTheme">@style/ThemeOverlay.Material3.MaterialCalendar.Fullscreen</item>
  2539. <item name="materialCalendarTheme">@style/ThemeOverlay.Material3.MaterialCalendar</item>
  2540. <item name="materialTimePickerTheme">@style/ThemeOverlay.Material3.MaterialTimePicker</item>
  2541. <!-- Widget styles. -->
  2542. <item name="actionBarStyle">@style/Widget.Material3.Light.ActionBar.Solid</item>
  2543. <item name="actionModeStyle">@style/Widget.Material3.ActionMode</item>
  2544. <item name="appBarLayoutStyle">@style/Widget.Material3.AppBarLayout</item>
  2545. <item name="badgeStyle">@style/Widget.Material3.Badge</item>
  2546. <item name="borderlessButtonStyle">@style/Widget.Material3.Button.TextButton</item>
  2547. <item name="bottomAppBarStyle">@style/Widget.Material3.BottomAppBar</item>
  2548. <item name="bottomNavigationStyle">@style/Widget.Material3.BottomNavigationView</item>
  2549. <item name="buttonBarButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item>
  2550. <item name="checkboxStyle">@style/Widget.Material3.CompoundButton.CheckBox</item>
  2551. <item name="chipStyle">@style/Widget.Material3.Chip.Assist</item>
  2552. <item name="chipGroupStyle">@style/Widget.Material3.ChipGroup</item>
  2553. <item name="chipStandaloneStyle">@style/Widget.Material3.Chip.Input</item>
  2554. <item name="circularProgressIndicatorStyle">@style/Widget.Material3.CircularProgressIndicator</item>
  2555. <item name="collapsingToolbarLayoutStyle">@style/Widget.Material3.CollapsingToolbar</item>
  2556. <item name="collapsingToolbarLayoutMediumStyle">@style/Widget.Material3.CollapsingToolbar.Medium</item>
  2557. <item name="collapsingToolbarLayoutLargeStyle">@style/Widget.Material3.CollapsingToolbar.Large</item>
  2558. <item name="drawerLayoutStyle">@style/Widget.Material3.DrawerLayout</item>
  2559. <item name="extendedFloatingActionButtonStyle">?attr/extendedFloatingActionButtonPrimaryStyle</item>
  2560. <item name="extendedFloatingActionButtonPrimaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Primary</item>
  2561. <item name="extendedFloatingActionButtonSecondaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary</item>
  2562. <item name="extendedFloatingActionButtonTertiaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Tertiary</item>
  2563. <item name="extendedFloatingActionButtonSurfaceStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Surface</item>
  2564. <item name="floatingActionButtonStyle">?attr/floatingActionButtonPrimaryStyle</item>
  2565. <item name="floatingActionButtonPrimaryStyle">@style/Widget.Material3.FloatingActionButton.Primary</item>
  2566. <item name="floatingActionButtonSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Secondary</item>
  2567. <item name="floatingActionButtonTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Tertiary</item>
  2568. <item name="floatingActionButtonSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Surface</item>
  2569. <item name="floatingActionButtonLargeStyle">?attr/floatingActionButtonLargePrimaryStyle</item>
  2570. <item name="floatingActionButtonLargePrimaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Primary</item>
  2571. <item name="floatingActionButtonLargeSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Secondary</item>
  2572. <item name="floatingActionButtonLargeTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Tertiary</item>
  2573. <item name="floatingActionButtonLargeSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Large.Surface</item>
  2574. <item name="linearProgressIndicatorStyle">@style/Widget.Material3.LinearProgressIndicator</item>
  2575. <item name="materialButtonOutlinedStyle">@style/Widget.Material3.Button.OutlinedButton</item>
  2576. <item name="materialButtonStyle">@style/Widget.Material3.Button</item>
  2577. <item name="materialCardViewStyle">?attr/materialCardViewOutlinedStyle</item>
  2578. <item name="materialCardViewOutlinedStyle">@style/Widget.Material3.CardView.Outlined</item>
  2579. <item name="materialCardViewFilledStyle">@style/Widget.Material3.CardView.Filled</item>
  2580. <item name="materialCardViewElevatedStyle">@style/Widget.Material3.CardView.Elevated</item>
  2581. <item name="navigationRailStyle">@style/Widget.Material3.NavigationRailView</item>
  2582. <item name="navigationViewStyle">@style/Widget.Material3.NavigationView</item>
  2583. <item name="radioButtonStyle">@style/Widget.Material3.CompoundButton.RadioButton</item>
  2584. <item name="sliderStyle">@style/Widget.Material3.Slider</item>
  2585. <item name="snackbarStyle">@style/Widget.Material3.Snackbar</item>
  2586. <item name="snackbarButtonStyle">@style/Widget.Material3.Button.TextButton.Snackbar</item>
  2587. <item name="snackbarTextViewStyle">@style/Widget.Material3.Snackbar.TextView</item>
  2588. <item name="switchStyle">@style/Widget.Material3.CompoundButton.Switch</item>
  2589. <item name="tabStyle">@style/Widget.Material3.TabLayout</item>
  2590. <item name="tabSecondaryStyle">@style/Widget.Material3.TabLayout.Secondary</item>
  2591. <item name="textInputStyle">?attr/textInputOutlinedStyle</item>
  2592. <item name="textInputOutlinedStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox</item>
  2593. <item name="textInputFilledStyle">@style/Widget.Material3.TextInputLayout.FilledBox</item>
  2594. <item name="textInputOutlinedDenseStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.Dense</item>
  2595. <item name="textInputFilledDenseStyle">@style/Widget.Material3.TextInputLayout.FilledBox.Dense</item>
  2596. <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item>
  2597. <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu</item>
  2598. <item name="toolbarStyle">@style/Widget.Material3.Toolbar</item>
  2599. <item name="toolbarSurfaceStyle">@style/Widget.Material3.Toolbar.Surface</item>
  2600. <!-- Top App Bars. -->
  2601. <item name="actionBarSize">@dimen/m3_appbar_size_compact</item>
  2602. <item name="collapsingToolbarLayoutMediumSize">@dimen/m3_appbar_size_medium</item>
  2603. <item name="collapsingToolbarLayoutLargeSize">@dimen/m3_appbar_size_large</item>
  2604. <!-- Popup Menu styles. -->
  2605. <item name="popupMenuBackground">@drawable/m3_popupmenu_background_overlay</item>
  2606. <item name="listPopupWindowStyle">@style/Widget.Material3.PopupMenu.ListPopupWindow</item>
  2607. <item name="popupMenuStyle">@style/Widget.Material3.PopupMenu</item>
  2608. <item name="actionOverflowMenuStyle">@style/Widget.Material3.PopupMenu.Overflow</item>
  2609. <!-- Divider styles. -->
  2610. <item name="materialDividerStyle">@style/Widget.Material3.MaterialDivider</item>
  2611. <item name="materialDividerHeavyStyle">@style/Widget.Material3.MaterialDivider.Heavy</item>
  2612. <!-- Type styles. -->
  2613. <item name="textAppearanceDisplayLarge">@style/TextAppearance.Material3.DisplayLarge</item>
  2614. <item name="textAppearanceDisplayMedium">@style/TextAppearance.Material3.DisplayMedium</item>
  2615. <item name="textAppearanceDisplaySmall">@style/TextAppearance.Material3.DisplaySmall</item>
  2616. <item name="textAppearanceHeadlineLarge">@style/TextAppearance.Material3.HeadlineLarge</item>
  2617. <item name="textAppearanceHeadlineMedium">@style/TextAppearance.Material3.HeadlineMedium</item>
  2618. <item name="textAppearanceHeadlineSmall">@style/TextAppearance.Material3.HeadlineSmall</item>
  2619. <item name="textAppearanceTitleLarge">@style/TextAppearance.Material3.TitleLarge</item>
  2620. <item name="textAppearanceTitleMedium">@style/TextAppearance.Material3.TitleMedium</item>
  2621. <item name="textAppearanceTitleSmall">@style/TextAppearance.Material3.TitleSmall</item>
  2622. <item name="textAppearanceBodyLarge">@style/TextAppearance.Material3.BodyLarge</item>
  2623. <item name="textAppearanceBodyMedium">@style/TextAppearance.Material3.BodyMedium</item>
  2624. <item name="textAppearanceBodySmall">@style/TextAppearance.Material3.BodySmall</item>
  2625. <item name="textAppearanceLabelLarge">@style/TextAppearance.Material3.LabelLarge</item>
  2626. <item name="textAppearanceLabelMedium">@style/TextAppearance.Material3.LabelMedium</item>
  2627. <item name="textAppearanceLabelSmall">@style/TextAppearance.Material3.LabelSmall</item>
  2628. <!-- Default Framework Text styles. -->
  2629. <item name="android:textAppearanceListItem">?attr/textAppearanceTitleMedium</item>
  2630. <item name="android:textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item>
  2631. <item name="android:textAppearanceListItemSecondary" ns1:targetApi="21">?attr/textAppearanceBodyMedium</item>
  2632. <item name="textAppearanceListItem">?attr/textAppearanceTitleMedium</item>
  2633. <item name="textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item>
  2634. <item name="textAppearanceListItemSecondary">?attr/textAppearanceBodyMedium</item>
  2635. <!-- Menu type styles. -->
  2636. <item name="textAppearanceLargePopupMenu">?attr/textAppearanceBodyLarge</item>
  2637. <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceBodyLarge</item>
  2638. <!-- TODO: Populate font families here -->
  2639. <!-- Shape styles. -->
  2640. <item name="shapeAppearanceSmallComponent">@style/ShapeAppearance.Material3.SmallComponent</item>
  2641. <item name="shapeAppearanceMediumComponent">@style/ShapeAppearance.Material3.MediumComponent</item>
  2642. <item name="shapeAppearanceLargeComponent">@style/ShapeAppearance.Material3.LargeComponent</item>
  2643. <!-- Motion-->
  2644. <item name="motionEasingStandard">@string/m3_sys_motion_easing_standard</item>
  2645. <item name="motionEasingEmphasized">@string/m3_sys_motion_easing_emphasized</item>
  2646. <item name="motionEasingDecelerated">@string/m3_sys_motion_easing_decelerated</item>
  2647. <item name="motionEasingAccelerated">@string/m3_sys_motion_easing_accelerated</item>
  2648. <item name="motionEasingLinear">@string/m3_sys_motion_easing_linear</item>
  2649. <item name="motionDurationShort1">@integer/m3_sys_motion_duration_short1</item>
  2650. <item name="motionDurationShort2">@integer/m3_sys_motion_duration_short2</item>
  2651. <item name="motionDurationMedium1">@integer/m3_sys_motion_duration_medium1</item>
  2652. <item name="motionDurationMedium2">@integer/m3_sys_motion_duration_medium2</item>
  2653. <item name="motionDurationLong1">@integer/m3_sys_motion_duration_long1</item>
  2654. <item name="motionDurationLong2">@integer/m3_sys_motion_duration_long2</item>
  2655. <item name="motionPath">@integer/m3_sys_motion_path</item>
  2656. <!-- Elevation overlays. -->
  2657. <item name="elevationOverlayEnabled">true</item>
  2658. <item name="elevationOverlayColor">?attr/colorPrimary</item>
  2659. <!-- Theme overlays. -->
  2660. <item name="dynamicColorThemeOverlay">@style/ThemeOverlay.Material3.DynamicColors.Light</item>
  2661. </style>
  2662. <style name="Base.V14.Theme.Material3.Light.BottomSheetDialog" parent="Theme.Material3.Light.Dialog">
  2663. <item name="android:windowIsFloating">false</item>
  2664. <item name="android:windowBackground">@android:color/transparent</item>
  2665. <item name="android:windowAnimationStyle">@style/Animation.MaterialComponents.BottomSheetDialog</item>
  2666. <item name="bottomSheetStyle">@style/Widget.Material3.BottomSheet.Modal</item>
  2667. </style>
  2668. <style name="Base.V14.Theme.Material3.Light.Dialog" parent="Theme.MaterialComponents.Light.Dialog">
  2669. <item name="isMaterial3Theme">true</item>
  2670. <!-- Color palettes -->
  2671. <item name="colorPrimary">@color/m3_sys_color_light_primary</item>
  2672. <item name="colorPrimaryDark">?attr/colorPrimary</item>
  2673. <item name="colorOnPrimary">@color/m3_sys_color_light_on_primary</item>
  2674. <item name="colorPrimaryInverse">@color/m3_sys_color_light_inverse_primary</item>
  2675. <item name="colorPrimaryContainer">@color/m3_sys_color_light_primary_container</item>
  2676. <item name="colorOnPrimaryContainer">@color/m3_sys_color_light_on_primary_container</item>
  2677. <item name="colorSecondary">@color/m3_sys_color_light_secondary</item>
  2678. <item name="colorOnSecondary">@color/m3_sys_color_light_on_secondary</item>
  2679. <item name="colorSecondaryContainer">@color/m3_sys_color_light_secondary_container</item>
  2680. <item name="colorOnSecondaryContainer">@color/m3_sys_color_light_on_secondary_container</item>
  2681. <item name="colorTertiary">@color/m3_sys_color_light_tertiary</item>
  2682. <item name="colorOnTertiary">@color/m3_sys_color_light_on_tertiary</item>
  2683. <item name="colorTertiaryContainer">@color/m3_sys_color_light_tertiary_container</item>
  2684. <item name="colorOnTertiaryContainer">@color/m3_sys_color_light_on_tertiary_container</item>
  2685. <item name="android:colorBackground">@color/m3_sys_color_light_background</item>
  2686. <item name="colorOnBackground">@color/m3_sys_color_light_on_background</item>
  2687. <item name="colorSurface">@color/m3_sys_color_light_surface</item>
  2688. <item name="colorOnSurface">@color/m3_sys_color_light_on_surface</item>
  2689. <item name="colorSurfaceVariant">@color/m3_sys_color_light_surface_variant</item>
  2690. <item name="colorOnSurfaceVariant">@color/m3_sys_color_light_on_surface_variant</item>
  2691. <item name="colorSurfaceInverse">@color/m3_sys_color_light_inverse_surface</item>
  2692. <item name="colorOnSurfaceInverse">@color/m3_sys_color_light_inverse_on_surface</item>
  2693. <item name="colorOutline">@color/m3_sys_color_light_outline</item>
  2694. <item name="colorError">@color/m3_sys_color_light_error</item>
  2695. <item name="colorOnError">@color/m3_sys_color_light_on_error</item>
  2696. <item name="colorErrorContainer">@color/m3_sys_color_light_error_container</item>
  2697. <item name="colorOnErrorContainer">@color/m3_sys_color_light_on_error_container</item>
  2698. <!-- Default Framework Text Colors. -->
  2699. <item name="android:textColorPrimary">@color/m3_default_color_primary_text</item>
  2700. <item name="android:textColorPrimaryInverse">@color/m3_dark_default_color_primary_text</item>
  2701. <item name="android:textColorSecondary">@color/m3_default_color_secondary_text</item>
  2702. <item name="android:textColorSecondaryInverse">@color/m3_dark_default_color_secondary_text</item>
  2703. <item name="android:textColorTertiary">@color/m3_default_color_secondary_text</item>
  2704. <item name="android:textColorTertiaryInverse">@color/m3_dark_default_color_secondary_text</item>
  2705. <item name="android:textColorPrimaryDisableOnly">@color/m3_primary_text_disable_only</item>
  2706. <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_dark_primary_text_disable_only</item>
  2707. <item name="android:textColorHint">@color/m3_hint_foreground</item>
  2708. <item name="android:textColorHintInverse">@color/m3_dark_hint_foreground</item>
  2709. <item name="android:textColorHighlight">@color/m3_highlighted_text</item>
  2710. <item name="android:textColorHighlightInverse">@color/m3_dark_highlighted_text</item>
  2711. <item name="android:textColorLink">?attr/colorPrimary</item>
  2712. <item name="android:textColorLinkInverse">?attr/colorPrimaryInverse</item>
  2713. <item name="android:textColorAlertDialogListItem">@color/m3_default_color_primary_text</item>
  2714. <!-- Widget styles. -->
  2715. <item name="actionBarStyle">@style/Widget.Material3.Light.ActionBar.Solid</item>
  2716. <item name="actionModeStyle">@style/Widget.Material3.ActionMode</item>
  2717. <item name="appBarLayoutStyle">@style/Widget.Material3.AppBarLayout</item>
  2718. <item name="badgeStyle">@style/Widget.Material3.Badge</item>
  2719. <item name="borderlessButtonStyle">@style/Widget.Material3.Button.TextButton</item>
  2720. <item name="bottomAppBarStyle">@style/Widget.Material3.BottomAppBar</item>
  2721. <item name="bottomNavigationStyle">@style/Widget.Material3.BottomNavigationView</item>
  2722. <item name="buttonBarButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item>
  2723. <item name="checkboxStyle">@style/Widget.Material3.CompoundButton.CheckBox</item>
  2724. <item name="chipStyle">@style/Widget.Material3.Chip.Assist</item>
  2725. <item name="chipGroupStyle">@style/Widget.Material3.ChipGroup</item>
  2726. <item name="chipStandaloneStyle">@style/Widget.Material3.Chip.Input</item>
  2727. <item name="circularProgressIndicatorStyle">@style/Widget.Material3.CircularProgressIndicator</item>
  2728. <item name="collapsingToolbarLayoutStyle">@style/Widget.Material3.CollapsingToolbar</item>
  2729. <item name="collapsingToolbarLayoutMediumStyle">@style/Widget.Material3.CollapsingToolbar.Medium</item>
  2730. <item name="collapsingToolbarLayoutLargeStyle">@style/Widget.Material3.CollapsingToolbar.Large</item>
  2731. <item name="drawerLayoutStyle">@style/Widget.Material3.DrawerLayout</item>
  2732. <item name="extendedFloatingActionButtonStyle">?attr/extendedFloatingActionButtonPrimaryStyle</item>
  2733. <item name="extendedFloatingActionButtonPrimaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Primary</item>
  2734. <item name="extendedFloatingActionButtonSecondaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary</item>
  2735. <item name="extendedFloatingActionButtonTertiaryStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Tertiary</item>
  2736. <item name="extendedFloatingActionButtonSurfaceStyle">@style/Widget.Material3.ExtendedFloatingActionButton.Icon.Surface</item>
  2737. <item name="floatingActionButtonStyle">?attr/floatingActionButtonPrimaryStyle</item>
  2738. <item name="floatingActionButtonPrimaryStyle">@style/Widget.Material3.FloatingActionButton.Primary</item>
  2739. <item name="floatingActionButtonSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Secondary</item>
  2740. <item name="floatingActionButtonTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Tertiary</item>
  2741. <item name="floatingActionButtonSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Surface</item>
  2742. <item name="floatingActionButtonLargeStyle">?attr/floatingActionButtonLargePrimaryStyle</item>
  2743. <item name="floatingActionButtonLargePrimaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Primary</item>
  2744. <item name="floatingActionButtonLargeSecondaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Secondary</item>
  2745. <item name="floatingActionButtonLargeTertiaryStyle">@style/Widget.Material3.FloatingActionButton.Large.Tertiary</item>
  2746. <item name="floatingActionButtonLargeSurfaceStyle">@style/Widget.Material3.FloatingActionButton.Large.Surface</item>
  2747. <item name="linearProgressIndicatorStyle">@style/Widget.Material3.LinearProgressIndicator</item>
  2748. <item name="materialButtonOutlinedStyle">@style/Widget.Material3.Button.OutlinedButton</item>
  2749. <item name="materialButtonStyle">@style/Widget.Material3.Button</item>
  2750. <item name="materialCardViewStyle">?attr/materialCardViewOutlinedStyle</item>
  2751. <item name="materialCardViewOutlinedStyle">@style/Widget.Material3.CardView.Outlined</item>
  2752. <item name="materialCardViewFilledStyle">@style/Widget.Material3.CardView.Filled</item>
  2753. <item name="materialCardViewElevatedStyle">@style/Widget.Material3.CardView.Elevated</item>
  2754. <item name="navigationRailStyle">@style/Widget.Material3.NavigationRailView</item>
  2755. <item name="navigationViewStyle">@style/Widget.Material3.NavigationView</item>
  2756. <item name="radioButtonStyle">@style/Widget.Material3.CompoundButton.RadioButton</item>
  2757. <item name="sliderStyle">@style/Widget.Material3.Slider</item>
  2758. <item name="snackbarStyle">@style/Widget.Material3.Snackbar</item>
  2759. <item name="snackbarButtonStyle">@style/Widget.Material3.Button.TextButton.Snackbar</item>
  2760. <item name="snackbarTextViewStyle">@style/Widget.Material3.Snackbar.TextView</item>
  2761. <item name="switchStyle">@style/Widget.Material3.CompoundButton.Switch</item>
  2762. <item name="tabStyle">@style/Widget.Material3.TabLayout</item>
  2763. <item name="tabSecondaryStyle">@style/Widget.Material3.TabLayout.Secondary</item>
  2764. <item name="textInputStyle">?attr/textInputOutlinedStyle</item>
  2765. <item name="textInputOutlinedStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox</item>
  2766. <item name="textInputFilledStyle">@style/Widget.Material3.TextInputLayout.FilledBox</item>
  2767. <item name="textInputOutlinedDenseStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.Dense</item>
  2768. <item name="textInputFilledDenseStyle">@style/Widget.Material3.TextInputLayout.FilledBox.Dense</item>
  2769. <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item>
  2770. <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu</item>
  2771. <item name="toolbarStyle">@style/Widget.Material3.Toolbar</item>
  2772. <item name="toolbarSurfaceStyle">@style/Widget.Material3.Toolbar.Surface</item>
  2773. <!-- Top App Bars. -->
  2774. <item name="actionBarSize">@dimen/m3_appbar_size_compact</item>
  2775. <item name="collapsingToolbarLayoutMediumSize">@dimen/m3_appbar_size_medium</item>
  2776. <item name="collapsingToolbarLayoutLargeSize">@dimen/m3_appbar_size_large</item>
  2777. <!-- Popup Menu styles. -->
  2778. <item name="popupMenuBackground">@drawable/m3_popupmenu_background_overlay</item>
  2779. <item name="listPopupWindowStyle">@style/Widget.Material3.PopupMenu.ListPopupWindow</item>
  2780. <item name="popupMenuStyle">@style/Widget.Material3.PopupMenu</item>
  2781. <item name="actionOverflowMenuStyle">@style/Widget.Material3.PopupMenu.Overflow</item>
  2782. <!-- Divider styles. -->
  2783. <item name="materialDividerStyle">@style/Widget.Material3.MaterialDivider</item>
  2784. <item name="materialDividerHeavyStyle">@style/Widget.Material3.MaterialDivider.Heavy</item>
  2785. <!-- Type styles. -->
  2786. <item name="textAppearanceDisplayLarge">@style/TextAppearance.Material3.DisplayLarge</item>
  2787. <item name="textAppearanceDisplayMedium">@style/TextAppearance.Material3.DisplayMedium</item>
  2788. <item name="textAppearanceDisplaySmall">@style/TextAppearance.Material3.DisplaySmall</item>
  2789. <item name="textAppearanceHeadlineLarge">@style/TextAppearance.Material3.HeadlineLarge</item>
  2790. <item name="textAppearanceHeadlineMedium">@style/TextAppearance.Material3.HeadlineMedium</item>
  2791. <item name="textAppearanceHeadlineSmall">@style/TextAppearance.Material3.HeadlineSmall</item>
  2792. <item name="textAppearanceTitleLarge">@style/TextAppearance.Material3.TitleLarge</item>
  2793. <item name="textAppearanceTitleMedium">@style/TextAppearance.Material3.TitleMedium</item>
  2794. <item name="textAppearanceTitleSmall">@style/TextAppearance.Material3.TitleSmall</item>
  2795. <item name="textAppearanceBodyLarge">@style/TextAppearance.Material3.BodyLarge</item>
  2796. <item name="textAppearanceBodyMedium">@style/TextAppearance.Material3.BodyMedium</item>
  2797. <item name="textAppearanceBodySmall">@style/TextAppearance.Material3.BodySmall</item>
  2798. <item name="textAppearanceLabelLarge">@style/TextAppearance.Material3.LabelLarge</item>
  2799. <item name="textAppearanceLabelMedium">@style/TextAppearance.Material3.LabelMedium</item>
  2800. <item name="textAppearanceLabelSmall">@style/TextAppearance.Material3.LabelSmall</item>
  2801. <!-- Default Framework Text styles. -->
  2802. <item name="android:textAppearanceListItem">?attr/textAppearanceTitleMedium</item>
  2803. <item name="android:textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item>
  2804. <item name="android:textAppearanceListItemSecondary" ns1:targetApi="21">?attr/textAppearanceBodyMedium</item>
  2805. <item name="textAppearanceListItem">?attr/textAppearanceTitleMedium</item>
  2806. <item name="textAppearanceListItemSmall">?attr/textAppearanceTitleMedium</item>
  2807. <item name="textAppearanceListItemSecondary">?attr/textAppearanceBodyMedium</item>
  2808. <!-- Menu type styles. -->
  2809. <item name="textAppearanceLargePopupMenu">?attr/textAppearanceBodyLarge</item>
  2810. <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceBodyLarge</item>
  2811. <!-- TODO: Populate font families here -->
  2812. <!-- Shape styles. -->
  2813. <item name="shapeAppearanceSmallComponent">@style/ShapeAppearance.Material3.SmallComponent</item>
  2814. <item name="shapeAppearanceMediumComponent">@style/ShapeAppearance.Material3.MediumComponent</item>
  2815. <item name="shapeAppearanceLargeComponent">@style/ShapeAppearance.Material3.LargeComponent</item>
  2816. <!-- Motion-->
  2817. <item name="motionEasingStandard">@string/m3_sys_motion_easing_standard</item>
  2818. <item name="motionEasingEmphasized">@string/m3_sys_motion_easing_emphasized</item>
  2819. <item name="motionEasingDecelerated">@string/m3_sys_motion_easing_decelerated</item>
  2820. <item name="motionEasingAccelerated">@string/m3_sys_motion_easing_accelerated</item>
  2821. <item name="motionEasingLinear">@string/m3_sys_motion_easing_linear</item>
  2822. <item name="motionDurationShort1">@integer/m3_sys_motion_duration_short1</item>
  2823. <item name="motionDurationShort2">@integer/m3_sys_motion_duration_short2</item>
  2824. <item name="motionDurationMedium1">@integer/m3_sys_motion_duration_medium1</item>
  2825. <item name="motionDurationMedium2">@integer/m3_sys_motion_duration_medium2</item>
  2826. <item name="motionDurationLong1">@integer/m3_sys_motion_duration_long1</item>
  2827. <item name="motionDurationLong2">@integer/m3_sys_motion_duration_long2</item>
  2828. <item name="motionPath">@integer/m3_sys_motion_path</item>
  2829. <!-- Elevation overlays. -->
  2830. <item name="elevationOverlayEnabled">true</item>
  2831. <item name="elevationOverlayColor">?attr/colorPrimary</item>
  2832. <!-- Dialog themes. -->
  2833. <item name="alertDialogTheme">@style/ThemeOverlay.Material3.Dialog.Alert</item>
  2834. <item name="materialAlertDialogTheme">@style/ThemeOverlay.Material3.MaterialAlertDialog</item>
  2835. <!-- Theme overlays. -->
  2836. <item name="dynamicColorThemeOverlay">@style/ThemeOverlay.Material3.DynamicColors.Light</item>
  2837. </style>
  2838. <style name="Base.V14.Theme.MaterialComponents" parent="Base.V14.Theme.MaterialComponents.Bridge">
  2839. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  2840. <!-- Colors -->
  2841. <item name="colorPrimary">@color/design_dark_default_color_primary</item>
  2842. <item name="colorPrimaryDark">@color/design_dark_default_color_primary_dark</item>
  2843. <item name="colorAccent">?attr/colorSecondary</item>
  2844. <item name="android:colorBackground">@color/design_dark_default_color_background</item>
  2845. <item name="colorError">@color/design_dark_default_color_error</item>
  2846. <!-- Action bar -->
  2847. <item name="actionBarSize">@dimen/mtrl_toolbar_default_height</item>
  2848. <item name="actionBarPopupTheme">@style/ThemeOverlay.MaterialComponents.Dark</item>
  2849. <item name="actionBarStyle">@style/Widget.MaterialComponents.ActionBar.Surface</item>
  2850. <item name="actionBarTheme">@style/ThemeOverlay.MaterialComponents.ActionBar.Surface</item>
  2851. <item name="actionOverflowMenuStyle">@style/Widget.MaterialComponents.PopupMenu.Overflow</item>
  2852. <!-- Framework, AppCompat, or Design Widget styles -->
  2853. <item name="appBarLayoutStyle">@style/Widget.MaterialComponents.AppBarLayout.Surface</item>
  2854. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  2855. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView</item>
  2856. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  2857. <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
  2858. <item name="checkboxStyle">@style/Widget.MaterialComponents.CompoundButton.CheckBox</item>
  2859. <item name="android:contextPopupMenuStyle" ns1:targetApi="n">@style/Widget.MaterialComponents.PopupMenu.ContextMenu</item>
  2860. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  2861. <item name="listPopupWindowStyle">@style/Widget.MaterialComponents.PopupMenu.ListPopupWindow</item>
  2862. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  2863. <item name="popupMenuStyle">@style/Widget.MaterialComponents.PopupMenu</item>
  2864. <item name="radioButtonStyle">@style/Widget.MaterialComponents.CompoundButton.RadioButton</item>
  2865. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  2866. <item name="snackbarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Snackbar</item>
  2867. <item name="snackbarTextViewStyle">@style/Widget.MaterialComponents.Snackbar.TextView</item>
  2868. <item name="switchStyle">@style/Widget.MaterialComponents.CompoundButton.Switch</item>
  2869. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout</item>
  2870. <item name="textInputStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item>
  2871. <item name="textInputOutlinedStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox</item>
  2872. <item name="textInputFilledStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item>
  2873. <item name="textInputOutlinedDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense</item>
  2874. <item name="textInputFilledDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense</item>
  2875. <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item>
  2876. <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu</item>
  2877. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  2878. <!-- Dialog themes -->
  2879. <item name="bottomSheetDialogTheme">@style/ThemeOverlay.MaterialComponents.BottomSheetDialog</item>
  2880. <item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert</item>
  2881. <item name="materialAlertDialogTheme">@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog</item>
  2882. <item name="android:datePickerDialogTheme" ns1:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  2883. <item name="android:timePickerDialogTheme" ns1:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  2884. <!-- Type styles -->
  2885. <item name="textAppearanceLargePopupMenu">?attr/textAppearanceSubtitle1</item>
  2886. <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceSubtitle1</item>
  2887. <!-- Picker styles and themes. -->
  2888. <item name="materialCalendarStyle">@style/Widget.MaterialComponents.MaterialCalendar</item>
  2889. <item name="materialCalendarFullscreenTheme">@style/ThemeOverlay.MaterialComponents.MaterialCalendar.Fullscreen</item>
  2890. <item name="materialCalendarTheme">@style/ThemeOverlay.MaterialComponents.MaterialCalendar</item>
  2891. <item name="materialTimePickerTheme">@style/ThemeOverlay.MaterialComponents.TimePicker</item>
  2892. </style>
  2893. <style name="Base.V14.Theme.MaterialComponents.Bridge" parent="Platform.MaterialComponents">
  2894. <item name="isMaterialTheme">true</item>
  2895. <item name="colorPrimaryVariant">@color/design_dark_default_color_primary_variant</item>
  2896. <item name="colorSecondary">@color/design_dark_default_color_secondary</item>
  2897. <item name="colorSecondaryVariant">@color/design_dark_default_color_secondary_variant</item>
  2898. <item name="colorSurface">@color/design_dark_default_color_surface</item>
  2899. <item name="colorPrimarySurface">?attr/colorSurface</item>
  2900. <item name="colorOnPrimary">@color/design_dark_default_color_on_primary</item>
  2901. <item name="colorOnSecondary">@color/design_dark_default_color_on_secondary</item>
  2902. <item name="colorOnBackground">@color/design_dark_default_color_on_background</item>
  2903. <item name="colorOnError">@color/design_dark_default_color_on_error</item>
  2904. <item name="colorOnSurface">@color/design_dark_default_color_on_surface</item>
  2905. <item name="colorOnPrimarySurface">?attr/colorOnSurface</item>
  2906. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  2907. <item name="popupMenuBackground">@drawable/mtrl_popupmenu_background_overlay</item>
  2908. <item name="minTouchTargetSize">@dimen/mtrl_min_touch_target_size</item>
  2909. <!-- MaterialComponents Widget styles -->
  2910. <item name="badgeStyle">@style/Widget.MaterialComponents.Badge</item>
  2911. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  2912. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  2913. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  2914. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  2915. <item name="circularProgressIndicatorStyle">@style/Widget.MaterialComponents.CircularProgressIndicator</item>
  2916. <item name="extendedFloatingActionButtonStyle">@style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon</item>
  2917. <item name="linearProgressIndicatorStyle">@style/Widget.MaterialComponents.LinearProgressIndicator</item>
  2918. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  2919. <item name="materialButtonOutlinedStyle">@style/Widget.MaterialComponents.Button.OutlinedButton</item>
  2920. <item name="materialButtonToggleGroupStyle">@style/Widget.MaterialComponents.MaterialButtonToggleGroup</item>
  2921. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  2922. <item name="navigationRailStyle">@style/Widget.MaterialComponents.NavigationRailView</item>
  2923. <item name="sliderStyle">@style/Widget.MaterialComponents.Slider</item>
  2924. <!-- Type styles -->
  2925. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  2926. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  2927. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  2928. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  2929. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  2930. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  2931. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  2932. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  2933. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  2934. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  2935. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  2936. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  2937. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  2938. <!-- Shape styles -->
  2939. <item name="shapeAppearanceSmallComponent">
  2940. @style/ShapeAppearance.MaterialComponents.SmallComponent
  2941. </item>
  2942. <item name="shapeAppearanceMediumComponent">
  2943. @style/ShapeAppearance.MaterialComponents.MediumComponent
  2944. </item>
  2945. <item name="shapeAppearanceLargeComponent">
  2946. @style/ShapeAppearance.MaterialComponents.LargeComponent
  2947. </item>
  2948. <!-- Motion -->
  2949. <item name="motionEasingStandard">@string/material_motion_easing_standard</item>
  2950. <item name="motionEasingEmphasized">@string/material_motion_easing_emphasized</item>
  2951. <item name="motionEasingDecelerated">@string/material_motion_easing_decelerated</item>
  2952. <item name="motionEasingAccelerated">@string/material_motion_easing_accelerated</item>
  2953. <item name="motionEasingLinear">@string/material_motion_easing_linear</item>
  2954. <item name="motionDurationShort1">@integer/material_motion_duration_short_1</item>
  2955. <item name="motionDurationShort2">@integer/material_motion_duration_short_2</item>
  2956. <item name="motionDurationMedium1">@integer/material_motion_duration_medium_1</item>
  2957. <item name="motionDurationMedium2">@integer/material_motion_duration_medium_2</item>
  2958. <item name="motionDurationLong1">@integer/material_motion_duration_long_1</item>
  2959. <item name="motionDurationLong2">@integer/material_motion_duration_long_2</item>
  2960. <item name="motionPath">@integer/material_motion_path</item>
  2961. <!-- Elevation Overlays -->
  2962. <item name="elevationOverlayEnabled">true</item>
  2963. <item name="elevationOverlayColor">?attr/colorOnSurface</item>
  2964. </style>
  2965. <style name="Base.V14.Theme.MaterialComponents.Dialog" parent="Base.V14.Theme.MaterialComponents.Dialog.Bridge">
  2966. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  2967. <item name="colorPrimary">@color/design_dark_default_color_primary</item>
  2968. <item name="colorPrimaryDark">@color/design_dark_default_color_primary_dark</item>
  2969. <item name="colorSecondary">@color/design_dark_default_color_secondary</item>
  2970. <item name="colorAccent">?attr/colorSecondary</item>
  2971. <item name="android:colorBackground">@color/design_dark_default_color_background</item>
  2972. <item name="colorError">@color/design_dark_default_color_error</item>
  2973. <!-- Action bar -->
  2974. <item name="actionBarSize">@dimen/mtrl_toolbar_default_height</item>
  2975. <item name="actionBarPopupTheme">@style/ThemeOverlay.MaterialComponents.Dark</item>
  2976. <item name="actionBarStyle">@style/Widget.MaterialComponents.ActionBar.Surface</item>
  2977. <item name="actionBarTheme">@style/ThemeOverlay.MaterialComponents.ActionBar.Surface</item>
  2978. <item name="actionOverflowMenuStyle">@style/Widget.MaterialComponents.PopupMenu.Overflow</item>
  2979. <!-- Framework, AppCompat, or Design Widget styles -->
  2980. <item name="appBarLayoutStyle">@style/Widget.MaterialComponents.AppBarLayout.Surface</item>
  2981. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  2982. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView</item>
  2983. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush</item>
  2984. <item name="checkboxStyle">@style/Widget.MaterialComponents.CompoundButton.CheckBox</item>
  2985. <item name="android:contextPopupMenuStyle" ns1:targetApi="n">@style/Widget.MaterialComponents.PopupMenu.ContextMenu</item>
  2986. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  2987. <item name="listPopupWindowStyle">@style/Widget.MaterialComponents.PopupMenu.ListPopupWindow</item>
  2988. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  2989. <item name="popupMenuStyle">@style/Widget.MaterialComponents.PopupMenu</item>
  2990. <item name="radioButtonStyle">@style/Widget.MaterialComponents.CompoundButton.RadioButton</item>
  2991. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  2992. <item name="snackbarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Snackbar</item>
  2993. <item name="snackbarTextViewStyle">@style/Widget.MaterialComponents.Snackbar.TextView</item>
  2994. <item name="switchStyle">@style/Widget.MaterialComponents.CompoundButton.Switch</item>
  2995. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout</item>
  2996. <item name="textInputStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item>
  2997. <item name="textInputOutlinedStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox</item>
  2998. <item name="textInputFilledStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item>
  2999. <item name="textInputOutlinedDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense</item>
  3000. <item name="textInputFilledDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense</item>
  3001. <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item>
  3002. <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu</item>
  3003. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  3004. <item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert</item>
  3005. <item name="materialAlertDialogTheme">@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog</item>
  3006. <!-- Type styles -->
  3007. <item name="textAppearanceLargePopupMenu">?attr/textAppearanceSubtitle1</item>
  3008. <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceSubtitle1</item>
  3009. </style>
  3010. <style name="Base.V14.Theme.MaterialComponents.Dialog.Bridge" parent="Platform.MaterialComponents.Dialog">
  3011. <item name="isMaterialTheme">true</item>
  3012. <item name="colorPrimaryVariant">@color/design_dark_default_color_primary_variant</item>
  3013. <item name="colorSecondary">@color/design_dark_default_color_secondary</item>
  3014. <item name="colorSecondaryVariant">@color/design_dark_default_color_secondary_variant</item>
  3015. <item name="colorSurface">@color/design_dark_default_color_surface</item>
  3016. <item name="colorPrimarySurface">?attr/colorSurface</item>
  3017. <item name="colorOnPrimary">@color/design_dark_default_color_on_primary</item>
  3018. <item name="colorOnSecondary">@color/design_dark_default_color_on_secondary</item>
  3019. <item name="colorOnBackground">@color/design_dark_default_color_on_background</item>
  3020. <item name="colorOnError">@color/design_dark_default_color_on_error</item>
  3021. <item name="colorOnSurface">@color/design_dark_default_color_on_surface</item>
  3022. <item name="colorOnPrimarySurface">?attr/colorOnSurface</item>
  3023. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  3024. <item name="popupMenuBackground">@drawable/mtrl_popupmenu_background_overlay</item>
  3025. <item name="minTouchTargetSize">@dimen/mtrl_min_touch_target_size</item>
  3026. <!-- MaterialComponents Widget styles -->
  3027. <item name="badgeStyle">@style/Widget.MaterialComponents.Badge</item>
  3028. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</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="circularProgressIndicatorStyle">@style/Widget.MaterialComponents.CircularProgressIndicator</item>
  3033. <item name="extendedFloatingActionButtonStyle">@style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon</item>
  3034. <item name="linearProgressIndicatorStyle">@style/Widget.MaterialComponents.LinearProgressIndicator</item>
  3035. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  3036. <item name="materialButtonOutlinedStyle">@style/Widget.MaterialComponents.Button.OutlinedButton</item>
  3037. <item name="materialButtonToggleGroupStyle">@style/Widget.MaterialComponents.MaterialButtonToggleGroup</item>
  3038. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  3039. <item name="navigationRailStyle">@style/Widget.MaterialComponents.NavigationRailView</item>
  3040. <item name="sliderStyle">@style/Widget.MaterialComponents.Slider</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. <!-- Shape styles -->
  3056. <item name="shapeAppearanceSmallComponent">
  3057. @style/ShapeAppearance.MaterialComponents.SmallComponent
  3058. </item>
  3059. <item name="shapeAppearanceMediumComponent">
  3060. @style/ShapeAppearance.MaterialComponents.MediumComponent
  3061. </item>
  3062. <item name="shapeAppearanceLargeComponent">
  3063. @style/ShapeAppearance.MaterialComponents.LargeComponent
  3064. </item>
  3065. <!-- Motion -->
  3066. <item name="motionEasingStandard">@string/material_motion_easing_standard</item>
  3067. <item name="motionEasingEmphasized">@string/material_motion_easing_emphasized</item>
  3068. <item name="motionEasingDecelerated">@string/material_motion_easing_decelerated</item>
  3069. <item name="motionEasingAccelerated">@string/material_motion_easing_accelerated</item>
  3070. <item name="motionEasingLinear">@string/material_motion_easing_linear</item>
  3071. <item name="motionDurationShort1">@integer/material_motion_duration_short_1</item>
  3072. <item name="motionDurationShort2">@integer/material_motion_duration_short_2</item>
  3073. <item name="motionDurationMedium1">@integer/material_motion_duration_medium_1</item>
  3074. <item name="motionDurationMedium2">@integer/material_motion_duration_medium_2</item>
  3075. <item name="motionDurationLong1">@integer/material_motion_duration_long_1</item>
  3076. <item name="motionDurationLong2">@integer/material_motion_duration_long_2</item>
  3077. <item name="motionPath">@integer/material_motion_path</item>
  3078. <!-- Elevation Overlays -->
  3079. <item name="elevationOverlayEnabled">true</item>
  3080. <item name="elevationOverlayColor">?attr/colorOnSurface</item>
  3081. </style>
  3082. <style name="Base.V14.Theme.MaterialComponents.Light" parent="Base.V14.Theme.MaterialComponents.Light.Bridge">
  3083. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  3084. <!-- Colors -->
  3085. <item name="colorPrimary">@color/design_default_color_primary</item>
  3086. <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
  3087. <item name="colorAccent">?attr/colorSecondary</item>
  3088. <item name="android:colorBackground">@color/design_default_color_background</item>
  3089. <item name="colorError">@color/design_default_color_error</item>
  3090. <!-- Action bar -->
  3091. <item name="actionBarSize">@dimen/mtrl_toolbar_default_height</item>
  3092. <item name="actionBarPopupTheme">@style/ThemeOverlay.MaterialComponents.Light</item>
  3093. <item name="actionBarStyle">@style/Widget.MaterialComponents.Light.ActionBar.Solid</item>
  3094. <item name="actionOverflowMenuStyle">@style/Widget.MaterialComponents.PopupMenu.Overflow</item>
  3095. <!-- Framework, AppCompat, or Design Widget styles -->
  3096. <item name="appBarLayoutStyle">@style/Widget.MaterialComponents.AppBarLayout.Primary</item>
  3097. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  3098. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView</item>
  3099. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  3100. <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
  3101. <item name="checkboxStyle">@style/Widget.MaterialComponents.CompoundButton.CheckBox</item>
  3102. <item name="android:contextPopupMenuStyle" ns1:targetApi="n">@style/Widget.MaterialComponents.PopupMenu.ContextMenu</item>
  3103. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  3104. <item name="listPopupWindowStyle">@style/Widget.MaterialComponents.PopupMenu.ListPopupWindow</item>
  3105. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  3106. <item name="popupMenuStyle">@style/Widget.MaterialComponents.PopupMenu</item>
  3107. <item name="radioButtonStyle">@style/Widget.MaterialComponents.CompoundButton.RadioButton</item>
  3108. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  3109. <item name="snackbarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Snackbar</item>
  3110. <item name="snackbarTextViewStyle">@style/Widget.MaterialComponents.Snackbar.TextView</item>
  3111. <item name="switchStyle">@style/Widget.MaterialComponents.CompoundButton.Switch</item>
  3112. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout</item>
  3113. <item name="textInputStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item>
  3114. <item name="textInputOutlinedStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox</item>
  3115. <item name="textInputFilledStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item>
  3116. <item name="textInputOutlinedDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense</item>
  3117. <item name="textInputFilledDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense</item>
  3118. <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item>
  3119. <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu</item>
  3120. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  3121. <!-- Dialog themes -->
  3122. <item name="bottomSheetDialogTheme">@style/ThemeOverlay.MaterialComponents.BottomSheetDialog</item>
  3123. <item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert</item>
  3124. <item name="materialAlertDialogTheme">@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog</item>
  3125. <item name="android:datePickerDialogTheme" ns1:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  3126. <item name="android:timePickerDialogTheme" ns1:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  3127. <!-- Type styles -->
  3128. <item name="textAppearanceLargePopupMenu">?attr/textAppearanceSubtitle1</item>
  3129. <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceSubtitle1</item>
  3130. <!-- Picker styles and themes. -->
  3131. <item name="materialCalendarStyle">@style/Widget.MaterialComponents.MaterialCalendar</item>
  3132. <item name="materialCalendarFullscreenTheme">@style/ThemeOverlay.MaterialComponents.MaterialCalendar.Fullscreen</item>
  3133. <item name="materialCalendarTheme">@style/ThemeOverlay.MaterialComponents.MaterialCalendar</item>
  3134. <item name="materialTimePickerTheme">@style/ThemeOverlay.MaterialComponents.TimePicker</item>
  3135. </style>
  3136. <style name="Base.V14.Theme.MaterialComponents.Light.Bridge" parent="Platform.MaterialComponents.Light">
  3137. <item name="isMaterialTheme">true</item>
  3138. <item name="colorPrimaryVariant">@color/design_default_color_primary_variant</item>
  3139. <item name="colorSecondary">@color/design_default_color_secondary</item>
  3140. <item name="colorSecondaryVariant">@color/design_default_color_secondary_variant</item>
  3141. <item name="colorSurface">@color/design_default_color_surface</item>
  3142. <item name="colorPrimarySurface">?attr/colorPrimary</item>
  3143. <item name="colorOnPrimary">@color/design_default_color_on_primary</item>
  3144. <item name="colorOnSecondary">@color/design_default_color_on_secondary</item>
  3145. <item name="colorOnBackground">@color/design_default_color_on_background</item>
  3146. <item name="colorOnError">@color/design_default_color_on_error</item>
  3147. <item name="colorOnSurface">@color/design_default_color_on_surface</item>
  3148. <item name="colorOnPrimarySurface">?attr/colorOnPrimary</item>
  3149. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  3150. <item name="popupMenuBackground">@drawable/mtrl_popupmenu_background</item>
  3151. <item name="minTouchTargetSize">@dimen/mtrl_min_touch_target_size</item>
  3152. <!-- MaterialComponents Widget styles -->
  3153. <item name="badgeStyle">@style/Widget.MaterialComponents.Badge</item>
  3154. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  3155. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  3156. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  3157. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  3158. <item name="circularProgressIndicatorStyle">@style/Widget.MaterialComponents.CircularProgressIndicator</item>
  3159. <item name="extendedFloatingActionButtonStyle">@style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon</item>
  3160. <item name="linearProgressIndicatorStyle">@style/Widget.MaterialComponents.LinearProgressIndicator</item>
  3161. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  3162. <item name="materialButtonOutlinedStyle">@style/Widget.MaterialComponents.Button.OutlinedButton</item>
  3163. <item name="materialButtonToggleGroupStyle">@style/Widget.MaterialComponents.MaterialButtonToggleGroup</item>
  3164. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  3165. <item name="navigationRailStyle">@style/Widget.MaterialComponents.NavigationRailView</item>
  3166. <item name="sliderStyle">@style/Widget.MaterialComponents.Slider</item>
  3167. <!-- Type styles -->
  3168. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  3169. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  3170. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  3171. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  3172. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  3173. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  3174. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  3175. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  3176. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  3177. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  3178. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  3179. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  3180. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  3181. <!-- Shape styles -->
  3182. <item name="shapeAppearanceSmallComponent">
  3183. @style/ShapeAppearance.MaterialComponents.SmallComponent
  3184. </item>
  3185. <item name="shapeAppearanceMediumComponent">
  3186. @style/ShapeAppearance.MaterialComponents.MediumComponent
  3187. </item>
  3188. <item name="shapeAppearanceLargeComponent">
  3189. @style/ShapeAppearance.MaterialComponents.LargeComponent
  3190. </item>
  3191. <!-- Motion -->
  3192. <item name="motionEasingStandard">@string/material_motion_easing_standard</item>
  3193. <item name="motionEasingEmphasized">@string/material_motion_easing_emphasized</item>
  3194. <item name="motionEasingDecelerated">@string/material_motion_easing_decelerated</item>
  3195. <item name="motionEasingAccelerated">@string/material_motion_easing_accelerated</item>
  3196. <item name="motionEasingLinear">@string/material_motion_easing_linear</item>
  3197. <item name="motionDurationShort1">@integer/material_motion_duration_short_1</item>
  3198. <item name="motionDurationShort2">@integer/material_motion_duration_short_2</item>
  3199. <item name="motionDurationMedium1">@integer/material_motion_duration_medium_1</item>
  3200. <item name="motionDurationMedium2">@integer/material_motion_duration_medium_2</item>
  3201. <item name="motionDurationLong1">@integer/material_motion_duration_long_1</item>
  3202. <item name="motionDurationLong2">@integer/material_motion_duration_long_2</item>
  3203. <item name="motionPath">@integer/material_motion_path</item>
  3204. <!-- Elevation Overlays -->
  3205. <item name="elevationOverlayEnabled">false</item>
  3206. <item name="elevationOverlayColor">?attr/colorOnSurface</item>
  3207. </style>
  3208. <style name="Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Theme.AppCompat.Light.DarkActionBar">
  3209. <item name="isMaterialTheme">true</item>
  3210. <item name="colorPrimaryVariant">@color/design_default_color_primary_variant</item>
  3211. <item name="colorSecondary">@color/design_default_color_secondary</item>
  3212. <item name="colorSecondaryVariant">@color/design_default_color_secondary_variant</item>
  3213. <item name="colorSurface">@color/design_default_color_surface</item>
  3214. <item name="colorPrimarySurface">?attr/colorPrimary</item>
  3215. <item name="colorOnPrimary">@color/design_default_color_on_primary</item>
  3216. <item name="colorOnSecondary">@color/design_default_color_on_secondary</item>
  3217. <item name="colorOnBackground">@color/design_default_color_on_background</item>
  3218. <item name="colorOnError">@color/design_default_color_on_error</item>
  3219. <item name="colorOnSurface">@color/design_default_color_on_surface</item>
  3220. <item name="colorOnPrimarySurface">?attr/colorOnPrimary</item>
  3221. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  3222. <item name="popupMenuBackground">@drawable/mtrl_popupmenu_background</item>
  3223. <!-- Type styles -->
  3224. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  3225. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  3226. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  3227. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  3228. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  3229. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  3230. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  3231. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  3232. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  3233. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  3234. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  3235. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  3236. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  3237. <!-- Shape styles -->
  3238. <item name="shapeAppearanceSmallComponent">
  3239. @style/ShapeAppearance.MaterialComponents.SmallComponent
  3240. </item>
  3241. <item name="shapeAppearanceMediumComponent">
  3242. @style/ShapeAppearance.MaterialComponents.MediumComponent
  3243. </item>
  3244. <item name="shapeAppearanceLargeComponent">
  3245. @style/ShapeAppearance.MaterialComponents.LargeComponent
  3246. </item>
  3247. <!-- Motion -->
  3248. <item name="motionEasingStandard">@string/material_motion_easing_standard</item>
  3249. <item name="motionEasingEmphasized">@string/material_motion_easing_emphasized</item>
  3250. <item name="motionEasingDecelerated">@string/material_motion_easing_decelerated</item>
  3251. <item name="motionEasingAccelerated">@string/material_motion_easing_accelerated</item>
  3252. <item name="motionEasingLinear">@string/material_motion_easing_linear</item>
  3253. <item name="motionDurationShort1">@integer/material_motion_duration_short_1</item>
  3254. <item name="motionDurationShort2">@integer/material_motion_duration_short_2</item>
  3255. <item name="motionDurationMedium1">@integer/material_motion_duration_medium_1</item>
  3256. <item name="motionDurationMedium2">@integer/material_motion_duration_medium_2</item>
  3257. <item name="motionDurationLong1">@integer/material_motion_duration_long_1</item>
  3258. <item name="motionDurationLong2">@integer/material_motion_duration_long_2</item>
  3259. <item name="motionPath">@integer/material_motion_path</item>
  3260. <!-- Elevation Overlays -->
  3261. <item name="elevationOverlayEnabled">false</item>
  3262. <item name="elevationOverlayColor">?attr/colorOnSurface</item>
  3263. </style>
  3264. <style name="Base.V14.Theme.MaterialComponents.Light.Dialog" parent="Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge">
  3265. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  3266. <!-- Colors -->
  3267. <item name="colorPrimary">@color/design_default_color_primary</item>
  3268. <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
  3269. <item name="colorSecondary">@color/design_default_color_secondary</item>
  3270. <item name="colorAccent">?attr/colorSecondary</item>
  3271. <item name="android:colorBackground">@color/design_default_color_background</item>
  3272. <item name="colorError">@color/design_default_color_error</item>
  3273. <!-- Action bar -->
  3274. <item name="actionBarSize">@dimen/mtrl_toolbar_default_height</item>
  3275. <item name="actionBarPopupTheme">@style/ThemeOverlay.MaterialComponents.Light</item>
  3276. <item name="actionBarStyle">@style/Widget.MaterialComponents.Light.ActionBar.Solid</item>
  3277. <item name="actionOverflowMenuStyle">@style/Widget.MaterialComponents.PopupMenu.Overflow</item>
  3278. <!-- Framework, AppCompat, or Design Widget styles -->
  3279. <item name="appBarLayoutStyle">@style/Widget.MaterialComponents.AppBarLayout.Primary</item>
  3280. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  3281. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView</item>
  3282. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush</item>
  3283. <item name="checkboxStyle">@style/Widget.MaterialComponents.CompoundButton.CheckBox</item>
  3284. <item name="android:contextPopupMenuStyle" ns1:targetApi="n">@style/Widget.MaterialComponents.PopupMenu.ContextMenu</item>
  3285. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  3286. <item name="listPopupWindowStyle">@style/Widget.MaterialComponents.PopupMenu.ListPopupWindow</item>
  3287. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  3288. <item name="popupMenuStyle">@style/Widget.MaterialComponents.PopupMenu</item>
  3289. <item name="radioButtonStyle">@style/Widget.MaterialComponents.CompoundButton.RadioButton</item>
  3290. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  3291. <item name="snackbarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Snackbar</item>
  3292. <item name="snackbarTextViewStyle">@style/Widget.MaterialComponents.Snackbar.TextView</item>
  3293. <item name="switchStyle">@style/Widget.MaterialComponents.CompoundButton.Switch</item>
  3294. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout</item>
  3295. <item name="textInputStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item>
  3296. <item name="textInputOutlinedStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox</item>
  3297. <item name="textInputFilledStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox</item>
  3298. <item name="textInputOutlinedDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense</item>
  3299. <item name="textInputFilledDenseStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense</item>
  3300. <item name="textInputOutlinedExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu</item>
  3301. <item name="textInputFilledExposedDropdownMenuStyle">@style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu</item>
  3302. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  3303. <item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert</item>
  3304. <item name="materialAlertDialogTheme">@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog</item>
  3305. <!-- Type styles -->
  3306. <item name="textAppearanceLargePopupMenu">?attr/textAppearanceSubtitle1</item>
  3307. <item name="textAppearanceSmallPopupMenu">?attr/textAppearanceSubtitle1</item>
  3308. </style>
  3309. <style name="Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge" parent="Platform.MaterialComponents.Light.Dialog">
  3310. <item name="isMaterialTheme">true</item>
  3311. <item name="colorPrimaryVariant">@color/design_default_color_primary_variant</item>
  3312. <item name="colorSecondary">@color/design_default_color_secondary</item>
  3313. <item name="colorSecondaryVariant">@color/design_default_color_secondary_variant</item>
  3314. <item name="colorSurface">@color/design_default_color_surface</item>
  3315. <item name="colorPrimarySurface">?attr/colorPrimary</item>
  3316. <item name="colorOnPrimary">@color/design_default_color_on_primary</item>
  3317. <item name="colorOnSecondary">@color/design_default_color_on_secondary</item>
  3318. <item name="colorOnBackground">@color/design_default_color_on_background</item>
  3319. <item name="colorOnError">@color/design_default_color_on_error</item>
  3320. <item name="colorOnSurface">@color/design_default_color_on_surface</item>
  3321. <item name="colorOnPrimarySurface">?attr/colorOnPrimary</item>
  3322. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  3323. <item name="popupMenuBackground">@drawable/mtrl_popupmenu_background</item>
  3324. <item name="minTouchTargetSize">@dimen/mtrl_min_touch_target_size</item>
  3325. <!-- MaterialComponents Widget styles -->
  3326. <item name="badgeStyle">@style/Widget.MaterialComponents.Badge</item>
  3327. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  3328. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  3329. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  3330. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  3331. <item name="circularProgressIndicatorStyle">@style/Widget.MaterialComponents.CircularProgressIndicator</item>
  3332. <item name="extendedFloatingActionButtonStyle">@style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon</item>
  3333. <item name="linearProgressIndicatorStyle">@style/Widget.MaterialComponents.LinearProgressIndicator</item>
  3334. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  3335. <item name="materialButtonOutlinedStyle">@style/Widget.MaterialComponents.Button.OutlinedButton</item>
  3336. <item name="materialButtonToggleGroupStyle">@style/Widget.MaterialComponents.MaterialButtonToggleGroup</item>
  3337. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  3338. <item name="navigationRailStyle">@style/Widget.MaterialComponents.NavigationRailView</item>
  3339. <item name="sliderStyle">@style/Widget.MaterialComponents.Slider</item>
  3340. <!-- Type styles -->
  3341. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  3342. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  3343. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  3344. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  3345. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  3346. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  3347. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  3348. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  3349. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  3350. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  3351. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  3352. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  3353. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  3354. <!-- Shape styles -->
  3355. <item name="shapeAppearanceSmallComponent">
  3356. @style/ShapeAppearance.MaterialComponents.SmallComponent
  3357. </item>
  3358. <item name="shapeAppearanceMediumComponent">
  3359. @style/ShapeAppearance.MaterialComponents.MediumComponent
  3360. </item>
  3361. <item name="shapeAppearanceLargeComponent">
  3362. @style/ShapeAppearance.MaterialComponents.LargeComponent
  3363. </item>
  3364. <!-- Motion -->
  3365. <item name="motionEasingStandard">@string/material_motion_easing_standard</item>
  3366. <item name="motionEasingEmphasized">@string/material_motion_easing_emphasized</item>
  3367. <item name="motionEasingDecelerated">@string/material_motion_easing_decelerated</item>
  3368. <item name="motionEasingAccelerated">@string/material_motion_easing_accelerated</item>
  3369. <item name="motionEasingLinear">@string/material_motion_easing_linear</item>
  3370. <item name="motionDurationShort1">@integer/material_motion_duration_short_1</item>
  3371. <item name="motionDurationShort2">@integer/material_motion_duration_short_2</item>
  3372. <item name="motionDurationMedium1">@integer/material_motion_duration_medium_1</item>
  3373. <item name="motionDurationMedium2">@integer/material_motion_duration_medium_2</item>
  3374. <item name="motionDurationLong1">@integer/material_motion_duration_long_1</item>
  3375. <item name="motionDurationLong2">@integer/material_motion_duration_long_2</item>
  3376. <item name="motionPath">@integer/material_motion_path</item>
  3377. <!-- Elevation Overlays -->
  3378. <item name="elevationOverlayEnabled">false</item>
  3379. <item name="elevationOverlayColor">?attr/colorOnSurface</item>
  3380. </style>
  3381. <style name="Base.V14.ThemeOverlay.Material3.BottomSheetDialog" parent="Base.ThemeOverlay.Material3.Dialog">
  3382. <item name="android:windowIsFloating">false</item>
  3383. <item name="android:windowBackground">@android:color/transparent</item>
  3384. <item name="android:windowAnimationStyle">@style/Animation.MaterialComponents.BottomSheetDialog</item>
  3385. <item name="bottomSheetStyle">@style/Widget.Material3.BottomSheet.Modal</item>
  3386. <item name="enableEdgeToEdge">true</item>
  3387. <item name="paddingBottomSystemWindowInsets">true</item>
  3388. <item name="paddingLeftSystemWindowInsets">true</item>
  3389. <item name="paddingRightSystemWindowInsets">true</item>
  3390. <item name="paddingTopSystemWindowInsets">true</item>
  3391. </style>
  3392. <style name="Base.V14.ThemeOverlay.MaterialComponents.BottomSheetDialog" parent="Base.ThemeOverlay.MaterialComponents.Dialog">
  3393. <item name="android:windowIsFloating">false</item>
  3394. <item name="android:windowBackground">@android:color/transparent</item>
  3395. <item name="android:windowAnimationStyle">@style/Animation.MaterialComponents.BottomSheetDialog</item>
  3396. <item name="bottomSheetStyle">@style/Widget.MaterialComponents.BottomSheet.Modal</item>
  3397. <item name="enableEdgeToEdge">true</item>
  3398. <item name="paddingBottomSystemWindowInsets">true</item>
  3399. <item name="paddingLeftSystemWindowInsets">true</item>
  3400. <item name="paddingRightSystemWindowInsets">true</item>
  3401. <item name="paddingTopSystemWindowInsets">true</item>
  3402. </style>
  3403. <style name="Base.V14.ThemeOverlay.MaterialComponents.Dialog" parent="ThemeOverlay.AppCompat.Dialog">
  3404. <!-- Widget styles -->
  3405. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush</item>
  3406. </style>
  3407. <style name="Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert" parent="ThemeOverlay.AppCompat.Dialog.Alert">
  3408. <!-- Widget styles -->
  3409. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush</item>
  3410. </style>
  3411. <style name="Base.V14.ThemeOverlay.MaterialComponents.MaterialAlertDialog" parent="ThemeOverlay.AppCompat.Dialog.Alert">
  3412. <!-- Widget styles -->
  3413. <item name="materialAlertDialogButtonSpacerVisibility">@integer/mtrl_view_invisible</item>
  3414. <item name="alertDialogStyle">@style/MaterialAlertDialog.MaterialComponents</item>
  3415. <item name="android:checkedTextViewStyle" ns1:ignore="NewApi">@style/Widget.MaterialComponents.CheckedTextView</item>
  3416. <item name="android:dialogCornerRadius" ns1:ignore="newApi">@null</item>
  3417. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  3418. <item name="buttonBarPositiveButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  3419. <item name="buttonBarNegativeButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  3420. <item name="buttonBarNeutralButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush</item>
  3421. <item name="android:backgroundDimAmount">0.32</item>
  3422. <item name="materialAlertDialogBodyTextStyle">@style/MaterialAlertDialog.MaterialComponents.Body.Text</item>
  3423. </style>
  3424. <style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">
  3425. <item name="windowNoTitle">false</item>
  3426. <item name="windowActionBar">true</item>
  3427. <item name="windowActionBarOverlay">false</item>
  3428. <item name="windowActionModeOverlay">false</item>
  3429. <item name="actionBarPopupTheme">@null</item>
  3430. <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
  3431. <!-- Used by MediaRouter -->
  3432. <item name="isLightTheme">false</item>
  3433. <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
  3434. <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
  3435. <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  3436. <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
  3437. <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
  3438. <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
  3439. <!-- Action Bar Styles -->
  3440. <item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item>
  3441. <item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item>
  3442. <item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item>
  3443. <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
  3444. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
  3445. <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.PopupMenu.Overflow</item>
  3446. <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item>
  3447. <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
  3448. <item name="actionBarWidgetTheme">@null</item>
  3449. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
  3450. <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
  3451. <item name="actionBarDivider">?attr/dividerVertical</item>
  3452. <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
  3453. <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
  3454. <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
  3455. <!-- Dropdown Spinner Attributes -->
  3456. <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
  3457. <!-- Action Mode -->
  3458. <item name="actionModeTheme">?attr/actionBarTheme</item>
  3459. <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
  3460. <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
  3461. <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
  3462. <item name="actionModeCloseContentDescription">@string/abc_action_mode_done</item>
  3463. <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
  3464. <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
  3465. <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
  3466. <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
  3467. <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
  3468. <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
  3469. <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
  3470. <!-- Panel attributes -->
  3471. <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
  3472. <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
  3473. <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
  3474. <item name="android:panelBackground">@android:color/transparent</item>
  3475. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
  3476. <!-- List attributes -->
  3477. <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  3478. <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  3479. <item name="textAppearanceListItemSecondary">@style/TextAppearance.AppCompat.Body1</item>
  3480. <item name="listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  3481. <item name="listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  3482. <item name="listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  3483. <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  3484. <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  3485. <item name="listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  3486. <item name="listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  3487. <!-- Spinner styles -->
  3488. <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
  3489. <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
  3490. <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
  3491. <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
  3492. <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  3493. <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
  3494. <!-- Popup Menu styles -->
  3495. <item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item>
  3496. <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>
  3497. <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>
  3498. <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
  3499. <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
  3500. <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
  3501. <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
  3502. <!-- SearchView attributes -->
  3503. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView</item>
  3504. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  3505. <item name="textColorSearchUrl">@color/abc_search_url_text</item>
  3506. <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
  3507. <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
  3508. <!-- ShareActionProvider attributes -->
  3509. <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
  3510. <!-- Toolbar styles -->
  3511. <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
  3512. <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
  3513. <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
  3514. <item name="editTextBackground">@drawable/abc_edit_text_material</item>
  3515. <item name="editTextColor">?android:attr/textColorPrimary</item>
  3516. <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  3517. <item name="android:textViewStyle">@style/Widget.AppCompat.TextView</item>
  3518. <!-- Color palette -->
  3519. <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
  3520. <item name="colorPrimary">@color/primary_material_dark</item>
  3521. <item name="colorAccent">@color/accent_material_dark</item>
  3522. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  3523. <item name="colorControlActivated">?attr/colorAccent</item>
  3524. <item name="colorControlHighlight">@color/ripple_material_dark</item>
  3525. <item name="colorButtonNormal">@color/button_material_dark</item>
  3526. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
  3527. <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
  3528. <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
  3529. <item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item>
  3530. <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
  3531. <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
  3532. <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
  3533. <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
  3534. <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
  3535. <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
  3536. <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
  3537. <!-- Button styles -->
  3538. <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
  3539. <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
  3540. <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
  3541. <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
  3542. <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
  3543. <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
  3544. <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
  3545. <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
  3546. <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
  3547. <!-- Dialog attributes -->
  3548. <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
  3549. <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
  3550. <item name="dialogCornerRadius">@dimen/abc_dialog_corner_radius_material</item>
  3551. <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
  3552. <item name="alertDialogStyle">@style/AlertDialog.AppCompat</item>
  3553. <item name="alertDialogCenterButtons">false</item>
  3554. <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
  3555. <item name="listDividerAlertDialog">@null</item>
  3556. <!-- Define these here; ContextThemeWrappers around themes that define them should
  3557. always clear these values. -->
  3558. <item name="windowFixedWidthMajor">@null</item>
  3559. <item name="windowFixedWidthMinor">@null</item>
  3560. <item name="windowFixedHeightMajor">@null</item>
  3561. <item name="windowFixedHeightMinor">@null</item>
  3562. <!-- Tooltip attributes -->
  3563. <item name="tooltipFrameBackground">@drawable/tooltip_frame_light</item>
  3564. <item name="tooltipForegroundColor">@color/foreground_material_light</item>
  3565. <item name="colorError">@color/error_color_material_dark</item>
  3566. </style>
  3567. <style name="Base.V7.Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat">
  3568. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  3569. <item name="android:colorBackgroundCacheHint">@null</item>
  3570. <item name="android:windowFrame">@null</item>
  3571. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  3572. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  3573. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  3574. <item name="android:windowIsFloating">true</item>
  3575. <item name="android:backgroundDimEnabled">true</item>
  3576. <item name="android:windowContentOverlay">@null</item>
  3577. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  3578. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  3579. <item name="windowActionBar">false</item>
  3580. <item name="windowActionModeOverlay">true</item>
  3581. <item name="listPreferredItemPaddingLeft">24dip</item>
  3582. <item name="listPreferredItemPaddingRight">24dip</item>
  3583. <item name="android:listDivider">@null</item>
  3584. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  3585. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  3586. <item name="android:windowCloseOnTouchOutside">true</item>
  3587. </style>
  3588. <style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light">
  3589. <item name="windowNoTitle">false</item>
  3590. <item name="windowActionBar">true</item>
  3591. <item name="windowActionBarOverlay">false</item>
  3592. <item name="windowActionModeOverlay">false</item>
  3593. <item name="actionBarPopupTheme">@null</item>
  3594. <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
  3595. <!-- Used by MediaRouter -->
  3596. <item name="isLightTheme">true</item>
  3597. <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
  3598. <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
  3599. <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  3600. <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
  3601. <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
  3602. <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
  3603. <!-- Action Bar Styles -->
  3604. <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item>
  3605. <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>
  3606. <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item>
  3607. <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
  3608. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
  3609. <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>
  3610. <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item>
  3611. <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
  3612. <item name="actionBarWidgetTheme">@null</item>
  3613. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
  3614. <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
  3615. <item name="actionBarDivider">?attr/dividerVertical</item>
  3616. <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
  3617. <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
  3618. <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
  3619. <!-- Action Mode -->
  3620. <item name="actionModeTheme">?attr/actionBarTheme</item>
  3621. <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
  3622. <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
  3623. <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
  3624. <item name="actionModeCloseContentDescription">@string/abc_action_mode_done</item>
  3625. <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
  3626. <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
  3627. <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
  3628. <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
  3629. <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
  3630. <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
  3631. <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
  3632. <!-- Dropdown Spinner Attributes -->
  3633. <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
  3634. <!-- Panel attributes -->
  3635. <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
  3636. <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
  3637. <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
  3638. <item name="android:panelBackground">@android:color/transparent</item>
  3639. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>
  3640. <!-- List attributes -->
  3641. <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  3642. <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  3643. <item name="textAppearanceListItemSecondary">@style/TextAppearance.AppCompat.Body1</item>
  3644. <item name="listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  3645. <item name="listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  3646. <item name="listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  3647. <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  3648. <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  3649. <item name="listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  3650. <item name="listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  3651. <!-- Spinner styles -->
  3652. <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
  3653. <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
  3654. <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
  3655. <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
  3656. <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  3657. <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
  3658. <!-- Popup Menu styles -->
  3659. <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item>
  3660. <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>
  3661. <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>
  3662. <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
  3663. <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
  3664. <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
  3665. <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
  3666. <!-- SearchView attributes -->
  3667. <item name="searchViewStyle">@style/Widget.AppCompat.Light.SearchView</item>
  3668. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  3669. <item name="textColorSearchUrl">@color/abc_search_url_text</item>
  3670. <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
  3671. <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
  3672. <!-- ShareActionProvider attributes -->
  3673. <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
  3674. <!-- Toolbar styles -->
  3675. <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
  3676. <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
  3677. <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
  3678. <item name="editTextBackground">@drawable/abc_edit_text_material</item>
  3679. <item name="editTextColor">?android:attr/textColorPrimary</item>
  3680. <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  3681. <item name="android:textViewStyle">@style/Widget.AppCompat.TextView</item>
  3682. <!-- Color palette -->
  3683. <item name="colorPrimaryDark">@color/primary_dark_material_light</item>
  3684. <item name="colorPrimary">@color/primary_material_light</item>
  3685. <item name="colorAccent">@color/accent_material_light</item>
  3686. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  3687. <item name="colorControlActivated">?attr/colorAccent</item>
  3688. <item name="colorControlHighlight">@color/ripple_material_light</item>
  3689. <item name="colorButtonNormal">@color/button_material_light</item>
  3690. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
  3691. <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
  3692. <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
  3693. <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
  3694. <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
  3695. <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
  3696. <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
  3697. <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
  3698. <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
  3699. <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
  3700. <!-- Button styles -->
  3701. <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
  3702. <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
  3703. <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
  3704. <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
  3705. <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
  3706. <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
  3707. <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
  3708. <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
  3709. <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
  3710. <!-- Dialog attributes -->
  3711. <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
  3712. <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
  3713. <item name="dialogCornerRadius">@dimen/abc_dialog_corner_radius_material</item>
  3714. <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
  3715. <item name="alertDialogStyle">@style/AlertDialog.AppCompat.Light</item>
  3716. <item name="alertDialogCenterButtons">false</item>
  3717. <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
  3718. <item name="listDividerAlertDialog">@null</item>
  3719. <!-- Define these here; ContextThemeWrappers around themes that define them should
  3720. always clear these values. -->
  3721. <item name="windowFixedWidthMajor">@null</item>
  3722. <item name="windowFixedWidthMinor">@null</item>
  3723. <item name="windowFixedHeightMajor">@null</item>
  3724. <item name="windowFixedHeightMinor">@null</item>
  3725. <!-- Tooltip attributes -->
  3726. <item name="tooltipFrameBackground">@drawable/tooltip_frame_dark</item>
  3727. <item name="tooltipForegroundColor">@color/foreground_material_dark</item>
  3728. <item name="colorError">@color/error_color_material_light</item>
  3729. </style>
  3730. <style name="Base.V7.Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light">
  3731. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  3732. <item name="android:colorBackgroundCacheHint">@null</item>
  3733. <item name="android:windowFrame">@null</item>
  3734. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  3735. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  3736. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  3737. <item name="android:windowIsFloating">true</item>
  3738. <item name="android:backgroundDimEnabled">true</item>
  3739. <item name="android:windowContentOverlay">@null</item>
  3740. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  3741. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  3742. <item name="windowActionBar">false</item>
  3743. <item name="windowActionModeOverlay">true</item>
  3744. <item name="listPreferredItemPaddingLeft">24dip</item>
  3745. <item name="listPreferredItemPaddingRight">24dip</item>
  3746. <item name="android:listDivider">@null</item>
  3747. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  3748. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  3749. <item name="android:windowCloseOnTouchOutside">true</item>
  3750. </style>
  3751. <style name="Base.V7.ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat">
  3752. <item name="android:colorBackgroundCacheHint">@null</item>
  3753. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  3754. <item name="android:windowFrame">@null</item>
  3755. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  3756. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  3757. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  3758. <item name="android:windowIsFloating">true</item>
  3759. <item name="android:backgroundDimEnabled">true</item>
  3760. <item name="android:windowContentOverlay">@null</item>
  3761. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  3762. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  3763. <item name="windowActionBar">false</item>
  3764. <item name="windowActionModeOverlay">true</item>
  3765. <item name="listPreferredItemPaddingLeft">24dip</item>
  3766. <item name="listPreferredItemPaddingRight">24dip</item>
  3767. <item name="android:listDivider">@null</item>
  3768. <item name="windowFixedWidthMajor">@null</item>
  3769. <item name="windowFixedWidthMinor">@null</item>
  3770. <item name="windowFixedHeightMajor">@null</item>
  3771. <item name="windowFixedHeightMinor">@null</item>
  3772. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  3773. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  3774. <item name="android:windowCloseOnTouchOutside">true</item>
  3775. </style>
  3776. <style name="Base.V7.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.AutoCompleteTextView">
  3777. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  3778. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  3779. <item name="android:background">?attr/editTextBackground</item>
  3780. <item name="android:textColor">?attr/editTextColor</item>
  3781. <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
  3782. <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
  3783. </style>
  3784. <style name="Base.V7.Widget.AppCompat.EditText" parent="android:Widget.EditText">
  3785. <item name="android:background">?attr/editTextBackground</item>
  3786. <item name="android:textColor">?attr/editTextColor</item>
  3787. <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
  3788. <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
  3789. </style>
  3790. <style name="Base.V7.Widget.AppCompat.Toolbar" parent="android:Widget">
  3791. <item name="titleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item>
  3792. <item name="subtitleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item>
  3793. <item name="android:minHeight">?attr/actionBarSize</item>
  3794. <item name="titleMargin">4dp</item>
  3795. <item name="maxButtonHeight">@dimen/abc_action_bar_default_height_material</item>
  3796. <item name="buttonGravity">top</item>
  3797. <item name="collapseIcon">?attr/homeAsUpIndicator</item>
  3798. <item name="collapseContentDescription">@string/abc_toolbar_collapse_description</item>
  3799. <item name="contentInsetStart">16dp</item>
  3800. <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
  3801. <item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item>
  3802. <item name="android:paddingStart">@dimen/abc_action_bar_default_padding_start_material</item>
  3803. <item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item>
  3804. <item name="android:paddingEnd">@dimen/abc_action_bar_default_padding_end_material</item>
  3805. </style>
  3806. <style name="Base.Widget.AppCompat.ActionBar" parent="">
  3807. <item name="displayOptions">showTitle</item>
  3808. <item name="divider">?attr/dividerVertical</item>
  3809. <item name="height">?attr/actionBarSize</item>
  3810. <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>
  3811. <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item>
  3812. <item name="background">@null</item>
  3813. <item name="backgroundStacked">@null</item>
  3814. <item name="backgroundSplit">@null</item>
  3815. <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
  3816. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
  3817. <item name="android:gravity">center_vertical</item>
  3818. <item name="contentInsetStart">@dimen/abc_action_bar_content_inset_material</item>
  3819. <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
  3820. <item name="contentInsetEnd">@dimen/abc_action_bar_content_inset_material</item>
  3821. <item name="elevation">@dimen/abc_action_bar_elevation_material</item>
  3822. <item name="popupTheme">?attr/actionBarPopupTheme</item>
  3823. </style>
  3824. <style name="Base.Widget.AppCompat.ActionBar.Solid">
  3825. <item name="background">?attr/colorPrimary</item>
  3826. <item name="backgroundStacked">?attr/colorPrimary</item>
  3827. <item name="backgroundSplit">?attr/colorPrimary</item>
  3828. </style>
  3829. <style name="Base.Widget.AppCompat.ActionBar.TabBar" parent="">
  3830. <item name="divider">?attr/actionBarDivider</item>
  3831. <item name="showDividers">middle</item>
  3832. <item name="dividerPadding">8dip</item>
  3833. </style>
  3834. <style name="Base.Widget.AppCompat.ActionBar.TabText" parent="">
  3835. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium</item>
  3836. <item name="android:textColor">?android:attr/textColorPrimary</item>
  3837. <item name="android:textSize">12sp</item>
  3838. <item name="android:textStyle">bold</item>
  3839. <item name="android:ellipsize">marquee</item>
  3840. <item name="android:maxLines">2</item>
  3841. <item name="android:maxWidth">180dp</item>
  3842. <item name="textAllCaps">true</item>
  3843. </style>
  3844. <style name="Base.Widget.AppCompat.ActionBar.TabView" parent="">
  3845. <item name="android:background">@drawable/abc_tab_indicator_material</item>
  3846. <item name="android:gravity">center_horizontal</item>
  3847. <item name="android:paddingLeft">16dip</item>
  3848. <item name="android:paddingRight">16dip</item>
  3849. <item name="android:layout_width">0dip</item>
  3850. <item name="android:layout_weight">1</item>
  3851. <item name="android:minWidth">80dip</item>
  3852. </style>
  3853. <style name="Base.Widget.AppCompat.ActionButton" parent="RtlUnderlay.Widget.AppCompat.ActionButton">
  3854. <item name="android:background">?attr/actionBarItemBackground</item>
  3855. <item name="android:minWidth">@dimen/abc_action_button_min_width_material</item>
  3856. <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
  3857. <item name="android:scaleType">center</item>
  3858. <item name="android:gravity">center</item>
  3859. <item name="android:maxLines">2</item>
  3860. <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
  3861. </style>
  3862. <style name="Base.Widget.AppCompat.ActionButton.CloseMode">
  3863. <item name="android:background">?attr/controlBackground</item>
  3864. <item name="android:minWidth">56dp</item>
  3865. </style>
  3866. <style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow">
  3867. <item name="srcCompat">@drawable/abc_ic_menu_overflow_material</item>
  3868. <item name="android:background">?attr/actionBarItemBackground</item>
  3869. <item name="android:contentDescription">@string/abc_action_menu_overflow_description</item>
  3870. <item name="android:minWidth">@dimen/abc_action_button_min_width_overflow_material</item>
  3871. <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
  3872. </style>
  3873. <style name="Base.Widget.AppCompat.ActionMode" parent="">
  3874. <item name="background">?attr/actionModeBackground</item>
  3875. <item name="backgroundSplit">?attr/actionModeSplitBackground</item>
  3876. <item name="height">?attr/actionBarSize</item>
  3877. <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>
  3878. <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item>
  3879. <item name="closeItemLayout">@layout/abc_action_mode_close_item_material</item>
  3880. <item name="android:minHeight">?attr/actionBarSize</item>
  3881. <item name="titleMargin">4dp</item>
  3882. <item name="maxButtonHeight">@dimen/abc_action_bar_default_height_material</item>
  3883. <item name="buttonGravity">top</item>
  3884. <item name="contentInsetStart">16dp</item>
  3885. <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
  3886. <item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item>
  3887. <item name="android:paddingStart">@dimen/abc_action_bar_default_padding_start_material</item>
  3888. <item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item>
  3889. <item name="android:paddingEnd">@dimen/abc_action_bar_default_padding_end_material</item>
  3890. </style>
  3891. <style name="Base.Widget.AppCompat.ActivityChooserView" parent="">
  3892. <item name="android:gravity">center</item>
  3893. <item name="android:background">@drawable/abc_ab_share_pack_mtrl_alpha</item>
  3894. <item name="divider">?attr/dividerVertical</item>
  3895. <item name="showDividers">middle</item>
  3896. <item name="dividerPadding">6dip</item>
  3897. </style>
  3898. <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView"/>
  3899. <style name="Base.Widget.AppCompat.Button" parent="android:Widget">
  3900. <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
  3901. <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
  3902. <item name="android:minHeight">48dip</item>
  3903. <item name="android:minWidth">88dip</item>
  3904. <item name="android:focusable">true</item>
  3905. <item name="android:clickable">true</item>
  3906. <item name="android:gravity">center_vertical|center_horizontal</item>
  3907. </style>
  3908. <style name="Base.Widget.AppCompat.Button.Borderless">
  3909. <item name="android:background">@drawable/abc_btn_borderless_material</item>
  3910. </style>
  3911. <style name="Base.Widget.AppCompat.Button.Borderless.Colored">
  3912. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored</item>
  3913. </style>
  3914. <style name="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Widget.AppCompat.Button.Borderless.Colored">
  3915. <item name="android:minWidth">64dp</item>
  3916. <item name="android:minHeight">@dimen/abc_alert_dialog_button_bar_height</item>
  3917. </style>
  3918. <style name="Base.Widget.AppCompat.Button.Colored">
  3919. <item name="android:background">@drawable/abc_btn_colored_material</item>
  3920. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Colored</item>
  3921. </style>
  3922. <style name="Base.Widget.AppCompat.Button.Small">
  3923. <item name="android:minHeight">48dip</item>
  3924. <item name="android:minWidth">48dip</item>
  3925. </style>
  3926. <style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget">
  3927. <item name="android:background">@null</item>
  3928. </style>
  3929. <style name="Base.Widget.AppCompat.ButtonBar.AlertDialog"/>
  3930. <style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.CompoundButton.CheckBox">
  3931. <item name="android:button">?android:attr/listChoiceIndicatorMultiple</item>
  3932. <item name="buttonCompat">?attr/listChoiceIndicatorMultipleAnimated</item>
  3933. <item name="android:background">?attr/controlBackground</item>
  3934. </style>
  3935. <style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.CompoundButton.RadioButton">
  3936. <item name="android:button">?android:attr/listChoiceIndicatorSingle</item>
  3937. <item name="buttonCompat">?attr/listChoiceIndicatorSingleAnimated</item>
  3938. <item name="android:background">?attr/controlBackground</item>
  3939. </style>
  3940. <style name="Base.Widget.AppCompat.CompoundButton.Switch" parent="android:Widget.CompoundButton">
  3941. <item name="track">@drawable/abc_switch_track_mtrl_alpha</item>
  3942. <item name="android:thumb">@drawable/abc_switch_thumb_material</item>
  3943. <item name="switchTextAppearance">@style/TextAppearance.AppCompat.Widget.Switch</item>
  3944. <item name="android:background">?attr/controlBackground</item>
  3945. <item name="showText">false</item>
  3946. <item name="switchPadding">@dimen/abc_switch_padding</item>
  3947. <item name="android:textOn">@string/abc_capital_on</item>
  3948. <item name="android:textOff">@string/abc_capital_off</item>
  3949. </style>
  3950. <style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
  3951. <item name="barLength">18dp</item>
  3952. <item name="gapBetweenBars">3dp</item>
  3953. <item name="drawableSize">24dp</item>
  3954. </style>
  3955. <style name="Base.Widget.AppCompat.DrawerArrowToggle.Common" parent="">
  3956. <item name="color">?android:attr/textColorSecondary</item>
  3957. <item name="spinBars">true</item>
  3958. <item name="thickness">2dp</item>
  3959. <item name="arrowShaftLength">16dp</item>
  3960. <item name="arrowHeadLength">8dp</item>
  3961. </style>
  3962. <style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="">
  3963. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.DropDownItem</item>
  3964. <item name="android:paddingLeft">8dp</item>
  3965. <item name="android:paddingRight">8dp</item>
  3966. <item name="android:gravity">center_vertical</item>
  3967. </style>
  3968. <style name="Base.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText"/>
  3969. <style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.ImageButton">
  3970. <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
  3971. </style>
  3972. <style name="Base.Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
  3973. <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
  3974. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
  3975. </style>
  3976. <style name="Base.Widget.AppCompat.Light.ActionBar.Solid">
  3977. <item name="background">?attr/colorPrimary</item>
  3978. <item name="backgroundStacked">?attr/colorPrimary</item>
  3979. <item name="backgroundSplit">?attr/colorPrimary</item>
  3980. </style>
  3981. <style name="Base.Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
  3982. </style>
  3983. <style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
  3984. </style>
  3985. <style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
  3986. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  3987. </style>
  3988. <style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
  3989. <item name="android:background">@drawable/abc_tab_indicator_material</item>
  3990. </style>
  3991. <style name="Base.Widget.AppCompat.Light.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
  3992. </style>
  3993. <style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
  3994. <item name="overlapAnchor">true</item>
  3995. <item name="android:dropDownHorizontalOffset">-4dip</item>
  3996. </style>
  3997. <style name="Base.Widget.AppCompat.ListMenuView" parent="android:Widget">
  3998. <item name="subMenuArrow">@drawable/abc_ic_arrow_drop_right_black_24dp</item>
  3999. </style>
  4000. <style name="Base.Widget.AppCompat.ListPopupWindow" parent="">
  4001. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  4002. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  4003. <item name="android:dropDownVerticalOffset">0dip</item>
  4004. <item name="android:dropDownHorizontalOffset">0dip</item>
  4005. <item name="android:dropDownWidth">wrap_content</item>
  4006. </style>
  4007. <style name="Base.Widget.AppCompat.ListView" parent="android:Widget.ListView">
  4008. <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
  4009. </style>
  4010. <style name="Base.Widget.AppCompat.ListView.DropDown">
  4011. <item name="android:divider">@null</item>
  4012. </style>
  4013. <style name="Base.Widget.AppCompat.ListView.Menu" parent="android:Widget.ListView.Menu">
  4014. <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
  4015. <item name="android:divider">?attr/dividerHorizontal</item>
  4016. </style>
  4017. <style name="Base.Widget.AppCompat.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
  4018. </style>
  4019. <style name="Base.Widget.AppCompat.PopupMenu.Overflow">
  4020. <item name="overlapAnchor">true</item>
  4021. <item name="android:dropDownHorizontalOffset">-4dip</item>
  4022. </style>
  4023. <style name="Base.Widget.AppCompat.PopupWindow" parent="android:Widget.PopupWindow">
  4024. </style>
  4025. <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Holo.ProgressBar">
  4026. </style>
  4027. <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Holo.ProgressBar.Horizontal">
  4028. </style>
  4029. <style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.RatingBar">
  4030. <item name="android:progressDrawable">@drawable/abc_ratingbar_material</item>
  4031. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_material</item>
  4032. </style>
  4033. <style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.RatingBar">
  4034. <item name="android:progressDrawable">@drawable/abc_ratingbar_indicator_material</item>
  4035. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_indicator_material</item>
  4036. <item name="android:minHeight">36dp</item>
  4037. <item name="android:maxHeight">36dp</item>
  4038. <item name="android:isIndicator">true</item>
  4039. <item name="android:thumb">@null</item>
  4040. </style>
  4041. <style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.RatingBar">
  4042. <item name="android:progressDrawable">@drawable/abc_ratingbar_small_material</item>
  4043. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_small_material</item>
  4044. <item name="android:minHeight">16dp</item>
  4045. <item name="android:maxHeight">16dp</item>
  4046. <item name="android:isIndicator">true</item>
  4047. <item name="android:thumb">@null</item>
  4048. </style>
  4049. <style name="Base.Widget.AppCompat.SearchView" parent="android:Widget">
  4050. <item name="layout">@layout/abc_search_view</item>
  4051. <item name="queryBackground">@drawable/abc_textfield_search_material</item>
  4052. <item name="submitBackground">@drawable/abc_textfield_search_material</item>
  4053. <item name="closeIcon">@drawable/abc_ic_clear_material</item>
  4054. <item name="searchIcon">@drawable/abc_ic_search_api_material</item>
  4055. <item name="searchHintIcon">@drawable/abc_ic_search_api_material</item>
  4056. <item name="goIcon">@drawable/abc_ic_go_search_api_material</item>
  4057. <item name="voiceIcon">@drawable/abc_ic_voice_search_api_material</item>
  4058. <item name="commitIcon">@drawable/abc_ic_commit_search_api_mtrl_alpha</item>
  4059. <item name="suggestionRowLayout">@layout/abc_search_dropdown_item_icons_2line</item>
  4060. </style>
  4061. <style name="Base.Widget.AppCompat.SearchView.ActionBar">
  4062. <item name="queryBackground">@null</item>
  4063. <item name="submitBackground">@null</item>
  4064. <item name="searchHintIcon">@null</item>
  4065. <item name="defaultQueryHint">@string/abc_search_hint</item>
  4066. </style>
  4067. <style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget">
  4068. <item name="android:indeterminateOnly">false</item>
  4069. <item name="android:progressDrawable">@drawable/abc_seekbar_track_material</item>
  4070. <item name="android:indeterminateDrawable">@drawable/abc_seekbar_track_material</item>
  4071. <item name="android:thumb">@drawable/abc_seekbar_thumb_material</item>
  4072. <item name="android:focusable">true</item>
  4073. <item name="android:paddingLeft">16dip</item>
  4074. <item name="android:paddingRight">16dip</item>
  4075. </style>
  4076. <style name="Base.Widget.AppCompat.SeekBar.Discrete">
  4077. <item name="tickMark">@drawable/abc_seekbar_tick_mark_material</item>
  4078. </style>
  4079. <style name="Base.Widget.AppCompat.Spinner" parent="Platform.Widget.AppCompat.Spinner">
  4080. <item name="android:background">@drawable/abc_spinner_mtrl_am_alpha</item>
  4081. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  4082. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  4083. <item name="android:dropDownVerticalOffset">0dip</item>
  4084. <item name="android:dropDownHorizontalOffset">0dip</item>
  4085. <item name="android:dropDownWidth">wrap_content</item>
  4086. <item name="android:clickable">true</item>
  4087. <item name="android:gravity">left|start|center_vertical</item>
  4088. <item name="overlapAnchor">true</item>
  4089. </style>
  4090. <style name="Base.Widget.AppCompat.Spinner.Underlined">
  4091. <item name="android:background">@drawable/abc_spinner_textfield_background_material</item>
  4092. </style>
  4093. <style name="Base.Widget.AppCompat.TextView" parent="android:Widget.TextView"/>
  4094. <style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.TextView.SpinnerItem">
  4095. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item>
  4096. <item name="android:paddingLeft">8dp</item>
  4097. <item name="android:paddingRight">8dp</item>
  4098. </style>
  4099. <style name="Base.Widget.AppCompat.Toolbar" parent="Base.V7.Widget.AppCompat.Toolbar"/>
  4100. <style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget">
  4101. <item name="android:background">?attr/controlBackground</item>
  4102. <item name="android:minWidth">56dp</item>
  4103. <item name="android:scaleType">center</item>
  4104. </style>
  4105. <style name="Base.Widget.Design.TabLayout" parent="android:Widget">
  4106. <item name="android:background">@null</item>
  4107. <item name="tabIconTint">@null</item>
  4108. <item name="tabMaxWidth">@dimen/design_tab_max_width</item>
  4109. <item name="tabIndicatorAnimationDuration">@integer/design_tab_indicator_anim_duration_ms</item>
  4110. <item name="tabIndicatorColor">?attr/colorAccent</item>
  4111. <item name="tabIndicatorGravity">bottom</item>
  4112. <item name="tabIndicatorAnimationMode">linear</item>
  4113. <item name="tabIndicator">@drawable/mtrl_tabs_default_indicator</item>
  4114. <item name="tabPaddingStart">12dp</item>
  4115. <item name="tabPaddingEnd">12dp</item>
  4116. <item name="tabTextAppearance">@style/TextAppearance.Design.Tab</item>
  4117. <item name="tabTextColor">@null</item>
  4118. <item name="tabRippleColor">?attr/colorControlHighlight</item>
  4119. <item name="tabUnboundedRipple">false</item>
  4120. </style>
  4121. <style name="Base.Widget.Material3.ActionBar.Solid" parent="Widget.AppCompat.ActionBar.Solid">
  4122. <item name="titleTextStyle">@style/TextAppearance.Material3.ActionBar.Title</item>
  4123. <item name="subtitleTextStyle">@style/TextAppearance.Material3.ActionBar.Subtitle</item>
  4124. <item name="background">?attr/colorSurface</item>
  4125. <item name="backgroundStacked">?attr/colorSurface</item>
  4126. <item name="backgroundSplit">?attr/colorSurface</item>
  4127. </style>
  4128. <style name="Base.Widget.Material3.ActionMode" parent="Widget.AppCompat.ActionMode">
  4129. <item name="titleTextStyle">@style/TextAppearance.Material3.ActionBar.Title</item>
  4130. <item name="subtitleTextStyle">@style/TextAppearance.Material3.ActionBar.Subtitle</item>
  4131. <item name="background">?attr/colorSurface</item>
  4132. <item name="backgroundSplit">?attr/colorSurface</item>
  4133. </style>
  4134. <style name="Base.Widget.Material3.CardView" parent="Widget.MaterialComponents.CardView">
  4135. <item name="enforceMaterialTheme">true</item>
  4136. <item name="android:stateListAnimator" ns1:ignore="NewApi">
  4137. @animator/m3_card_state_list_anim
  4138. </item>
  4139. <item name="cardElevation">@dimen/m3_card_elevation</item>
  4140. <item name="cardForegroundColor">@color/m3_card_foreground_color</item>
  4141. <item name="rippleColor">@color/m3_card_ripple_color</item>
  4142. <item name="strokeColor">@color/m3_card_stroke_color</item>
  4143. <item name="strokeWidth">@dimen/m3_card_stroke_width</item>
  4144. <item name="checkedIconTint">@color/m3_card_stroke_color</item>
  4145. </style>
  4146. <style name="Base.Widget.Material3.Chip" parent="Base.Widget.MaterialComponents.Chip">
  4147. <item name="enforceTextAppearance">false</item>
  4148. <item name="android:textAppearance">?attr/textAppearanceLabelLarge</item>
  4149. <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.Material3.Chip</item>
  4150. <item name="android:textColor">@color/m3_chip_text_color</item>
  4151. <item name="closeIconTint">@color/m3_chip_text_color</item>
  4152. <item name="chipStrokeColor">@color/m3_chip_stroke_color</item>
  4153. <item name="chipSurfaceColor">?attr/colorSurface</item>
  4154. <item name="chipBackgroundColor">@color/m3_chip_background_color</item>
  4155. <item name="chipStrokeWidth">1dp</item>
  4156. <item name="rippleColor">@color/m3_chip_ripple_color</item>
  4157. <item name="checkedIcon">@drawable/ic_m3_chip_checked_circle</item>
  4158. <item name="closeIcon">@drawable/ic_m3_chip_close</item>
  4159. <item name="chipIconSize">@dimen/m3_chip_icon_size</item>
  4160. <item name="android:stateListAnimator" ns1:ignore="NewApi">
  4161. @animator/m3_chip_state_list_anim
  4162. </item>
  4163. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Chip</item>
  4164. </style>
  4165. <style name="Base.Widget.Material3.CollapsingToolbar" parent="Widget.MaterialComponents.CollapsingToolbar">
  4166. <item name="collapsedTitleTextAppearance">?attr/textAppearanceTitleLarge</item>
  4167. <item name="collapsedTitleTextColor">?attr/colorOnSurface</item>
  4168. <item name="expandedTitleTextColor">?attr/colorOnSurface</item>
  4169. <item name="expandedTitleMarginStart">@dimen/m3_appbar_expanded_title_margin_horizontal</item>
  4170. <item name="expandedTitleMarginEnd">@dimen/m3_appbar_expanded_title_margin_horizontal</item>
  4171. <item name="expandedTitleMarginBottom">@dimen/m3_appbar_expanded_title_margin_bottom</item>
  4172. <item name="extraMultilineHeightEnabled">true</item>
  4173. <item name="forceApplySystemWindowInsetTop">true</item>
  4174. <!-- Title fade behavior -->
  4175. <item name="titleCollapseMode">fade</item>
  4176. <item name="statusBarScrim">@empty</item>
  4177. <item name="scrimAnimationDuration">@integer/app_bar_elevation_anim_duration</item>
  4178. <!-- Allows contentScrim to be drawn in top padding area for edge-to-edge. -->
  4179. <item name="android:clipToPadding">false</item>
  4180. </style>
  4181. <style name="Base.Widget.Material3.CompoundButton.CheckBox" parent="Widget.MaterialComponents.CompoundButton.CheckBox">
  4182. <!-- Inherit default text color since the component doesn't draw a surface. -->
  4183. <item name="android:textAppearance">?attr/textAppearanceBodyMedium</item>
  4184. <item name="buttonTint">@color/m3_selection_control_button_tint</item>
  4185. </style>
  4186. <style name="Base.Widget.Material3.CompoundButton.RadioButton" parent="Widget.MaterialComponents.CompoundButton.RadioButton">
  4187. <!-- Inherit default text color since the component doesn't draw a surface. -->
  4188. <item name="android:textAppearance">?attr/textAppearanceBodyMedium</item>
  4189. <item name="buttonTint">@color/m3_selection_control_button_tint</item>
  4190. </style>
  4191. <style name="Base.Widget.Material3.CompoundButton.Switch" parent="Widget.MaterialComponents.CompoundButton.Switch">
  4192. <!-- Inherit default text color since the component doesn't draw a surface. -->
  4193. <item name="android:textAppearance">?attr/textAppearanceBodyMedium</item>
  4194. <item name="thumbTint">@color/m3_switch_thumb_tint</item>
  4195. <item name="trackTint">@color/m3_switch_track_tint</item>
  4196. <item name="trackTintMode">src_in</item>
  4197. </style>
  4198. <style name="Base.Widget.Material3.ExtendedFloatingActionButton" parent="Widget.MaterialComponents.ExtendedFloatingActionButton">
  4199. <item name="android:minHeight">@dimen/m3_extended_fab_min_height</item>
  4200. <item name="android:textAppearance">?attr/textAppearanceLabelLarge</item>
  4201. <item name="android:textColor">@color/m3_button_foreground_color_selector</item>
  4202. <item name="backgroundTint">@color/m3_button_background_color_selector</item>
  4203. <item name="enforceMaterialTheme">true</item>
  4204. <item name="iconTint">@color/m3_button_foreground_color_selector</item>
  4205. <item name="rippleColor">@color/m3_button_ripple_color_selector</item>
  4206. <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.Material3.FloatingActionButton</item>
  4207. </style>
  4208. <style name="Base.Widget.Material3.ExtendedFloatingActionButton.Icon" parent="Base.Widget.Material3.ExtendedFloatingActionButton">
  4209. <item name="android:paddingStart" ns1:ignore="NewApi">
  4210. @dimen/m3_extended_fab_start_padding
  4211. </item>
  4212. <item name="android:paddingLeft">@dimen/m3_extended_fab_start_padding</item>
  4213. <item name="android:paddingTop">@dimen/m3_extended_fab_top_padding</item>
  4214. <item name="android:paddingEnd" ns1:ignore="NewApi">
  4215. @dimen/m3_extended_fab_end_padding
  4216. </item>
  4217. <item name="android:paddingRight">@dimen/m3_extended_fab_end_padding</item>
  4218. <item name="android:paddingBottom">@dimen/m3_extended_fab_bottom_padding</item>
  4219. <item name="iconPadding">@dimen/m3_extended_fab_icon_padding</item>
  4220. </style>
  4221. <style name="Base.Widget.Material3.FloatingActionButton" parent="Widget.MaterialComponents.FloatingActionButton">
  4222. <item name="backgroundTint">@color/m3_button_background_color_selector</item>
  4223. <item name="borderWidth">@dimen/m3_fab_border_width</item>
  4224. <item name="elevation">6dp</item>
  4225. <item name="enforceMaterialTheme">true</item>
  4226. <item name="hoveredFocusedTranslationZ">@dimen/m3_fab_translation_z_hovered_focused</item>
  4227. <item name="pressedTranslationZ">@dimen/m3_fab_translation_z_pressed</item>
  4228. <item name="rippleColor">@color/m3_button_ripple_color_selector</item>
  4229. <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.Material3.FloatingActionButton</item>
  4230. <item name="tint">@color/m3_button_foreground_color_selector</item>
  4231. <!--Remove the motion spec and allow FloatingActionButtonImpl to create a theme-based animation-->
  4232. <item name="showMotionSpec">@null</item>
  4233. <item name="hideMotionSpec">@null</item>
  4234. </style>
  4235. <style name="Base.Widget.Material3.FloatingActionButton.Large" parent="Base.Widget.Material3.FloatingActionButton">
  4236. <item name="fabCustomSize">@dimen/m3_large_fab_size</item>
  4237. <item name="maxImageSize">@dimen/m3_large_fab_max_image_size</item>
  4238. </style>
  4239. <style name="Base.Widget.Material3.Light.ActionBar.Solid" parent="Widget.AppCompat.Light.ActionBar.Solid">
  4240. <item name="titleTextStyle">@style/TextAppearance.Material3.ActionBar.Title</item>
  4241. <item name="subtitleTextStyle">@style/TextAppearance.Material3.ActionBar.Subtitle</item>
  4242. <item name="background">?attr/colorSurface</item>
  4243. <item name="backgroundStacked">?attr/colorSurface</item>
  4244. <item name="backgroundSplit">?attr/colorSurface</item>
  4245. </style>
  4246. <style name="Base.Widget.Material3.MaterialCalendar.NavigationButton" parent="Widget.Material3.Button.TextButton.Dialog.Flush">
  4247. <item name="android:textColor">?attr/colorOnSurfaceVariant</item>
  4248. <item name="iconTint">?attr/colorOnSurfaceVariant</item>
  4249. </style>
  4250. <style name="Base.Widget.Material3.Snackbar" parent="Base.Widget.MaterialComponents.Snackbar">
  4251. <item name="enforceMaterialTheme">true</item>
  4252. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Snackbar</item>
  4253. <item name="backgroundTint">?attr/colorSurfaceInverse</item>
  4254. <item name="actionTextColorAlpha">@dimen/m3_snackbar_action_text_color_alpha</item>
  4255. </style>
  4256. <style name="Base.Widget.Material3.TabLayout" parent="Widget.MaterialComponents.TabLayout">
  4257. <item name="enforceTextAppearance">false</item>
  4258. <item name="tabIconTint">@color/m3_tabs_icon_color</item>
  4259. <item name="tabTextAppearance">?attr/textAppearanceLabelLarge</item>
  4260. <item name="tabTextColor">@color/m3_tabs_icon_color</item>
  4261. <item name="tabIndicator">@drawable/m3_tabs_rounded_line_indicator</item>
  4262. <item name="tabIndicatorAnimationMode">elastic</item>
  4263. <item name="tabIndicatorColor">?attr/colorPrimary</item>
  4264. <item name="tabRippleColor">@color/m3_tabs_ripple_color</item>
  4265. <item name="tabIndicatorFullWidth">false</item>
  4266. </style>
  4267. <style name="Base.Widget.Material3.TabLayout.OnSurface" parent="Widget.Material3.TabLayout">
  4268. <item name="android:background">@android:color/transparent</item>
  4269. </style>
  4270. <style name="Base.Widget.Material3.TabLayout.Secondary" parent="Widget.Material3.TabLayout">
  4271. <item name="tabIndicator">@drawable/m3_tabs_line_indicator</item>
  4272. <item name="tabIndicatorFullWidth">true</item>
  4273. </style>
  4274. <style name="Base.Widget.MaterialComponents.AutoCompleteTextView" parent="Widget.AppCompat.AutoCompleteTextView">
  4275. <item name="enforceMaterialTheme">true</item>
  4276. <item name="enforceTextAppearance">true</item>
  4277. <item name="android:background">@null</item>
  4278. <item name="android:paddingStart" ns1:ignore="NewApi">16dp</item>
  4279. <item name="android:paddingEnd" ns1:ignore="NewApi">16dp</item>
  4280. <item name="android:paddingLeft">16dp</item>
  4281. <item name="android:paddingRight">16dp</item>
  4282. <!-- Edit text's default text size is 16sp which currently equals to 22dp total line height, so
  4283. we need a total of 34dp to get the 56dp height of the default layout. -->
  4284. <item name="android:paddingTop">17dp</item>
  4285. <item name="android:paddingBottom">17dp</item>
  4286. <item name="android:textAppearance">?attr/textAppearanceSubtitle1</item>
  4287. <item name="android:dropDownVerticalOffset">@dimen/mtrl_exposed_dropdown_menu_popup_vertical_offset</item>
  4288. <item name="android:popupElevation" ns1:ignore="NewApi">@dimen/mtrl_exposed_dropdown_menu_popup_elevation</item>
  4289. </style>
  4290. <style name="Base.Widget.MaterialComponents.CheckedTextView" parent="android:Widget"/>
  4291. <style name="Base.Widget.MaterialComponents.Chip" parent="android:Widget">
  4292. <item name="android:focusable">true</item>
  4293. <item name="android:clickable">true</item>
  4294. <item name="android:checkable">false</item>
  4295. <item name="android:stateListAnimator" ns1:ignore="NewApi">
  4296. @animator/mtrl_chip_state_list_anim
  4297. </item>
  4298. <item name="chipIconVisible">true</item>
  4299. <item name="checkedIconVisible">true</item>
  4300. <item name="closeIconVisible">true</item>
  4301. <item name="chipIcon">@null</item>
  4302. <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_circle</item>
  4303. <item name="closeIcon">@drawable/ic_mtrl_chip_close_circle</item>
  4304. <item name="android:text">@null</item>
  4305. <item name="android:includeFontPadding">false</item>
  4306. <item name="enforceMaterialTheme">true</item>
  4307. <item name="enforceTextAppearance">true</item>
  4308. <item name="android:textAppearance">?attr/textAppearanceBody2</item>
  4309. <item name="android:textColor">@color/mtrl_chip_text_color</item>
  4310. <item name="closeIconTint">@color/mtrl_chip_close_icon_tint</item>
  4311. <item name="chipSurfaceColor">@color/mtrl_chip_surface_color</item>
  4312. <item name="chipBackgroundColor">@color/mtrl_chip_background_color</item>
  4313. <item name="chipStrokeColor">?attr/colorOnSurface</item>
  4314. <item name="chipStrokeWidth">0dp</item>
  4315. <item name="rippleColor">@color/mtrl_on_surface_ripple_color</item>
  4316. <item name="chipMinTouchTargetSize">48dp</item>
  4317. <item name="ensureMinTouchTargetSize">true</item>
  4318. <item name="chipMinHeight">32dp</item>
  4319. <item name="chipIconSize">24dp</item>
  4320. <item name="closeIconSize">18dp</item>
  4321. <item name="chipStartPadding">4dp</item>
  4322. <item name="iconStartPadding">0dp</item>
  4323. <item name="iconEndPadding">0dp</item>
  4324. <item name="textStartPadding">8dp</item>
  4325. <item name="textEndPadding">6dp</item>
  4326. <item name="closeIconStartPadding">2dp</item>
  4327. <item name="closeIconEndPadding">2dp</item>
  4328. <item name="chipEndPadding">6dp</item>
  4329. <item name="shapeAppearance">?attr/shapeAppearanceSmallComponent</item>
  4330. <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MaterialComponents.Chip</item>
  4331. </style>
  4332. <style name="Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton" parent="Widget.MaterialComponents.Button.TextButton.Dialog.Flush">
  4333. <item name="android:textColor">@color/material_on_surface_emphasis_medium</item>
  4334. <item name="iconTint">@color/material_on_surface_emphasis_medium</item>
  4335. </style>
  4336. <style name="Base.Widget.MaterialComponents.PopupMenu" parent="Widget.AppCompat.PopupMenu">
  4337. <item name="overlapAnchor">false</item>
  4338. <item name="android:dropDownVerticalOffset">1px</item>
  4339. </style>
  4340. <style name="Base.Widget.MaterialComponents.PopupMenu.ContextMenu" parent="Widget.AppCompat.PopupMenu"/>
  4341. <style name="Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"/>
  4342. <style name="Base.Widget.MaterialComponents.PopupMenu.Overflow" parent="Widget.AppCompat.PopupMenu.Overflow">
  4343. <item name="android:dropDownVerticalOffset">1px</item>
  4344. </style>
  4345. <style name="Base.Widget.MaterialComponents.Slider" parent="android:Widget">
  4346. <item name="haloColor">@color/material_slider_halo_color</item>
  4347. <item name="haloRadius">@dimen/mtrl_slider_halo_radius</item>
  4348. <item name="labelStyle">@style/Widget.MaterialComponents.Tooltip</item>
  4349. <item name="thumbColor">@color/material_slider_thumb_color</item>
  4350. <item name="thumbElevation">@dimen/mtrl_slider_thumb_elevation</item>
  4351. <item name="thumbRadius">@dimen/mtrl_slider_thumb_radius</item>
  4352. <item name="tickColorActive">@color/material_slider_active_tick_marks_color</item>
  4353. <item name="tickColorInactive">@color/material_slider_inactive_tick_marks_color</item>
  4354. <item name="trackColorActive">@color/material_slider_active_track_color</item>
  4355. <item name="trackColorInactive">@color/material_slider_inactive_track_color</item>
  4356. <item name="trackHeight">@dimen/mtrl_slider_track_height</item>
  4357. <item name="minSeparation">0dp</item>
  4358. </style>
  4359. <style name="Base.Widget.MaterialComponents.Snackbar" parent="Widget.Design.Snackbar">
  4360. <!--
  4361. The snackbar view has a 8dp padding on left and right. Message Textview has a 8dp margin on left and right.
  4362. -->
  4363. <item name="android:paddingLeft">@dimen/mtrl_snackbar_padding_horizontal</item>
  4364. <item name="android:paddingRight">@dimen/mtrl_snackbar_padding_horizontal</item>
  4365. <item name="backgroundOverlayColorAlpha">@dimen/mtrl_snackbar_background_overlay_color_alpha</item>
  4366. <item name="actionTextColorAlpha">@dimen/mtrl_snackbar_action_text_color_alpha</item>
  4367. </style>
  4368. <style name="Base.Widget.MaterialComponents.TextInputEditText" parent="Widget.Design.TextInputEditText">
  4369. <item name="enforceMaterialTheme">true</item>
  4370. <item name="enforceTextAppearance">true</item>
  4371. <item name="android:background">@null</item>
  4372. <item name="android:paddingStart" ns1:ignore="NewApi">16dp</item>
  4373. <item name="android:paddingEnd" ns1:ignore="NewApi">16dp</item>
  4374. <item name="android:paddingLeft">16dp</item>
  4375. <item name="android:paddingRight">16dp</item>
  4376. <!-- Edit text's default text size is 16sp which currently equals to 22dp total line height, so
  4377. we need a total of 34dp to get the 56dp height of the default layout. -->
  4378. <item name="android:paddingTop">17dp</item>
  4379. <item name="android:paddingBottom">17dp</item>
  4380. <item name="android:textAppearance">?attr/textAppearanceSubtitle1</item>
  4381. <item name="textInputLayoutFocusedRectEnabled">true</item>
  4382. </style>
  4383. <style name="Base.Widget.MaterialComponents.TextInputLayout" parent="Widget.Design.TextInputLayout">
  4384. <item name="enforceMaterialTheme">true</item>
  4385. <item name="enforceTextAppearance">true</item>
  4386. <item name="android:minWidth">@dimen/material_textinput_min_width</item>
  4387. <item name="android:maxWidth">@dimen/material_textinput_max_width</item>
  4388. <item name="boxBackgroundMode">outline</item>
  4389. <item name="boxBackgroundColor">@null</item>
  4390. <item name="errorIconDrawable">@drawable/mtrl_ic_error</item>
  4391. <item name="errorIconTint">@color/mtrl_error</item>
  4392. <item name="endIconTint">@color/mtrl_outlined_icon_tint</item>
  4393. <item name="startIconTint">@color/mtrl_outlined_icon_tint</item>
  4394. <item name="boxCollapsedPaddingTop">0dp</item>
  4395. <item name="boxStrokeColor">@color/mtrl_outlined_stroke_color</item>
  4396. <item name="boxStrokeErrorColor">@color/mtrl_error</item>
  4397. <item name="boxStrokeWidth">@dimen/mtrl_textinput_box_stroke_width_default</item>
  4398. <item name="boxStrokeWidthFocused">@dimen/mtrl_textinput_box_stroke_width_focused</item>
  4399. <item name="counterTextAppearance">?attr/textAppearanceCaption</item>
  4400. <item name="counterOverflowTextAppearance">?attr/textAppearanceCaption</item>
  4401. <item name="errorTextAppearance">?attr/textAppearanceCaption</item>
  4402. <item name="helperTextTextAppearance">?attr/textAppearanceCaption</item>
  4403. <item name="hintTextAppearance">?attr/textAppearanceCaption</item>
  4404. <item name="placeholderTextAppearance">?attr/textAppearanceSubtitle1</item>
  4405. <item name="prefixTextAppearance">?attr/textAppearanceSubtitle1</item>
  4406. <item name="suffixTextAppearance">?attr/textAppearanceSubtitle1</item>
  4407. <item name="counterTextColor">@color/mtrl_indicator_text_color</item>
  4408. <item name="counterOverflowTextColor">@color/mtrl_error</item>
  4409. <item name="errorTextColor">@color/mtrl_error</item>
  4410. <item name="helperTextTextColor">@color/mtrl_indicator_text_color</item>
  4411. <!-- The color of the label when it is collapsed and the text field is active -->
  4412. <item name="hintTextColor">?attr/colorPrimary</item>
  4413. <item name="placeholderTextColor">@color/mtrl_indicator_text_color</item>
  4414. <item name="prefixTextColor">@color/mtrl_indicator_text_color</item>
  4415. <item name="suffixTextColor">@color/mtrl_indicator_text_color</item>
  4416. <!-- The color of the label in all other text field states (such as resting and disabled) -->
  4417. <item name="android:textColorHint">@color/mtrl_indicator_text_color</item>
  4418. <item name="shapeAppearance">?attr/shapeAppearanceSmallComponent</item>
  4419. <item name="shapeAppearanceOverlay">@null</item>
  4420. </style>
  4421. <style name="Base.Widget.MaterialComponents.TextView" parent="Widget.AppCompat.TextView"/>
  4422. <style name="CardView" parent="Base.CardView">
  4423. </style>
  4424. <style name="CardView.Dark">
  4425. <item name="cardBackgroundColor">@color/cardview_dark_background</item>
  4426. </style>
  4427. <style name="CardView.Light">
  4428. <item name="cardBackgroundColor">@color/cardview_light_background</item>
  4429. </style>
  4430. <style name="EmptyTheme"/>
  4431. <style name="MaterialAlertDialog.Material3" parent="MaterialAlertDialog.MaterialComponents">
  4432. <item name="enforceMaterialTheme">true</item>
  4433. <item name="android:layout">@layout/m3_alert_dialog</item>
  4434. <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MaterialAlertDialog.Material3</item>
  4435. </style>
  4436. <style name="MaterialAlertDialog.Material3.Body.Text" parent="">
  4437. <item name="android:textAppearance">?attr/textAppearanceBodyMedium</item>
  4438. <item name="android:textColor">?attr/colorOnSurfaceVariant</item>
  4439. </style>
  4440. <style name="MaterialAlertDialog.Material3.Body.Text.CenterStacked">
  4441. <item name="android:layout_gravity">center</item>
  4442. <item name="android:gravity">center</item>
  4443. <item name="android:textAlignment" ns1:ignore="NewApi">gravity</item>
  4444. </style>
  4445. <style name="MaterialAlertDialog.Material3.Title.Icon" parent="MaterialAlertDialog.MaterialComponents.Title.Icon">
  4446. <item name="android:layout_width">@dimen/m3_alert_dialog_icon_size</item>
  4447. <item name="android:layout_height">@dimen/m3_alert_dialog_icon_size</item>
  4448. <item name="android:layout_marginEnd" ns1:ignore="NewApi">@dimen/m3_alert_dialog_icon_margin</item>
  4449. <item name="android:layout_marginRight">@dimen/m3_alert_dialog_icon_margin</item>
  4450. <item name="android:theme">@style/ThemeOverlay.MaterialAlertDialog.Material3.Title.Icon</item>
  4451. </style>
  4452. <style name="MaterialAlertDialog.Material3.Title.Icon.CenterStacked">
  4453. <item name="android:layout_marginEnd" ns1:ignore="NewApi">0dp</item>
  4454. <item name="android:layout_marginRight">0dp</item>
  4455. <item name="android:layout_marginBottom">@dimen/m3_alert_dialog_icon_margin</item>
  4456. <item name="android:layout_gravity">center</item>
  4457. </style>
  4458. <style name="MaterialAlertDialog.Material3.Title.Panel" parent="MaterialAlertDialog.MaterialComponents.Title.Panel"/>
  4459. <style name="MaterialAlertDialog.Material3.Title.Panel.CenterStacked">
  4460. <item name="android:orientation">vertical</item>
  4461. </style>
  4462. <style name="MaterialAlertDialog.Material3.Title.Text" parent="MaterialAlertDialog.MaterialComponents.Title.Text">
  4463. <item name="android:textAppearance">?attr/textAppearanceHeadlineSmall</item>
  4464. <item name="android:textColor">?attr/colorOnSurface</item>
  4465. </style>
  4466. <style name="MaterialAlertDialog.Material3.Title.Text.CenterStacked">
  4467. <item name="android:layout_gravity">center</item>
  4468. <item name="android:gravity">center</item>
  4469. <item name="android:textAlignment" ns1:ignore="NewApi">gravity</item>
  4470. </style>
  4471. <style name="MaterialAlertDialog.MaterialComponents" parent="AlertDialog.AppCompat">
  4472. <item name="android:layout">@layout/mtrl_alert_dialog</item>
  4473. <item name="listItemLayout">@layout/mtrl_alert_select_dialog_item</item>
  4474. <item name="multiChoiceItemLayout">@layout/mtrl_alert_select_dialog_multichoice</item>
  4475. <item name="singleChoiceItemLayout">@layout/mtrl_alert_select_dialog_singlechoice</item>
  4476. <item name="backgroundInsetStart">@dimen/mtrl_alert_dialog_background_inset_start</item>
  4477. <item name="backgroundInsetTop">@dimen/mtrl_alert_dialog_background_inset_top</item>
  4478. <item name="backgroundInsetEnd">@dimen/mtrl_alert_dialog_background_inset_end</item>
  4479. <item name="backgroundInsetBottom">@dimen/mtrl_alert_dialog_background_inset_bottom</item>
  4480. <item name="shapeAppearance">?attr/shapeAppearanceMediumComponent</item>
  4481. </style>
  4482. <style name="MaterialAlertDialog.MaterialComponents.Body.Text" parent="TextAppearance.MaterialComponents.Body2">
  4483. <item name="android:textAppearance">?attr/textAppearanceBody2</item>
  4484. <item name="android:textColor">@color/material_on_surface_emphasis_medium</item>
  4485. </style>
  4486. <style name="MaterialAlertDialog.MaterialComponents.Picker.Date.Calendar" parent="android:Widget.DeviceDefault.DatePicker">
  4487. <item name="backgroundInsetTop">@dimen/mtrl_alert_dialog_picker_background_inset</item>
  4488. <item name="backgroundInsetBottom">@dimen/mtrl_alert_dialog_picker_background_inset</item>
  4489. <item name="shapeAppearance">?attr/shapeAppearanceMediumComponent</item>
  4490. </style>
  4491. <style name="MaterialAlertDialog.MaterialComponents.Picker.Date.Spinner" parent="android:Widget.DeviceDefault.DatePicker">
  4492. <item name="backgroundInsetTop">@dimen/mtrl_alert_dialog_picker_background_inset</item>
  4493. <item name="backgroundInsetBottom">@dimen/mtrl_alert_dialog_picker_background_inset</item>
  4494. <item name="shapeAppearance">?attr/shapeAppearanceMediumComponent</item>
  4495. </style>
  4496. <style name="MaterialAlertDialog.MaterialComponents.Title.Icon" parent="Base.MaterialAlertDialog.MaterialComponents.Title.Icon">
  4497. <item name="android:layout_gravity">start|center_vertical</item>
  4498. <item name="android:layout_marginEnd" ns1:ignore="NewApi">8dip</item>
  4499. <item name="android:layout_marginRight">8dip</item>
  4500. </style>
  4501. <style name="MaterialAlertDialog.MaterialComponents.Title.Icon.CenterStacked" parent="Base.MaterialAlertDialog.MaterialComponents.Title.Icon">
  4502. <item name="android:layout_gravity">center</item>
  4503. </style>
  4504. <style name="MaterialAlertDialog.MaterialComponents.Title.Panel" parent="Base.MaterialAlertDialog.MaterialComponents.Title.Panel">
  4505. <item name="android:orientation">horizontal</item>
  4506. </style>
  4507. <style name="MaterialAlertDialog.MaterialComponents.Title.Panel.CenterStacked" parent="Base.MaterialAlertDialog.MaterialComponents.Title.Panel">
  4508. <item name="android:orientation">vertical</item>
  4509. </style>
  4510. <style name="MaterialAlertDialog.MaterialComponents.Title.Text" parent="Base.MaterialAlertDialog.MaterialComponents.Title.Text">
  4511. <item name="android:layout_gravity">start|center_vertical</item>
  4512. <item name="android:textAlignment" ns1:ignore="NewApi">viewStart</item>
  4513. </style>
  4514. <style name="MaterialAlertDialog.MaterialComponents.Title.Text.CenterStacked" parent="Base.MaterialAlertDialog.MaterialComponents.Title.Text">
  4515. <item name="android:layout_gravity">center</item>
  4516. <item name="android:textAlignment" ns1:ignore="NewApi">center</item>
  4517. </style>
  4518. <style name="Platform.AppCompat" parent="android:Theme.Holo">
  4519. <item name="android:windowNoTitle">true</item>
  4520. <item name="android:windowActionBar">false</item>
  4521. <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
  4522. <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
  4523. <item name="android:borderlessButtonStyle">?attr/borderlessButtonStyle</item>
  4524. <!-- Window colors -->
  4525. <item name="android:colorForeground">@color/foreground_material_dark</item>
  4526. <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
  4527. <item name="android:colorBackground">@color/background_material_dark</item>
  4528. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
  4529. <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
  4530. <item name="android:backgroundDimAmount">0.6</item>
  4531. <item name="android:windowBackground">@color/background_material_dark</item>
  4532. <!-- Text colors -->
  4533. <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
  4534. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
  4535. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  4536. <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
  4537. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
  4538. <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
  4539. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
  4540. <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
  4541. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
  4542. <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
  4543. <item name="android:textColorHighlightInverse">@color/highlighted_text_material_light</item>
  4544. <item name="android:textColorLink">?attr/colorAccent</item>
  4545. <item name="android:textColorLinkInverse">?attr/colorAccent</item>
  4546. <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
  4547. <!-- Text styles -->
  4548. <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
  4549. <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
  4550. <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
  4551. <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
  4552. <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
  4553. <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  4554. <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
  4555. <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
  4556. <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
  4557. <item name="listChoiceIndicatorSingleAnimated">@drawable/abc_btn_radio_material_anim</item>
  4558. <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
  4559. <item name="listChoiceIndicatorMultipleAnimated">@drawable/abc_btn_check_material_anim</item>
  4560. <!-- List attributes -->
  4561. <item name="android:textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  4562. <item name="android:textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  4563. <!-- textAppearanceListItemSecondary is 21+ only so not safe to apply here-->
  4564. <item name="android:listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  4565. <item name="android:listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  4566. <item name="android:listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  4567. <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  4568. <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  4569. <item name="android:listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  4570. <item name="android:listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  4571. <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
  4572. <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
  4573. <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
  4574. <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
  4575. <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl</item>
  4576. <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl</item>
  4577. <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl</item>
  4578. </style>
  4579. <style name="Platform.AppCompat.Light" parent="android:Theme.Holo.Light">
  4580. <item name="android:windowNoTitle">true</item>
  4581. <item name="android:windowActionBar">false</item>
  4582. <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
  4583. <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
  4584. <item name="android:borderlessButtonStyle">?attr/borderlessButtonStyle</item>
  4585. <!-- Window colors -->
  4586. <item name="android:colorForeground">@color/foreground_material_light</item>
  4587. <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
  4588. <item name="android:colorBackground">@color/background_material_light</item>
  4589. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
  4590. <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
  4591. <item name="android:backgroundDimAmount">0.6</item>
  4592. <item name="android:windowBackground">@color/background_material_light</item>
  4593. <!-- Text colors -->
  4594. <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
  4595. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
  4596. <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
  4597. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
  4598. <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
  4599. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
  4600. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
  4601. <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  4602. <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
  4603. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
  4604. <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
  4605. <item name="android:textColorHighlightInverse">@color/highlighted_text_material_dark</item>
  4606. <item name="android:textColorLink">?attr/colorAccent</item>
  4607. <item name="android:textColorLinkInverse">?attr/colorAccent</item>
  4608. <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
  4609. <!-- Text styles -->
  4610. <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
  4611. <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
  4612. <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
  4613. <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
  4614. <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
  4615. <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  4616. <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
  4617. <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
  4618. <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
  4619. <item name="listChoiceIndicatorSingleAnimated">@drawable/abc_btn_radio_material_anim</item>
  4620. <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
  4621. <item name="listChoiceIndicatorMultipleAnimated">@drawable/abc_btn_check_material_anim</item>
  4622. <!-- List attributes -->
  4623. <item name="android:textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  4624. <item name="android:textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  4625. <!-- textAppearanceListItemSecondary is 21+ only so not safe to apply here-->
  4626. <item name="android:listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  4627. <item name="android:listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  4628. <item name="android:listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  4629. <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  4630. <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  4631. <item name="android:listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  4632. <item name="android:listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  4633. <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
  4634. <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
  4635. <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
  4636. <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
  4637. <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl</item>
  4638. <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl</item>
  4639. <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl</item>
  4640. </style>
  4641. <style name="Platform.MaterialComponents" parent="Theme.AppCompat"/>
  4642. <style name="Platform.MaterialComponents.Dialog" parent="Theme.AppCompat.Dialog"/>
  4643. <style name="Platform.MaterialComponents.Light" parent="Theme.AppCompat.Light"/>
  4644. <style name="Platform.MaterialComponents.Light.Dialog" parent="Theme.AppCompat.Light.Dialog"/>
  4645. <style name="Platform.ThemeOverlay.AppCompat" parent=""/>
  4646. <style name="Platform.ThemeOverlay.AppCompat.Dark">
  4647. <!-- Action Bar styles -->
  4648. <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item>
  4649. <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
  4650. <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
  4651. <!-- SearchView styles -->
  4652. <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  4653. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  4654. </style>
  4655. <style name="Platform.ThemeOverlay.AppCompat.Light">
  4656. <item name="actionBarItemBackground">@drawable/abc_item_background_holo_light</item>
  4657. <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
  4658. <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
  4659. <!-- SearchView attributes -->
  4660. <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>
  4661. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  4662. </style>
  4663. <style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Holo.Spinner"/>
  4664. <style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
  4665. </style>
  4666. <style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
  4667. <item name="android:layout_gravity">center_vertical|left</item>
  4668. <item name="android:paddingRight">8dp</item>
  4669. </style>
  4670. <style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
  4671. <item name="android:layout_marginRight">8dp</item>
  4672. </style>
  4673. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
  4674. <item name="android:paddingRight">16dp</item>
  4675. </style>
  4676. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
  4677. <item name="android:layout_marginLeft">16dp</item>
  4678. </style>
  4679. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut" parent="android:Widget">
  4680. <item name="android:layout_marginLeft">16dp</item>
  4681. </style>
  4682. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow" parent="android:Widget">
  4683. <item name="android:layout_marginLeft">8dp</item>
  4684. </style>
  4685. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
  4686. <item name="android:layout_alignParentLeft">true</item>
  4687. </style>
  4688. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Title" parent="android:Widget">
  4689. <item name="android:layout_marginLeft">16dp</item>
  4690. </style>
  4691. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
  4692. <item name="android:paddingLeft">@dimen/abc_dropdownitem_text_padding_left</item>
  4693. <item name="android:paddingRight">4dp</item>
  4694. </style>
  4695. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
  4696. <item name="android:layout_alignParentLeft">true</item>
  4697. </style>
  4698. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
  4699. <item name="android:layout_toLeftOf">@id/edit_query</item>
  4700. </style>
  4701. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
  4702. <item name="android:layout_alignParentRight">true</item>
  4703. </style>
  4704. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
  4705. <item name="android:layout_toLeftOf">@android:id/icon2</item>
  4706. <item name="android:layout_toRightOf">@android:id/icon1</item>
  4707. </style>
  4708. <style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
  4709. <item name="android:layout_marginLeft">@dimen/abc_dropdownitem_text_padding_left</item>
  4710. </style>
  4711. <style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
  4712. <item name="android:paddingLeft">12dp</item>
  4713. <item name="android:paddingRight">12dp</item>
  4714. </style>
  4715. <style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
  4716. <item name="android:paddingLeft">@dimen/abc_action_bar_overflow_padding_start_material</item>
  4717. <item name="android:paddingRight">@dimen/abc_action_bar_overflow_padding_end_material</item>
  4718. </style>
  4719. <style name="ShapeAppearance.Material3.LargeComponent" parent="ShapeAppearance.MaterialComponents.LargeComponent">
  4720. <item name="cornerFamily">@integer/m3_sys_shape_large_corner_family</item>
  4721. <item name="cornerSize">@dimen/m3_sys_shape_large_corner_size</item>
  4722. </style>
  4723. <style name="ShapeAppearance.Material3.MediumComponent" parent="ShapeAppearance.MaterialComponents.MediumComponent">
  4724. <item name="cornerFamily">@integer/m3_sys_shape_medium_corner_family</item>
  4725. <item name="cornerSize">@dimen/m3_sys_shape_medium_corner_size</item>
  4726. </style>
  4727. <style name="ShapeAppearance.Material3.NavigationBarView.ActiveIndicator" parent="ShapeAppearance.Material3.SmallComponent">
  4728. <item name="cornerSize">50%</item>
  4729. </style>
  4730. <style name="ShapeAppearance.Material3.SmallComponent" parent="ShapeAppearance.MaterialComponents.SmallComponent">
  4731. <item name="cornerFamily">@integer/m3_sys_shape_small_corner_family</item>
  4732. <item name="cornerSize">@dimen/m3_sys_shape_small_corner_size</item>
  4733. </style>
  4734. <style name="ShapeAppearance.Material3.Tooltip" parent="ShapeAppearance.MaterialComponents.Tooltip">
  4735. <item name="cornerSize">50%</item>
  4736. </style>
  4737. <style name="ShapeAppearance.MaterialComponents" parent="">
  4738. <item name="cornerFamily">rounded</item>
  4739. </style>
  4740. <style name="ShapeAppearance.MaterialComponents.LargeComponent">
  4741. <item name="cornerSize">@dimen/mtrl_shape_corner_size_large_component</item>
  4742. </style>
  4743. <style name="ShapeAppearance.MaterialComponents.MediumComponent">
  4744. <item name="cornerSize">@dimen/mtrl_shape_corner_size_medium_component</item>
  4745. </style>
  4746. <style name="ShapeAppearance.MaterialComponents.SmallComponent">
  4747. <item name="cornerSize">@dimen/mtrl_shape_corner_size_small_component</item>
  4748. </style>
  4749. <style name="ShapeAppearance.MaterialComponents.Test" parent="">
  4750. <item name="cornerFamily">rounded</item>
  4751. <item name="cornerSize">10px</item>
  4752. </style>
  4753. <style name="ShapeAppearance.MaterialComponents.Tooltip" parent="">
  4754. <item name="cornerFamily">rounded</item>
  4755. <item name="cornerSize">4dp</item>
  4756. </style>
  4757. <style name="ShapeAppearanceOverlay" parent=""/>
  4758. <style name="ShapeAppearanceOverlay.BottomLeftDifferentCornerSize">
  4759. <item name="cornerSizeBottomLeft">20px</item>
  4760. </style>
  4761. <style name="ShapeAppearanceOverlay.BottomRightCut">
  4762. <item name="cornerFamilyBottomRight">cut</item>
  4763. </style>
  4764. <style name="ShapeAppearanceOverlay.Cut">
  4765. <item name="cornerFamily">cut</item>
  4766. </style>
  4767. <style name="ShapeAppearanceOverlay.DifferentCornerSize">
  4768. <item name="cornerSize">20px</item>
  4769. </style>
  4770. <style name="ShapeAppearanceOverlay.Material3.Button" parent="">
  4771. <item name="cornerSize">50%</item>
  4772. </style>
  4773. <style name="ShapeAppearanceOverlay.Material3.Chip" parent="">
  4774. <item name="cornerSize">8dp</item>
  4775. </style>
  4776. <style name="ShapeAppearanceOverlay.Material3.FloatingActionButton" parent="">
  4777. <item name="cornerSize">@dimen/m3_fab_corner_size</item>
  4778. </style>
  4779. <style name="ShapeAppearanceOverlay.Material3.NavigationView.Item" parent="">
  4780. <item name="cornerSize">50%</item>
  4781. </style>
  4782. <style name="ShapeAppearanceOverlay.Material3.TextField.Filled" parent="ShapeAppearance.Material3.SmallComponent">
  4783. <item name="cornerSizeBottomLeft">0dp</item>
  4784. <item name="cornerSizeBottomRight">0dp</item>
  4785. </style>
  4786. <style name="ShapeAppearanceOverlay.MaterialAlertDialog.Material3" parent="">
  4787. <item name="cornerSize">@dimen/m3_alert_dialog_corner_size</item>
  4788. </style>
  4789. <style name="ShapeAppearanceOverlay.MaterialComponents.BottomSheet" parent="">
  4790. <item name="cornerSizeBottomRight">0dp</item>
  4791. <item name="cornerSizeBottomLeft">0dp</item>
  4792. </style>
  4793. <style name="ShapeAppearanceOverlay.MaterialComponents.Chip" parent="">
  4794. <item name="cornerSize">50%</item>
  4795. </style>
  4796. <style name="ShapeAppearanceOverlay.MaterialComponents.ExtendedFloatingActionButton" parent="">
  4797. <item name="cornerSize">@null</item>
  4798. </style>
  4799. <style name="ShapeAppearanceOverlay.MaterialComponents.FloatingActionButton" parent="">
  4800. <item name="cornerSize">50%</item>
  4801. </style>
  4802. <style name="ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day" parent="">
  4803. <item name="cornerSize">@dimen/mtrl_calendar_day_corner</item>
  4804. </style>
  4805. <style name="ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Window.Fullscreen" parent="">
  4806. <item name="cornerSize">0dp</item>
  4807. </style>
  4808. <style name="ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Year" parent="">
  4809. <item name="cornerSize">@dimen/mtrl_calendar_year_corner</item>
  4810. </style>
  4811. <style name="ShapeAppearanceOverlay.MaterialComponents.TextInputLayout.FilledBox" parent="">
  4812. <item name="cornerSizeBottomLeft">@dimen/mtrl_textinput_box_corner_radius_small</item>
  4813. <item name="cornerSizeBottomRight">@dimen/mtrl_textinput_box_corner_radius_small</item>
  4814. </style>
  4815. <style name="ShapeAppearanceOverlay.TopLeftCut">
  4816. <item name="cornerFamilyTopLeft">cut</item>
  4817. </style>
  4818. <style name="ShapeAppearanceOverlay.TopRightDifferentCornerSize">
  4819. <item name="cornerSizeTopRight">20px</item>
  4820. </style>
  4821. <style name="Test.ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day" parent="">
  4822. <item name="cornerFamily">rounded</item>
  4823. <item name="cornerSize">@dimen/test_mtrl_calendar_day_cornerSize</item>
  4824. </style>
  4825. <style name="Test.Theme.MaterialComponents.MaterialCalendar" parent="Theme.MaterialComponents.Light">
  4826. <item name="materialCalendarStyle">@style/Test.Widget.MaterialComponents.MaterialCalendar</item>
  4827. </style>
  4828. <style name="Test.Widget.MaterialComponents.MaterialCalendar" parent="">
  4829. <item name="dayStyle">@style/Test.Widget.MaterialComponents.MaterialCalendar.Day</item>
  4830. <item name="dayInvalidStyle">@style/Test.Widget.MaterialComponents.MaterialCalendar.Day</item>
  4831. <item name="daySelectedStyle">@style/Test.Widget.MaterialComponents.MaterialCalendar.Day.Selected</item>
  4832. <item name="dayTodayStyle">@style/Test.Widget.MaterialComponents.MaterialCalendar.Day</item>
  4833. <item name="yearStyle">@style/Test.Widget.MaterialComponents.MaterialCalendar.Day</item>
  4834. <item name="yearSelectedStyle">@style/Test.Widget.MaterialComponents.MaterialCalendar.Day.Selected</item>
  4835. <item name="yearTodayStyle">@style/Test.Widget.MaterialComponents.MaterialCalendar.Day</item>
  4836. <item name="rangeFillColor">@color/test_mtrl_calendar_day</item>
  4837. </style>
  4838. <style name="Test.Widget.MaterialComponents.MaterialCalendar.Day" parent="">
  4839. <item name="itemFillColor">@color/test_mtrl_calendar_day</item>
  4840. <item name="itemTextColor">@color/test_mtrl_calendar_day</item>
  4841. <item name="itemStrokeColor">@color/test_mtrl_calendar_day</item>
  4842. <item name="itemStrokeWidth">0dp</item>
  4843. <item name="itemShapeAppearance">@style/Test.ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day</item>
  4844. <item name="itemShapeAppearanceOverlay">@style/Test.ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day</item>
  4845. </style>
  4846. <style name="Test.Widget.MaterialComponents.MaterialCalendar.Day.Selected" parent="">
  4847. <item name="itemFillColor">@color/test_mtrl_calendar_day_selected</item>
  4848. <item name="itemTextColor">@color/test_mtrl_calendar_day_selected</item>
  4849. <item name="itemStrokeColor">@color/test_mtrl_calendar_day</item>
  4850. <item name="itemStrokeWidth">0dp</item>
  4851. <item name="itemShapeAppearance">@style/Test.ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day</item>
  4852. <item name="itemShapeAppearanceOverlay">@style/Test.ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day</item>
  4853. </style>
  4854. <style name="TestStyleWithLineHeight" parent="TestStyleWithoutLineHeight">
  4855. <item name="lineHeight">@dimen/material_text_view_test_line_height</item>
  4856. </style>
  4857. <style name="TestStyleWithLineHeightAppearance">
  4858. <item name="android:textAppearance">@style/TestStyleWithLineHeight</item>
  4859. </style>
  4860. <style name="TestStyleWithThemeLineHeightAttribute" parent="TestStyleWithoutLineHeight">
  4861. <item name="lineHeight">?attr/themeLineHeight</item>
  4862. </style>
  4863. <style name="TestStyleWithoutLineHeight" parent="TextAppearance.AppCompat.Title">
  4864. <item name="android:textSize">20sp</item>
  4865. </style>
  4866. <style name="TestThemeWithLineHeight" parent="Theme.AppCompat.Light">
  4867. <item name="themeLineHeight">@dimen/material_text_view_test_line_height</item>
  4868. </style>
  4869. <style name="TestThemeWithLineHeightDisabled" parent="TestThemeWithLineHeight">
  4870. <item name="textAppearanceLineHeightEnabled">false</item>
  4871. </style>
  4872. <style name="TextAppearance.AppCompat" parent="Base.TextAppearance.AppCompat"/>
  4873. <style name="TextAppearance.AppCompat.Body1" parent="Base.TextAppearance.AppCompat.Body1"/>
  4874. <style name="TextAppearance.AppCompat.Body2" parent="Base.TextAppearance.AppCompat.Body2"/>
  4875. <style name="TextAppearance.AppCompat.Button" parent="Base.TextAppearance.AppCompat.Button"/>
  4876. <style name="TextAppearance.AppCompat.Caption" parent="Base.TextAppearance.AppCompat.Caption"/>
  4877. <style name="TextAppearance.AppCompat.Display1" parent="Base.TextAppearance.AppCompat.Display1"/>
  4878. <style name="TextAppearance.AppCompat.Display2" parent="Base.TextAppearance.AppCompat.Display2"/>
  4879. <style name="TextAppearance.AppCompat.Display3" parent="Base.TextAppearance.AppCompat.Display3"/>
  4880. <style name="TextAppearance.AppCompat.Display4" parent="Base.TextAppearance.AppCompat.Display4"/>
  4881. <style name="TextAppearance.AppCompat.Headline" parent="Base.TextAppearance.AppCompat.Headline"/>
  4882. <style name="TextAppearance.AppCompat.Inverse" parent="Base.TextAppearance.AppCompat.Inverse"/>
  4883. <style name="TextAppearance.AppCompat.Large" parent="Base.TextAppearance.AppCompat.Large"/>
  4884. <style name="TextAppearance.AppCompat.Large.Inverse" parent="Base.TextAppearance.AppCompat.Large.Inverse"/>
  4885. <style name="TextAppearance.AppCompat.Light.SearchResult.Subtitle" parent="TextAppearance.AppCompat.SearchResult.Subtitle"/>
  4886. <style name="TextAppearance.AppCompat.Light.SearchResult.Title" parent="TextAppearance.AppCompat.SearchResult.Title"/>
  4887. <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Widget.PopupMenu.Large"/>
  4888. <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Widget.PopupMenu.Small"/>
  4889. <style name="TextAppearance.AppCompat.Medium" parent="Base.TextAppearance.AppCompat.Medium"/>
  4890. <style name="TextAppearance.AppCompat.Medium.Inverse" parent="Base.TextAppearance.AppCompat.Medium.Inverse"/>
  4891. <style name="TextAppearance.AppCompat.Menu" parent="Base.TextAppearance.AppCompat.Menu"/>
  4892. <style name="TextAppearance.AppCompat.SearchResult.Subtitle" parent="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
  4893. </style>
  4894. <style name="TextAppearance.AppCompat.SearchResult.Title" parent="Base.TextAppearance.AppCompat.SearchResult.Title">
  4895. </style>
  4896. <style name="TextAppearance.AppCompat.Small" parent="Base.TextAppearance.AppCompat.Small"/>
  4897. <style name="TextAppearance.AppCompat.Small.Inverse" parent="Base.TextAppearance.AppCompat.Small.Inverse"/>
  4898. <style name="TextAppearance.AppCompat.Subhead" parent="Base.TextAppearance.AppCompat.Subhead"/>
  4899. <style name="TextAppearance.AppCompat.Subhead.Inverse" parent="Base.TextAppearance.AppCompat.Subhead.Inverse"/>
  4900. <style name="TextAppearance.AppCompat.Title" parent="Base.TextAppearance.AppCompat.Title"/>
  4901. <style name="TextAppearance.AppCompat.Title.Inverse" parent="Base.TextAppearance.AppCompat.Title.Inverse"/>
  4902. <style name="TextAppearance.AppCompat.Tooltip" parent="Base.TextAppearance.AppCompat.Tooltip"/>
  4903. <style name="TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu">
  4904. </style>
  4905. <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/>
  4906. <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse">
  4907. </style>
  4908. <style name="TextAppearance.AppCompat.Widget.ActionBar.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title"/>
  4909. <style name="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse">
  4910. </style>
  4911. <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle">
  4912. </style>
  4913. <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Subtitle"/>
  4914. <style name="TextAppearance.AppCompat.Widget.ActionMode.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Title">
  4915. </style>
  4916. <style name="TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Title"/>
  4917. <style name="TextAppearance.AppCompat.Widget.Button" parent="Base.TextAppearance.AppCompat.Widget.Button"/>
  4918. <style name="TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored"/>
  4919. <style name="TextAppearance.AppCompat.Widget.Button.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Colored"/>
  4920. <style name="TextAppearance.AppCompat.Widget.Button.Inverse" parent="Base.TextAppearance.AppCompat.Widget.Button.Inverse"/>
  4921. <style name="TextAppearance.AppCompat.Widget.DropDownItem" parent="Base.TextAppearance.AppCompat.Widget.DropDownItem">
  4922. </style>
  4923. <style name="TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header"/>
  4924. <style name="TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large"/>
  4925. <style name="TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small"/>
  4926. <style name="TextAppearance.AppCompat.Widget.Switch" parent="Base.TextAppearance.AppCompat.Widget.Switch"/>
  4927. <style name="TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem"/>
  4928. <style name="TextAppearance.Compat.Notification" parent="@android:style/TextAppearance.StatusBar.EventContent"/>
  4929. <style name="TextAppearance.Compat.Notification.Info">
  4930. <item name="android:textSize">12sp</item>
  4931. <item name="android:textColor">?android:attr/textColorSecondary</item>
  4932. </style>
  4933. <style name="TextAppearance.Compat.Notification.Line2" parent="TextAppearance.Compat.Notification.Info"/>
  4934. <style name="TextAppearance.Compat.Notification.Time">
  4935. <item name="android:textSize">12sp</item>
  4936. <item name="android:textColor">?android:attr/textColorSecondary</item>
  4937. </style>
  4938. <style name="TextAppearance.Compat.Notification.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/>
  4939. <style name="TextAppearance.Design.CollapsingToolbar.Expanded" parent="TextAppearance.AppCompat.Display1">
  4940. <item name="android:textColor">?android:attr/textColorPrimary</item>
  4941. </style>
  4942. <style name="TextAppearance.Design.Counter" parent="TextAppearance.AppCompat.Caption"/>
  4943. <style name="TextAppearance.Design.Counter.Overflow" parent="TextAppearance.AppCompat.Caption">
  4944. <item name="android:textColor">@color/design_error</item>
  4945. </style>
  4946. <style name="TextAppearance.Design.Error" parent="TextAppearance.AppCompat.Caption">
  4947. <item name="android:textColor">@color/design_error</item>
  4948. </style>
  4949. <style name="TextAppearance.Design.HelperText" parent="TextAppearance.AppCompat.Caption"/>
  4950. <style name="TextAppearance.Design.Hint" parent="TextAppearance.AppCompat.Caption">
  4951. <item name="android:textColor">?attr/colorControlActivated</item>
  4952. </style>
  4953. <style name="TextAppearance.Design.Placeholder" parent="TextAppearance.AppCompat.Body1"/>
  4954. <style name="TextAppearance.Design.Prefix" parent="TextAppearance.AppCompat.Body1"/>
  4955. <style name="TextAppearance.Design.Snackbar.Message" parent="android:TextAppearance">
  4956. <item name="android:textSize">@dimen/design_snackbar_text_size</item>
  4957. <item name="android:textColor">?android:textColorPrimary</item>
  4958. </style>
  4959. <style name="TextAppearance.Design.Suffix" parent="TextAppearance.AppCompat.Body1"/>
  4960. <style name="TextAppearance.Design.Tab" parent="TextAppearance.AppCompat.Button">
  4961. <item name="android:textSize">@dimen/design_tab_text_size</item>
  4962. <item name="android:textColor">@color/mtrl_tabs_legacy_text_color_selector</item>
  4963. <item name="textAllCaps">true</item>
  4964. </style>
  4965. <style name="TextAppearance.Material3.ActionBar.Subtitle" parent="TextAppearance.Material3.TitleMedium">
  4966. <item name="android:textColor">?attr/colorOnSurfaceVariant</item>
  4967. </style>
  4968. <style name="TextAppearance.Material3.ActionBar.Title" parent="TextAppearance.Material3.TitleLarge">
  4969. <item name="android:textColor">?attr/colorOnSurface</item>
  4970. </style>
  4971. <style name="TextAppearance.Material3.BodyLarge" parent="TextAppearance.MaterialComponents.Body1">
  4972. <item name="fontFamily">@string/m3_sys_typescale_body_large_font</item>
  4973. <item name="android:fontFamily">@string/m3_sys_typescale_body_large_font</item>
  4974. <item name="android:textStyle">normal</item>
  4975. <item name="android:textAllCaps">@bool/m3_sys_typescale_body_large_text_all_caps</item>
  4976. <item name="android:textSize">@dimen/m3_sys_typescale_body_large_text_size</item>
  4977. <item name="android:letterSpacing">@dimen/m3_sys_typescale_body_large_letter_spacing</item>
  4978. </style>
  4979. <style name="TextAppearance.Material3.BodyMedium" parent="TextAppearance.MaterialComponents.Body2">
  4980. <item name="fontFamily">@string/m3_sys_typescale_body_medium_font</item>
  4981. <item name="android:fontFamily">@string/m3_sys_typescale_body_medium_font</item>
  4982. <item name="android:textStyle">normal</item>
  4983. <item name="android:textAllCaps">@bool/m3_sys_typescale_body_medium_text_all_caps</item>
  4984. <item name="android:textSize">@dimen/m3_sys_typescale_body_medium_text_size</item>
  4985. <item name="android:letterSpacing">@dimen/m3_sys_typescale_body_medium_letter_spacing</item>
  4986. </style>
  4987. <style name="TextAppearance.Material3.BodySmall" parent="TextAppearance.MaterialComponents.Caption">
  4988. <item name="fontFamily">@string/m3_sys_typescale_body_small_font</item>
  4989. <item name="android:fontFamily">@string/m3_sys_typescale_body_small_font</item>
  4990. <item name="android:textStyle">normal</item>
  4991. <item name="android:textAllCaps">@bool/m3_sys_typescale_body_small_text_all_caps</item>
  4992. <item name="android:textSize">@dimen/m3_sys_typescale_body_small_text_size</item>
  4993. <item name="android:letterSpacing">@dimen/m3_sys_typescale_body_small_letter_spacing</item>
  4994. </style>
  4995. <style name="TextAppearance.Material3.DisplayLarge" parent="TextAppearance.MaterialComponents.Headline2">
  4996. <item name="fontFamily">@string/m3_sys_typescale_display_large_font</item>
  4997. <item name="android:fontFamily">@string/m3_sys_typescale_display_large_font</item>
  4998. <item name="android:textStyle">normal</item>
  4999. <item name="android:textAllCaps">@bool/m3_sys_typescale_display_large_text_all_caps</item>
  5000. <item name="android:textSize">@dimen/m3_sys_typescale_display_large_text_size</item>
  5001. <item name="android:letterSpacing">@dimen/m3_sys_typescale_display_large_letter_spacing</item>
  5002. </style>
  5003. <style name="TextAppearance.Material3.DisplayMedium" parent="TextAppearance.MaterialComponents.Headline3">
  5004. <item name="fontFamily">@string/m3_sys_typescale_display_medium_font</item>
  5005. <item name="android:fontFamily">@string/m3_sys_typescale_display_medium_font</item>
  5006. <item name="android:textStyle">normal</item>
  5007. <item name="android:textAllCaps">@bool/m3_sys_typescale_display_medium_text_all_caps</item>
  5008. <item name="android:textSize">@dimen/m3_sys_typescale_display_medium_text_size</item>
  5009. <item name="android:letterSpacing">@dimen/m3_sys_typescale_display_medium_letter_spacing</item>
  5010. </style>
  5011. <style name="TextAppearance.Material3.DisplaySmall" parent="TextAppearance.MaterialComponents.Headline4">
  5012. <item name="fontFamily">@string/m3_sys_typescale_display_small_font</item>
  5013. <item name="android:fontFamily">@string/m3_sys_typescale_display_small_font</item>
  5014. <item name="android:textStyle">normal</item>
  5015. <item name="android:textAllCaps">@bool/m3_sys_typescale_display_small_text_all_caps</item>
  5016. <item name="android:textSize">@dimen/m3_sys_typescale_display_small_text_size</item>
  5017. <item name="android:letterSpacing">@dimen/m3_sys_typescale_display_small_letter_spacing</item>
  5018. </style>
  5019. <style name="TextAppearance.Material3.HeadlineLarge" parent="TextAppearance.MaterialComponents.Headline4">
  5020. <item name="fontFamily">@string/m3_sys_typescale_headline_large_font</item>
  5021. <item name="android:fontFamily">@string/m3_sys_typescale_headline_large_font</item>
  5022. <item name="android:textStyle">normal</item>
  5023. <item name="android:textAllCaps">@bool/m3_sys_typescale_headline_large_text_all_caps</item>
  5024. <item name="android:textSize">@dimen/m3_sys_typescale_headline_large_text_size</item>
  5025. <item name="android:letterSpacing">@dimen/m3_sys_typescale_headline_large_letter_spacing</item>
  5026. </style>
  5027. <style name="TextAppearance.Material3.HeadlineMedium" parent="TextAppearance.MaterialComponents.Headline5">
  5028. <item name="fontFamily">@string/m3_sys_typescale_headline_medium_font</item>
  5029. <item name="android:fontFamily">@string/m3_sys_typescale_headline_medium_font</item>
  5030. <item name="android:textStyle">normal</item>
  5031. <item name="android:textAllCaps">@bool/m3_sys_typescale_headline_medium_text_all_caps</item>
  5032. <item name="android:textSize">@dimen/m3_sys_typescale_headline_medium_text_size</item>
  5033. <item name="android:letterSpacing">@dimen/m3_sys_typescale_headline_medium_letter_spacing</item>
  5034. </style>
  5035. <style name="TextAppearance.Material3.HeadlineSmall" parent="TextAppearance.MaterialComponents.Headline6">
  5036. <item name="fontFamily">@string/m3_sys_typescale_headline_small_font</item>
  5037. <item name="android:fontFamily">@string/m3_sys_typescale_headline_small_font</item>
  5038. <item name="android:textStyle">normal</item>
  5039. <item name="android:textAllCaps">@bool/m3_sys_typescale_headline_small_text_all_caps</item>
  5040. <item name="android:textSize">@dimen/m3_sys_typescale_headline_small_text_size</item>
  5041. <item name="android:letterSpacing">@dimen/m3_sys_typescale_headline_small_letter_spacing</item>
  5042. </style>
  5043. <style name="TextAppearance.Material3.LabelLarge" parent="Base.TextAppearance.Material3.LabelLarge"/>
  5044. <style name="TextAppearance.Material3.LabelMedium" parent="Base.TextAppearance.Material3.LabelMedium"/>
  5045. <style name="TextAppearance.Material3.LabelSmall" parent="Base.TextAppearance.Material3.LabelSmall"/>
  5046. <style name="TextAppearance.Material3.MaterialTimePicker.Title" parent="TextAppearance.Material3.LabelMedium">
  5047. <item name="android:textColor">?attr/colorOnSurfaceVariant</item>
  5048. </style>
  5049. <style name="TextAppearance.Material3.TitleLarge" parent="TextAppearance.MaterialComponents.Headline6">
  5050. <item name="fontFamily">@string/m3_sys_typescale_title_large_font</item>
  5051. <item name="android:fontFamily">@string/m3_sys_typescale_title_large_font</item>
  5052. <item name="android:textStyle">normal</item>
  5053. <item name="android:textAllCaps">@bool/m3_sys_typescale_title_large_text_all_caps</item>
  5054. <item name="android:textSize">@dimen/m3_sys_typescale_title_large_text_size</item>
  5055. <item name="android:letterSpacing">@dimen/m3_sys_typescale_title_large_letter_spacing</item>
  5056. </style>
  5057. <style name="TextAppearance.Material3.TitleMedium" parent="Base.TextAppearance.Material3.TitleMedium"/>
  5058. <style name="TextAppearance.Material3.TitleSmall" parent="Base.TextAppearance.Material3.TitleSmall"/>
  5059. <style name="TextAppearance.MaterialComponents.Badge" parent="Base.TextAppearance.MaterialComponents.Badge"/>
  5060. <style name="TextAppearance.MaterialComponents.Body1" parent="TextAppearance.AppCompat.Body2">
  5061. <item name="fontFamily">sans-serif</item>
  5062. <item name="android:fontFamily">sans-serif</item>
  5063. <item name="android:textStyle">normal</item>
  5064. <item name="android:textAllCaps">false</item>
  5065. <item name="android:textSize">16sp</item>
  5066. <item name="android:letterSpacing">0.03125</item>
  5067. </style>
  5068. <style name="TextAppearance.MaterialComponents.Body2" parent="TextAppearance.AppCompat.Body1">
  5069. <item name="fontFamily">sans-serif</item>
  5070. <item name="android:fontFamily">sans-serif</item>
  5071. <item name="android:textStyle">normal</item>
  5072. <item name="android:textAllCaps">false</item>
  5073. <item name="android:textSize">14sp</item>
  5074. <item name="android:letterSpacing">0.0178571429</item>
  5075. </style>
  5076. <style name="TextAppearance.MaterialComponents.Button" parent="Base.TextAppearance.MaterialComponents.Button"/>
  5077. <style name="TextAppearance.MaterialComponents.Caption" parent="TextAppearance.AppCompat.Caption">
  5078. <item name="fontFamily">sans-serif</item>
  5079. <item name="android:fontFamily">sans-serif</item>
  5080. <item name="android:textStyle">normal</item>
  5081. <item name="android:textAllCaps">false</item>
  5082. <item name="android:textSize">12sp</item>
  5083. <item name="android:letterSpacing">0.0333333333</item>
  5084. </style>
  5085. <style name="TextAppearance.MaterialComponents.Chip" parent="TextAppearance.AppCompat">
  5086. <item name="android:textColor">@color/mtrl_chip_text_color</item>
  5087. <item name="android:textSize">@dimen/mtrl_chip_text_size</item>
  5088. </style>
  5089. <style name="TextAppearance.MaterialComponents.Headline1" parent="TextAppearance.AppCompat.Display4">
  5090. <item name="fontFamily">sans-serif-light</item>
  5091. <item name="android:fontFamily">sans-serif-light</item>
  5092. <item name="android:textStyle">normal</item>
  5093. <item name="android:textAllCaps">false</item>
  5094. <item name="android:textSize">96sp</item>
  5095. <item name="android:letterSpacing">-0.015625</item>
  5096. </style>
  5097. <style name="TextAppearance.MaterialComponents.Headline2" parent="TextAppearance.AppCompat.Display3">
  5098. <item name="fontFamily">sans-serif-light</item>
  5099. <item name="android:fontFamily">sans-serif-light</item>
  5100. <item name="android:textStyle">normal</item>
  5101. <item name="android:textAllCaps">false</item>
  5102. <item name="android:textSize">60sp</item>
  5103. <item name="android:letterSpacing">-0.00833333333</item>
  5104. </style>
  5105. <style name="TextAppearance.MaterialComponents.Headline3" parent="TextAppearance.AppCompat.Display2">
  5106. <item name="fontFamily">sans-serif</item>
  5107. <item name="android:fontFamily">sans-serif</item>
  5108. <item name="android:textStyle">normal</item>
  5109. <item name="android:textAllCaps">false</item>
  5110. <item name="android:textSize">48sp</item>
  5111. <item name="android:letterSpacing">0</item>
  5112. </style>
  5113. <style name="TextAppearance.MaterialComponents.Headline4" parent="TextAppearance.AppCompat.Display1">
  5114. <item name="fontFamily">sans-serif</item>
  5115. <item name="android:fontFamily">sans-serif</item>
  5116. <item name="android:textStyle">normal</item>
  5117. <item name="android:textAllCaps">false</item>
  5118. <item name="android:textSize">34sp</item>
  5119. <item name="android:letterSpacing">0.00735294118</item>
  5120. </style>
  5121. <style name="TextAppearance.MaterialComponents.Headline5" parent="TextAppearance.AppCompat.Headline">
  5122. <item name="fontFamily">sans-serif</item>
  5123. <item name="android:fontFamily">sans-serif</item>
  5124. <item name="android:textStyle">normal</item>
  5125. <item name="android:textAllCaps">false</item>
  5126. <item name="android:textSize">24sp</item>
  5127. <item name="android:letterSpacing">0</item>
  5128. </style>
  5129. <style name="TextAppearance.MaterialComponents.Headline6" parent="Base.TextAppearance.MaterialComponents.Headline6"/>
  5130. <style name="TextAppearance.MaterialComponents.Overline" parent="TextAppearance.AppCompat">
  5131. <item name="fontFamily">sans-serif</item>
  5132. <item name="android:fontFamily">sans-serif</item>
  5133. <item name="android:textStyle">normal</item>
  5134. <item name="android:textAllCaps">true</item>
  5135. <item name="android:textSize">10sp</item>
  5136. <item name="android:letterSpacing">0.166666667</item>
  5137. </style>
  5138. <style name="TextAppearance.MaterialComponents.Subtitle1" parent="TextAppearance.AppCompat.Subhead">
  5139. <item name="fontFamily">sans-serif</item>
  5140. <item name="android:fontFamily">sans-serif</item>
  5141. <item name="android:textStyle">normal</item>
  5142. <item name="android:textAllCaps">false</item>
  5143. <item name="android:textSize">16sp</item>
  5144. <item name="android:letterSpacing">0.009375</item>
  5145. </style>
  5146. <style name="TextAppearance.MaterialComponents.Subtitle2" parent="Base.TextAppearance.MaterialComponents.Subtitle2"/>
  5147. <style name="TextAppearance.MaterialComponents.TimePicker.Title" parent="TextAppearance.MaterialComponents.Overline">
  5148. <item name="android:textColor">@color/material_on_surface_emphasis_medium</item>
  5149. </style>
  5150. <style name="TextAppearance.MaterialComponents.Tooltip" parent="TextAppearance.MaterialComponents.Body2">
  5151. <item name="android:textColor">?attr/colorOnPrimary</item>
  5152. </style>
  5153. <style name="TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item">
  5154. </style>
  5155. <style name="TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle">
  5156. </style>
  5157. <style name="TextAppearance.Widget.AppCompat.Toolbar.Title" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Title">
  5158. </style>
  5159. <style name="Theme.AppCompat" parent="Base.Theme.AppCompat"/>
  5160. <style name="Theme.AppCompat.CompactMenu" parent="Base.Theme.AppCompat.CompactMenu"/>
  5161. <style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat.Light"/>
  5162. <style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat.Light.DarkActionBar"/>
  5163. <style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Light.Dialog"/>
  5164. <style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Light.Dialog.Alert"/>
  5165. <style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Light.Dialog.MinWidth"/>
  5166. <style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.Light.DialogWhenLarge"/>
  5167. <style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar"/>
  5168. <style name="Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat.Dialog"/>
  5169. <style name="Theme.AppCompat.Dialog.Alert" parent="Base.Theme.AppCompat.Dialog.Alert"/>
  5170. <style name="Theme.AppCompat.Dialog.MinWidth" parent="Base.Theme.AppCompat.Dialog.MinWidth"/>
  5171. <style name="Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.DialogWhenLarge">
  5172. </style>
  5173. <style name="Theme.AppCompat.Empty" parent=""/>
  5174. <style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light"/>
  5175. <style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar"/>
  5176. <style name="Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light.Dialog"/>
  5177. <style name="Theme.AppCompat.Light.Dialog.Alert" parent="Base.Theme.AppCompat.Light.Dialog.Alert"/>
  5178. <style name="Theme.AppCompat.Light.Dialog.MinWidth" parent="Base.Theme.AppCompat.Light.Dialog.MinWidth"/>
  5179. <style name="Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.DialogWhenLarge">
  5180. </style>
  5181. <style name="Theme.AppCompat.Light.NoActionBar">
  5182. <item name="windowActionBar">false</item>
  5183. <item name="windowNoTitle">true</item>
  5184. </style>
  5185. <style name="Theme.AppCompat.NoActionBar">
  5186. <item name="windowActionBar">false</item>
  5187. <item name="windowNoTitle">true</item>
  5188. </style>
  5189. <style name="Theme.Design" parent="Theme.AppCompat">
  5190. </style>
  5191. <style name="Theme.Design.BottomSheetDialog" parent="Theme.AppCompat.Dialog">
  5192. <item name="android:windowBackground">@android:color/transparent</item>
  5193. <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item>
  5194. <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item>
  5195. </style>
  5196. <style name="Theme.Design.Light" parent="Theme.AppCompat.Light">
  5197. </style>
  5198. <style name="Theme.Design.Light.BottomSheetDialog" parent="Theme.AppCompat.Light.Dialog">
  5199. <item name="android:windowBackground">@android:color/transparent</item>
  5200. <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item>
  5201. <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item>
  5202. </style>
  5203. <style name="Theme.Design.Light.NoActionBar">
  5204. <item name="windowActionBar">false</item>
  5205. <item name="windowNoTitle">true</item>
  5206. </style>
  5207. <style name="Theme.Design.NoActionBar">
  5208. <item name="windowActionBar">false</item>
  5209. <item name="windowNoTitle">true</item>
  5210. </style>
  5211. <style name="Theme.Material3.Dark" parent="Base.Theme.Material3.Dark"/>
  5212. <style name="Theme.Material3.Dark.BottomSheetDialog" parent="Base.Theme.Material3.Dark.BottomSheetDialog"/>
  5213. <style name="Theme.Material3.Dark.Dialog" parent="Base.Theme.Material3.Dark.Dialog"/>
  5214. <style name="Theme.Material3.Dark.Dialog.Alert" parent="Base.Theme.Material3.Dark.Dialog">
  5215. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  5216. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  5217. </style>
  5218. <style name="Theme.Material3.Dark.Dialog.MinWidth" parent="Base.Theme.Material3.Dark.Dialog">
  5219. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  5220. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  5221. </style>
  5222. <style name="Theme.Material3.Dark.DialogWhenLarge" parent="Base.Theme.Material3.Dark.Dialog"/>
  5223. <style name="Theme.Material3.Dark.NoActionBar">
  5224. <item name="windowActionBar">false</item>
  5225. <item name="windowNoTitle">true</item>
  5226. </style>
  5227. <style name="Theme.Material3.DayNight" parent="Theme.Material3.Light"/>
  5228. <style name="Theme.Material3.DayNight.BottomSheetDialog" parent="Theme.Material3.Light.BottomSheetDialog"/>
  5229. <style name="Theme.Material3.DayNight.Dialog" parent="Theme.Material3.Light.Dialog"/>
  5230. <style name="Theme.Material3.DayNight.Dialog.Alert" parent="Theme.Material3.Light.Dialog.Alert"/>
  5231. <style name="Theme.Material3.DayNight.Dialog.MinWidth" parent="Theme.Material3.Light.Dialog.MinWidth"/>
  5232. <style name="Theme.Material3.DayNight.DialogWhenLarge" parent="Theme.Material3.Light.DialogWhenLarge"/>
  5233. <style name="Theme.Material3.DayNight.NoActionBar" parent="Theme.Material3.Light.NoActionBar"/>
  5234. <style name="Theme.Material3.DynamicColors.Dark" parent="Theme.Material3.Dark"/>
  5235. <style name="Theme.Material3.DynamicColors.DayNight" parent="Theme.Material3.DynamicColors.Light"/>
  5236. <style name="Theme.Material3.DynamicColors.Light" parent="Theme.Material3.Light"/>
  5237. <style name="Theme.Material3.Light" parent="Base.Theme.Material3.Light"/>
  5238. <style name="Theme.Material3.Light.BottomSheetDialog" parent="Base.Theme.Material3.Light.BottomSheetDialog"/>
  5239. <style name="Theme.Material3.Light.Dialog" parent="Base.Theme.Material3.Light.Dialog"/>
  5240. <style name="Theme.Material3.Light.Dialog.Alert" parent="Base.Theme.Material3.Light.Dialog">
  5241. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  5242. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  5243. </style>
  5244. <style name="Theme.Material3.Light.Dialog.MinWidth" parent="Base.Theme.Material3.Light.Dialog">
  5245. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  5246. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  5247. </style>
  5248. <style name="Theme.Material3.Light.DialogWhenLarge" parent="Base.Theme.Material3.Light.Dialog"/>
  5249. <style name="Theme.Material3.Light.NoActionBar">
  5250. <item name="windowActionBar">false</item>
  5251. <item name="windowNoTitle">true</item>
  5252. </style>
  5253. <style name="Theme.MaterialComponents" parent="Base.Theme.MaterialComponents"/>
  5254. <style name="Theme.MaterialComponents.BottomSheetDialog" parent="Theme.MaterialComponents.Dialog">
  5255. <item name="android:windowBackground">@android:color/transparent</item>
  5256. <item name="android:windowAnimationStyle">@style/Animation.MaterialComponents.BottomSheetDialog</item>
  5257. <item name="bottomSheetStyle">@style/Widget.MaterialComponents.BottomSheet.Modal</item>
  5258. </style>
  5259. <style name="Theme.MaterialComponents.Bridge" parent="Base.Theme.MaterialComponents.Bridge"/>
  5260. <style name="Theme.MaterialComponents.CompactMenu" parent="Base.Theme.MaterialComponents.CompactMenu"/>
  5261. <style name="Theme.MaterialComponents.DayNight" parent="Theme.MaterialComponents.Light"/>
  5262. <style name="Theme.MaterialComponents.DayNight.BottomSheetDialog" parent="Theme.MaterialComponents.Light.BottomSheetDialog"/>
  5263. <style name="Theme.MaterialComponents.DayNight.Bridge" parent="Theme.MaterialComponents.Light.Bridge"/>
  5264. <style name="Theme.MaterialComponents.DayNight.DarkActionBar" parent="Theme.MaterialComponents.Light.DarkActionBar"/>
  5265. <style name="Theme.MaterialComponents.DayNight.DarkActionBar.Bridge" parent="Theme.MaterialComponents.Light.DarkActionBar.Bridge"/>
  5266. <style name="Theme.MaterialComponents.DayNight.Dialog" parent="Theme.MaterialComponents.Light.Dialog"/>
  5267. <style name="Theme.MaterialComponents.DayNight.Dialog.Alert" parent="Theme.MaterialComponents.Light.Dialog.Alert"/>
  5268. <style name="Theme.MaterialComponents.DayNight.Dialog.Alert.Bridge" parent="Theme.MaterialComponents.Light.Dialog.Alert.Bridge"/>
  5269. <style name="Theme.MaterialComponents.DayNight.Dialog.Bridge" parent="Theme.MaterialComponents.Light.Dialog.Bridge"/>
  5270. <style name="Theme.MaterialComponents.DayNight.Dialog.FixedSize" parent="Theme.MaterialComponents.Light.Dialog.FixedSize"/>
  5271. <style name="Theme.MaterialComponents.DayNight.Dialog.FixedSize.Bridge" parent="Theme.MaterialComponents.Light.Dialog.FixedSize.Bridge"/>
  5272. <style name="Theme.MaterialComponents.DayNight.Dialog.MinWidth" parent="Theme.MaterialComponents.Light.Dialog.MinWidth"/>
  5273. <style name="Theme.MaterialComponents.DayNight.Dialog.MinWidth.Bridge" parent="Theme.MaterialComponents.Light.Dialog.MinWidth.Bridge"/>
  5274. <style name="Theme.MaterialComponents.DayNight.DialogWhenLarge" parent="Theme.MaterialComponents.Light.DialogWhenLarge"/>
  5275. <style name="Theme.MaterialComponents.DayNight.NoActionBar" parent="Theme.MaterialComponents.Light.NoActionBar"/>
  5276. <style name="Theme.MaterialComponents.DayNight.NoActionBar.Bridge" parent="Theme.MaterialComponents.Light.NoActionBar.Bridge"/>
  5277. <style name="Theme.MaterialComponents.Dialog" parent="Base.Theme.MaterialComponents.Dialog"/>
  5278. <style name="Theme.MaterialComponents.Dialog.Alert" parent="Base.Theme.MaterialComponents.Dialog.Alert"/>
  5279. <style name="Theme.MaterialComponents.Dialog.Alert.Bridge" parent="Base.Theme.MaterialComponents.Dialog.Bridge">
  5280. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  5281. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  5282. </style>
  5283. <style name="Theme.MaterialComponents.Dialog.Bridge" parent="Base.Theme.MaterialComponents.Dialog.Bridge"/>
  5284. <style name="Theme.MaterialComponents.Dialog.FixedSize" parent="Base.Theme.MaterialComponents.Dialog.FixedSize"/>
  5285. <style name="Theme.MaterialComponents.Dialog.FixedSize.Bridge" parent="Base.Theme.MaterialComponents.Dialog.Bridge">
  5286. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  5287. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  5288. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  5289. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  5290. </style>
  5291. <style name="Theme.MaterialComponents.Dialog.MinWidth" parent="Base.Theme.MaterialComponents.Dialog.MinWidth"/>
  5292. <style name="Theme.MaterialComponents.Dialog.MinWidth.Bridge" parent="Base.Theme.MaterialComponents.Dialog.Bridge">
  5293. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  5294. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  5295. </style>
  5296. <style name="Theme.MaterialComponents.DialogWhenLarge" parent="Base.Theme.MaterialComponents.DialogWhenLarge">
  5297. </style>
  5298. <style name="Theme.MaterialComponents.Light" parent="Base.Theme.MaterialComponents.Light"/>
  5299. <style name="Theme.MaterialComponents.Light.BarSize">
  5300. <item name="actionBarSize">@dimen/action_bar_size</item>
  5301. </style>
  5302. <style name="Theme.MaterialComponents.Light.BottomSheetDialog" parent="Theme.MaterialComponents.Light.Dialog">
  5303. <item name="android:windowBackground">@android:color/transparent</item>
  5304. <item name="android:windowAnimationStyle">@style/Animation.MaterialComponents.BottomSheetDialog</item>
  5305. <item name="bottomSheetStyle">@style/Widget.MaterialComponents.BottomSheet.Modal</item>
  5306. </style>
  5307. <style name="Theme.MaterialComponents.Light.Bridge" parent="Base.Theme.MaterialComponents.Light.Bridge"/>
  5308. <style name="Theme.MaterialComponents.Light.DarkActionBar" parent="Base.Theme.MaterialComponents.Light.DarkActionBar"/>
  5309. <style name="Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge"/>
  5310. <style name="Theme.MaterialComponents.Light.Dialog" parent="Base.Theme.MaterialComponents.Light.Dialog"/>
  5311. <style name="Theme.MaterialComponents.Light.Dialog.Alert" parent="Base.Theme.MaterialComponents.Light.Dialog.Alert"/>
  5312. <style name="Theme.MaterialComponents.Light.Dialog.Alert.Bridge" parent="Base.Theme.MaterialComponents.Light.Dialog.Bridge">
  5313. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  5314. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  5315. </style>
  5316. <style name="Theme.MaterialComponents.Light.Dialog.Bridge" parent="Base.Theme.MaterialComponents.Light.Dialog.Bridge"/>
  5317. <style name="Theme.MaterialComponents.Light.Dialog.FixedSize" parent="Base.Theme.MaterialComponents.Light.Dialog.FixedSize"/>
  5318. <style name="Theme.MaterialComponents.Light.Dialog.FixedSize.Bridge" parent="Base.Theme.MaterialComponents.Light.Dialog.Bridge">
  5319. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  5320. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  5321. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  5322. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  5323. </style>
  5324. <style name="Theme.MaterialComponents.Light.Dialog.MinWidth" parent="Base.Theme.MaterialComponents.Light.Dialog.MinWidth"/>
  5325. <style name="Theme.MaterialComponents.Light.Dialog.MinWidth.Bridge" parent="Base.Theme.MaterialComponents.Light.Dialog.Bridge">
  5326. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  5327. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  5328. </style>
  5329. <style name="Theme.MaterialComponents.Light.DialogWhenLarge" parent="Base.Theme.MaterialComponents.Light.DialogWhenLarge">
  5330. </style>
  5331. <style name="Theme.MaterialComponents.Light.LargeTouch">
  5332. <item name="minTouchTargetSize">@dimen/mtrl_large_touch_target</item>
  5333. </style>
  5334. <style name="Theme.MaterialComponents.Light.NoActionBar">
  5335. <item name="windowActionBar">false</item>
  5336. <item name="windowNoTitle">true</item>
  5337. </style>
  5338. <style name="Theme.MaterialComponents.Light.NoActionBar.Bridge" parent="Theme.MaterialComponents.Light.Bridge">
  5339. <item name="windowActionBar">false</item>
  5340. <item name="windowNoTitle">true</item>
  5341. </style>
  5342. <style name="Theme.MaterialComponents.NoActionBar">
  5343. <item name="windowActionBar">false</item>
  5344. <item name="windowNoTitle">true</item>
  5345. </style>
  5346. <style name="Theme.MaterialComponents.NoActionBar.Bridge" parent="Theme.MaterialComponents.Bridge">
  5347. <item name="windowActionBar">false</item>
  5348. <item name="windowNoTitle">true</item>
  5349. </style>
  5350. <style name="ThemeOverlay.AppCompat" parent="Base.ThemeOverlay.AppCompat"/>
  5351. <style name="ThemeOverlay.AppCompat.ActionBar" parent="Base.ThemeOverlay.AppCompat.ActionBar"/>
  5352. <style name="ThemeOverlay.AppCompat.Dark" parent="Base.ThemeOverlay.AppCompat.Dark"/>
  5353. <style name="ThemeOverlay.AppCompat.Dark.ActionBar" parent="Base.ThemeOverlay.AppCompat.Dark.ActionBar"/>
  5354. <style name="ThemeOverlay.AppCompat.DayNight" parent="ThemeOverlay.AppCompat.Light"/>
  5355. <style name="ThemeOverlay.AppCompat.DayNight.ActionBar">
  5356. <item name="colorControlNormal">?android:attr/textColorPrimary</item>
  5357. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
  5358. </style>
  5359. <style name="ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat.Dialog"/>
  5360. <style name="ThemeOverlay.AppCompat.Dialog.Alert" parent="Base.ThemeOverlay.AppCompat.Dialog.Alert"/>
  5361. <style name="ThemeOverlay.AppCompat.Light" parent="Base.ThemeOverlay.AppCompat.Light"/>
  5362. <style name="ThemeOverlay.Design.TextInputEditText" parent=""/>
  5363. <style name="ThemeOverlay.Material3" parent="ThemeOverlay.MaterialComponents"/>
  5364. <style name="ThemeOverlay.Material3.ActionBar" parent="ThemeOverlay.MaterialComponents.ActionBar"/>
  5365. <style name="ThemeOverlay.Material3.AutoCompleteTextView" parent="Base.ThemeOverlay.Material3.AutoCompleteTextView">
  5366. <item name="colorControlNormal">?attr/colorOnSurfaceVariant</item>
  5367. </style>
  5368. <style name="ThemeOverlay.Material3.AutoCompleteTextView.FilledBox">
  5369. <item name="autoCompleteTextViewStyle">@style/Widget.Material3.AutoCompleteTextView.FilledBox</item>
  5370. </style>
  5371. <style name="ThemeOverlay.Material3.AutoCompleteTextView.FilledBox.Dense">
  5372. <item name="autoCompleteTextViewStyle">@style/Widget.Material3.AutoCompleteTextView.FilledBox.Dense</item>
  5373. </style>
  5374. <style name="ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox">
  5375. <item name="autoCompleteTextViewStyle">@style/Widget.Material3.AutoCompleteTextView.OutlinedBox</item>
  5376. </style>
  5377. <style name="ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox.Dense">
  5378. <item name="autoCompleteTextViewStyle">@style/Widget.Material3.AutoCompleteTextView.OutlinedBox.Dense</item>
  5379. </style>
  5380. <style name="ThemeOverlay.Material3.BottomAppBar" parent="">
  5381. <item name="colorControlNormal">?attr/colorOnSurface</item>
  5382. <item name="actionMenuTextColor">?attr/colorOnSurface</item>
  5383. </style>
  5384. <style name="ThemeOverlay.Material3.BottomSheetDialog" parent="Base.ThemeOverlay.Material3.BottomSheetDialog"/>
  5385. <style name="ThemeOverlay.Material3.Button" parent="">
  5386. <!-- The colors used by the color selectors -->
  5387. <item name="colorOnContainer">?attr/colorOnPrimary</item>
  5388. <item name="colorContainer">?attr/colorPrimary</item>
  5389. </style>
  5390. <style name="ThemeOverlay.Material3.Button.ElevatedButton" parent="ThemeOverlay.Material3.Button.TextButton">
  5391. <!-- The colors used by the color selectors -->
  5392. <item name="colorContainer">?attr/colorSurface</item>
  5393. </style>
  5394. <style name="ThemeOverlay.Material3.Button.TextButton" parent="">
  5395. <!-- The colors used by the color selectors -->
  5396. <item name="colorOnContainer">?attr/colorPrimary</item>
  5397. <item name="colorContainer">@android:color/transparent</item>
  5398. </style>
  5399. <style name="ThemeOverlay.Material3.Button.TextButton.Snackbar">
  5400. <!-- The colors used by the color selectors -->
  5401. <item name="colorOnContainer">?attr/colorPrimaryInverse</item>
  5402. </style>
  5403. <style name="ThemeOverlay.Material3.Button.TonalButton">
  5404. <!-- The colors used by the color selectors -->
  5405. <item name="colorOnContainer">?attr/colorOnSecondaryContainer</item>
  5406. <item name="colorContainer">?attr/colorSecondaryContainer</item>
  5407. </style>
  5408. <style name="ThemeOverlay.Material3.Chip" parent="">
  5409. <!-- To tint vector drawables used as leading icons -->
  5410. <item name="colorControlNormal">@color/m3_chip_text_color</item>
  5411. </style>
  5412. <style name="ThemeOverlay.Material3.Chip.Assist" parent="">
  5413. <!-- To tint vector drawables used as leading icons -->
  5414. <item name="colorControlNormal">@color/m3_assist_chip_icon_tint_color</item>
  5415. </style>
  5416. <style name="ThemeOverlay.Material3.Dark" parent="ThemeOverlay.MaterialComponents.Dark">
  5417. <!-- Color palettes -->
  5418. <item name="android:colorBackground">@color/m3_sys_color_dark_background</item>
  5419. <item name="colorOnBackground">@color/m3_sys_color_dark_on_background</item>
  5420. <item name="colorSurface">@color/m3_sys_color_dark_surface</item>
  5421. <item name="colorOnSurface">@color/m3_sys_color_dark_on_surface</item>
  5422. <item name="colorSurfaceVariant">@color/m3_sys_color_dark_surface_variant</item>
  5423. <item name="colorOnSurfaceVariant">@color/m3_sys_color_dark_on_surface_variant</item>
  5424. <item name="colorSurfaceInverse">@color/m3_sys_color_dark_inverse_surface</item>
  5425. <item name="colorOnSurfaceInverse">@color/m3_sys_color_dark_inverse_on_surface</item>
  5426. <item name="colorOutline">@color/m3_sys_color_dark_outline</item>
  5427. <item name="colorError">@color/m3_sys_color_dark_error</item>
  5428. <item name="colorOnError">@color/m3_sys_color_dark_on_error</item>
  5429. <item name="colorErrorContainer">@color/m3_sys_color_dark_error_container</item>
  5430. <item name="colorOnErrorContainer">@color/m3_sys_color_dark_on_error_container</item>
  5431. <!-- Default Framework Text Colors. -->
  5432. <item name="android:textColorPrimary">@color/m3_dark_default_color_primary_text</item>
  5433. <item name="android:textColorPrimaryInverse">@color/m3_default_color_primary_text</item>
  5434. <item name="android:textColorSecondary">@color/m3_dark_default_color_secondary_text</item>
  5435. <item name="android:textColorSecondaryInverse">@color/m3_default_color_secondary_text</item>
  5436. <item name="android:textColorTertiary">@color/m3_dark_default_color_secondary_text</item>
  5437. <item name="android:textColorTertiaryInverse">@color/m3_default_color_secondary_text</item>
  5438. <item name="android:textColorPrimaryDisableOnly">@color/m3_dark_primary_text_disable_only</item>
  5439. <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_primary_text_disable_only</item>
  5440. <item name="android:textColorHint">@color/m3_dark_hint_foreground</item>
  5441. <item name="android:textColorHintInverse">@color/m3_hint_foreground</item>
  5442. <item name="android:textColorHighlight">@color/m3_dark_highlighted_text</item>
  5443. <item name="android:textColorHighlightInverse">@color/m3_highlighted_text</item>
  5444. <item name="android:textColorLink">?attr/colorPrimary</item>
  5445. <item name="android:textColorLinkInverse">?attr/colorPrimaryInverse</item>
  5446. <item name="android:textColorAlertDialogListItem">@color/m3_dark_default_color_primary_text</item>
  5447. </style>
  5448. <style name="ThemeOverlay.Material3.Dark.ActionBar" parent="ThemeOverlay.MaterialComponents.Dark.ActionBar"/>
  5449. <style name="ThemeOverlay.Material3.DayNight.BottomSheetDialog" parent="ThemeOverlay.Material3.BottomSheetDialog"/>
  5450. <style name="ThemeOverlay.Material3.Dialog" parent="Base.ThemeOverlay.Material3.Dialog"/>
  5451. <style name="ThemeOverlay.Material3.Dialog.Alert" parent="ThemeOverlay.MaterialComponents.Dialog.Alert">
  5452. <item name="buttonBarButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog.Flush</item>
  5453. <item name="android:windowElevation" ns1:ignore="NewApi">@dimen/m3_alert_dialog_elevation</item>
  5454. </style>
  5455. <style name="ThemeOverlay.Material3.DynamicColors.Dark" parent="ThemeOverlay.Material3.Dark"/>
  5456. <style name="ThemeOverlay.Material3.DynamicColors.DayNight" parent="ThemeOverlay.Material3.DynamicColors.Light"/>
  5457. <style name="ThemeOverlay.Material3.DynamicColors.Light" parent="ThemeOverlay.Material3.Light"/>
  5458. <style name="ThemeOverlay.Material3.FloatingActionButton.Primary" parent="">
  5459. <item name="colorContainer">?attr/colorPrimaryContainer</item>
  5460. <item name="colorOnContainer">?attr/colorOnPrimaryContainer</item>
  5461. </style>
  5462. <style name="ThemeOverlay.Material3.FloatingActionButton.Secondary" parent="">
  5463. <item name="colorContainer">?attr/colorSecondaryContainer</item>
  5464. <item name="colorOnContainer">?attr/colorOnSecondaryContainer</item>
  5465. </style>
  5466. <style name="ThemeOverlay.Material3.FloatingActionButton.Surface" parent="">
  5467. <item name="colorContainer">?attr/colorSurface</item>
  5468. <item name="colorOnContainer">?attr/colorPrimary</item>
  5469. </style>
  5470. <style name="ThemeOverlay.Material3.FloatingActionButton.Tertiary" parent="">
  5471. <item name="colorContainer">?attr/colorTertiaryContainer</item>
  5472. <item name="colorOnContainer">?attr/colorOnTertiaryContainer</item>
  5473. </style>
  5474. <style name="ThemeOverlay.Material3.Light" parent="ThemeOverlay.MaterialComponents.Light">
  5475. <!-- Color palettes -->
  5476. <item name="android:colorBackground">@color/m3_sys_color_light_background</item>
  5477. <item name="colorOnBackground">@color/m3_sys_color_light_on_background</item>
  5478. <item name="colorSurface">@color/m3_sys_color_light_surface</item>
  5479. <item name="colorOnSurface">@color/m3_sys_color_light_on_surface</item>
  5480. <item name="colorSurfaceVariant">@color/m3_sys_color_light_surface_variant</item>
  5481. <item name="colorOnSurfaceVariant">@color/m3_sys_color_light_on_surface_variant</item>
  5482. <item name="colorSurfaceInverse">@color/m3_sys_color_light_inverse_surface</item>
  5483. <item name="colorOnSurfaceInverse">@color/m3_sys_color_light_inverse_on_surface</item>
  5484. <item name="colorOutline">@color/m3_sys_color_light_outline</item>
  5485. <item name="colorError">@color/m3_sys_color_light_error</item>
  5486. <item name="colorOnError">@color/m3_sys_color_light_on_error</item>
  5487. <item name="colorErrorContainer">@color/m3_sys_color_light_error_container</item>
  5488. <item name="colorOnErrorContainer">@color/m3_sys_color_light_on_error_container</item>
  5489. <!-- Default Framework Text Colors. -->
  5490. <item name="android:textColorPrimary">@color/m3_default_color_primary_text</item>
  5491. <item name="android:textColorPrimaryInverse">@color/m3_dark_default_color_primary_text</item>
  5492. <item name="android:textColorSecondary">@color/m3_default_color_secondary_text</item>
  5493. <item name="android:textColorSecondaryInverse">@color/m3_dark_default_color_secondary_text</item>
  5494. <item name="android:textColorTertiary">@color/m3_default_color_secondary_text</item>
  5495. <item name="android:textColorTertiaryInverse">@color/m3_dark_default_color_secondary_text</item>
  5496. <item name="android:textColorPrimaryDisableOnly">@color/m3_primary_text_disable_only</item>
  5497. <item name="android:textColorPrimaryInverseDisableOnly">@color/m3_dark_primary_text_disable_only</item>
  5498. <item name="android:textColorHint">@color/m3_hint_foreground</item>
  5499. <item name="android:textColorHintInverse">@color/m3_dark_hint_foreground</item>
  5500. <item name="android:textColorHighlight">@color/m3_highlighted_text</item>
  5501. <item name="android:textColorHighlightInverse">@color/m3_dark_highlighted_text</item>
  5502. <item name="android:textColorLink">?attr/colorPrimary</item>
  5503. <item name="android:textColorLinkInverse">?attr/colorPrimaryInverse</item>
  5504. <item name="android:textColorAlertDialogListItem">@color/m3_default_color_primary_text</item>
  5505. </style>
  5506. <style name="ThemeOverlay.Material3.MaterialAlertDialog" parent="ThemeOverlay.MaterialComponents.MaterialAlertDialog">
  5507. <item name="alertDialogStyle">@style/MaterialAlertDialog.Material3</item>
  5508. <item name="android:windowElevation" ns1:ignore="NewApi">@dimen/m3_alert_dialog_elevation</item>
  5509. <item name="android:checkedTextViewStyle" ns1:ignore="NewApi">@style/Widget.Material3.CheckedTextView</item>
  5510. <item name="buttonBarButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item>
  5511. <item name="buttonBarPositiveButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item>
  5512. <item name="buttonBarNegativeButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item>
  5513. <item name="buttonBarNeutralButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog.Flush</item>
  5514. <item name="materialAlertDialogTitlePanelStyle">@style/MaterialAlertDialog.Material3.Title.Panel</item>
  5515. <item name="materialAlertDialogTitleIconStyle">@style/MaterialAlertDialog.Material3.Title.Icon</item>
  5516. <item name="materialAlertDialogTitleTextStyle">@style/MaterialAlertDialog.Material3.Title.Text</item>
  5517. <item name="materialAlertDialogBodyTextStyle">@style/MaterialAlertDialog.Material3.Body.Text</item>
  5518. </style>
  5519. <style name="ThemeOverlay.Material3.MaterialAlertDialog.Centered">
  5520. <item name="materialAlertDialogTitlePanelStyle">@style/MaterialAlertDialog.Material3.Title.Panel.CenterStacked</item>
  5521. <item name="materialAlertDialogTitleIconStyle">@style/MaterialAlertDialog.Material3.Title.Icon.CenterStacked</item>
  5522. <item name="materialAlertDialogTitleTextStyle">@style/MaterialAlertDialog.Material3.Title.Text.CenterStacked</item>
  5523. </style>
  5524. <style name="ThemeOverlay.Material3.MaterialCalendar" parent="ThemeOverlay.Material3.Dialog">
  5525. <item name="android:windowElevation" ns1:ignore="NewApi">@dimen/m3_datepicker_elevation</item>
  5526. <item name="materialCalendarStyle">@style/Widget.Material3.MaterialCalendar</item>
  5527. <!-- Header Styles -->
  5528. <item name="materialCalendarHeaderLayout">@style/Widget.Material3.MaterialCalendar.HeaderLayout</item>
  5529. <item name="materialCalendarHeaderDivider">@style/Widget.Material3.MaterialCalendar.HeaderDivider</item>
  5530. <item name="materialCalendarHeaderTitle">@style/Widget.Material3.MaterialCalendar.HeaderTitle</item>
  5531. <item name="materialCalendarHeaderSelection">@style/Widget.Material3.MaterialCalendar.HeaderSelection</item>
  5532. <item name="materialCalendarHeaderCancelButton">@style/Widget.Material3.MaterialCalendar.HeaderCancelButton</item>
  5533. <item name="materialCalendarHeaderConfirmButton">@style/Widget.Material3.Button.TextButton</item>
  5534. <item name="materialCalendarHeaderToggleButton">@style/Widget.Material3.MaterialCalendar.HeaderToggleButton</item>
  5535. <!-- Navigation Styles -->
  5536. <item name="materialCalendarYearNavigationButton">@style/Widget.Material3.MaterialCalendar.YearNavigationButton</item>
  5537. <item name="materialCalendarMonthNavigationButton">@style/Widget.Material3.MaterialCalendar.MonthNavigationButton</item>
  5538. <!-- Grid Styles -->
  5539. <item name="materialCalendarDayOfWeekLabel">@style/Widget.Material3.MaterialCalendar.DayOfWeekLabel</item>
  5540. <item name="materialCalendarDay">@style/Widget.Material3.MaterialCalendar.DayTextView</item>
  5541. <item name="materialCalendarMonth">@style/Widget.Material3.MaterialCalendar.MonthTextView</item>
  5542. <!-- Action Styles -->
  5543. <item name="buttonBarPositiveButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item>
  5544. <item name="buttonBarNegativeButtonStyle">@style/Widget.Material3.Button.TextButton.Dialog</item>
  5545. </style>
  5546. <style name="ThemeOverlay.Material3.MaterialCalendar.Fullscreen">
  5547. <item name="android:windowElevation" ns1:ignore="NewApi">@dimen/m3_datepicker_elevation</item>
  5548. <item name="materialCalendarStyle">@style/Widget.Material3.MaterialCalendar.Fullscreen</item>
  5549. <item name="materialCalendarHeaderSelection">@style/Widget.Material3.MaterialCalendar.HeaderSelection.Fullscreen</item>
  5550. </style>
  5551. <style name="ThemeOverlay.Material3.MaterialCalendar.HeaderCancelButton" parent="ThemeOverlay.Material3.Button.TextButton">
  5552. <item name="colorOnContainer">?attr/colorOnSurfaceVariant</item>
  5553. </style>
  5554. <style name="ThemeOverlay.Material3.MaterialTimePicker" parent="ThemeOverlay.Material3.Dialog">
  5555. <item name="android:windowElevation" ns1:ignore="NewApi">@dimen/m3_timepicker_window_elevation</item>
  5556. <item name="chipStyle">@style/Widget.Material3.MaterialTimePicker.Display</item>
  5557. <item name="textInputStyle">@style/Widget.Material3.MaterialTimePicker.Display.TextInputLayout</item>
  5558. <item name="materialDisplayDividerStyle">@style/Widget.Material3.MaterialTimePicker.Display.Divider</item>
  5559. <item name="materialButtonOutlinedStyle">@style/Widget.Material3.MaterialTimePicker.Button</item>
  5560. <item name="materialClockStyle">@style/Widget.Material3.MaterialTimePicker.Clock</item>
  5561. <item name="materialTimePickerStyle">@style/Widget.Material3.MaterialTimePicker</item>
  5562. <item name="imageButtonStyle">@style/Widget.Material3.MaterialTimePicker.ImageButton</item>
  5563. <item name="materialTimePickerTitleStyle">@style/TextAppearance.Material3.MaterialTimePicker.Title</item>
  5564. </style>
  5565. <style name="ThemeOverlay.Material3.MaterialTimePicker.Display.TextInputEditText" parent="ThemeOverlay.Material3.TextInputEditText.OutlinedBox">
  5566. <item name="editTextStyle">@style/Widget.Material3.MaterialTimePicker.Display.TextInputEditText</item>
  5567. <!-- NOTE: the only text view used in TimePicker text input is custom helper text view. -->
  5568. <item name="android:textViewStyle">@style/Widget.Material3.MaterialTimePicker.Display.HelperText</item>
  5569. </style>
  5570. <style name="ThemeOverlay.Material3.NavigationView" parent="">
  5571. <item name="android:listDivider">?attr/colorOutline</item>
  5572. </style>
  5573. <style name="ThemeOverlay.Material3.Snackbar" parent="">
  5574. <item name="colorOnSurface">?attr/colorOnBackground</item>
  5575. </style>
  5576. <style name="ThemeOverlay.Material3.TextInputEditText" parent="Base.ThemeOverlay.Material3.TextInputEditText">
  5577. <item name="colorControlNormal">?attr/colorOnSurfaceVariant</item>
  5578. </style>
  5579. <style name="ThemeOverlay.Material3.TextInputEditText.FilledBox">
  5580. <item name="editTextStyle">@style/Widget.Material3.TextInputEditText.FilledBox</item>
  5581. </style>
  5582. <style name="ThemeOverlay.Material3.TextInputEditText.FilledBox.Dense">
  5583. <item name="editTextStyle">@style/Widget.Material3.TextInputEditText.FilledBox.Dense</item>
  5584. </style>
  5585. <style name="ThemeOverlay.Material3.TextInputEditText.OutlinedBox">
  5586. <item name="editTextStyle">@style/Widget.Material3.TextInputEditText.OutlinedBox</item>
  5587. </style>
  5588. <style name="ThemeOverlay.Material3.TextInputEditText.OutlinedBox.Dense">
  5589. <item name="editTextStyle">@style/Widget.Material3.TextInputEditText.OutlinedBox.Dense</item>
  5590. </style>
  5591. <style name="ThemeOverlay.Material3.Toolbar.Surface" parent="">
  5592. <item name="actionMenuTextColor">?attr/colorOnSurfaceVariant</item>
  5593. <item name="colorControlNormal">?attr/colorOnSurfaceVariant</item>
  5594. </style>
  5595. <style name="ThemeOverlay.MaterialAlertDialog.Material3.Title.Icon" parent="">
  5596. <item name="colorControlNormal">?attr/colorSecondary</item>
  5597. </style>
  5598. <style name="ThemeOverlay.MaterialComponents" parent="ThemeOverlay.AppCompat"/>
  5599. <style name="ThemeOverlay.MaterialComponents.ActionBar" parent="ThemeOverlay.AppCompat.ActionBar"/>
  5600. <style name="ThemeOverlay.MaterialComponents.ActionBar.Primary" parent="ThemeOverlay.AppCompat.ActionBar">
  5601. <item name="android:textColorPrimary">?attr/colorOnPrimary</item>
  5602. <item name="android:textColorSecondary">@color/material_on_primary_emphasis_medium</item>
  5603. <item name="actionMenuTextColor">?attr/colorOnPrimary</item>
  5604. <item name="colorControlNormal">?attr/colorOnPrimary</item>
  5605. <!-- Used to tint the ActionMode background and preserve the underline. -->
  5606. <item name="android:colorBackground">?attr/colorPrimary</item>
  5607. </style>
  5608. <style name="ThemeOverlay.MaterialComponents.ActionBar.Surface" parent="ThemeOverlay.AppCompat.ActionBar">
  5609. <item name="android:textColorPrimary">@color/material_on_surface_emphasis_high_type</item>
  5610. <item name="android:textColorSecondary">@color/material_on_surface_emphasis_medium</item>
  5611. <item name="actionMenuTextColor">@color/material_on_surface_emphasis_medium</item>
  5612. <item name="colorControlNormal">@color/material_on_surface_emphasis_medium</item>
  5613. <!-- Used to tint the ActionMode background and preserve the underline. -->
  5614. <item name="android:colorBackground">?attr/colorSurface</item>
  5615. </style>
  5616. <style name="ThemeOverlay.MaterialComponents.AutoCompleteTextView" parent="">
  5617. <item name="colorControlActivated">?attr/colorPrimary</item>
  5618. </style>
  5619. <style name="ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox">
  5620. <item name="autoCompleteTextViewStyle">
  5621. @style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox
  5622. </item>
  5623. </style>
  5624. <style name="ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox.Dense">
  5625. <item name="autoCompleteTextViewStyle">
  5626. @style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox.Dense
  5627. </item>
  5628. </style>
  5629. <style name="ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox">
  5630. <item name="autoCompleteTextViewStyle">
  5631. @style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox
  5632. </item>
  5633. </style>
  5634. <style name="ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense">
  5635. <item name="autoCompleteTextViewStyle">
  5636. @style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense
  5637. </item>
  5638. </style>
  5639. <style name="ThemeOverlay.MaterialComponents.BottomAppBar.Primary" parent="">
  5640. <item name="colorControlNormal">?attr/colorOnPrimary</item>
  5641. <item name="actionMenuTextColor">?attr/colorOnPrimary</item>
  5642. </style>
  5643. <style name="ThemeOverlay.MaterialComponents.BottomAppBar.Surface" parent="">
  5644. <item name="colorControlNormal">@color/material_on_surface_emphasis_medium</item>
  5645. <item name="actionMenuTextColor">@color/material_on_surface_emphasis_medium</item>
  5646. </style>
  5647. <style name="ThemeOverlay.MaterialComponents.BottomSheetDialog" parent="Base.V14.ThemeOverlay.MaterialComponents.BottomSheetDialog"/>
  5648. <style name="ThemeOverlay.MaterialComponents.Dark" parent="ThemeOverlay.AppCompat.Dark">
  5649. <item name="android:colorBackground">@color/design_dark_default_color_background</item>
  5650. <item name="colorOnBackground">@color/design_dark_default_color_on_background</item>
  5651. <item name="colorSurface">@color/design_dark_default_color_surface</item>
  5652. <item name="colorOnSurface">@color/design_dark_default_color_on_surface</item>
  5653. <item name="colorError">@color/design_dark_default_color_error</item>
  5654. <item name="colorOnError">@color/design_dark_default_color_on_error</item>
  5655. </style>
  5656. <style name="ThemeOverlay.MaterialComponents.Dark.ActionBar" parent="ThemeOverlay.AppCompat.Dark.ActionBar"/>
  5657. <style name="ThemeOverlay.MaterialComponents.DayNight.BottomSheetDialog" parent="ThemeOverlay.MaterialComponents.BottomSheetDialog"/>
  5658. <style name="ThemeOverlay.MaterialComponents.Dialog" parent="Base.ThemeOverlay.MaterialComponents.Dialog"/>
  5659. <style name="ThemeOverlay.MaterialComponents.Dialog.Alert" parent="Base.ThemeOverlay.MaterialComponents.Dialog.Alert"/>
  5660. <style name="ThemeOverlay.MaterialComponents.Light" parent="ThemeOverlay.AppCompat.Light">
  5661. <item name="android:colorBackground">@color/design_default_color_background</item>
  5662. <item name="colorOnBackground">@color/design_default_color_on_background</item>
  5663. <item name="colorSurface">@color/design_default_color_surface</item>
  5664. <item name="colorOnSurface">@color/design_default_color_on_surface</item>
  5665. <item name="colorError">@color/design_default_color_error</item>
  5666. <item name="colorOnError">@color/design_default_color_on_error</item>
  5667. </style>
  5668. <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog" parent="Base.ThemeOverlay.MaterialComponents.MaterialAlertDialog">
  5669. <item name="materialAlertDialogTitlePanelStyle">@style/MaterialAlertDialog.MaterialComponents.Title.Panel</item>
  5670. <item name="materialAlertDialogTitleIconStyle">@style/MaterialAlertDialog.MaterialComponents.Title.Icon</item>
  5671. <item name="materialAlertDialogTitleTextStyle">@style/MaterialAlertDialog.MaterialComponents.Title.Text</item>
  5672. </style>
  5673. <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog.Centered" parent="Base.ThemeOverlay.MaterialComponents.MaterialAlertDialog">
  5674. <item name="materialAlertDialogTitlePanelStyle">@style/MaterialAlertDialog.MaterialComponents.Title.Panel.CenterStacked</item>
  5675. <item name="materialAlertDialogTitleIconStyle">@style/MaterialAlertDialog.MaterialComponents.Title.Icon.CenterStacked</item>
  5676. <item name="materialAlertDialogTitleTextStyle">@style/MaterialAlertDialog.MaterialComponents.Title.Text.CenterStacked</item>
  5677. </style>
  5678. <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date" parent="ThemeOverlay.MaterialComponents.MaterialAlertDialog"/>
  5679. <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Calendar"/>
  5680. <style name="ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Spinner"/>
  5681. <style name="ThemeOverlay.MaterialComponents.MaterialCalendar" parent="ThemeOverlay.MaterialComponents.Dialog">
  5682. <item name="materialCalendarStyle">@style/Widget.MaterialComponents.MaterialCalendar</item>
  5683. <!-- Header Styles -->
  5684. <item name="materialCalendarHeaderLayout">@style/Widget.MaterialComponents.MaterialCalendar.HeaderLayout</item>
  5685. <item name="materialCalendarHeaderDivider">@style/Widget.MaterialComponents.MaterialCalendar.HeaderDivider</item>
  5686. <item name="materialCalendarHeaderTitle">@style/Widget.MaterialComponents.MaterialCalendar.HeaderTitle</item>
  5687. <item name="materialCalendarHeaderSelection">@style/Widget.MaterialComponents.MaterialCalendar.HeaderSelection</item>
  5688. <item name="materialCalendarHeaderCancelButton">@style/Widget.MaterialComponents.MaterialCalendar.HeaderCancelButton</item>
  5689. <item name="materialCalendarHeaderConfirmButton">@style/Widget.MaterialComponents.MaterialCalendar.HeaderConfirmButton</item>
  5690. <item name="materialCalendarHeaderToggleButton">@style/Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton</item>
  5691. <!-- Navigation Styles -->
  5692. <item name="materialCalendarYearNavigationButton">@style/Widget.MaterialComponents.MaterialCalendar.YearNavigationButton</item>
  5693. <item name="materialCalendarMonthNavigationButton">@style/Widget.MaterialComponents.MaterialCalendar.MonthNavigationButton</item>
  5694. <!-- Grid Styles -->
  5695. <item name="materialCalendarDayOfWeekLabel">@style/Widget.MaterialComponents.MaterialCalendar.DayOfWeekLabel</item>
  5696. <item name="materialCalendarDay">@style/Widget.MaterialComponents.MaterialCalendar.DayTextView</item>
  5697. <item name="materialCalendarMonth">@style/Widget.MaterialComponents.MaterialCalendar.MonthTextView</item>
  5698. <!-- Action Styles -->
  5699. <item name="buttonBarPositiveButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  5700. <item name="buttonBarNegativeButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  5701. </style>
  5702. <style name="ThemeOverlay.MaterialComponents.MaterialCalendar.Fullscreen" parent="ThemeOverlay.MaterialComponents.MaterialCalendar">
  5703. <item name="materialCalendarStyle">@style/Widget.MaterialComponents.MaterialCalendar.Fullscreen</item>
  5704. <item name="materialCalendarHeaderSelection">@style/Widget.MaterialComponents.MaterialCalendar.HeaderSelection.Fullscreen</item>
  5705. </style>
  5706. <style name="ThemeOverlay.MaterialComponents.TextInputEditText" parent="ThemeOverlay.Design.TextInputEditText">
  5707. <item name="colorControlActivated">?attr/colorPrimary</item>
  5708. <item name="android:editTextBackground">@null</item>
  5709. <item name="editTextBackground">@null</item>
  5710. </style>
  5711. <style name="ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox">
  5712. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.FilledBox</item>
  5713. </style>
  5714. <style name="ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense">
  5715. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.FilledBox.Dense
  5716. </item>
  5717. </style>
  5718. <style name="ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox">
  5719. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.OutlinedBox</item>
  5720. </style>
  5721. <style name="ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense">
  5722. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense
  5723. </item>
  5724. </style>
  5725. <style name="ThemeOverlay.MaterialComponents.TimePicker" parent="ThemeOverlay.MaterialComponents.Dialog">
  5726. <item name="chipStyle">@style/Widget.MaterialComponents.TimePicker.Display</item>
  5727. <item name="textInputStyle">@style/Widget.MaterialComponents.TimePicker.Display.TextInputLayout</item>
  5728. <item name="materialDisplayDividerStyle">@style/Widget.MaterialComponents.TimePicker.Display.Divider</item>
  5729. <item name="materialClockStyle">@style/Widget.MaterialComponents.TimePicker.Clock</item>
  5730. <item name="imageButtonStyle">@style/Widget.MaterialComponents.TimePicker.ImageButton</item>
  5731. <item name="materialButtonOutlinedStyle">@style/Widget.MaterialComponents.TimePicker.Button</item>
  5732. <item name="materialTimePickerTitleStyle">@style/TextAppearance.MaterialComponents.TimePicker.Title</item>
  5733. <item name="elevationOverlayEnabled">false</item>
  5734. </style>
  5735. <style name="ThemeOverlay.MaterialComponents.TimePicker.Display" parent="">
  5736. <item name="elevationOverlayEnabled">false</item>
  5737. </style>
  5738. <style name="ThemeOverlay.MaterialComponents.TimePicker.Display.TextInputEditText" parent="ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox">
  5739. <item name="editTextStyle">@style/Widget.MaterialComponents.TimePicker.Display.TextInputEditText</item>
  5740. <!-- NOTE: the only text view used in TimePicker text input is custom helper text view. -->
  5741. <item name="android:textViewStyle">@style/Widget.MaterialComponents.TimePicker.Display.HelperText</item>
  5742. </style>
  5743. <style name="ThemeOverlay.MaterialComponents.Toolbar.Popup.Primary" parent="">
  5744. <item name="colorControlNormal">?attr/colorOnSurface</item>
  5745. </style>
  5746. <style name="ThemeOverlay.MaterialComponents.Toolbar.Primary" parent="">
  5747. <item name="colorControlNormal">?attr/colorOnPrimary</item>
  5748. <item name="actionMenuTextColor">?attr/colorOnPrimary</item>
  5749. </style>
  5750. <style name="ThemeOverlay.MaterialComponents.Toolbar.Surface" parent="">
  5751. <item name="colorControlNormal">@color/material_on_surface_emphasis_medium</item>
  5752. <item name="actionMenuTextColor">@color/material_on_surface_emphasis_medium</item>
  5753. </style>
  5754. <style name="ThemeOverlayColorAccentRed" ns1:ignore="NewApi">
  5755. <item name="android:colorAccent">#FFFF0000</item>
  5756. </style>
  5757. <style name="Widget.AppCompat.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
  5758. </style>
  5759. <style name="Widget.AppCompat.ActionBar.Solid" parent="Base.Widget.AppCompat.ActionBar.Solid">
  5760. </style>
  5761. <style name="Widget.AppCompat.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
  5762. </style>
  5763. <style name="Widget.AppCompat.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
  5764. </style>
  5765. <style name="Widget.AppCompat.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
  5766. </style>
  5767. <style name="Widget.AppCompat.ActionButton" parent="Base.Widget.AppCompat.ActionButton"/>
  5768. <style name="Widget.AppCompat.ActionButton.CloseMode" parent="Base.Widget.AppCompat.ActionButton.CloseMode"/>
  5769. <style name="Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton.Overflow"/>
  5770. <style name="Widget.AppCompat.ActionMode" parent="Base.Widget.AppCompat.ActionMode">
  5771. </style>
  5772. <style name="Widget.AppCompat.ActivityChooserView" parent="Base.Widget.AppCompat.ActivityChooserView">
  5773. </style>
  5774. <style name="Widget.AppCompat.AutoCompleteTextView" parent="Base.Widget.AppCompat.AutoCompleteTextView">
  5775. </style>
  5776. <style name="Widget.AppCompat.Button" parent="Base.Widget.AppCompat.Button"/>
  5777. <style name="Widget.AppCompat.Button.Borderless" parent="Base.Widget.AppCompat.Button.Borderless"/>
  5778. <style name="Widget.AppCompat.Button.Borderless.Colored" parent="Base.Widget.AppCompat.Button.Borderless.Colored"/>
  5779. <style name="Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog"/>
  5780. <style name="Widget.AppCompat.Button.Colored" parent="Base.Widget.AppCompat.Button.Colored"/>
  5781. <style name="Widget.AppCompat.Button.Small" parent="Base.Widget.AppCompat.Button.Small"/>
  5782. <style name="Widget.AppCompat.ButtonBar" parent="Base.Widget.AppCompat.ButtonBar"/>
  5783. <style name="Widget.AppCompat.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.ButtonBar.AlertDialog"/>
  5784. <style name="Widget.AppCompat.CompoundButton.CheckBox" parent="Base.Widget.AppCompat.CompoundButton.CheckBox"/>
  5785. <style name="Widget.AppCompat.CompoundButton.RadioButton" parent="Base.Widget.AppCompat.CompoundButton.RadioButton"/>
  5786. <style name="Widget.AppCompat.CompoundButton.Switch" parent="Base.Widget.AppCompat.CompoundButton.Switch"/>
  5787. <style name="Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle">
  5788. <item name="color">?attr/colorControlNormal</item>
  5789. </style>
  5790. <style name="Widget.AppCompat.DropDownItem.Spinner" parent="RtlOverlay.Widget.AppCompat.Search.DropDown.Text"/>
  5791. <style name="Widget.AppCompat.EditText" parent="Base.Widget.AppCompat.EditText"/>
  5792. <style name="Widget.AppCompat.ImageButton" parent="Base.Widget.AppCompat.ImageButton"/>
  5793. <style name="Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.Light.ActionBar">
  5794. </style>
  5795. <style name="Widget.AppCompat.Light.ActionBar.Solid" parent="Base.Widget.AppCompat.Light.ActionBar.Solid">
  5796. </style>
  5797. <style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse"/>
  5798. <style name="Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.Light.ActionBar.TabBar">
  5799. </style>
  5800. <style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse"/>
  5801. <style name="Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
  5802. </style>
  5803. <style name="Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse">
  5804. </style>
  5805. <style name="Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.Light.ActionBar.TabView">
  5806. </style>
  5807. <style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse"/>
  5808. <style name="Widget.AppCompat.Light.ActionButton" parent="Widget.AppCompat.ActionButton"/>
  5809. <style name="Widget.AppCompat.Light.ActionButton.CloseMode" parent="Widget.AppCompat.ActionButton.CloseMode"/>
  5810. <style name="Widget.AppCompat.Light.ActionButton.Overflow" parent="Widget.AppCompat.ActionButton.Overflow"/>
  5811. <style name="Widget.AppCompat.Light.ActionMode.Inverse" parent="Widget.AppCompat.ActionMode"/>
  5812. <style name="Widget.AppCompat.Light.ActivityChooserView" parent="Widget.AppCompat.ActivityChooserView"/>
  5813. <style name="Widget.AppCompat.Light.AutoCompleteTextView" parent="Widget.AppCompat.AutoCompleteTextView"/>
  5814. <style name="Widget.AppCompat.Light.DropDownItem.Spinner" parent="Widget.AppCompat.DropDownItem.Spinner"/>
  5815. <style name="Widget.AppCompat.Light.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"/>
  5816. <style name="Widget.AppCompat.Light.ListView.DropDown" parent="Widget.AppCompat.ListView.DropDown"/>
  5817. <style name="Widget.AppCompat.Light.PopupMenu" parent="Base.Widget.AppCompat.Light.PopupMenu"/>
  5818. <style name="Widget.AppCompat.Light.PopupMenu.Overflow" parent="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
  5819. </style>
  5820. <style name="Widget.AppCompat.Light.SearchView" parent="Widget.AppCompat.SearchView"/>
  5821. <style name="Widget.AppCompat.Light.Spinner.DropDown.ActionBar" parent="Widget.AppCompat.Spinner.DropDown.ActionBar"/>
  5822. <style name="Widget.AppCompat.ListMenuView" parent="Base.Widget.AppCompat.ListMenuView"/>
  5823. <style name="Widget.AppCompat.ListPopupWindow" parent="Base.Widget.AppCompat.ListPopupWindow">
  5824. </style>
  5825. <style name="Widget.AppCompat.ListView" parent="Base.Widget.AppCompat.ListView"/>
  5826. <style name="Widget.AppCompat.ListView.DropDown" parent="Base.Widget.AppCompat.ListView.DropDown"/>
  5827. <style name="Widget.AppCompat.ListView.Menu" parent="Base.Widget.AppCompat.ListView.Menu"/>
  5828. <style name="Widget.AppCompat.PopupMenu" parent="Base.Widget.AppCompat.PopupMenu"/>
  5829. <style name="Widget.AppCompat.PopupMenu.Overflow" parent="Base.Widget.AppCompat.PopupMenu.Overflow">
  5830. </style>
  5831. <style name="Widget.AppCompat.PopupWindow" parent="Base.Widget.AppCompat.PopupWindow">
  5832. </style>
  5833. <style name="Widget.AppCompat.ProgressBar" parent="Base.Widget.AppCompat.ProgressBar">
  5834. </style>
  5835. <style name="Widget.AppCompat.ProgressBar.Horizontal" parent="Base.Widget.AppCompat.ProgressBar.Horizontal">
  5836. </style>
  5837. <style name="Widget.AppCompat.RatingBar" parent="Base.Widget.AppCompat.RatingBar"/>
  5838. <style name="Widget.AppCompat.RatingBar.Indicator" parent="Base.Widget.AppCompat.RatingBar.Indicator"/>
  5839. <style name="Widget.AppCompat.RatingBar.Small" parent="Base.Widget.AppCompat.RatingBar.Small"/>
  5840. <style name="Widget.AppCompat.SearchView" parent="Base.Widget.AppCompat.SearchView"/>
  5841. <style name="Widget.AppCompat.SearchView.ActionBar" parent="Base.Widget.AppCompat.SearchView.ActionBar"/>
  5842. <style name="Widget.AppCompat.SeekBar" parent="Base.Widget.AppCompat.SeekBar"/>
  5843. <style name="Widget.AppCompat.SeekBar.Discrete" parent="Base.Widget.AppCompat.SeekBar.Discrete"/>
  5844. <style name="Widget.AppCompat.Spinner" parent="Base.Widget.AppCompat.Spinner"/>
  5845. <style name="Widget.AppCompat.Spinner.DropDown"/>
  5846. <style name="Widget.AppCompat.Spinner.DropDown.ActionBar"/>
  5847. <style name="Widget.AppCompat.Spinner.Underlined" parent="Base.Widget.AppCompat.Spinner.Underlined"/>
  5848. <style name="Widget.AppCompat.TextView" parent="Base.Widget.AppCompat.TextView"/>
  5849. <style name="Widget.AppCompat.TextView.SpinnerItem" parent="Base.Widget.AppCompat.TextView.SpinnerItem"/>
  5850. <style name="Widget.AppCompat.Toolbar" parent="Base.Widget.AppCompat.Toolbar"/>
  5851. <style name="Widget.AppCompat.Toolbar.Button.Navigation" parent="Base.Widget.AppCompat.Toolbar.Button.Navigation"/>
  5852. <style name="Widget.Compat.NotificationActionContainer" parent=""/>
  5853. <style name="Widget.Compat.NotificationActionText" parent=""/>
  5854. <style name="Widget.Design.AppBarLayout" parent="android:Widget">
  5855. <item name="android:background">?attr/colorPrimary</item>
  5856. <item name="android:stateListAnimator" ns1:ignore="NewApi">
  5857. @animator/design_appbar_state_list_animator
  5858. </item>
  5859. <item name="android:keyboardNavigationCluster" ns1:ignore="NewApi">true</item>
  5860. <item name="android:touchscreenBlocksFocus" ns1:ignore="NewApi">true</item>
  5861. </style>
  5862. <style name="Widget.Design.BottomNavigationView" parent="">
  5863. <item name="elevation">@dimen/design_bottom_navigation_elevation</item>
  5864. <item name="enforceTextAppearance">false</item>
  5865. <item name="enforceMaterialTheme">false</item>
  5866. <item name="itemBackground">?attr/selectableItemBackgroundBorderless</item>
  5867. <item name="itemHorizontalTranslationEnabled">true</item>
  5868. <item name="itemIconSize">@dimen/design_bottom_navigation_icon_size</item>
  5869. <item name="labelVisibilityMode">auto</item>
  5870. <item name="itemPaddingTop">@dimen/design_bottom_navigation_margin</item>
  5871. <item name="itemPaddingBottom">@dimen/design_bottom_navigation_label_padding</item>
  5872. <item name="itemActiveIndicatorStyle">@null</item>
  5873. <item name="android:minHeight">@dimen/design_bottom_navigation_height</item>
  5874. </style>
  5875. <style name="Widget.Design.BottomSheet.Modal" parent="android:Widget">
  5876. <item name="enforceMaterialTheme">false</item>
  5877. <item name="android:background">?android:attr/colorBackground</item>
  5878. <item name="android:elevation" ns1:ignore="NewApi">
  5879. @dimen/design_bottom_sheet_modal_elevation
  5880. </item>
  5881. <item name="behavior_peekHeight">auto</item>
  5882. <item name="behavior_hideable">true</item>
  5883. <item name="behavior_skipCollapsed">false</item>
  5884. <item name="shapeAppearance">@null</item>
  5885. <item name="shapeAppearanceOverlay">@null</item>
  5886. <item name="backgroundTint">?android:attr/colorBackground</item>
  5887. </style>
  5888. <style name="Widget.Design.CollapsingToolbar" parent="android:Widget">
  5889. <item name="expandedTitleMargin">32dp</item>
  5890. <item name="statusBarScrim">?attr/colorPrimaryDark</item>
  5891. </style>
  5892. <style name="Widget.Design.FloatingActionButton" parent="android:Widget">
  5893. <item name="android:background">@drawable/design_fab_background</item>
  5894. <item name="android:clickable">true</item>
  5895. <item name="android:focusable">true</item>
  5896. <item name="backgroundTint">?attr/colorAccent</item>
  5897. <item name="fabSize">auto</item>
  5898. <item name="elevation">@dimen/design_fab_elevation</item>
  5899. <item name="hoveredFocusedTranslationZ">@dimen/design_fab_translation_z_hovered_focused</item>
  5900. <item name="pressedTranslationZ">@dimen/design_fab_translation_z_pressed</item>
  5901. <item name="rippleColor">?attr/colorControlHighlight</item>
  5902. <item name="borderWidth">@dimen/design_fab_border_width</item>
  5903. <item name="maxImageSize">@dimen/design_fab_image_size</item>
  5904. <item name="showMotionSpec">@animator/design_fab_show_motion_spec</item>
  5905. <item name="hideMotionSpec">@animator/design_fab_hide_motion_spec</item>
  5906. </style>
  5907. <style name="Widget.Design.NavigationView" parent="Widget.Design.ScrimInsetsFrameLayout">
  5908. <item name="elevation">@dimen/design_navigation_elevation</item>
  5909. <item name="itemIconPadding">@dimen/design_navigation_item_icon_padding</item>
  5910. <item name="itemHorizontalPadding">@dimen/design_navigation_item_horizontal_padding</item>
  5911. <item name="android:background">?android:attr/windowBackground</item>
  5912. <item name="android:fitsSystemWindows">true</item>
  5913. <item name="android:maxWidth">@dimen/design_navigation_max_width</item>
  5914. <item name="subheaderInsetStart">?attr/listPreferredItemPaddingLeft</item>
  5915. <item name="subheaderInsetEnd">?attr/listPreferredItemPaddingRight</item>
  5916. <item name="drawerLayoutCornerSize">0dp</item>
  5917. </style>
  5918. <style name="Widget.Design.ScrimInsetsFrameLayout" parent="">
  5919. <item name="insetForeground">#4000</item>
  5920. </style>
  5921. <style name="Widget.Design.Snackbar" parent="android:Widget">
  5922. <item name="android:minWidth">@dimen/design_snackbar_min_width</item>
  5923. <item name="android:maxWidth">@dimen/design_snackbar_max_width</item>
  5924. <item name="android:background">@drawable/design_snackbar_background</item>
  5925. <item name="android:paddingLeft">@dimen/design_snackbar_padding_horizontal</item>
  5926. <item name="android:paddingRight">@dimen/design_snackbar_padding_horizontal</item>
  5927. <item name="elevation">@dimen/design_snackbar_elevation</item>
  5928. <item name="maxActionInlineWidth">@dimen/design_snackbar_action_inline_max_width</item>
  5929. <item name="animationMode">slide</item>
  5930. <item name="actionTextColorAlpha">@dimen/design_snackbar_action_text_color_alpha</item>
  5931. </style>
  5932. <style name="Widget.Design.TabLayout" parent="Base.Widget.Design.TabLayout">
  5933. <item name="tabGravity">fill</item>
  5934. <item name="tabMode">fixed</item>
  5935. <item name="tabIndicatorFullWidth">true</item>
  5936. </style>
  5937. <style name="Widget.Design.TextInputEditText" parent="Widget.AppCompat.EditText">
  5938. <item name="enforceMaterialTheme">false</item>
  5939. <item name="enforceTextAppearance">false</item>
  5940. </style>
  5941. <style name="Widget.Design.TextInputLayout" parent="android:Widget">
  5942. <item name="materialThemeOverlay">@style/ThemeOverlay.Design.TextInputEditText</item>
  5943. <item name="enforceMaterialTheme">false</item>
  5944. <item name="enforceTextAppearance">false</item>
  5945. <item name="boxBackgroundMode">none</item>
  5946. <item name="boxStrokeColor">@color/design_box_stroke_color</item>
  5947. <item name="passwordToggleDrawable">@drawable/design_password_eye</item>
  5948. <item name="passwordToggleTint">@color/design_icon_tint</item>
  5949. <item name="passwordToggleContentDescription">@string/password_toggle_content_description</item>
  5950. <item name="errorIconDrawable">@null</item>
  5951. <item name="endIconTint">@color/design_icon_tint</item>
  5952. <item name="startIconTint">@color/design_icon_tint</item>
  5953. <item name="counterTextAppearance">@style/TextAppearance.Design.Counter</item>
  5954. <item name="counterOverflowTextAppearance">@style/TextAppearance.Design.Counter.Overflow</item>
  5955. <item name="errorTextAppearance">@style/TextAppearance.Design.Error</item>
  5956. <item name="helperTextTextAppearance">@style/TextAppearance.Design.HelperText</item>
  5957. <item name="hintTextAppearance">@style/TextAppearance.Design.Hint</item>
  5958. <item name="placeholderTextAppearance">@style/TextAppearance.Design.Placeholder</item>
  5959. <item name="prefixTextAppearance">@style/TextAppearance.Design.Prefix</item>
  5960. <item name="suffixTextAppearance">@style/TextAppearance.Design.Suffix</item>
  5961. <item name="counterTextColor">@null</item>
  5962. <item name="counterOverflowTextColor">@null</item>
  5963. <item name="errorTextColor">@null</item>
  5964. <item name="helperTextTextColor">@null</item>
  5965. <item name="hintTextColor">@null</item>
  5966. <item name="placeholderTextColor">@null</item>
  5967. <item name="prefixTextColor">@null</item>
  5968. <item name="suffixTextColor">@null</item>
  5969. <item name="shapeAppearance">@null</item>
  5970. <item name="shapeAppearanceOverlay">@null</item>
  5971. </style>
  5972. <style name="Widget.Material3.ActionBar.Solid" parent="Base.Widget.Material3.ActionBar.Solid"/>
  5973. <style name="Widget.Material3.ActionMode" parent="Base.Widget.Material3.ActionMode"/>
  5974. <style name="Widget.Material3.AppBarLayout" parent="Widget.MaterialComponents.AppBarLayout.Surface">
  5975. <item name="liftOnScroll">true</item>
  5976. <!-- On newer API levels, hide shadows while keeping elevation. -->
  5977. <item name="android:outlineAmbientShadowColor" ns1:ignore="NewApi">@android:color/transparent</item>
  5978. <item name="android:outlineSpotShadowColor" ns1:ignore="NewApi">@android:color/transparent</item>
  5979. </style>
  5980. <style name="Widget.Material3.AutoCompleteTextView.FilledBox" parent="Widget.MaterialComponents.AutoCompleteTextView.FilledBox">
  5981. <item name="android:textAppearance">?attr/textAppearanceBodyLarge</item>
  5982. </style>
  5983. <style name="Widget.Material3.AutoCompleteTextView.FilledBox.Dense" parent="Widget.MaterialComponents.AutoCompleteTextView.FilledBox.Dense">
  5984. <item name="android:textAppearance">?attr/textAppearanceBodyLarge</item>
  5985. </style>
  5986. <style name="Widget.Material3.AutoCompleteTextView.OutlinedBox" parent="Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox">
  5987. <item name="android:textAppearance">?attr/textAppearanceBodyLarge</item>
  5988. </style>
  5989. <style name="Widget.Material3.AutoCompleteTextView.OutlinedBox.Dense" parent="Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense">
  5990. <item name="android:textAppearance">?attr/textAppearanceBodyLarge</item>
  5991. </style>
  5992. <style name="Widget.Material3.Badge" parent="Widget.MaterialComponents.Badge">
  5993. <!-- Badge "dot" without text -->
  5994. <item name="badgeRadius">@dimen/m3_badge_radius</item>
  5995. <item name="horizontalOffset">@dimen/m3_badge_horizontal_offset</item>
  5996. <item name="verticalOffset">@dimen/m3_badge_vertical_offset</item>
  5997. <!-- Badge with text -->
  5998. <item name="badgeWithTextRadius">@dimen/m3_badge_with_text_radius</item>
  5999. <item name="horizontalOffsetWithText">@dimen/m3_badge_with_text_horizontal_offset</item>
  6000. <item name="verticalOffsetWithText">@dimen/m3_badge_with_text_vertical_offset</item>
  6001. </style>
  6002. <style name="Widget.Material3.BottomAppBar" parent="Widget.MaterialComponents.BottomAppBar">
  6003. <item name="fabAnimationMode">slide</item>
  6004. <item name="fabCradleMargin">@dimen/m3_bottomappbar_fab_cradle_margin</item>
  6005. <item name="fabCradleRoundedCornerRadius">
  6006. @dimen/m3_bottomappbar_fab_cradle_rounded_corner_radius
  6007. </item>
  6008. <item name="fabCradleVerticalOffset">
  6009. @dimen/m3_bottomappbar_fab_cradle_vertical_offset
  6010. </item>
  6011. <item name="elevation">@dimen/m3_sys_elevation_level2</item>
  6012. <item name="backgroundTint">?attr/colorSurface</item>
  6013. <item name="navigationIconTint">?attr/colorOnSurfaceVariant</item>
  6014. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.BottomAppBar</item>
  6015. </style>
  6016. <style name="Widget.Material3.BottomNavigationView" parent="Widget.MaterialComponents.BottomNavigationView">
  6017. <item name="android:background">?attr/colorSurface</item>
  6018. <item name="backgroundTint">@null</item>
  6019. <item name="elevation">@dimen/m3_sys_elevation_level2</item>
  6020. <item name="itemActiveIndicatorStyle">@style/Widget.Material3.BottomNavigationView.ActiveIndicator</item>
  6021. <item name="itemTextAppearanceInactive">?attr/textAppearanceTitleSmall</item>
  6022. <item name="itemTextAppearanceActive">?attr/textAppearanceTitleSmall</item>
  6023. <item name="itemRippleColor">@color/m3_navigation_bar_ripple_color_selector</item>
  6024. <item name="itemIconTint">@color/m3_navigation_bar_item_with_indicator_icon_tint</item>
  6025. <item name="itemTextColor">@color/m3_navigation_bar_item_with_indicator_label_tint</item>
  6026. <item name="itemPaddingTop">@dimen/m3_bottom_nav_item_padding_top</item>
  6027. <item name="itemPaddingBottom">@dimen/m3_bottom_nav_item_padding_bottom</item>
  6028. <item name="android:minHeight">@dimen/m3_bottom_nav_min_height</item>
  6029. </style>
  6030. <style name="Widget.Material3.BottomNavigationView.ActiveIndicator" parent="">
  6031. <item name="android:width">@dimen/m3_bottom_nav_item_active_indicator_width</item>
  6032. <item name="android:height">@dimen/m3_bottom_nav_item_active_indicator_height</item>
  6033. <item name="marginHorizontal">@dimen/m3_bottom_nav_item_active_indicator_margin_horizontal</item>
  6034. <item name="shapeAppearance">@style/ShapeAppearance.Material3.NavigationBarView.ActiveIndicator</item>
  6035. <item name="android:color">?attr/colorSecondaryContainer</item>
  6036. </style>
  6037. <style name="Widget.Material3.BottomSheet" parent="Widget.MaterialComponents.BottomSheet">
  6038. <item name="android:elevation" ns1:ignore="NewApi">@dimen/m3_bottom_sheet_elevation</item>
  6039. </style>
  6040. <style name="Widget.Material3.BottomSheet.Modal">
  6041. <item name="android:elevation" ns1:ignore="NewApi">@dimen/m3_bottom_sheet_modal_elevation</item>
  6042. </style>
  6043. <style name="Widget.Material3.Button" parent="Widget.MaterialComponents.Button">
  6044. <item name="enforceTextAppearance">false</item>
  6045. <item name="android:maxWidth">@dimen/m3_btn_max_width</item>
  6046. <item name="android:paddingLeft">@dimen/m3_btn_padding_left</item>
  6047. <item name="android:paddingRight">@dimen/m3_btn_padding_right</item>
  6048. <item name="android:paddingTop">@dimen/m3_btn_padding_top</item>
  6049. <item name="android:paddingBottom">@dimen/m3_btn_padding_bottom</item>
  6050. <item name="android:insetTop">@dimen/m3_btn_inset</item>
  6051. <item name="android:insetBottom">@dimen/m3_btn_inset</item>
  6052. <item name="android:textAppearance">?attr/textAppearanceLabelLarge</item>
  6053. <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.Material3.Button</item>
  6054. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Button</item>
  6055. <item name="android:stateListAnimator" ns1:ignore="NewApi">@animator/m3_btn_state_list_anim</item>
  6056. <item name="elevation">@dimen/m3_btn_elevation</item>
  6057. <item name="android:textColor">@color/m3_button_foreground_color_selector</item>
  6058. <item name="iconTint">@color/m3_button_foreground_color_selector</item>
  6059. <item name="iconSize">18dp</item>
  6060. <item name="backgroundTint">@color/m3_button_background_color_selector</item>
  6061. <item name="rippleColor">@color/m3_button_ripple_color_selector</item>
  6062. </style>
  6063. <style name="Widget.Material3.Button.ElevatedButton">
  6064. <item name="android:stateListAnimator" ns1:ignore="NewApi">
  6065. @animator/m3_btn_elevated_btn_state_list_anim
  6066. </item>
  6067. <item name="android:textColor">@color/m3_text_button_foreground_color_selector</item>
  6068. <item name="elevation">@dimen/m3_btn_elevated_btn_elevation</item>
  6069. <item name="iconTint">@color/m3_text_button_foreground_color_selector</item>
  6070. <item name="rippleColor">@color/m3_text_button_ripple_color_selector</item>
  6071. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Button.ElevatedButton</item>
  6072. </style>
  6073. <style name="Widget.Material3.Button.ElevatedButton.Icon">
  6074. <item name="android:paddingLeft">@dimen/m3_btn_icon_btn_padding_left</item>
  6075. <item name="android:paddingRight">@dimen/m3_btn_icon_btn_padding_right</item>
  6076. </style>
  6077. <style name="Widget.Material3.Button.Icon">
  6078. <item name="android:paddingLeft">@dimen/m3_btn_icon_btn_padding_left</item>
  6079. <item name="android:paddingRight">@dimen/m3_btn_icon_btn_padding_right</item>
  6080. </style>
  6081. <style name="Widget.Material3.Button.IconButton" parent="Widget.Material3.Button.TextButton">
  6082. <item name="android:minWidth">@dimen/m3_btn_icon_only_min_width</item>
  6083. <item name="android:paddingLeft">@dimen/m3_btn_icon_only_default_padding</item>
  6084. <item name="android:paddingRight">@dimen/m3_btn_icon_only_default_padding</item>
  6085. <item name="android:paddingTop">@dimen/m3_btn_icon_only_default_padding</item>
  6086. <item name="android:paddingBottom">@dimen/m3_btn_icon_only_default_padding</item>
  6087. <item name="android:insetLeft">@dimen/m3_btn_inset</item>
  6088. <item name="android:insetRight">@dimen/m3_btn_inset</item>
  6089. <item name="iconSize">@dimen/m3_btn_icon_only_default_size</item>
  6090. <item name="iconPadding">@dimen/m3_btn_icon_only_icon_padding</item>
  6091. </style>
  6092. <style name="Widget.Material3.Button.OutlinedButton" parent="Widget.Material3.Button.TextButton">
  6093. <item name="android:paddingLeft">@dimen/m3_btn_padding_left</item>
  6094. <item name="android:paddingRight">@dimen/m3_btn_padding_right</item>
  6095. <item name="strokeColor">@color/m3_button_outline_color_selector</item>
  6096. <item name="strokeWidth">@dimen/m3_btn_stroke_size</item>
  6097. </style>
  6098. <style name="Widget.Material3.Button.OutlinedButton.Icon">
  6099. <item name="android:paddingLeft">@dimen/m3_btn_icon_btn_padding_left</item>
  6100. <item name="android:paddingRight">@dimen/m3_btn_icon_btn_padding_right</item>
  6101. </style>
  6102. <style name="Widget.Material3.Button.TextButton" parent="Widget.MaterialComponents.Button.TextButton">
  6103. <item name="enforceTextAppearance">false</item>
  6104. <item name="android:maxWidth">@dimen/m3_btn_max_width</item>
  6105. <item name="android:paddingLeft">@dimen/m3_btn_text_btn_padding_left</item>
  6106. <item name="android:paddingRight">@dimen/m3_btn_text_btn_padding_right</item>
  6107. <item name="android:paddingTop">@dimen/m3_btn_padding_top</item>
  6108. <item name="android:paddingBottom">@dimen/m3_btn_padding_bottom</item>
  6109. <item name="android:insetTop">@dimen/m3_btn_inset</item>
  6110. <item name="android:insetBottom">@dimen/m3_btn_inset</item>
  6111. <item name="android:textAppearance">?attr/textAppearanceLabelLarge</item>
  6112. <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.Material3.Button</item>
  6113. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Button.TextButton</item>
  6114. <item name="android:textColor">@color/m3_text_button_foreground_color_selector</item>
  6115. <item name="iconTint">@color/m3_text_button_foreground_color_selector</item>
  6116. <item name="backgroundTint">@color/m3_text_button_background_color_selector</item>
  6117. <item name="rippleColor">@color/m3_text_button_ripple_color_selector</item>
  6118. </style>
  6119. <style name="Widget.Material3.Button.TextButton.Dialog">
  6120. <item name="android:minWidth">@dimen/m3_btn_dialog_btn_min_width</item>
  6121. <item name="android:layout_marginLeft">@dimen/m3_btn_dialog_btn_spacing</item>
  6122. <item name="android:layout_marginStart">@dimen/m3_btn_dialog_btn_spacing</item>
  6123. <item name="android:lines">1</item>
  6124. <item name="android:ellipsize">end</item>
  6125. <item name="android:singleLine">true</item>
  6126. </style>
  6127. <style name="Widget.Material3.Button.TextButton.Dialog.Flush">
  6128. <item name="android:layout_marginStart">0dp</item>
  6129. <item name="android:layout_marginLeft">0dp</item>
  6130. </style>
  6131. <style name="Widget.Material3.Button.TextButton.Dialog.Icon">
  6132. <item name="android:paddingLeft">@dimen/m3_btn_text_btn_icon_padding_left</item>
  6133. <item name="android:paddingRight">@dimen/m3_btn_text_btn_icon_padding_right</item>
  6134. </style>
  6135. <style name="Widget.Material3.Button.TextButton.Icon">
  6136. <item name="android:paddingLeft">@dimen/m3_btn_text_btn_icon_padding_left</item>
  6137. <item name="android:paddingRight">@dimen/m3_btn_text_btn_icon_padding_right</item>
  6138. </style>
  6139. <style name="Widget.Material3.Button.TextButton.Snackbar">
  6140. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Button.TextButton.Snackbar</item>
  6141. </style>
  6142. <style name="Widget.Material3.Button.TonalButton">
  6143. <item name="rippleColor">@color/m3_tonal_button_ripple_color_selector</item>
  6144. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Button.TonalButton</item>
  6145. </style>
  6146. <style name="Widget.Material3.Button.TonalButton.Icon">
  6147. <item name="android:paddingLeft">@dimen/m3_btn_icon_btn_padding_left</item>
  6148. <item name="android:paddingRight">@dimen/m3_btn_icon_btn_padding_right</item>
  6149. </style>
  6150. <style name="Widget.Material3.Button.UnelevatedButton">
  6151. <item name="android:stateListAnimator" ns1:ignore="NewApi">@animator/mtrl_btn_unelevated_state_list_anim</item>
  6152. <item name="elevation">0dp</item>
  6153. </style>
  6154. <style name="Widget.Material3.CardView.Elevated" parent="Base.Widget.Material3.CardView">
  6155. <item name="android:stateListAnimator" ns1:ignore="NewApi">
  6156. @animator/m3_card_elevated_state_list_anim
  6157. </item>
  6158. <item name="cardElevation">@dimen/m3_card_elevated_elevation</item>
  6159. <item name="strokeWidth">0dp</item>
  6160. </style>
  6161. <style name="Widget.Material3.CardView.Filled" parent="Base.Widget.Material3.CardView">
  6162. <item name="strokeWidth">0dp</item>
  6163. <item name="cardBackgroundColor">?attr/colorSurfaceVariant</item>
  6164. </style>
  6165. <style name="Widget.Material3.CardView.Outlined" parent="Base.Widget.Material3.CardView"/>
  6166. <style name="Widget.Material3.CheckedTextView" parent="Widget.MaterialComponents.CheckedTextView">
  6167. <item name="android:textAppearance">?attr/textAppearanceBodyLarge</item>
  6168. <item name="android:textColor">?attr/colorOnSurfaceVariant</item>
  6169. </style>
  6170. <style name="Widget.Material3.Chip.Assist" parent="Base.Widget.Material3.Chip">
  6171. <item name="android:checkable">false</item>
  6172. <item name="chipIconVisible">true</item>
  6173. <item name="checkedIconVisible">false</item>
  6174. <item name="closeIconVisible">false</item>
  6175. <item name="android:textColor">@color/m3_chip_assist_text_color</item>
  6176. <item name="chipMinHeight">32dp</item>
  6177. <item name="chipStartPadding">8dp</item>
  6178. <item name="iconStartPadding">0dp</item>
  6179. <item name="iconEndPadding">0dp</item>
  6180. <item name="textStartPadding">8dp</item>
  6181. <item name="textEndPadding">8dp</item>
  6182. <item name="closeIconStartPadding">0dp</item>
  6183. <item name="closeIconEndPadding">0dp</item>
  6184. <item name="chipEndPadding">8dp</item>
  6185. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Chip.Assist</item>
  6186. </style>
  6187. <style name="Widget.Material3.Chip.Assist.Elevated">
  6188. <item name="android:elevation" ns1:ignore="NewApi">
  6189. @dimen/m3_chip_elevated_elevation
  6190. </item>
  6191. <item name="android:stateListAnimator" ns1:ignore="NewApi">
  6192. @animator/m3_elevated_chip_state_list_anim
  6193. </item>
  6194. <item name="chipStrokeColor">@android:color/transparent</item>
  6195. <item name="chipBackgroundColor">@color/m3_elevated_chip_background_color</item>
  6196. </style>
  6197. <style name="Widget.Material3.Chip.Filter" parent="Base.Widget.Material3.Chip">
  6198. <item name="android:checkable">true</item>
  6199. <item name="chipIconVisible">false</item>
  6200. <item name="closeIconVisible">false</item>
  6201. <item name="checkedIcon">@drawable/ic_m3_chip_check</item>
  6202. <item name="chipMinHeight">32dp</item>
  6203. <item name="chipStartPadding">8dp</item>
  6204. <item name="iconStartPadding">0dp</item>
  6205. <!-- The existence of a chip icon takes away padding before the text. -->
  6206. <item name="iconEndPadding">-2dp</item>
  6207. <item name="textStartPadding">8dp</item>
  6208. <item name="textEndPadding">6dp</item>
  6209. <!-- The existence of a chip icon takes away padding after the text. -->
  6210. <item name="closeIconStartPadding">-2dp</item>
  6211. <item name="closeIconEndPadding">0dp</item>
  6212. <item name="chipEndPadding">10dp</item>
  6213. </style>
  6214. <style name="Widget.Material3.Chip.Filter.Elevated">
  6215. <item name="android:elevation" ns1:ignore="NewApi">
  6216. @dimen/m3_chip_elevated_elevation</item>
  6217. <item name="android:stateListAnimator" ns1:ignore="NewApi">
  6218. @animator/m3_elevated_chip_state_list_anim
  6219. </item>
  6220. <item name="chipStrokeColor">@android:color/transparent</item>
  6221. <item name="chipBackgroundColor">@color/m3_elevated_chip_background_color</item>
  6222. </style>
  6223. <style name="Widget.Material3.Chip.Input" parent="Base.Widget.Material3.Chip">
  6224. <item name="android:checkable">true</item>
  6225. <item name="chipMinHeight">32dp</item>
  6226. <item name="chipIconSize">24dp</item>
  6227. <item name="chipStartPadding">4dp</item>
  6228. <item name="iconStartPadding">0dp</item>
  6229. <!-- The existence of a chip icon takes away padding before the text. -->
  6230. <item name="iconEndPadding">0dp</item>
  6231. <item name="textStartPadding">8dp</item>
  6232. <item name="textEndPadding">8dp</item>
  6233. <item name="closeIconStartPadding">0dp</item>
  6234. <item name="closeIconEndPadding">4dp</item>
  6235. <item name="chipEndPadding">4dp</item>
  6236. </style>
  6237. <style name="Widget.Material3.Chip.Input.Elevated">
  6238. <item name="android:elevation" ns1:ignore="NewApi">
  6239. @dimen/m3_chip_elevated_elevation
  6240. </item>
  6241. <item name="android:stateListAnimator" ns1:ignore="NewApi">
  6242. @animator/m3_elevated_chip_state_list_anim
  6243. </item>
  6244. <item name="chipStrokeColor">@android:color/transparent</item>
  6245. <item name="chipBackgroundColor">@color/m3_elevated_chip_background_color</item>
  6246. </style>
  6247. <style name="Widget.Material3.Chip.Input.Icon" parent="Widget.Material3.Chip.Input">
  6248. <item name="chipIconSize">@dimen/m3_chip_icon_size</item>
  6249. <item name="iconStartPadding">4dp</item>
  6250. </style>
  6251. <style name="Widget.Material3.Chip.Input.Icon.Elevated">
  6252. <item name="android:elevation" ns1:ignore="NewApi">
  6253. @dimen/m3_chip_elevated_elevation
  6254. </item>
  6255. <item name="android:stateListAnimator" ns1:ignore="NewApi">
  6256. @animator/m3_elevated_chip_state_list_anim
  6257. </item>
  6258. <item name="chipStrokeColor">@android:color/transparent</item>
  6259. <item name="chipBackgroundColor">@color/m3_elevated_chip_background_color</item>
  6260. </style>
  6261. <style name="Widget.Material3.Chip.Suggestion" parent="Base.Widget.Material3.Chip">
  6262. <item name="android:checkable">true</item>
  6263. <item name="chipIconVisible">false</item>
  6264. <item name="checkedIconVisible">false</item>
  6265. <item name="closeIconVisible">false</item>
  6266. <item name="chipMinHeight">32dp</item>
  6267. <item name="chipStartPadding">8dp</item>
  6268. <item name="iconStartPadding">0dp</item>
  6269. <!-- The existence of a chip icon takes away padding before the text. -->
  6270. <item name="iconEndPadding">-2dp</item>
  6271. <item name="textStartPadding">8dp</item>
  6272. <item name="textEndPadding">6dp</item>
  6273. <!-- The existence of a chip icon takes away padding after the text. -->
  6274. <item name="closeIconStartPadding">-2dp</item>
  6275. <item name="closeIconEndPadding">0dp</item>
  6276. <item name="chipEndPadding">10dp</item>
  6277. </style>
  6278. <style name="Widget.Material3.Chip.Suggestion.Elevated">
  6279. <item name="android:elevation" ns1:ignore="NewApi">
  6280. @dimen/m3_chip_elevated_elevation
  6281. </item>
  6282. <item name="android:stateListAnimator" ns1:ignore="NewApi">
  6283. @animator/m3_elevated_chip_state_list_anim
  6284. </item>
  6285. <item name="chipStrokeColor">@android:color/transparent</item>
  6286. <item name="chipBackgroundColor">@color/m3_elevated_chip_background_color</item>
  6287. </style>
  6288. <style name="Widget.Material3.ChipGroup" parent="Widget.MaterialComponents.ChipGroup">
  6289. <item name="chipSpacingVertical">8dp</item>
  6290. </style>
  6291. <style name="Widget.Material3.CircularProgressIndicator" parent="Widget.MaterialComponents.CircularProgressIndicator"/>
  6292. <style name="Widget.Material3.CircularProgressIndicator.ExtraSmall" parent="Widget.MaterialComponents.CircularProgressIndicator.ExtraSmall"/>
  6293. <style name="Widget.Material3.CircularProgressIndicator.Medium" parent="Widget.MaterialComponents.CircularProgressIndicator.Medium"/>
  6294. <style name="Widget.Material3.CircularProgressIndicator.Small" parent="Widget.MaterialComponents.CircularProgressIndicator.Small"/>
  6295. <style name="Widget.Material3.CollapsingToolbar" parent="Base.Widget.Material3.CollapsingToolbar">
  6296. <item name="scrimVisibleHeightTrigger">@dimen/m3_appbar_scrim_height_trigger</item>
  6297. <item name="expandedTitleTextAppearance">?attr/textAppearanceHeadlineSmall</item>
  6298. </style>
  6299. <style name="Widget.Material3.CollapsingToolbar.Large" parent="Base.Widget.Material3.CollapsingToolbar">
  6300. <item name="scrimVisibleHeightTrigger">@dimen/m3_appbar_scrim_height_trigger_large</item>
  6301. <item name="expandedTitleTextAppearance">?attr/textAppearanceHeadlineMedium</item>
  6302. </style>
  6303. <style name="Widget.Material3.CollapsingToolbar.Medium" parent="Base.Widget.Material3.CollapsingToolbar">
  6304. <item name="scrimVisibleHeightTrigger">@dimen/m3_appbar_scrim_height_trigger_medium</item>
  6305. <item name="expandedTitleTextAppearance">?attr/textAppearanceHeadlineSmall</item>
  6306. </style>
  6307. <style name="Widget.Material3.CompoundButton.CheckBox" parent="Base.Widget.Material3.CompoundButton.CheckBox"/>
  6308. <style name="Widget.Material3.CompoundButton.RadioButton" parent="Base.Widget.Material3.CompoundButton.RadioButton"/>
  6309. <style name="Widget.Material3.CompoundButton.Switch" parent="Base.Widget.Material3.CompoundButton.Switch"/>
  6310. <style name="Widget.Material3.DrawerLayout" parent="android:Widget">
  6311. <item name="elevation">@dimen/m3_sys_elevation_level1</item>
  6312. </style>
  6313. <style name="Widget.Material3.ExtendedFloatingActionButton.Icon.Primary" parent="Base.Widget.Material3.ExtendedFloatingActionButton.Icon">
  6314. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Primary</item>
  6315. </style>
  6316. <style name="Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary" parent="Base.Widget.Material3.ExtendedFloatingActionButton.Icon">
  6317. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Secondary</item>
  6318. </style>
  6319. <style name="Widget.Material3.ExtendedFloatingActionButton.Icon.Surface" parent="Base.Widget.Material3.ExtendedFloatingActionButton.Icon">
  6320. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Surface</item>
  6321. </style>
  6322. <style name="Widget.Material3.ExtendedFloatingActionButton.Icon.Tertiary" parent="Base.Widget.Material3.ExtendedFloatingActionButton.Icon">
  6323. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Tertiary</item>
  6324. </style>
  6325. <style name="Widget.Material3.ExtendedFloatingActionButton.Primary" parent="Base.Widget.Material3.ExtendedFloatingActionButton">
  6326. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Primary</item>
  6327. </style>
  6328. <style name="Widget.Material3.ExtendedFloatingActionButton.Secondary" parent="Base.Widget.Material3.ExtendedFloatingActionButton">
  6329. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Secondary</item>
  6330. </style>
  6331. <style name="Widget.Material3.ExtendedFloatingActionButton.Surface" parent="Base.Widget.Material3.ExtendedFloatingActionButton">
  6332. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Surface</item>
  6333. </style>
  6334. <style name="Widget.Material3.ExtendedFloatingActionButton.Tertiary" parent="Base.Widget.Material3.ExtendedFloatingActionButton">
  6335. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Tertiary</item>
  6336. </style>
  6337. <style name="Widget.Material3.FloatingActionButton.Large.Primary" parent="Base.Widget.Material3.FloatingActionButton.Large">
  6338. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Primary</item>
  6339. </style>
  6340. <style name="Widget.Material3.FloatingActionButton.Large.Secondary" parent="Base.Widget.Material3.FloatingActionButton.Large">
  6341. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Secondary</item>
  6342. </style>
  6343. <style name="Widget.Material3.FloatingActionButton.Large.Surface" parent="Base.Widget.Material3.FloatingActionButton.Large">
  6344. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Surface</item>
  6345. </style>
  6346. <style name="Widget.Material3.FloatingActionButton.Large.Tertiary" parent="Base.Widget.Material3.FloatingActionButton.Large">
  6347. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Tertiary</item>
  6348. </style>
  6349. <style name="Widget.Material3.FloatingActionButton.Primary" parent="Base.Widget.Material3.FloatingActionButton">
  6350. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Primary</item>
  6351. </style>
  6352. <style name="Widget.Material3.FloatingActionButton.Secondary" parent="Base.Widget.Material3.FloatingActionButton">
  6353. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Secondary</item>
  6354. </style>
  6355. <style name="Widget.Material3.FloatingActionButton.Surface" parent="Base.Widget.Material3.FloatingActionButton">
  6356. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Surface</item>
  6357. </style>
  6358. <style name="Widget.Material3.FloatingActionButton.Tertiary" parent="Base.Widget.Material3.FloatingActionButton">
  6359. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.FloatingActionButton.Tertiary</item>
  6360. </style>
  6361. <style name="Widget.Material3.Light.ActionBar.Solid" parent="Base.Widget.Material3.Light.ActionBar.Solid"/>
  6362. <style name="Widget.Material3.LinearProgressIndicator" parent="Widget.MaterialComponents.LinearProgressIndicator">
  6363. <item name="trackColor">?attr/colorSurfaceVariant</item>
  6364. </style>
  6365. <style name="Widget.Material3.MaterialCalendar" parent="Widget.MaterialComponents.MaterialCalendar">
  6366. <item name="android:windowFullscreen">false</item>
  6367. <item name="dayStyle">@style/Widget.Material3.MaterialCalendar.Day</item>
  6368. <item name="dayInvalidStyle">@style/Widget.Material3.MaterialCalendar.Day.Invalid</item>
  6369. <item name="daySelectedStyle">@style/Widget.Material3.MaterialCalendar.Day.Selected</item>
  6370. <item name="dayTodayStyle">@style/Widget.Material3.MaterialCalendar.Day.Today</item>
  6371. <item name="yearStyle">@style/Widget.Material3.MaterialCalendar.Year</item>
  6372. <item name="yearSelectedStyle">@style/Widget.Material3.MaterialCalendar.Year.Selected</item>
  6373. <item name="yearTodayStyle">@style/Widget.Material3.MaterialCalendar.Year.Today</item>
  6374. <item name="rangeFillColor">?attr/colorSurfaceVariant</item>
  6375. </style>
  6376. <style name="Widget.Material3.MaterialCalendar.Day" parent="Widget.Material3.MaterialCalendar.Item">
  6377. <item name="android:width">@dimen/mtrl_calendar_day_width</item>
  6378. <item name="android:height">@dimen/mtrl_calendar_day_height</item>
  6379. <item name="android:insetTop">@dimen/mtrl_calendar_day_vertical_padding</item>
  6380. <item name="android:insetBottom">@dimen/mtrl_calendar_day_vertical_padding</item>
  6381. <item name="android:insetLeft">@dimen/mtrl_calendar_day_horizontal_padding</item>
  6382. <item name="android:insetRight">@dimen/mtrl_calendar_day_horizontal_padding</item>
  6383. </style>
  6384. <style name="Widget.Material3.MaterialCalendar.Day.Invalid">
  6385. <item name="itemTextColor">@color/m3_calendar_item_disabled_text</item>
  6386. <item name="itemStrokeWidth">0dp</item>
  6387. </style>
  6388. <style name="Widget.Material3.MaterialCalendar.Day.Selected">
  6389. <item name="itemFillColor">?attr/colorPrimary</item>
  6390. <item name="itemTextColor">?attr/colorOnPrimary</item>
  6391. <item name="itemStrokeWidth">0dp</item>
  6392. </style>
  6393. <style name="Widget.Material3.MaterialCalendar.Day.Today">
  6394. <item name="itemTextColor">?attr/colorPrimary</item>
  6395. <item name="itemStrokeColor">?attr/colorPrimary</item>
  6396. <item name="itemStrokeWidth">@dimen/mtrl_calendar_day_today_stroke</item>
  6397. </style>
  6398. <style name="Widget.Material3.MaterialCalendar.DayOfWeekLabel" parent="Widget.MaterialComponents.MaterialCalendar.DayOfWeekLabel">
  6399. <item name="android:textColor">?attr/colorOnSurfaceVariant</item>
  6400. </style>
  6401. <style name="Widget.Material3.MaterialCalendar.DayTextView" parent="Widget.MaterialComponents.MaterialCalendar.DayTextView">
  6402. <item name="android:textAppearance">?attr/textAppearanceBodyMedium</item>
  6403. </style>
  6404. <style name="Widget.Material3.MaterialCalendar.Fullscreen">
  6405. <item name="android:windowFullscreen">true</item>
  6406. <item name="shapeAppearanceOverlay">
  6407. @style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Window.Fullscreen
  6408. </item>
  6409. </style>
  6410. <style name="Widget.Material3.MaterialCalendar.HeaderCancelButton" parent="Widget.Material3.Button.TextButton">
  6411. <item name="iconTint">?attr/colorOnSurfaceVariant</item>
  6412. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.MaterialCalendar.HeaderCancelButton</item>
  6413. </style>
  6414. <style name="Widget.Material3.MaterialCalendar.HeaderDivider" parent="Widget.MaterialComponents.MaterialCalendar.HeaderDivider">
  6415. <item name="android:visibility">gone</item>
  6416. </style>
  6417. <style name="Widget.Material3.MaterialCalendar.HeaderLayout" parent="Widget.MaterialComponents.MaterialCalendar.HeaderLayout">
  6418. <item name="android:background">@android:color/transparent</item>
  6419. </style>
  6420. <style name="Widget.Material3.MaterialCalendar.HeaderSelection" parent="Widget.MaterialComponents.MaterialCalendar.HeaderSelection">
  6421. <item name="android:textAppearance">?attr/textAppearanceHeadlineLarge</item>
  6422. <item name="android:textColor">?attr/colorOnSurface</item>
  6423. </style>
  6424. <style name="Widget.Material3.MaterialCalendar.HeaderSelection.Fullscreen">
  6425. <item name="android:textAppearance">?attr/textAppearanceHeadlineSmall</item>
  6426. <item name="android:maxLines">1</item>
  6427. <item name="autoSizeMaxTextSize">20sp</item>
  6428. </style>
  6429. <style name="Widget.Material3.MaterialCalendar.HeaderTitle" parent="Widget.MaterialComponents.MaterialCalendar.HeaderTitle">
  6430. <item name="android:textColor">?attr/colorOnSurfaceVariant</item>
  6431. <item name="android:textAppearance">?attr/textAppearanceLabelMedium</item>
  6432. </style>
  6433. <style name="Widget.Material3.MaterialCalendar.HeaderToggleButton" parent="Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton">
  6434. <item name="android:tint">?attr/colorOnSurfaceVariant</item>
  6435. </style>
  6436. <style name="Widget.Material3.MaterialCalendar.Item" parent="">
  6437. <item name="itemFillColor">@android:color/transparent</item>
  6438. <item name="itemTextColor">?attr/colorOnSurface</item>
  6439. <item name="itemStrokeColor">@color/m3_calendar_item_stroke_color</item>
  6440. <item name="itemStrokeWidth">1dp</item>
  6441. <item name="itemShapeAppearance">?attr/shapeAppearanceSmallComponent</item>
  6442. <item name="itemShapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day</item>
  6443. </style>
  6444. <style name="Widget.Material3.MaterialCalendar.MonthNavigationButton" parent="Base.Widget.Material3.MaterialCalendar.NavigationButton">
  6445. <item name="iconPadding">0dp</item>
  6446. <item name="iconGravity">textStart</item>
  6447. </style>
  6448. <style name="Widget.Material3.MaterialCalendar.MonthTextView" parent="Widget.MaterialComponents.MaterialCalendar.MonthTextView">
  6449. <item name="android:textAppearance">?attr/textAppearanceTitleSmall</item>
  6450. <item name="android:textColor">?attr/colorOnSurfaceVariant</item>
  6451. </style>
  6452. <style name="Widget.Material3.MaterialCalendar.Year" parent="Widget.Material3.MaterialCalendar.Item">
  6453. <item name="itemShapeAppearanceOverlay">
  6454. @style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Year
  6455. </item>
  6456. <item name="android:width">@dimen/mtrl_calendar_year_width</item>
  6457. <item name="android:height">@dimen/mtrl_calendar_year_height</item>
  6458. <item name="android:insetTop">@dimen/mtrl_calendar_year_vertical_padding</item>
  6459. <item name="android:insetBottom">@dimen/mtrl_calendar_year_vertical_padding</item>
  6460. <item name="android:insetLeft">@dimen/mtrl_calendar_year_horizontal_padding</item>
  6461. <item name="android:insetRight">@dimen/mtrl_calendar_year_horizontal_padding</item>
  6462. </style>
  6463. <style name="Widget.Material3.MaterialCalendar.Year.Selected">
  6464. <item name="itemFillColor">?attr/colorPrimary</item>
  6465. <item name="itemTextColor">?attr/colorOnPrimary</item>
  6466. <item name="itemStrokeWidth">0dp</item>
  6467. </style>
  6468. <style name="Widget.Material3.MaterialCalendar.Year.Today">
  6469. <item name="itemTextColor">?attr/colorPrimary</item>
  6470. <item name="itemStrokeColor">?attr/colorPrimary</item>
  6471. <item name="itemStrokeWidth">@dimen/mtrl_calendar_day_today_stroke</item>
  6472. </style>
  6473. <style name="Widget.Material3.MaterialCalendar.YearNavigationButton" parent="Base.Widget.Material3.MaterialCalendar.NavigationButton"/>
  6474. <style name="Widget.Material3.MaterialDivider" parent="Widget.MaterialComponents.MaterialDivider">
  6475. <item name="dividerColor">?attr/colorOutline</item>
  6476. </style>
  6477. <style name="Widget.Material3.MaterialDivider.Heavy">
  6478. <item name="dividerThickness">@dimen/m3_divider_heavy_thickness</item>
  6479. </style>
  6480. <style name="Widget.Material3.MaterialTimePicker" parent="Widget.MaterialComponents.TimePicker"/>
  6481. <style name="Widget.Material3.MaterialTimePicker.Button" parent="Widget.MaterialComponents.TimePicker.Button">
  6482. <item name="android:textAppearance">?attr/textAppearanceTitleMedium</item>
  6483. <item name="android:textColor">@color/m3_timepicker_button_text_color</item>
  6484. <item name="backgroundTint">@color/m3_timepicker_button_background_color</item>
  6485. <item name="iconTint">@color/m3_timepicker_button_text_color</item>
  6486. <item name="rippleColor">@color/m3_timepicker_button_ripple_color</item>
  6487. <item name="strokeColor">?attr/colorOutline</item>
  6488. <!-- Apply theme overlay to disable elevation overlays so we can get a purely colorSurface chip. -->
  6489. <item name="materialThemeOverlay">@style/ThemeOverlay.MaterialComponents.TimePicker.Display</item>
  6490. </style>
  6491. <style name="Widget.Material3.MaterialTimePicker.Clock" parent="Widget.MaterialComponents.TimePicker.Clock">
  6492. <item name="clockFaceBackgroundColor">?attr/colorSurfaceVariant</item>
  6493. <item name="clockHandColor">?attr/colorPrimary</item>
  6494. <item name="clockNumberTextColor">@color/m3_timepicker_clock_text_color</item>
  6495. </style>
  6496. <style name="Widget.Material3.MaterialTimePicker.Display" parent="Widget.MaterialComponents.TimePicker.Display">
  6497. <item name="android:textAppearance">?attr/textAppearanceDisplayLarge</item>
  6498. <item name="android:textColor">@color/m3_timepicker_display_text_color</item>
  6499. <item name="chipBackgroundColor">@color/m3_timepicker_display_background_color</item>
  6500. <item name="rippleColor">@color/m3_timepicker_display_ripple_color</item>
  6501. <item name="chipStrokeColor">@color/m3_timepicker_display_stroke_color</item>
  6502. <item name="chipStrokeWidth">@dimen/m3_timepicker_display_stroke_width</item>
  6503. </style>
  6504. <style name="Widget.Material3.MaterialTimePicker.Display.Divider" parent="Widget.MaterialComponents.TimePicker.Display.Divider">
  6505. <item name="android:textAppearance">?attr/textAppearanceHeadlineMedium</item>
  6506. </style>
  6507. <style name="Widget.Material3.MaterialTimePicker.Display.HelperText" parent="Widget.MaterialComponents.TimePicker.Display.HelperText">
  6508. <item name="android:textAppearance">?attr/textAppearanceBodySmall</item>
  6509. <item name="android:textColor">?attr/colorOnSurfaceVariant</item>
  6510. </style>
  6511. <style name="Widget.Material3.MaterialTimePicker.Display.TextInputEditText" parent="Widget.Material3.TextInputEditText.OutlinedBox">
  6512. <item name="android:textAppearance">?attr/textAppearanceHeadlineMedium</item>
  6513. <item name="android:textSize" ns1:ignore="SpUsage">56dp</item>
  6514. <item name="android:paddingTop">4dp</item>
  6515. <item name="android:paddingBottom">0dp</item>
  6516. <item name="android:inputType">number</item>
  6517. <item name="android:maxLength">2</item>
  6518. <item name="android:textAlignment">center</item>
  6519. <item name="android:minEms">2</item>
  6520. <item name="android:gravity">center</item>
  6521. <item name="android:paddingStart">0dp</item>
  6522. <item name="android:paddingEnd">0dp</item>
  6523. </style>
  6524. <style name="Widget.Material3.MaterialTimePicker.Display.TextInputLayout" parent="Widget.Material3.TextInputLayout.OutlinedBox">
  6525. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.MaterialTimePicker.Display.TextInputEditText</item>
  6526. </style>
  6527. <style name="Widget.Material3.MaterialTimePicker.ImageButton" parent="Widget.MaterialComponents.TimePicker.ImageButton">
  6528. <item name="iconTint">@color/m3_timepicker_secondary_text_button_text_color</item>
  6529. <item name="rippleColor">@color/m3_timepicker_secondary_text_button_ripple_color</item>
  6530. </style>
  6531. <style name="Widget.Material3.NavigationRailView" parent="Widget.MaterialComponents.NavigationRailView">
  6532. <item name="android:minWidth">@dimen/m3_navigation_rail_default_width</item>
  6533. <item name="android:background">?attr/colorSurface</item>
  6534. <item name="backgroundTint">@null</item>
  6535. <item name="elevation">@dimen/m3_sys_elevation_level0</item>
  6536. <item name="itemActiveIndicatorStyle">@style/Widget.Material3.NavigationRailView.ActiveIndicator</item>
  6537. <item name="itemRippleColor">@color/m3_navigation_bar_ripple_color_selector</item>
  6538. <item name="itemIconTint">@color/m3_navigation_bar_item_with_indicator_icon_tint</item>
  6539. <item name="itemTextColor">@color/m3_navigation_bar_item_with_indicator_label_tint</item>
  6540. <item name="itemPaddingTop">@dimen/m3_navigation_rail_item_padding_top</item>
  6541. <item name="itemPaddingBottom">@dimen/m3_navigation_rail_item_padding_bottom</item>
  6542. <item name="itemMinHeight">@dimen/m3_navigation_rail_item_min_height</item>
  6543. <item name="itemTextAppearanceInactive">?attr/textAppearanceTitleSmall</item>
  6544. <item name="itemTextAppearanceActive">?attr/textAppearanceTitleSmall</item>
  6545. </style>
  6546. <style name="Widget.Material3.NavigationRailView.ActiveIndicator" parent="">
  6547. <item name="android:width">@dimen/m3_navigation_rail_item_active_indicator_width</item>
  6548. <item name="android:height">@dimen/m3_navigation_rail_item_active_indicator_height</item>
  6549. <item name="marginHorizontal">@dimen/m3_navigation_rail_item_active_indicator_margin_horizontal</item>
  6550. <item name="shapeAppearance">@style/ShapeAppearance.Material3.NavigationBarView.ActiveIndicator</item>
  6551. <item name="android:color">?attr/colorSecondaryContainer</item>
  6552. </style>
  6553. <style name="Widget.Material3.NavigationView" parent="Widget.MaterialComponents.NavigationView">
  6554. <item name="subheaderColor">?attr/colorOnSurfaceVariant</item>
  6555. <item name="subheaderTextAppearance">?attr/textAppearanceTitleSmall</item>
  6556. <item name="elevation">@dimen/m3_sys_elevation_level0</item>
  6557. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.NavigationView</item>
  6558. <item name="itemShapeAppearanceOverlay">@style/ShapeAppearanceOverlay.Material3.NavigationView.Item</item>
  6559. <item name="itemShapeInsetStart">@dimen/m3_navigation_item_shape_inset_start</item>
  6560. <item name="itemShapeInsetTop">@dimen/m3_navigation_item_shape_inset_top</item>
  6561. <item name="itemShapeInsetEnd">@dimen/m3_navigation_item_shape_inset_end</item>
  6562. <item name="itemShapeInsetBottom">@dimen/m3_navigation_item_shape_inset_bottom</item>
  6563. <item name="itemIconPadding">@dimen/m3_navigation_item_icon_padding</item>
  6564. <item name="itemHorizontalPadding">@dimen/m3_navigation_item_horizontal_padding</item>
  6565. <item name="itemVerticalPadding">@dimen/m3_navigation_item_vertical_padding</item>
  6566. <item name="itemTextAppearance">?attr/textAppearanceLabelLarge</item>
  6567. <item name="itemIconTint">@color/m3_navigation_item_icon_tint</item>
  6568. <item name="itemShapeFillColor">@color/m3_navigation_item_background_color</item>
  6569. <item name="itemTextColor">@color/m3_navigation_item_text_color</item>
  6570. <item name="topInsetScrimEnabled">false</item>
  6571. <item name="bottomInsetScrimEnabled">false</item>
  6572. <item name="dividerInsetStart">@dimen/m3_navigation_menu_divider_horizontal_padding</item>
  6573. <item name="dividerInsetEnd">@dimen/m3_navigation_menu_divider_horizontal_padding</item>
  6574. <item name="subheaderInsetStart">@dimen/m3_navigation_menu_headline_horizontal_padding</item>
  6575. <item name="subheaderInsetEnd">@dimen/m3_navigation_menu_headline_horizontal_padding</item>
  6576. <item name="drawerLayoutCornerSize">@dimen/m3_navigation_drawer_layout_corner_size</item>
  6577. </style>
  6578. <style name="Widget.Material3.PopupMenu" parent="Widget.MaterialComponents.PopupMenu">
  6579. <item name="android:popupElevation" ns1:ignore="NewApi">@dimen/m3_menu_elevation</item>
  6580. </style>
  6581. <style name="Widget.Material3.PopupMenu.ContextMenu" parent="Widget.MaterialComponents.PopupMenu.ContextMenu">
  6582. <item name="android:popupElevation" ns1:ignore="NewApi">@dimen/m3_menu_elevation</item>
  6583. </style>
  6584. <style name="Widget.Material3.PopupMenu.ListPopupWindow" parent="Widget.MaterialComponents.PopupMenu.ListPopupWindow">
  6585. <item name="android:popupElevation" ns1:ignore="NewApi">@dimen/m3_menu_elevation</item>
  6586. </style>
  6587. <style name="Widget.Material3.PopupMenu.Overflow" parent="Widget.MaterialComponents.PopupMenu.Overflow">
  6588. <item name="android:popupElevation" ns1:ignore="NewApi">@dimen/m3_menu_elevation</item>
  6589. </style>
  6590. <style name="Widget.Material3.Slider" parent="Widget.MaterialComponents.Slider">
  6591. <item name="haloColor">@color/m3_slider_halo_color</item>
  6592. <item name="labelStyle">@style/Widget.Material3.Tooltip</item>
  6593. <item name="thumbColor">@color/m3_slider_thumb_color</item>
  6594. <item name="tickColorActive">@color/m3_slider_inactive_track_color</item>
  6595. <item name="tickColorInactive">@color/m3_slider_active_track_color</item>
  6596. <item name="trackColorActive">@color/m3_slider_active_track_color</item>
  6597. <item name="trackColorInactive">@color/m3_slider_inactive_track_color</item>
  6598. <item name="thumbElevation">@dimen/m3_slider_thumb_elevation</item>
  6599. </style>
  6600. <style name="Widget.Material3.Snackbar" parent="Base.Widget.Material3.Snackbar">
  6601. <!-- Null out the background here so the programmatically defined default Snackbar background
  6602. will be used, which supports the Material color theming attributes. -->
  6603. <item name="android:background">@null</item>
  6604. <item name="android:layout_margin">@dimen/m3_snackbar_margin</item>
  6605. <item name="animationMode">fade</item>
  6606. </style>
  6607. <style name="Widget.Material3.Snackbar.FullWidth" parent="Base.Widget.Material3.Snackbar"/>
  6608. <style name="Widget.Material3.Snackbar.TextView" parent="Widget.MaterialComponents.Snackbar.TextView">
  6609. <item name="android:alpha">@dimen/m3_snackbar_action_text_color_alpha</item>
  6610. <item name="android:textColor">?attr/colorOnSurfaceInverse</item>
  6611. <item name="android:textAppearance">?attr/textAppearanceBodyMedium</item>
  6612. </style>
  6613. <style name="Widget.Material3.TabLayout" parent="Base.Widget.Material3.TabLayout"/>
  6614. <style name="Widget.Material3.TabLayout.OnSurface" parent="Base.Widget.Material3.TabLayout.OnSurface"/>
  6615. <style name="Widget.Material3.TabLayout.Secondary" parent="Base.Widget.Material3.TabLayout.Secondary"/>
  6616. <style name="Widget.Material3.TextInputEditText.FilledBox" parent="Widget.MaterialComponents.TextInputEditText.FilledBox">
  6617. <item name="android:textAppearance">?attr/textAppearanceBodyLarge</item>
  6618. <item name="android:textColor">@color/m3_textfield_input_text_color</item>
  6619. </style>
  6620. <style name="Widget.Material3.TextInputEditText.FilledBox.Dense" parent="Widget.MaterialComponents.TextInputEditText.FilledBox.Dense">
  6621. <item name="android:textAppearance">?attr/textAppearanceBodyLarge</item>
  6622. <item name="android:textColor">@color/m3_textfield_input_text_color</item>
  6623. </style>
  6624. <style name="Widget.Material3.TextInputEditText.OutlinedBox" parent="Widget.MaterialComponents.TextInputEditText.OutlinedBox">
  6625. <item name="android:textAppearance">?attr/textAppearanceBodyLarge</item>
  6626. <item name="android:textColor">@color/m3_textfield_input_text_color</item>
  6627. </style>
  6628. <style name="Widget.Material3.TextInputEditText.OutlinedBox.Dense" parent="Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense">
  6629. <item name="android:textAppearance">?attr/textAppearanceBodyLarge</item>
  6630. <item name="android:textColor">@color/m3_textfield_input_text_color</item>
  6631. </style>
  6632. <style name="Widget.Material3.TextInputLayout.FilledBox" parent="Widget.MaterialComponents.TextInputLayout.FilledBox">
  6633. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.TextInputEditText.FilledBox</item>
  6634. <item name="boxStrokeColor">@color/m3_textfield_stroke_color</item>
  6635. <item name="boxStrokeErrorColor">?attr/colorError</item>
  6636. <item name="boxBackgroundColor">@color/m3_textfield_filled_background_color</item>
  6637. <item name="helperTextTextColor">@color/m3_textfield_indicator_text_color</item>
  6638. <item name="counterTextColor">@color/m3_textfield_indicator_text_color</item>
  6639. <item name="counterOverflowTextColor">?attr/colorError</item>
  6640. <item name="hintTextColor">@color/m3_textfield_label_color</item>
  6641. <item name="android:textColorHint">@color/m3_textfield_label_color</item>
  6642. <item name="placeholderTextColor">@color/m3_textfield_indicator_text_color</item>
  6643. <item name="prefixTextColor">@color/m3_textfield_indicator_text_color</item>
  6644. <item name="suffixTextColor">@color/m3_textfield_indicator_text_color</item>
  6645. <item name="errorTextColor">?attr/colorError</item>
  6646. <item name="errorIconTint">?attr/colorError</item>
  6647. <item name="startIconTint">@color/m3_textfield_indicator_text_color</item>
  6648. <item name="endIconTint">@color/m3_textfield_indicator_text_color</item>
  6649. <item name="counterTextAppearance">?attr/textAppearanceBodySmall</item>
  6650. <item name="counterOverflowTextAppearance">?attr/textAppearanceBodySmall</item>
  6651. <item name="errorTextAppearance">?attr/textAppearanceBodySmall</item>
  6652. <item name="helperTextTextAppearance">?attr/textAppearanceBodySmall</item>
  6653. <item name="hintTextAppearance">?attr/textAppearanceBodySmall</item>
  6654. <item name="placeholderTextAppearance">?attr/textAppearanceBodyLarge</item>
  6655. <item name="prefixTextAppearance">?attr/textAppearanceTitleMedium</item>
  6656. <item name="suffixTextAppearance">?attr/textAppearanceTitleMedium</item>
  6657. <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.Material3.TextField.Filled</item>
  6658. </style>
  6659. <style name="Widget.Material3.TextInputLayout.FilledBox.Dense">
  6660. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.TextInputEditText.FilledBox.Dense</item>
  6661. </style>
  6662. <style name="Widget.Material3.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu">
  6663. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.AutoCompleteTextView.FilledBox.Dense</item>
  6664. <item name="endIconMode">dropdown_menu</item>
  6665. </style>
  6666. <style name="Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu">
  6667. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.AutoCompleteTextView.FilledBox</item>
  6668. <item name="endIconMode">dropdown_menu</item>
  6669. </style>
  6670. <style name="Widget.Material3.TextInputLayout.OutlinedBox" parent="Widget.MaterialComponents.TextInputLayout.OutlinedBox">
  6671. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.TextInputEditText.OutlinedBox</item>
  6672. <item name="boxStrokeColor">@color/m3_textfield_stroke_color</item>
  6673. <item name="boxStrokeErrorColor">?attr/colorError</item>
  6674. <item name="helperTextTextColor">@color/m3_textfield_indicator_text_color</item>
  6675. <item name="counterTextColor">@color/m3_textfield_indicator_text_color</item>
  6676. <item name="counterOverflowTextColor">?attr/colorError</item>
  6677. <item name="hintTextColor">@color/m3_textfield_label_color</item>
  6678. <item name="android:textColorHint">@color/m3_textfield_label_color</item>
  6679. <item name="placeholderTextColor">@color/m3_textfield_indicator_text_color</item>
  6680. <item name="prefixTextColor">@color/m3_textfield_indicator_text_color</item>
  6681. <item name="suffixTextColor">@color/m3_textfield_indicator_text_color</item>
  6682. <item name="errorTextColor">?attr/colorError</item>
  6683. <item name="errorIconTint">?attr/colorError</item>
  6684. <item name="startIconTint">@color/m3_textfield_indicator_text_color</item>
  6685. <item name="endIconTint">@color/m3_textfield_indicator_text_color</item>
  6686. <item name="counterTextAppearance">?attr/textAppearanceBodySmall</item>
  6687. <item name="counterOverflowTextAppearance">?attr/textAppearanceBodySmall</item>
  6688. <item name="errorTextAppearance">?attr/textAppearanceBodySmall</item>
  6689. <item name="helperTextTextAppearance">?attr/textAppearanceBodySmall</item>
  6690. <item name="hintTextAppearance">?attr/textAppearanceBodySmall</item>
  6691. <item name="placeholderTextAppearance">?attr/textAppearanceBodyLarge</item>
  6692. <item name="prefixTextAppearance">?attr/textAppearanceTitleMedium</item>
  6693. <item name="suffixTextAppearance">?attr/textAppearanceTitleMedium</item>
  6694. <item name="shapeAppearanceOverlay">?attr/shapeAppearanceSmallComponent</item>
  6695. </style>
  6696. <style name="Widget.Material3.TextInputLayout.OutlinedBox.Dense">
  6697. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.TextInputEditText.OutlinedBox.Dense</item>
  6698. </style>
  6699. <style name="Widget.Material3.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu">
  6700. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox.Dense</item>
  6701. <item name="endIconMode">dropdown_menu</item>
  6702. </style>
  6703. <style name="Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu">
  6704. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox</item>
  6705. <item name="endIconMode">dropdown_menu</item>
  6706. </style>
  6707. <style name="Widget.Material3.Toolbar" parent="Widget.AppCompat.Toolbar">
  6708. <item name="titleTextAppearance">?attr/textAppearanceTitleLarge</item>
  6709. <item name="subtitleTextAppearance">?attr/textAppearanceTitleMedium</item>
  6710. <item name="contentInsetStartWithNavigation">0dp</item>
  6711. </style>
  6712. <style name="Widget.Material3.Toolbar.OnSurface">
  6713. <item name="titleTextColor">?attr/colorOnSurface</item>
  6714. <item name="subtitleTextColor">?attr/colorOnSurfaceVariant</item>
  6715. <item name="navigationIconTint">?attr/colorOnSurface</item>
  6716. <item name="materialThemeOverlay">@style/ThemeOverlay.Material3.Toolbar.Surface</item>
  6717. </style>
  6718. <style name="Widget.Material3.Toolbar.Surface" parent="Widget.Material3.Toolbar.OnSurface">
  6719. <item name="android:background">?attr/colorSurface</item>
  6720. <!-- On newer API levels, hide shadows while keeping elevation. -->
  6721. <item name="android:outlineAmbientShadowColor" ns1:ignore="NewApi">@android:color/transparent</item>
  6722. <item name="android:outlineSpotShadowColor" ns1:ignore="NewApi">@android:color/transparent</item>
  6723. </style>
  6724. <style name="Widget.Material3.Tooltip" parent="Widget.MaterialComponents.Tooltip">
  6725. <item name="android:textAppearance">?attr/textAppearanceBodySmall</item>
  6726. <item name="android:textColor">?attr/colorOnPrimary</item>
  6727. <item name="backgroundTint">?attr/colorPrimary</item>
  6728. <item name="android:padding">4dp</item>
  6729. <item name="android:minWidth">28dp</item>
  6730. <item name="android:minHeight">28dp</item>
  6731. <item name="shapeAppearance">@style/ShapeAppearance.Material3.Tooltip</item>
  6732. </style>
  6733. <style name="Widget.MaterialComponents.ActionBar.Primary" parent="Widget.AppCompat.ActionBar.Solid">
  6734. <item name="background">?attr/colorPrimary</item>
  6735. <item name="elevation">@dimen/design_appbar_elevation</item>
  6736. </style>
  6737. <style name="Widget.MaterialComponents.ActionBar.PrimarySurface" parent="Widget.MaterialComponents.ActionBar.Primary"/>
  6738. <style name="Widget.MaterialComponents.ActionBar.Solid" parent="Widget.AppCompat.ActionBar.Solid">
  6739. <item name="titleTextStyle">?attr/textAppearanceHeadline6</item>
  6740. <item name="subtitleTextStyle">?attr/textAppearanceSubtitle1</item>
  6741. <!-- Overrides minimum height in landscape to avoid headline6 and subtitle1 height concerns. -->
  6742. <item name="android:minHeight">@dimen/mtrl_toolbar_default_height</item>
  6743. <item name="maxButtonHeight">@dimen/mtrl_toolbar_default_height</item>
  6744. </style>
  6745. <style name="Widget.MaterialComponents.ActionBar.Surface" parent="Widget.AppCompat.Light.ActionBar.Solid">
  6746. <item name="background">?attr/colorSurface</item>
  6747. <item name="elevation">0dp</item>
  6748. </style>
  6749. <style name="Widget.MaterialComponents.AppBarLayout.Primary" parent="Widget.Design.AppBarLayout"/>
  6750. <style name="Widget.MaterialComponents.AppBarLayout.PrimarySurface" parent="Widget.MaterialComponents.AppBarLayout.Primary"/>
  6751. <style name="Widget.MaterialComponents.AppBarLayout.Surface" parent="Widget.Design.AppBarLayout">
  6752. <item name="android:background">?attr/colorSurface</item>
  6753. </style>
  6754. <style name="Widget.MaterialComponents.AutoCompleteTextView.FilledBox" parent="Base.Widget.MaterialComponents.AutoCompleteTextView">
  6755. <!-- Padding values that total 34dp to visually match the spec. -->
  6756. <item name="android:paddingTop">24dp</item>
  6757. <item name="android:paddingBottom">10dp</item>
  6758. </style>
  6759. <style name="Widget.MaterialComponents.AutoCompleteTextView.FilledBox.Dense">
  6760. <!-- Dense layout height is 54dp so we need a total of 32dp of top and bottom padding. -->
  6761. <item name="android:paddingTop">24dp</item>
  6762. <item name="android:paddingBottom">8dp</item>
  6763. </style>
  6764. <style name="Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox" parent="Base.Widget.MaterialComponents.AutoCompleteTextView"/>
  6765. <style name="Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense">
  6766. <item name="android:paddingTop">13dp</item>
  6767. <item name="android:paddingBottom">13dp</item>
  6768. </style>
  6769. <style name="Widget.MaterialComponents.Badge" parent="android:Widget">
  6770. <item name="badgeRadius">@dimen/mtrl_badge_radius</item>
  6771. <item name="badgeWidePadding">@dimen/mtrl_badge_long_text_horizontal_padding</item>
  6772. <item name="badgeWithTextRadius">@dimen/mtrl_badge_with_text_radius</item>
  6773. <item name="backgroundColor">?attr/colorError</item>
  6774. <item name="maxCharacterCount">@integer/mtrl_badge_max_character_count</item>
  6775. <item name="badgeGravity">TOP_END</item>
  6776. </style>
  6777. <style name="Widget.MaterialComponents.BottomAppBar" parent="Widget.AppCompat.Toolbar">
  6778. <item name="enforceMaterialTheme">true</item>
  6779. <item name="backgroundTint">?attr/colorSurface</item>
  6780. <item name="fabCradleMargin">@dimen/mtrl_bottomappbar_fab_cradle_margin</item>
  6781. <item name="fabCradleRoundedCornerRadius">
  6782. @dimen/mtrl_bottomappbar_fab_cradle_rounded_corner_radius
  6783. </item>
  6784. <item name="fabCradleVerticalOffset">@dimen/mtrl_bottomappbar_fab_cradle_vertical_offset</item>
  6785. <item name="android:minHeight">@dimen/mtrl_bottomappbar_height</item>
  6786. <item name="maxButtonHeight">@dimen/mtrl_bottomappbar_height</item>
  6787. <item name="elevation">8dp</item>
  6788. <item name="paddingBottomSystemWindowInsets">true</item>
  6789. <item name="paddingLeftSystemWindowInsets">true</item>
  6790. <item name="paddingRightSystemWindowInsets">true</item>
  6791. </style>
  6792. <style name="Widget.MaterialComponents.BottomAppBar.Colored" parent="Widget.MaterialComponents.BottomAppBar">
  6793. <item name="backgroundTint">?attr/colorPrimary</item>
  6794. <item name="materialThemeOverlay">@style/ThemeOverlay.MaterialComponents.BottomAppBar.Primary</item>
  6795. </style>
  6796. <style name="Widget.MaterialComponents.BottomAppBar.PrimarySurface" parent="Widget.MaterialComponents.BottomAppBar.Colored"/>
  6797. <style name="Widget.MaterialComponents.BottomNavigationView" parent="Widget.Design.BottomNavigationView">
  6798. <item name="enforceTextAppearance">true</item>
  6799. <item name="enforceMaterialTheme">true</item>
  6800. <item name="android:background">?attr/colorSurface</item>
  6801. <item name="itemBackground">@null</item>
  6802. <item name="itemHorizontalTranslationEnabled">false</item>
  6803. <item name="itemIconTint">@color/mtrl_navigation_bar_item_tint</item>
  6804. <item name="itemTextAppearanceInactive">?attr/textAppearanceCaption</item>
  6805. <item name="itemTextAppearanceActive">?attr/textAppearanceCaption</item>
  6806. <item name="itemTextColor">@color/mtrl_navigation_bar_item_tint</item>
  6807. <item name="itemRippleColor">@color/mtrl_navigation_bar_ripple_color</item>
  6808. </style>
  6809. <style name="Widget.MaterialComponents.BottomNavigationView.Colored">
  6810. <item name="enforceTextAppearance">true</item>
  6811. <item name="enforceMaterialTheme">true</item>
  6812. <item name="android:background">?attr/colorPrimary</item>
  6813. <item name="itemIconTint">@color/mtrl_navigation_bar_colored_item_tint</item>
  6814. <item name="itemRippleColor">@color/mtrl_navigation_bar_colored_ripple_color</item>
  6815. <item name="itemTextAppearanceInactive">?attr/textAppearanceCaption</item>
  6816. <item name="itemTextAppearanceActive">?attr/textAppearanceCaption</item>
  6817. <item name="itemTextColor">@color/mtrl_navigation_bar_colored_item_tint</item>
  6818. </style>
  6819. <style name="Widget.MaterialComponents.BottomNavigationView.PrimarySurface" parent="Widget.MaterialComponents.BottomNavigationView.Colored"/>
  6820. <style name="Widget.MaterialComponents.BottomSheet" parent="Widget.Design.BottomSheet.Modal">
  6821. <item name="enforceMaterialTheme">true</item>
  6822. <item name="android:background">@null</item>
  6823. <item name="android:layout_gravity">center_horizontal</item>
  6824. <item name="shapeAppearance">?attr/shapeAppearanceLargeComponent</item>
  6825. <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MaterialComponents.BottomSheet</item>
  6826. <item name="backgroundTint">?attr/colorSurface</item>
  6827. <item name="android:elevation" ns1:ignore="NewApi">
  6828. @dimen/design_bottom_sheet_elevation
  6829. </item>
  6830. <item name="android:maxWidth">@dimen/material_bottom_sheet_max_width</item>
  6831. </style>
  6832. <style name="Widget.MaterialComponents.BottomSheet.Modal" parent="Widget.MaterialComponents.BottomSheet">
  6833. <item name="android:elevation" ns1:ignore="NewApi">
  6834. @dimen/design_bottom_sheet_modal_elevation
  6835. </item>
  6836. </style>
  6837. <style name="Widget.MaterialComponents.Button" parent="Widget.AppCompat.Button">
  6838. <item name="enforceMaterialTheme">true</item>
  6839. <item name="android:background">@empty</item>
  6840. <item name="enforceTextAppearance">true</item>
  6841. <item name="android:textAppearance">?attr/textAppearanceButton</item>
  6842. <item name="android:textColor">@color/mtrl_btn_text_color_selector</item>
  6843. <item name="android:paddingLeft">@dimen/mtrl_btn_padding_left</item>
  6844. <item name="android:paddingRight">@dimen/mtrl_btn_padding_right</item>
  6845. <item name="android:paddingTop">@dimen/mtrl_btn_padding_top</item>
  6846. <item name="android:paddingBottom">@dimen/mtrl_btn_padding_bottom</item>
  6847. <item name="android:insetLeft">0dp</item>
  6848. <item name="android:insetRight">0dp</item>
  6849. <item name="android:insetTop">@dimen/mtrl_btn_inset</item>
  6850. <item name="android:insetBottom">@dimen/mtrl_btn_inset</item>
  6851. <item name="android:maxWidth">@dimen/mtrl_btn_max_width</item>
  6852. <item name="android:stateListAnimator" ns1:ignore="NewApi">@animator/mtrl_btn_state_list_anim</item>
  6853. <item name="cornerRadius">@null</item>
  6854. <item name="elevation">@dimen/mtrl_btn_elevation</item>
  6855. <item name="iconPadding">@dimen/mtrl_btn_icon_padding</item>
  6856. <item name="iconTint">@color/mtrl_btn_text_color_selector</item>
  6857. <item name="rippleColor">@color/mtrl_btn_ripple_color</item>
  6858. <item name="backgroundTint">@color/mtrl_btn_bg_color_selector</item>
  6859. <item name="shapeAppearance">?attr/shapeAppearanceSmallComponent</item>
  6860. </style>
  6861. <style name="Widget.MaterialComponents.Button.Icon">
  6862. <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item>
  6863. </style>
  6864. <style name="Widget.MaterialComponents.Button.OutlinedButton" parent="Widget.MaterialComponents.Button.TextButton">
  6865. <item name="android:paddingLeft">@dimen/mtrl_btn_padding_left</item>
  6866. <item name="android:paddingRight">@dimen/mtrl_btn_padding_right</item>
  6867. <item name="strokeColor">@color/mtrl_btn_stroke_color_selector</item>
  6868. <item name="strokeWidth">@dimen/mtrl_btn_stroke_size</item>
  6869. </style>
  6870. <style name="Widget.MaterialComponents.Button.OutlinedButton.Icon">
  6871. <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item>
  6872. </style>
  6873. <style name="Widget.MaterialComponents.Button.TextButton" parent="Widget.MaterialComponents.Button.UnelevatedButton">
  6874. <item name="android:textColor">@color/mtrl_text_btn_text_color_selector</item>
  6875. <item name="android:paddingLeft">@dimen/mtrl_btn_text_btn_padding_left</item>
  6876. <item name="android:paddingRight">@dimen/mtrl_btn_text_btn_padding_right</item>
  6877. <item name="iconTint">@color/mtrl_text_btn_text_color_selector</item>
  6878. <item name="iconPadding">@dimen/mtrl_btn_text_btn_icon_padding</item>
  6879. <item name="backgroundTint">@color/mtrl_btn_text_btn_bg_color_selector</item>
  6880. <item name="rippleColor">@color/mtrl_btn_text_btn_ripple_color</item>
  6881. </style>
  6882. <style name="Widget.MaterialComponents.Button.TextButton.Dialog">
  6883. <item name="android:minWidth">@dimen/mtrl_btn_dialog_btn_min_width</item>
  6884. <item name="android:lines">1</item>
  6885. <item name="android:ellipsize">end</item>
  6886. <item name="android:singleLine">true</item>
  6887. <item name="android:layout_marginStart">@dimen/mtrl_btn_text_btn_padding_left</item>
  6888. <item name="android:layout_marginLeft">@dimen/mtrl_btn_text_btn_padding_left</item>
  6889. </style>
  6890. <style name="Widget.MaterialComponents.Button.TextButton.Dialog.Flush">
  6891. <item name="android:layout_marginStart">0dp</item>
  6892. <item name="android:layout_marginLeft">0dp</item>
  6893. </style>
  6894. <style name="Widget.MaterialComponents.Button.TextButton.Dialog.Icon">
  6895. <!-- Icon text button has the same padding as a regular text button -->
  6896. </style>
  6897. <style name="Widget.MaterialComponents.Button.TextButton.Icon">
  6898. <!-- Icon text button has the same padding as a regular text button -->
  6899. </style>
  6900. <style name="Widget.MaterialComponents.Button.TextButton.Snackbar">
  6901. <item name="android:textColor">?attr/colorPrimary</item>
  6902. </style>
  6903. <style name="Widget.MaterialComponents.Button.UnelevatedButton">
  6904. <item name="android:stateListAnimator" ns1:ignore="NewApi">@animator/mtrl_btn_unelevated_state_list_anim</item>
  6905. <item name="elevation">0dp</item>
  6906. </style>
  6907. <style name="Widget.MaterialComponents.Button.UnelevatedButton.Icon">
  6908. <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item>
  6909. </style>
  6910. <style name="Widget.MaterialComponents.CardView" parent="CardView">
  6911. <item name="enforceMaterialTheme">true</item>
  6912. <item name="android:stateListAnimator" ns1:ignore="NewApi">
  6913. @animator/mtrl_card_state_list_anim
  6914. </item>
  6915. <item name="cardBackgroundColor">?attr/colorSurface</item>
  6916. <item name="cardCornerRadius">@null</item>
  6917. <item name="cardElevation">@dimen/mtrl_card_elevation</item>
  6918. <item name="cardForegroundColor">@color/mtrl_card_view_foreground</item>
  6919. <item name="checkedIcon">@drawable/ic_mtrl_checked_circle</item>
  6920. <item name="checkedIconTint">?attr/colorPrimary</item>
  6921. <item name="checkedIconSize">@dimen/mtrl_card_checked_icon_size</item>
  6922. <item name="checkedIconMargin">@dimen/mtrl_card_checked_icon_margin</item>
  6923. <item name="rippleColor">@color/mtrl_card_view_ripple</item>
  6924. <item name="shapeAppearance">?attr/shapeAppearanceMediumComponent</item>
  6925. </style>
  6926. <style name="Widget.MaterialComponents.CheckedTextView" parent="Base.Widget.MaterialComponents.CheckedTextView">
  6927. <item name="android:textAppearance">?attr/textAppearanceBody1</item>
  6928. <item name="android:textColor">@color/material_on_surface_emphasis_medium</item>
  6929. </style>
  6930. <style name="Widget.MaterialComponents.Chip.Action" parent="Base.Widget.MaterialComponents.Chip">
  6931. <item name="closeIconVisible">false</item>
  6932. </style>
  6933. <style name="Widget.MaterialComponents.Chip.Choice" parent="Base.Widget.MaterialComponents.Chip">
  6934. <item name="android:checkable">true</item>
  6935. <item name="chipIconVisible">false</item>
  6936. <item name="checkedIconVisible">false</item>
  6937. <item name="closeIconVisible">false</item>
  6938. <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_black</item>
  6939. <item name="android:textColor">@color/mtrl_choice_chip_text_color</item>
  6940. <item name="chipBackgroundColor">@color/mtrl_choice_chip_background_color</item>
  6941. <item name="rippleColor">@color/mtrl_choice_chip_ripple_color</item>
  6942. </style>
  6943. <style name="Widget.MaterialComponents.Chip.Entry" parent="Base.Widget.MaterialComponents.Chip">
  6944. <item name="android:checkable">true</item>
  6945. </style>
  6946. <style name="Widget.MaterialComponents.Chip.Filter" parent="Base.Widget.MaterialComponents.Chip">
  6947. <item name="android:checkable">true</item>
  6948. <item name="chipIconVisible">false</item>
  6949. <item name="closeIconVisible">false</item>
  6950. <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_black</item>
  6951. </style>
  6952. <style name="Widget.MaterialComponents.ChipGroup" parent="android:Widget">
  6953. <item name="chipSpacingHorizontal">8dp</item>
  6954. <item name="singleLine">false</item>
  6955. <item name="singleSelection">false</item>
  6956. </style>
  6957. <style name="Widget.MaterialComponents.CircularProgressIndicator" parent="Widget.MaterialComponents.ProgressIndicator">
  6958. <item name="trackThickness">@dimen/mtrl_progress_circular_track_thickness_medium</item>
  6959. <item name="indicatorSize">@dimen/mtrl_progress_circular_size_medium</item>
  6960. <item name="indicatorInset">@dimen/mtrl_progress_circular_inset_medium</item>
  6961. <item name="trackColor">@android:color/transparent</item>
  6962. <item name="indicatorDirectionCircular">clockwise</item>
  6963. </style>
  6964. <style name="Widget.MaterialComponents.CircularProgressIndicator.ExtraSmall">
  6965. <item name="trackThickness">@dimen/mtrl_progress_circular_track_thickness_extra_small</item>
  6966. <item name="indicatorSize">@dimen/mtrl_progress_circular_size_extra_small</item>
  6967. <item name="indicatorInset">@dimen/mtrl_progress_circular_inset_extra_small</item>
  6968. </style>
  6969. <style name="Widget.MaterialComponents.CircularProgressIndicator.Medium"/>
  6970. <style name="Widget.MaterialComponents.CircularProgressIndicator.Small">
  6971. <item name="trackThickness">@dimen/mtrl_progress_circular_track_thickness_small</item>
  6972. <item name="indicatorSize">@dimen/mtrl_progress_circular_size_small</item>
  6973. <item name="indicatorInset">@dimen/mtrl_progress_circular_inset_small</item>
  6974. </style>
  6975. <style name="Widget.MaterialComponents.CollapsingToolbar" parent="Widget.Design.CollapsingToolbar"/>
  6976. <style name="Widget.MaterialComponents.CompoundButton.CheckBox" parent="Widget.AppCompat.CompoundButton.CheckBox">
  6977. <item name="enforceMaterialTheme">true</item>
  6978. <item name="useMaterialThemeColors">true</item>
  6979. <item name="android:minWidth">?attr/minTouchTargetSize</item>
  6980. <item name="android:minHeight">?attr/minTouchTargetSize</item>
  6981. </style>
  6982. <style name="Widget.MaterialComponents.CompoundButton.RadioButton" parent="Widget.AppCompat.CompoundButton.RadioButton">
  6983. <item name="enforceMaterialTheme">true</item>
  6984. <item name="useMaterialThemeColors">true</item>
  6985. <item name="android:minWidth">?attr/minTouchTargetSize</item>
  6986. <item name="android:minHeight">?attr/minTouchTargetSize</item>
  6987. </style>
  6988. <style name="Widget.MaterialComponents.CompoundButton.Switch" parent="Widget.AppCompat.CompoundButton.Switch">
  6989. <item name="enforceMaterialTheme">true</item>
  6990. <item name="useMaterialThemeColors">true</item>
  6991. <item name="android:minWidth">?attr/minTouchTargetSize</item>
  6992. <item name="android:minHeight">?attr/minTouchTargetSize</item>
  6993. </style>
  6994. <style name="Widget.MaterialComponents.ExtendedFloatingActionButton" parent="Widget.MaterialComponents.Button">
  6995. <item name="android:insetTop">0dp</item>
  6996. <item name="android:insetBottom">0dp</item>
  6997. <item name="android:maxLines">1</item>
  6998. <item name="android:minHeight">@dimen/mtrl_extended_fab_min_height</item>
  6999. <item name="android:minWidth">@dimen/mtrl_extended_fab_min_width</item>
  7000. <item name="android:paddingTop">@dimen/mtrl_extended_fab_top_padding</item>
  7001. <item name="android:paddingBottom">@dimen/mtrl_extended_fab_bottom_padding</item>
  7002. <item name="android:paddingStart" ns1:ignore="NewApi">
  7003. @dimen/mtrl_extended_fab_start_padding
  7004. </item>
  7005. <item name="android:paddingEnd" ns1:ignore="NewApi">
  7006. @dimen/mtrl_extended_fab_end_padding
  7007. </item>
  7008. <item name="android:paddingLeft">@dimen/mtrl_extended_fab_start_padding</item>
  7009. <item name="android:paddingRight">@dimen/mtrl_extended_fab_end_padding</item>
  7010. <item name="android:stateListAnimator" ns1:ignore="NewApi">
  7011. @animator/mtrl_extended_fab_state_list_animator
  7012. </item>
  7013. <item name="android:textColor">@color/mtrl_fab_icon_text_color_selector</item>
  7014. <item name="backgroundTint">@color/mtrl_fab_bg_color_selector</item>
  7015. <item name="elevation">@dimen/mtrl_extended_fab_elevation</item>
  7016. <item name="iconPadding">@dimen/mtrl_extended_fab_icon_text_spacing</item>
  7017. <item name="iconSize">@dimen/mtrl_extended_fab_icon_size</item>
  7018. <item name="iconTint">@color/mtrl_fab_icon_text_color_selector</item>
  7019. <item name="rippleColor">@color/mtrl_fab_ripple_color</item>
  7020. <item name="shapeAppearanceOverlay">
  7021. @style/ShapeAppearanceOverlay.MaterialComponents.ExtendedFloatingActionButton
  7022. </item>
  7023. <item name="collapsedSize">@dimen/design_fab_size_normal</item>
  7024. </style>
  7025. <style name="Widget.MaterialComponents.ExtendedFloatingActionButton.Icon" parent="Widget.MaterialComponents.ExtendedFloatingActionButton">
  7026. <item name="android:gravity">start|center_vertical</item>
  7027. <item name="android:paddingStart" ns1:ignore="NewApi">
  7028. @dimen/mtrl_extended_fab_start_padding_icon
  7029. </item>
  7030. <item name="android:paddingEnd" ns1:ignore="NewApi">
  7031. @dimen/mtrl_extended_fab_end_padding_icon
  7032. </item>
  7033. <item name="android:paddingLeft">@dimen/mtrl_extended_fab_start_padding_icon</item>
  7034. <item name="android:paddingRight">@dimen/mtrl_extended_fab_end_padding_icon</item>
  7035. </style>
  7036. <style name="Widget.MaterialComponents.FloatingActionButton" parent="Widget.Design.FloatingActionButton">
  7037. <item name="android:background">@null</item>
  7038. <item name="enforceMaterialTheme">true</item>
  7039. <item name="ensureMinTouchTargetSize">true</item>
  7040. <item name="elevation">@dimen/mtrl_fab_elevation</item>
  7041. <item name="backgroundTint">@color/mtrl_fab_bg_color_selector</item>
  7042. <item name="tint">@color/mtrl_fab_icon_text_color_selector</item>
  7043. <item name="hoveredFocusedTranslationZ">@dimen/mtrl_fab_translation_z_hovered_focused</item>
  7044. <item name="pressedTranslationZ">@dimen/mtrl_fab_translation_z_pressed</item>
  7045. <item name="rippleColor">@color/mtrl_fab_ripple_color</item>
  7046. <item name="showMotionSpec">@animator/mtrl_fab_show_motion_spec</item>
  7047. <item name="hideMotionSpec">@animator/mtrl_fab_hide_motion_spec</item>
  7048. <item name="shapeAppearance">?attr/shapeAppearanceSmallComponent</item>
  7049. <item name="shapeAppearanceOverlay">
  7050. @style/ShapeAppearanceOverlay.MaterialComponents.FloatingActionButton
  7051. </item>
  7052. </style>
  7053. <style name="Widget.MaterialComponents.Light.ActionBar.Solid" parent="Widget.AppCompat.Light.ActionBar.Solid">
  7054. <item name="titleTextStyle">?attr/textAppearanceHeadline6</item>
  7055. <item name="subtitleTextStyle">?attr/textAppearanceSubtitle1</item>
  7056. <!-- Overrides minimum height in landscape to avoid headline6 and subtitle1 height concerns. -->
  7057. <item name="android:minHeight">@dimen/mtrl_toolbar_default_height</item>
  7058. <item name="maxButtonHeight">@dimen/mtrl_toolbar_default_height</item>
  7059. </style>
  7060. <style name="Widget.MaterialComponents.LinearProgressIndicator" parent="Widget.MaterialComponents.ProgressIndicator">
  7061. <item name="indeterminateAnimationType">disjoint</item>
  7062. <item name="indicatorDirectionLinear">startToEnd</item>
  7063. </style>
  7064. <style name="Widget.MaterialComponents.MaterialButtonToggleGroup" parent="android:Widget">
  7065. <item name="singleSelection">false</item>
  7066. </style>
  7067. <style name="Widget.MaterialComponents.MaterialCalendar" parent="android:Widget">
  7068. <item name="android:windowFullscreen">false</item>
  7069. <item name="shapeAppearance">?attr/shapeAppearanceMediumComponent</item>
  7070. <item name="dayStyle">@style/Widget.MaterialComponents.MaterialCalendar.Day</item>
  7071. <item name="dayInvalidStyle">@style/Widget.MaterialComponents.MaterialCalendar.Day.Invalid</item>
  7072. <item name="daySelectedStyle">@style/Widget.MaterialComponents.MaterialCalendar.Day.Selected</item>
  7073. <item name="dayTodayStyle">@style/Widget.MaterialComponents.MaterialCalendar.Day.Today</item>
  7074. <item name="yearStyle">@style/Widget.MaterialComponents.MaterialCalendar.Year</item>
  7075. <item name="yearSelectedStyle">@style/Widget.MaterialComponents.MaterialCalendar.Year.Selected</item>
  7076. <item name="yearTodayStyle">@style/Widget.MaterialComponents.MaterialCalendar.Year.Today</item>
  7077. <item name="rangeFillColor">@color/mtrl_calendar_selected_range</item>
  7078. </style>
  7079. <style name="Widget.MaterialComponents.MaterialCalendar.Day" parent="Widget.MaterialComponents.MaterialCalendar.Item">
  7080. <item name="itemShapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day</item>
  7081. <item name="android:width">@dimen/mtrl_calendar_day_width</item>
  7082. <item name="android:height">@dimen/mtrl_calendar_day_height</item>
  7083. <item name="android:insetTop">@dimen/mtrl_calendar_day_vertical_padding</item>
  7084. <item name="android:insetBottom">@dimen/mtrl_calendar_day_vertical_padding</item>
  7085. <item name="android:insetLeft">@dimen/mtrl_calendar_day_horizontal_padding</item>
  7086. <item name="android:insetRight">@dimen/mtrl_calendar_day_horizontal_padding</item>
  7087. </style>
  7088. <style name="Widget.MaterialComponents.MaterialCalendar.Day.Invalid">
  7089. <item name="itemTextColor">@color/material_on_surface_disabled</item>
  7090. <item name="itemStrokeWidth">0dp</item>
  7091. </style>
  7092. <style name="Widget.MaterialComponents.MaterialCalendar.Day.Selected">
  7093. <item name="itemFillColor">?attr/colorPrimary</item>
  7094. <item name="itemTextColor">?attr/colorOnPrimary</item>
  7095. <item name="itemStrokeWidth">0dp</item>
  7096. </style>
  7097. <style name="Widget.MaterialComponents.MaterialCalendar.Day.Today">
  7098. <item name="itemStrokeColor">@color/material_on_surface_emphasis_high_type</item>
  7099. <item name="itemStrokeWidth">@dimen/mtrl_calendar_day_today_stroke</item>
  7100. </style>
  7101. <style name="Widget.MaterialComponents.MaterialCalendar.DayOfWeekLabel" parent="">
  7102. <item name="android:textAppearance">?attr/textAppearanceBody2</item>
  7103. <item name="android:gravity">center</item>
  7104. </style>
  7105. <style name="Widget.MaterialComponents.MaterialCalendar.DayTextView" parent="Widget.AppCompat.TextView">
  7106. <item name="android:textAppearance">?attr/textAppearanceCaption</item>
  7107. <item name="android:gravity">center</item>
  7108. </style>
  7109. <style name="Widget.MaterialComponents.MaterialCalendar.Fullscreen" parent="Widget.MaterialComponents.MaterialCalendar">
  7110. <item name="android:windowFullscreen">true</item>
  7111. <item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Window.Fullscreen</item>
  7112. </style>
  7113. <style name="Widget.MaterialComponents.MaterialCalendar.HeaderCancelButton" parent="Widget.MaterialComponents.Button.TextButton">
  7114. <item name="iconTint">?attr/colorOnPrimary</item>
  7115. <item name="rippleColor">@color/mtrl_btn_ripple_color</item>
  7116. </style>
  7117. <style name="Widget.MaterialComponents.MaterialCalendar.HeaderConfirmButton" parent="Widget.MaterialComponents.Button.TextButton">
  7118. <item name="android:textColor">@color/mtrl_on_primary_text_btn_text_color_selector</item>
  7119. <item name="rippleColor">@color/mtrl_btn_ripple_color</item>
  7120. </style>
  7121. <style name="Widget.MaterialComponents.MaterialCalendar.HeaderDivider" parent="android:Widget">
  7122. <item name="android:visibility">gone</item>
  7123. <item name="android:background">?attr/colorOnPrimary</item>
  7124. </style>
  7125. <style name="Widget.MaterialComponents.MaterialCalendar.HeaderLayout" parent="android:Widget">
  7126. <item name="android:background">?attr/colorPrimary</item>
  7127. </style>
  7128. <style name="Widget.MaterialComponents.MaterialCalendar.HeaderSelection" parent="Widget.AppCompat.TextView">
  7129. <item name="android:textAppearance">?attr/textAppearanceHeadline4</item>
  7130. <item name="android:textColor">?attr/colorOnPrimary</item>
  7131. <item name="android:maxLines">@integer/mtrl_calendar_selection_text_lines</item>
  7132. <item name="android:ellipsize">end</item>
  7133. <item name="autoSizeTextType">uniform</item>
  7134. <item name="autoSizeMaxTextSize">34sp</item>
  7135. <item name="autoSizeMinTextSize">2sp</item>
  7136. </style>
  7137. <style name="Widget.MaterialComponents.MaterialCalendar.HeaderSelection.Fullscreen">
  7138. <item name="android:textAppearance">?attr/textAppearanceHeadline6</item>
  7139. <item name="android:maxLines">1</item>
  7140. <item name="autoSizeMaxTextSize">20sp</item>
  7141. </style>
  7142. <style name="Widget.MaterialComponents.MaterialCalendar.HeaderTitle" parent="Widget.AppCompat.TextView">
  7143. <item name="android:textAppearance">?attr/textAppearanceOverline</item>
  7144. <item name="android:textColor">?attr/colorOnPrimary</item>
  7145. <item name="android:maxLines">1</item>
  7146. <item name="android:ellipsize">end</item>
  7147. <item name="autoSizeTextType">uniform</item>
  7148. <item name="autoSizeMaxTextSize">10sp</item>
  7149. <item name="autoSizeMinTextSize">2sp</item>
  7150. </style>
  7151. <style name="Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton" parent="Widget.AppCompat.ImageButton">
  7152. <item name="android:background">?attr/actionBarItemBackground</item>
  7153. <item name="android:tint">?attr/colorOnPrimary</item>
  7154. </style>
  7155. <style name="Widget.MaterialComponents.MaterialCalendar.Item" parent="">
  7156. <item name="itemFillColor">@android:color/transparent</item>
  7157. <item name="itemTextColor">@color/material_on_surface_emphasis_high_type</item>
  7158. <item name="itemStrokeColor">@color/mtrl_calendar_item_stroke_color</item>
  7159. <item name="itemStrokeWidth">1dp</item>
  7160. <item name="itemShapeAppearance">?attr/shapeAppearanceSmallComponent</item>
  7161. </style>
  7162. <style name="Widget.MaterialComponents.MaterialCalendar.MonthNavigationButton" parent="Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton"/>
  7163. <style name="Widget.MaterialComponents.MaterialCalendar.MonthTextView" parent="Widget.AppCompat.TextView">
  7164. <item name="android:textAppearance">?attr/textAppearanceSubtitle2</item>
  7165. <item name="android:textColor">@color/material_on_surface_emphasis_medium</item>
  7166. </style>
  7167. <style name="Widget.MaterialComponents.MaterialCalendar.Year" parent="Widget.MaterialComponents.MaterialCalendar.Item">
  7168. <item name="itemShapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Year</item>
  7169. <item name="android:width">@dimen/mtrl_calendar_year_width</item>
  7170. <item name="android:height">@dimen/mtrl_calendar_year_height</item>
  7171. <item name="android:insetTop">@dimen/mtrl_calendar_year_vertical_padding</item>
  7172. <item name="android:insetBottom">@dimen/mtrl_calendar_year_vertical_padding</item>
  7173. <item name="android:insetLeft">@dimen/mtrl_calendar_year_horizontal_padding</item>
  7174. <item name="android:insetRight">@dimen/mtrl_calendar_year_horizontal_padding</item>
  7175. </style>
  7176. <style name="Widget.MaterialComponents.MaterialCalendar.Year.Selected" parent="Widget.MaterialComponents.MaterialCalendar.Year">
  7177. <item name="itemFillColor">?attr/colorPrimary</item>
  7178. <item name="itemTextColor">?attr/colorOnPrimary</item>
  7179. <item name="itemStrokeColor">?attr/colorOnPrimary</item>
  7180. <item name="itemStrokeWidth">0dp</item>
  7181. </style>
  7182. <style name="Widget.MaterialComponents.MaterialCalendar.Year.Today" parent="Widget.MaterialComponents.MaterialCalendar.Year">
  7183. <item name="itemStrokeColor">@color/material_on_surface_emphasis_high_type</item>
  7184. <item name="itemStrokeWidth">@dimen/mtrl_calendar_day_today_stroke</item>
  7185. </style>
  7186. <style name="Widget.MaterialComponents.MaterialCalendar.YearNavigationButton" parent="Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton"/>
  7187. <style name="Widget.MaterialComponents.MaterialDivider" parent="android:Widget">
  7188. <item name="dividerColor">@color/material_divider_color</item>
  7189. <item name="dividerThickness">@dimen/material_divider_thickness</item>
  7190. </style>
  7191. <style name="Widget.MaterialComponents.NavigationRailView" parent="">
  7192. <item name="elevation">@dimen/mtrl_navigation_rail_elevation</item>
  7193. <item name="enforceTextAppearance">true</item>
  7194. <item name="enforceMaterialTheme">true</item>
  7195. <item name="android:background">?attr/colorSurface</item>
  7196. <item name="android:minWidth">@dimen/mtrl_navigation_rail_default_width</item>
  7197. <item name="itemActiveIndicatorStyle">@null</item>
  7198. <item name="itemPaddingTop">@dimen/mtrl_navigation_rail_icon_margin</item>
  7199. <item name="itemPaddingBottom">@dimen/mtrl_navigation_rail_text_bottom_margin</item>
  7200. <item name="itemBackground">@null</item>
  7201. <item name="itemIconSize">@dimen/mtrl_navigation_rail_icon_size</item>
  7202. <item name="itemIconTint">@color/mtrl_navigation_bar_item_tint</item>
  7203. <item name="itemMinHeight">@null</item>
  7204. <item name="itemRippleColor">@color/mtrl_navigation_bar_ripple_color</item>
  7205. <item name="itemTextAppearanceInactive">?attr/textAppearanceCaption</item>
  7206. <item name="itemTextAppearanceActive">?attr/textAppearanceCaption</item>
  7207. <item name="itemTextColor">@color/mtrl_navigation_bar_item_tint</item>
  7208. <item name="labelVisibilityMode">auto</item>
  7209. <item name="menuGravity">top</item>
  7210. </style>
  7211. <style name="Widget.MaterialComponents.NavigationRailView.Colored">
  7212. <item name="android:background">?attr/colorPrimary</item>
  7213. <item name="itemIconTint">@color/mtrl_navigation_bar_colored_item_tint</item>
  7214. <item name="itemRippleColor">@color/mtrl_navigation_bar_colored_ripple_color</item>
  7215. <item name="itemTextColor">@color/mtrl_navigation_bar_colored_item_tint</item>
  7216. </style>
  7217. <style name="Widget.MaterialComponents.NavigationRailView.Colored.Compact">
  7218. <item name="android:minWidth">@dimen/mtrl_navigation_rail_compact_width</item>
  7219. <item name="labelVisibilityMode">unlabeled</item>
  7220. </style>
  7221. <style name="Widget.MaterialComponents.NavigationRailView.Compact">
  7222. <item name="android:minWidth">@dimen/mtrl_navigation_rail_compact_width</item>
  7223. <item name="labelVisibilityMode">unlabeled</item>
  7224. </style>
  7225. <style name="Widget.MaterialComponents.NavigationRailView.PrimarySurface" parent="Widget.MaterialComponents.NavigationRailView.Colored"/>
  7226. <style name="Widget.MaterialComponents.NavigationView" parent="Widget.Design.NavigationView">
  7227. <item name="enforceMaterialTheme">true</item>
  7228. <item name="android:background">?attr/colorSurface</item>
  7229. <!-- itemBackground is set to @null to use a shaped background programmatically generated by
  7230. NavigationView when itemShapeAppearance and/or itemShapeAppearanceOverlay is set. This
  7231. background is styled using the itemShape* attributes below. Setting itemBackground will
  7232. overwrite the programmatic background and cause values set in the itemShape* attributes
  7233. to be ignored. -->
  7234. <item name="itemBackground">@null</item>
  7235. <item name="itemIconPadding">@dimen/mtrl_navigation_item_icon_padding</item>
  7236. <item name="itemIconTint">@color/mtrl_navigation_item_icon_tint</item>
  7237. <item name="itemIconSize">@dimen/mtrl_navigation_item_icon_size</item>
  7238. <item name="itemHorizontalPadding">@dimen/mtrl_navigation_item_horizontal_padding</item>
  7239. <item name="itemShapeAppearance">?attr/shapeAppearanceSmallComponent</item>
  7240. <item name="itemShapeFillColor">@color/mtrl_navigation_item_background_color</item>
  7241. <item name="itemShapeInsetStart">@dimen/mtrl_navigation_item_shape_horizontal_margin</item>
  7242. <item name="itemShapeInsetTop">@dimen/mtrl_navigation_item_shape_vertical_margin</item>
  7243. <item name="itemShapeInsetEnd">@dimen/mtrl_navigation_item_shape_horizontal_margin</item>
  7244. <item name="itemShapeInsetBottom">@dimen/mtrl_navigation_item_shape_vertical_margin</item>
  7245. <item name="itemTextAppearance">?attr/textAppearanceSubtitle2</item>
  7246. <item name="itemTextColor">@color/mtrl_navigation_item_text_color</item>
  7247. </style>
  7248. <style name="Widget.MaterialComponents.PopupMenu" parent="Base.Widget.MaterialComponents.PopupMenu"/>
  7249. <style name="Widget.MaterialComponents.PopupMenu.ContextMenu" parent="Base.Widget.MaterialComponents.PopupMenu.ContextMenu"/>
  7250. <style name="Widget.MaterialComponents.PopupMenu.ListPopupWindow" parent="Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow"/>
  7251. <style name="Widget.MaterialComponents.PopupMenu.Overflow" parent="Base.Widget.MaterialComponents.PopupMenu.Overflow"/>
  7252. <style name="Widget.MaterialComponents.ProgressIndicator" parent="android:Widget">
  7253. <item name="indicatorColor">?attr/colorPrimary</item>
  7254. <item name="trackThickness">@dimen/mtrl_progress_track_thickness</item>
  7255. <item name="android:indeterminateOnly">false</item>
  7256. </style>
  7257. <style name="Widget.MaterialComponents.ShapeableImageView" parent="android:Widget">
  7258. <item name="strokeColor">@color/material_on_surface_stroke</item>
  7259. </style>
  7260. <style name="Widget.MaterialComponents.Slider" parent="Base.Widget.MaterialComponents.Slider"/>
  7261. <style name="Widget.MaterialComponents.Snackbar" parent="Base.Widget.MaterialComponents.Snackbar">
  7262. <!-- Null out the background here so the programmatically defined default Snackbar background
  7263. will be used, which supports the Material color theming attributes. -->
  7264. <item name="android:background">@null</item>
  7265. <item name="android:layout_margin">@dimen/mtrl_snackbar_margin</item>
  7266. <item name="animationMode">fade</item>
  7267. </style>
  7268. <style name="Widget.MaterialComponents.Snackbar.FullWidth" parent="Base.Widget.MaterialComponents.Snackbar"/>
  7269. <style name="Widget.MaterialComponents.Snackbar.TextView" parent="Widget.AppCompat.TextView">
  7270. <item name="android:alpha">@dimen/material_emphasis_high_type</item>
  7271. <item name="android:ellipsize">end</item>
  7272. <item name="android:maxLines">@integer/design_snackbar_text_max_lines</item>
  7273. <item name="android:textAlignment" ns1:ignore="NewApi">viewStart</item>
  7274. <item name="android:textAppearance">?attr/textAppearanceBody2</item>
  7275. <item name="android:textColor">?attr/colorSurface</item>
  7276. <item name="android:paddingTop">@dimen/design_snackbar_padding_vertical</item>
  7277. <item name="android:paddingBottom">@dimen/design_snackbar_padding_vertical</item>
  7278. <item name="android:layout_marginLeft">@dimen/mtrl_snackbar_message_margin_horizontal</item>
  7279. <item name="android:layout_marginRight">@dimen/mtrl_snackbar_message_margin_horizontal</item>
  7280. </style>
  7281. <style name="Widget.MaterialComponents.TabLayout" parent="Widget.Design.TabLayout">
  7282. <item name="enforceMaterialTheme">true</item>
  7283. <item name="enforceTextAppearance">true</item>
  7284. <item name="android:background">?attr/colorSurface</item>
  7285. <item name="tabIconTint">@color/mtrl_tabs_icon_color_selector</item>
  7286. <item name="tabIndicatorAnimationDuration">@integer/mtrl_tab_indicator_anim_duration_ms</item>
  7287. <item name="tabIndicatorColor">?attr/colorPrimary</item>
  7288. <item name="tabTextAppearance">?attr/textAppearanceButton</item>
  7289. <item name="tabTextColor">@color/mtrl_tabs_icon_color_selector</item>
  7290. <item name="tabRippleColor">@color/mtrl_tabs_ripple_color</item>
  7291. <item name="tabUnboundedRipple">true</item>
  7292. </style>
  7293. <style name="Widget.MaterialComponents.TabLayout.Colored">
  7294. <item name="android:background">?attr/colorPrimary</item>
  7295. <item name="tabIconTint">@color/mtrl_tabs_icon_color_selector_colored</item>
  7296. <item name="tabIndicatorColor">?attr/colorOnPrimary</item>
  7297. <item name="tabTextColor">@color/mtrl_tabs_icon_color_selector_colored</item>
  7298. <item name="tabRippleColor">@color/mtrl_tabs_colored_ripple_color</item>
  7299. </style>
  7300. <style name="Widget.MaterialComponents.TabLayout.PrimarySurface" parent="Widget.MaterialComponents.TabLayout.Colored"/>
  7301. <style name="Widget.MaterialComponents.TextInputEditText.FilledBox" parent="Base.Widget.MaterialComponents.TextInputEditText">
  7302. <!-- Padding values that total 34dp to visually match the spec. -->
  7303. <item name="android:paddingTop">24dp</item>
  7304. <item name="android:paddingBottom">10dp</item>
  7305. </style>
  7306. <style name="Widget.MaterialComponents.TextInputEditText.FilledBox.Dense">
  7307. <!-- Dense layout height is 54dp so we need a total of 32dp of top and bottom padding. -->
  7308. <item name="android:paddingTop">24dp</item>
  7309. <item name="android:paddingBottom">8dp</item>
  7310. </style>
  7311. <style name="Widget.MaterialComponents.TextInputEditText.OutlinedBox" parent="Base.Widget.MaterialComponents.TextInputEditText"/>
  7312. <style name="Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense">
  7313. <item name="android:paddingTop">13dp</item>
  7314. <item name="android:paddingBottom">13dp</item>
  7315. </style>
  7316. <style name="Widget.MaterialComponents.TextInputLayout.FilledBox" parent="Base.Widget.MaterialComponents.TextInputLayout">
  7317. <item name="materialThemeOverlay">
  7318. @style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox
  7319. </item>
  7320. <item name="boxBackgroundMode">filled</item>
  7321. <item name="boxBackgroundColor">@color/mtrl_filled_background_color</item>
  7322. <item name="endIconTint">@color/mtrl_filled_icon_tint</item>
  7323. <item name="startIconTint">@color/mtrl_filled_icon_tint</item>
  7324. <item name="boxCollapsedPaddingTop">10dp</item>
  7325. <item name="boxStrokeColor">@color/mtrl_filled_stroke_color</item>
  7326. <item name="shapeAppearanceOverlay">
  7327. @style/ShapeAppearanceOverlay.MaterialComponents.TextInputLayout.FilledBox
  7328. </item>
  7329. </style>
  7330. <style name="Widget.MaterialComponents.TextInputLayout.FilledBox.Dense">
  7331. <item name="materialThemeOverlay">
  7332. @style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense
  7333. </item>
  7334. </style>
  7335. <style name="Widget.MaterialComponents.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu">
  7336. <item name="materialThemeOverlay">
  7337. @style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox.Dense
  7338. </item>
  7339. <item name="endIconMode">dropdown_menu</item>
  7340. </style>
  7341. <style name="Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu">
  7342. <item name="materialThemeOverlay">
  7343. @style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox
  7344. </item>
  7345. <item name="endIconMode">dropdown_menu</item>
  7346. </style>
  7347. <style name="Widget.MaterialComponents.TextInputLayout.OutlinedBox" parent="Base.Widget.MaterialComponents.TextInputLayout">
  7348. <item name="materialThemeOverlay">
  7349. @style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox
  7350. </item>
  7351. <item name="boxCollapsedPaddingTop">0dp</item>
  7352. </style>
  7353. <style name="Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense">
  7354. <item name="materialThemeOverlay">
  7355. @style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense
  7356. </item>
  7357. </style>
  7358. <style name="Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu">
  7359. <item name="materialThemeOverlay">
  7360. @style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense
  7361. </item>
  7362. <item name="endIconMode">dropdown_menu</item>
  7363. </style>
  7364. <style name="Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu">
  7365. <item name="materialThemeOverlay">
  7366. @style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox
  7367. </item>
  7368. <item name="endIconMode">dropdown_menu</item>
  7369. </style>
  7370. <style name="Widget.MaterialComponents.TextView" parent="Base.Widget.MaterialComponents.TextView"/>
  7371. <style name="Widget.MaterialComponents.TimePicker" parent="">
  7372. <item name="shapeAppearance">?shapeAppearanceMediumComponent</item>
  7373. <item name="keyboardIcon">@drawable/ic_keyboard_black_24dp</item>
  7374. <item name="clockIcon">@drawable/ic_clock_black_24dp</item>
  7375. </style>
  7376. <style name="Widget.MaterialComponents.TimePicker.Button" parent="Widget.MaterialComponents.Button.OutlinedButton">
  7377. <item name="backgroundTint">
  7378. @color/material_timepicker_button_background
  7379. </item>
  7380. <item name="android:layout_height">48dp</item>
  7381. <item name="android:padding">0dp</item>
  7382. <item name="android:insetTop">0dp</item>
  7383. <item name="android:insetBottom">0dp</item>
  7384. <item name="android:textAppearance">?attr/textAppearanceSubtitle2</item>
  7385. <item name="android:textSize">16sp</item>
  7386. <item name="android:textAlignment">center</item>
  7387. <item name="strokeColor">@color/material_timepicker_button_stroke</item>
  7388. <item name="strokeWidth">@dimen/mtrl_btn_stroke_size</item>
  7389. </style>
  7390. <style name="Widget.MaterialComponents.TimePicker.Clock" parent="">
  7391. <item name="clockFaceBackgroundColor">@color/material_timepicker_clockface</item>
  7392. <item name="clockHandColor">?attr/colorPrimary</item>
  7393. <item name="clockNumberTextColor">@color/material_timepicker_clock_text_color</item>
  7394. </style>
  7395. <style name="Widget.MaterialComponents.TimePicker.Display" parent="Widget.MaterialComponents.Chip.Choice">
  7396. <item name="ensureMinTouchTargetSize">false</item>
  7397. <item name="android:textAlignment">center</item>
  7398. <item name="android:textAppearance">?attr/textAppearanceHeadline3</item>
  7399. <!-- No need to scale here since the text is already readable -->
  7400. <item name="android:textSize" ns1:ignore="SpUsage">56dp</item>
  7401. <item name="shapeAppearanceOverlay">?shapeAppearanceMediumComponent</item>
  7402. <item name="materialThemeOverlay">@style/ThemeOverlay.MaterialComponents.TimePicker.Display</item>
  7403. </style>
  7404. <style name="Widget.MaterialComponents.TimePicker.Display.Divider" parent="">
  7405. <item name="android:includeFontPadding">false</item>
  7406. <item name="android:lineSpacingExtra">0dp</item>
  7407. <item name="android:maxEms">1</item>
  7408. <item name="android:text">@string/material_clock_display_divider</item>
  7409. <item name="android:textAppearance">?attr/textAppearanceHeadline3</item>
  7410. <item name="android:textColor">?attr/colorOnSurface</item>
  7411. <item name="android:textSize">56dp</item>
  7412. </style>
  7413. <style name="Widget.MaterialComponents.TimePicker.Display.HelperText" parent="Widget.MaterialComponents.TextView">
  7414. <item name="android:textAppearance">?attr/textAppearanceCaption</item>
  7415. </style>
  7416. <style name="Widget.MaterialComponents.TimePicker.Display.TextInputEditText" parent="Widget.MaterialComponents.TextInputEditText.OutlinedBox">
  7417. <item name="android:textAppearance">?attr/textAppearanceHeadline3</item>
  7418. <item name="android:textSize" ns1:ignore="SpUsage">56dp</item>
  7419. <item name="android:paddingTop">4dp</item>
  7420. <item name="android:paddingBottom">0dp</item>
  7421. <item name="android:inputType">number</item>
  7422. <item name="android:maxLength">2</item>
  7423. <item name="android:textAlignment">center</item>
  7424. <item name="android:minEms">2</item>
  7425. <item name="android:gravity">center</item>
  7426. <item name="android:paddingStart">0dp</item>
  7427. <item name="android:paddingEnd">0dp</item>
  7428. </style>
  7429. <style name="Widget.MaterialComponents.TimePicker.Display.TextInputLayout" parent="Widget.MaterialComponents.TextInputLayout.OutlinedBox">
  7430. <item name="materialThemeOverlay">@style/ThemeOverlay.MaterialComponents.TimePicker.Display.TextInputEditText</item>
  7431. </style>
  7432. <style name="Widget.MaterialComponents.TimePicker.ImageButton" parent="">
  7433. <item name="android:insetTop">0dp</item>
  7434. <item name="android:insetBottom">0dp</item>
  7435. <item name="android:minWidth">?attr/minTouchTargetSize</item>
  7436. <item name="android:minHeight">?attr/minTouchTargetSize</item>
  7437. <item name="iconGravity">textStart</item>
  7438. <item name="iconPadding">0dp</item>
  7439. <item name="iconTint">@color/material_timepicker_modebutton_tint</item>
  7440. <item name="rippleColor">@color/mtrl_on_surface_ripple_color</item>
  7441. <item name="shapeAppearance">@style/Widget.MaterialComponents.TimePicker.ImageButton.ShapeAppearance</item>
  7442. </style>
  7443. <style name="Widget.MaterialComponents.TimePicker.ImageButton.ShapeAppearance" parent="">
  7444. <item name="cornerSize">50%</item>
  7445. <item name="cornerFamily">rounded</item>
  7446. </style>
  7447. <style name="Widget.MaterialComponents.Toolbar" parent="Widget.AppCompat.Toolbar">
  7448. <item name="titleTextAppearance">?attr/textAppearanceHeadline6</item>
  7449. <item name="titleTextColor">?android:attr/textColorPrimary</item>
  7450. <item name="subtitleTextAppearance">?attr/textAppearanceSubtitle1</item>
  7451. <item name="subtitleTextColor">?android:attr/textColorSecondary</item>
  7452. <!-- Overrides minimum height in landscape to avoid headline6 and subtitle1 height concerns. -->
  7453. <item name="android:minHeight">@dimen/mtrl_toolbar_default_height</item>
  7454. <item name="maxButtonHeight">@dimen/mtrl_toolbar_default_height</item>
  7455. </style>
  7456. <style name="Widget.MaterialComponents.Toolbar.Primary">
  7457. <item name="android:elevation" ns1:ignore="NewApi">@dimen/design_appbar_elevation</item>
  7458. <item name="android:background">?attr/colorPrimary</item>
  7459. <item name="titleTextColor">?attr/colorOnPrimary</item>
  7460. <item name="subtitleTextColor">@color/material_on_primary_emphasis_medium</item>
  7461. <!-- Note: this theme overlay will only work if the style is applied directly to a Toolbar. -->
  7462. <item name="android:theme">@style/ThemeOverlay.MaterialComponents.Toolbar.Primary</item>
  7463. <item name="popupTheme">@style/ThemeOverlay.MaterialComponents.Toolbar.Popup.Primary</item>
  7464. </style>
  7465. <style name="Widget.MaterialComponents.Toolbar.PrimarySurface" parent="Widget.MaterialComponents.Toolbar.Primary"/>
  7466. <style name="Widget.MaterialComponents.Toolbar.Surface">
  7467. <item name="android:background">?attr/colorSurface</item>
  7468. <item name="titleTextColor">@color/material_on_surface_emphasis_high_type</item>
  7469. <item name="subtitleTextColor">@color/material_on_surface_emphasis_medium</item>
  7470. <!-- Note: this theme overlay will only work if the style is applied directly to a Toolbar. -->
  7471. <item name="android:theme">@style/ThemeOverlay.MaterialComponents.Toolbar.Surface</item>
  7472. </style>
  7473. <style name="Widget.MaterialComponents.Tooltip" parent="android:Widget">
  7474. <item name="android:layout_margin">8dp</item>
  7475. <item name="android:minWidth">@dimen/mtrl_tooltip_minWidth</item>
  7476. <item name="android:minHeight">@dimen/mtrl_tooltip_minHeight</item>
  7477. <item name="android:padding">@dimen/mtrl_tooltip_padding</item>
  7478. <item name="android:textAppearance">@style/TextAppearance.MaterialComponents.Tooltip</item>
  7479. <item name="shapeAppearance">@style/ShapeAppearance.MaterialComponents.Tooltip</item>
  7480. </style>
  7481. <style name="Widget.Support.CoordinatorLayout" parent="android:Widget">
  7482. <item name="statusBarBackground">#000000</item>
  7483. </style>
  7484. <declare-styleable name="ActionBar">
  7485. <!-- The type of navigation to use. -->
  7486. <attr name="navigationMode">
  7487. <!-- Normal static title text -->
  7488. <enum name="normal" value="0"/>
  7489. <!-- The action bar will use a selection list for navigation. -->
  7490. <enum name="listMode" value="1"/>
  7491. <!-- The action bar will use a series of horizontal tabs for navigation. -->
  7492. <enum name="tabMode" value="2"/>
  7493. </attr>
  7494. <!-- Options affecting how the action bar is displayed. -->
  7495. <attr name="displayOptions">
  7496. <flag name="none" value="0"/>
  7497. <flag name="useLogo" value="0x1"/>
  7498. <flag name="showHome" value="0x2"/>
  7499. <flag name="homeAsUp" value="0x4"/>
  7500. <flag name="showTitle" value="0x8"/>
  7501. <flag name="showCustom" value="0x10"/>
  7502. <flag name="disableHome" value="0x20"/>
  7503. </attr>
  7504. <!-- Specifies title text used for navigationMode="normal" -->
  7505. <attr name="title"/>
  7506. <!-- Specifies subtitle text used for navigationMode="normal" -->
  7507. <attr format="string" name="subtitle"/>
  7508. <!-- Specifies a style to use for title text. -->
  7509. <attr format="reference" name="titleTextStyle"/>
  7510. <!-- Specifies a style to use for subtitle text. -->
  7511. <attr format="reference" name="subtitleTextStyle"/>
  7512. <!-- Specifies the drawable used for the application icon. -->
  7513. <attr format="reference" name="icon"/>
  7514. <!-- Specifies the drawable used for the application logo. -->
  7515. <attr format="reference" name="logo"/>
  7516. <!-- Specifies the drawable used for item dividers. -->
  7517. <attr format="reference" name="divider"/>
  7518. <!-- Specifies a background drawable for the action bar. -->
  7519. <attr format="reference" name="background"/>
  7520. <!-- Specifies a background drawable for a second stacked row of the action bar. -->
  7521. <attr format="reference|color" name="backgroundStacked"/>
  7522. <!-- Specifies a background drawable for the bottom component of a split action bar. -->
  7523. <attr format="reference|color" name="backgroundSplit"/>
  7524. <!-- Specifies a layout for custom navigation. Overrides navigationMode. -->
  7525. <attr format="reference" name="customNavigationLayout"/>
  7526. <!-- Specifies a fixed height. -->
  7527. <attr name="height"/>
  7528. <!-- Specifies a layout to use for the "home" section of the action bar. -->
  7529. <attr format="reference" name="homeLayout"/>
  7530. <!-- Specifies a style resource to use for an embedded progress bar. -->
  7531. <attr format="reference" name="progressBarStyle"/>
  7532. <!-- Specifies a style resource to use for an indeterminate progress spinner. -->
  7533. <attr format="reference" name="indeterminateProgressStyle"/>
  7534. <!-- Specifies the horizontal padding on either end for an embedded progress bar. -->
  7535. <attr format="dimension" name="progressBarPadding"/>
  7536. <!-- Up navigation glyph -->
  7537. <attr name="homeAsUpIndicator"/>
  7538. <!-- Specifies padding that should be applied to the left and right sides of
  7539. system-provided items in the bar. -->
  7540. <attr format="dimension" name="itemPadding"/>
  7541. <!-- Set true to hide the action bar on a vertical nested scroll of content. -->
  7542. <attr format="boolean" name="hideOnContentScroll"/>
  7543. <!-- Minimum inset for content views within a bar. Navigation buttons and
  7544. menu views are excepted. Only valid for some themes and configurations. -->
  7545. <attr format="dimension" name="contentInsetStart"/>
  7546. <!-- Minimum inset for content views within a bar. Navigation buttons and
  7547. menu views are excepted. Only valid for some themes and configurations. -->
  7548. <attr format="dimension" name="contentInsetEnd"/>
  7549. <!-- Minimum inset for content views within a bar. Navigation buttons and
  7550. menu views are excepted. Only valid for some themes and configurations. -->
  7551. <attr format="dimension" name="contentInsetLeft"/>
  7552. <!-- Minimum inset for content views within a bar. Navigation buttons and
  7553. menu views are excepted. Only valid for some themes and configurations. -->
  7554. <attr format="dimension" name="contentInsetRight"/>
  7555. <!-- Minimum inset for content views within a bar when a navigation button
  7556. is present, such as the Up button. Only valid for some themes and configurations. -->
  7557. <attr format="dimension" name="contentInsetStartWithNavigation"/>
  7558. <!-- Minimum inset for content views within a bar when actions from a menu
  7559. are present. Only valid for some themes and configurations. -->
  7560. <attr format="dimension" name="contentInsetEndWithActions"/>
  7561. <!-- Elevation for the action bar itself -->
  7562. <attr format="dimension" name="elevation"/>
  7563. <!-- Reference to a theme that should be used to inflate popups
  7564. shown by widgets in the action bar. -->
  7565. <attr format="reference" name="popupTheme"/>
  7566. </declare-styleable>
  7567. <declare-styleable name="ActionBarLayout">
  7568. <attr name="android:layout_gravity"/>
  7569. </declare-styleable>
  7570. <declare-styleable name="ActionMenuItemView">
  7571. <attr name="android:minWidth"/>
  7572. </declare-styleable>
  7573. <declare-styleable name="ActionMenuView">
  7574. <!-- Size of padding on either end of a divider. -->
  7575. </declare-styleable>
  7576. <declare-styleable name="ActionMode">
  7577. <!-- Specifies a style to use for title text. -->
  7578. <attr name="titleTextStyle"/>
  7579. <!-- Specifies a style to use for subtitle text. -->
  7580. <attr name="subtitleTextStyle"/>
  7581. <!-- Specifies a background for the action mode bar. -->
  7582. <attr name="background"/>
  7583. <!-- Specifies a background for the split action mode bar. -->
  7584. <attr name="backgroundSplit"/>
  7585. <!-- Specifies a fixed height for the action mode bar. -->
  7586. <attr name="height"/>
  7587. <!-- Specifies a layout to use for the "close" item at the starting edge. -->
  7588. <attr format="reference" name="closeItemLayout"/>
  7589. </declare-styleable>
  7590. <declare-styleable name="ActivityChooserView">
  7591. <!-- The maximal number of items initially shown in the activity list. -->
  7592. <attr format="string" name="initialActivityCount"/>
  7593. <!-- The drawable to show in the button for expanding the activities overflow popup.
  7594. <strong>Note:</strong> Clients would like to set this drawable
  7595. as a clue about the action the chosen activity will perform. For
  7596. example, if share activity is to be chosen the drawable should
  7597. give a clue that sharing is to be performed.
  7598. -->
  7599. <attr format="reference" name="expandActivityOverflowButtonDrawable"/>
  7600. </declare-styleable>
  7601. <declare-styleable name="AlertDialog">
  7602. <attr name="android:layout"/>
  7603. <attr format="reference" name="buttonPanelSideLayout"/>
  7604. <attr format="reference" name="listLayout"/>
  7605. <attr format="reference" name="multiChoiceItemLayout"/>
  7606. <attr format="reference" name="singleChoiceItemLayout"/>
  7607. <attr format="reference" name="listItemLayout"/>
  7608. <attr format="boolean" name="showTitle"/>
  7609. <attr format="dimension" name="buttonIconDimen"/>
  7610. </declare-styleable>
  7611. <declare-styleable name="AnimatedStateListDrawableCompat">
  7612. <!-- Indicates whether the drawable should be initially visible. -->
  7613. <attr name="android:visible"/>
  7614. <!-- If true, allows the drawable's padding to change based on the
  7615. current state that is selected. If false, the padding will
  7616. stay the same (based on the maximum padding of all the states).
  7617. Enabling this feature requires that the owner of the drawable
  7618. deal with performing layout when the state changes, which is
  7619. often not supported. -->
  7620. <attr name="android:variablePadding"/>
  7621. <!-- If true, the drawable's reported internal size will remain
  7622. constant as the state changes; the size is the maximum of all
  7623. of the states. If false, the size will vary based on the
  7624. current state. -->
  7625. <attr name="android:constantSize"/>
  7626. <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
  7627. same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
  7628. an RGB 565 screen). -->
  7629. <attr name="android:dither"/>
  7630. <!-- Amount of time (in milliseconds) to fade in a new state drawable. -->
  7631. <attr name="android:enterFadeDuration"/>
  7632. <!-- Amount of time (in milliseconds) to fade out an old state drawable. -->
  7633. <attr name="android:exitFadeDuration"/>
  7634. <!-- Indicates if the drawable needs to be mirrored when its layout direction is
  7635. RTL (right-to-left). -->
  7636. <!--<attr name="autoMirrored"/>-->
  7637. </declare-styleable>
  7638. <declare-styleable name="AnimatedStateListDrawableItem">
  7639. <!-- Reference to a drawable resource to use for the frame. If not
  7640. given, the drawable must be defined by the first child tag. -->
  7641. <attr name="android:drawable"/>
  7642. <!-- Keyframe identifier for use in specifying transitions. -->
  7643. <attr name="android:id"/>
  7644. </declare-styleable>
  7645. <declare-styleable name="AnimatedStateListDrawableTransition">
  7646. <!-- Keyframe identifier for the starting state. -->
  7647. <attr name="android:fromId"/>
  7648. <!-- Keyframe identifier for the ending state. -->
  7649. <attr name="android:toId"/>
  7650. <!-- Reference to a animation drawable resource to use for the frame. If not
  7651. given, the animation drawable must be defined by the first child tag. -->
  7652. <attr name="android:drawable"/>
  7653. <!-- Whether this transition is reversible. -->
  7654. <attr name="android:reversible"/>
  7655. </declare-styleable>
  7656. <declare-styleable name="AppBarLayout">
  7657. <!-- Deprecated. Elevation is now controlled via a state list animator. -->
  7658. <attr name="elevation"/>
  7659. <attr name="android:background"/>
  7660. <!-- The initial expanded state for the AppBarLayout. This only takes effect when this
  7661. view is a direct child of a CoordinatorLayout. -->
  7662. <attr format="boolean" name="expanded"/>
  7663. <attr name="android:keyboardNavigationCluster"/>
  7664. <attr name="android:touchscreenBlocksFocus"/>
  7665. <!-- Whether the {@link AppBarLayout} should lift on scroll. If set to
  7666. true, the {@link AppBarLayout} will animate to the lifted, or
  7667. elevated, state when content is scrolled beneath it. Requires
  7668. `app:layout_behavior="@string/appbar_scrolling_view_behavior` to be
  7669. set on the scrolling sibling (e.g., `NestedScrollView`,
  7670. `RecyclerView`, etc.). Default is false. -->
  7671. <attr format="boolean" name="liftOnScroll"/>
  7672. <!-- The id of the view that the {@link AppBarLayout} should use to determine whether
  7673. it should be lifted (i.e., only if {@code liftOnScroll} is set to true).
  7674. If this id is not set, the {@link AppBarLayout} will use the target view provided
  7675. by nested scrolling to determine whether it should be lifted. -->
  7676. <attr format="reference" name="liftOnScrollTargetViewId"/>
  7677. <!-- The drawable to display in front of the layout's content, but behind the status bar.
  7678. Only works on Lollipop when used together with android:fitSystemWindows="true". -->
  7679. <attr format="color" name="statusBarForeground"/>
  7680. </declare-styleable>
  7681. <declare-styleable name="AppBarLayoutStates">
  7682. <!-- @deprecated in favor of {@code state_lifted}. -->
  7683. <attr format="boolean" name="state_collapsed"/>
  7684. <!-- @deprecated in favor of {@code state_liftable}. -->
  7685. <attr format="boolean" name="state_collapsible"/>
  7686. <!-- State value for {@link com.google.android.material.appbar.AppBarLayout} set when the view
  7687. is lifted (elevated). -->
  7688. <attr format="boolean" name="state_lifted"/>
  7689. <!-- State value for {@link com.google.android.material.appbar.AppBarLayout} set when the view
  7690. is liftable (e.g., elevates on collapse or scroll). -->
  7691. <attr format="boolean" name="state_liftable"/>
  7692. </declare-styleable>
  7693. <declare-styleable name="AppBarLayout_Layout">
  7694. <attr name="layout_scrollFlags">
  7695. <!-- Disable scrolling on the view. This flag should not be combined with any of the other
  7696. scroll flags. -->
  7697. <flag name="noScroll" value="0x0"/>
  7698. <!-- The view will be scroll in direct relation to scroll events. This flag needs to be
  7699. set for any of the other flags to take effect. If any sibling views
  7700. before this one do not have this flag, then this value has no effect. -->
  7701. <flag name="scroll" value="0x1"/>
  7702. <!-- When exiting (scrolling off screen) the view will be scrolled until it is
  7703. 'collapsed'. The collapsed height is defined by the view's minimum height. -->
  7704. <flag name="exitUntilCollapsed" value="0x2"/>
  7705. <!-- When entering (scrolling on screen) the view will scroll on any downwards
  7706. scroll event, regardless of whether the scrolling view is also scrolling. This
  7707. is commonly referred to as the 'quick return' pattern. -->
  7708. <flag name="enterAlways" value="0x4"/>
  7709. <!-- An additional flag for 'enterAlways' which modifies the returning view to
  7710. only initially scroll back to it's collapsed height. Once the scrolling view has
  7711. reached the end of it's scroll range, the remainder of this view will be scrolled
  7712. into view. -->
  7713. <flag name="enterAlwaysCollapsed" value="0x8"/>
  7714. <!-- Upon a scroll ending, if the view is only partially visible then it will be
  7715. snapped and scrolled to it's closest edge. -->
  7716. <flag name="snap" value="0x10"/>
  7717. <!-- An additional flag to be used with 'snap'. If set, the view will be snapped to its
  7718. top and bottom margins, as opposed to the edges of the view itself. -->
  7719. <flag name="snapMargins" value="0x20"/>
  7720. </attr>
  7721. <attr format="enum" name="layout_scrollEffect">
  7722. <!-- No effect will be applied to this child when its parent
  7723. AppBarLayout's offset changes.-->
  7724. <enum name="none" value="0"/>
  7725. <!-- This view will be compressed (masked and parallaxed) when it reaches
  7726. the top of the screen and continues to scroll out of view.-->
  7727. <enum name="compress" value="1"/>
  7728. </attr>
  7729. <!-- An interpolator to use when scrolling this View. Only takes effect when View
  7730. is scrollable. -->
  7731. <attr format="reference" name="layout_scrollInterpolator"/>
  7732. </declare-styleable>
  7733. <declare-styleable name="AppCompatEmojiHelper">
  7734. </declare-styleable>
  7735. <declare-styleable name="AppCompatImageView">
  7736. <attr name="android:src"/>
  7737. <!-- Sets a drawable as the content of this ImageView. Allows the use of vector drawable
  7738. when running on older versions of the platform. -->
  7739. <attr format="reference" name="srcCompat"/>
  7740. <!-- Tint to apply to the image source. -->
  7741. <attr format="color" name="tint"/>
  7742. <!-- Blending mode used to apply the image source tint. -->
  7743. <attr name="tintMode">
  7744. <!-- The tint is drawn on top of the drawable.
  7745. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  7746. <enum name="src_over" value="3"/>
  7747. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  7748. color channels are thrown out. [Sa * Da, Sc * Da] -->
  7749. <enum name="src_in" value="5"/>
  7750. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  7751. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  7752. <enum name="src_atop" value="9"/>
  7753. <!-- Multiplies the color and alpha channels of the drawable with those of
  7754. the tint. [Sa * Da, Sc * Dc] -->
  7755. <enum name="multiply" value="14"/>
  7756. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  7757. <enum name="screen" value="15"/>
  7758. <!-- Combines the tint and icon color and alpha channels, clamping the
  7759. result to valid color values. Saturate(S + D) -->
  7760. <enum name="add" value="16"/>
  7761. </attr>
  7762. </declare-styleable>
  7763. <declare-styleable name="AppCompatSeekBar">
  7764. <attr name="android:thumb"/>
  7765. <!-- Drawable displayed at each progress position on a seekbar. -->
  7766. <attr format="reference" name="tickMark"/>
  7767. <!-- Tint to apply to the tick mark drawable. -->
  7768. <attr format="color" name="tickMarkTint"/>
  7769. <!-- Blending mode used to apply the tick mark tint. -->
  7770. <attr name="tickMarkTintMode">
  7771. <!-- The tint is drawn on top of the drawable.
  7772. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  7773. <enum name="src_over" value="3"/>
  7774. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  7775. color channels are thrown out. [Sa * Da, Sc * Da] -->
  7776. <enum name="src_in" value="5"/>
  7777. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  7778. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  7779. <enum name="src_atop" value="9"/>
  7780. <!-- Multiplies the color and alpha channels of the drawable with those of
  7781. the tint. [Sa * Da, Sc * Dc] -->
  7782. <enum name="multiply" value="14"/>
  7783. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  7784. <enum name="screen" value="15"/>
  7785. <!-- Combines the tint and drawable color and alpha channels, clamping the
  7786. result to valid color values. Saturate(S + D) -->
  7787. <enum name="add" value="16"/>
  7788. </attr>
  7789. </declare-styleable>
  7790. <declare-styleable name="AppCompatTextHelper">
  7791. <attr name="android:drawableLeft"/>
  7792. <attr name="android:drawableTop"/>
  7793. <attr name="android:drawableRight"/>
  7794. <attr name="android:drawableBottom"/>
  7795. <attr name="android:drawableStart"/>
  7796. <attr name="android:drawableEnd"/>
  7797. <attr name="android:textAppearance"/>
  7798. </declare-styleable>
  7799. <declare-styleable name="AppCompatTextView">
  7800. <!-- Present the text in ALL CAPS. This may use a small-caps form when available. -->
  7801. <attr format="reference|boolean" name="textAllCaps"/>
  7802. <!-- Set the textLocale by a comma-separated language tag string,
  7803. for example "ja-JP,zh-CN". This attribute only takes effect on API 21 and above.
  7804. Before API 24, only the first language tag is used. Starting from API 24,
  7805. the string will be converted into a {@link android.os.LocaleList} and then used by
  7806. {@link android.widget.TextView} -->
  7807. <attr format="string" name="textLocale"/>
  7808. <attr name="android:textAppearance"/>
  7809. <!-- Specify the type of auto-size. Note that this feature is not supported by EditText,
  7810. works only for TextView. -->
  7811. <attr format="enum" name="autoSizeTextType">
  7812. <!-- No auto-sizing (default). -->
  7813. <enum name="none" value="0"/>
  7814. <!-- Uniform horizontal and vertical text size scaling to fit within the
  7815. container. -->
  7816. <enum name="uniform" value="1"/>
  7817. </attr>
  7818. <!-- Specify the auto-size step size if <code>autoSizeTextType</code> is set to
  7819. <code>uniform</code>. The default is 1px. Overwrites
  7820. <code>autoSizePresetSizes</code> if set. -->
  7821. <attr format="dimension" name="autoSizeStepGranularity"/>
  7822. <!-- Resource array of dimensions to be used in conjunction with
  7823. <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides
  7824. <code>autoSizeStepGranularity</code> if set. -->
  7825. <attr format="reference" name="autoSizePresetSizes"/>
  7826. <!-- The minimum text size constraint to be used when auto-sizing text. -->
  7827. <attr format="dimension" name="autoSizeMinTextSize"/>
  7828. <!-- The maximum text size constraint to be used when auto-sizing text. -->
  7829. <attr format="dimension" name="autoSizeMaxTextSize"/>
  7830. <!-- The attribute for the font family. -->
  7831. <attr format="string" name="fontFamily"/>
  7832. <!-- Explicit height between lines of text. If set, this will override the values set
  7833. for lineSpacingExtra and lineSpacingMultiplier. -->
  7834. <attr format="dimension" name="lineHeight"/>
  7835. <!-- Distance from the top of the TextView to the first text baseline. If set, this
  7836. overrides the value set for paddingTop. -->
  7837. <attr format="dimension" name="firstBaselineToTopHeight"/>
  7838. <!-- Distance from the bottom of the TextView to the last text baseline. If set, this
  7839. overrides the value set for paddingBottom. -->
  7840. <attr format="dimension" name="lastBaselineToBottomHeight"/>
  7841. <!-- OpenType font variation settings, available after api 26. -->
  7842. <attr format="string" name="fontVariationSettings"/>
  7843. <!-- Compound drawables allowing the use of vector drawable when running on older versions
  7844. of the platform. -->
  7845. <attr format="reference" name="drawableLeftCompat"/>
  7846. <attr format="reference" name="drawableTopCompat"/>
  7847. <attr format="reference" name="drawableRightCompat"/>
  7848. <attr format="reference" name="drawableBottomCompat"/>
  7849. <attr format="reference" name="drawableStartCompat"/>
  7850. <attr format="reference" name="drawableEndCompat"/>
  7851. <!-- Tint to apply to the compound (left, top, etc.) drawables. -->
  7852. <attr format="color" name="drawableTint"/>
  7853. <!-- Blending mode used to apply the compound (left, top, etc.) drawables tint. -->
  7854. <attr name="drawableTintMode">
  7855. <!-- The tint is drawn on top of the drawable.
  7856. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  7857. <enum name="src_over" value="3"/>
  7858. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  7859. color channels are thrown out. [Sa * Da, Sc * Da] -->
  7860. <enum name="src_in" value="5"/>
  7861. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  7862. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  7863. <enum name="src_atop" value="9"/>
  7864. <!-- Multiplies the color and alpha channels of the drawable with those of
  7865. the tint. [Sa * Da, Sc * Dc] -->
  7866. <enum name="multiply" value="14"/>
  7867. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  7868. <enum name="screen" value="15"/>
  7869. <!-- Combines the tint and drawable color and alpha channels, clamping the
  7870. result to valid color values. Saturate(S + D) -->
  7871. <enum name="add" value="16"/>
  7872. </attr>
  7873. <!-- Display the emoji if emojicompat has this character for emoji not on the system -->
  7874. <attr format="boolean" name="emojiCompatEnabled"/>
  7875. </declare-styleable>
  7876. <declare-styleable name="AppCompatTheme">
  7877. <!-- ============= -->
  7878. <!-- Window styles -->
  7879. <!-- ============= -->
  7880. <eat-comment/>
  7881. <!-- Flag indicating whether this window should have an Action Bar
  7882. in place of the usual title bar. -->
  7883. <attr format="boolean" name="windowActionBar"/>
  7884. <!-- Flag indicating whether there should be no title on this window. -->
  7885. <attr format="boolean" name="windowNoTitle"/>
  7886. <!-- Flag indicating whether this window's Action Bar should overlay
  7887. application content. Does nothing if the window would not
  7888. have an Action Bar. -->
  7889. <attr format="boolean" name="windowActionBarOverlay"/>
  7890. <!-- Flag indicating whether action modes should overlay window content
  7891. when there is not reserved space for their UI (such as an Action Bar). -->
  7892. <attr format="boolean" name="windowActionModeOverlay"/>
  7893. <!-- A fixed width for the window along the major axis of the screen,
  7894. that is, when in landscape. Can be either an absolute dimension
  7895. or a fraction of the screen size in that dimension. -->
  7896. <attr format="dimension|fraction" name="windowFixedWidthMajor"/>
  7897. <!-- A fixed height for the window along the minor axis of the screen,
  7898. that is, when in landscape. Can be either an absolute dimension
  7899. or a fraction of the screen size in that dimension. -->
  7900. <attr format="dimension|fraction" name="windowFixedHeightMinor"/>
  7901. <!-- A fixed width for the window along the minor axis of the screen,
  7902. that is, when in portrait. Can be either an absolute dimension
  7903. or a fraction of the screen size in that dimension. -->
  7904. <attr format="dimension|fraction" name="windowFixedWidthMinor"/>
  7905. <!-- A fixed height for the window along the major axis of the screen,
  7906. that is, when in portrait. Can be either an absolute dimension
  7907. or a fraction of the screen size in that dimension. -->
  7908. <attr format="dimension|fraction" name="windowFixedHeightMajor"/>
  7909. <!-- The minimum width the window is allowed to be, along the major
  7910. axis of the screen. That is, when in landscape. Can be either
  7911. an absolute dimension or a fraction of the screen size in that
  7912. dimension. -->
  7913. <attr format="dimension|fraction" name="windowMinWidthMajor"/>
  7914. <!-- The minimum width the window is allowed to be, along the minor
  7915. axis of the screen. That is, when in portrait. Can be either
  7916. an absolute dimension or a fraction of the screen size in that
  7917. dimension. -->
  7918. <attr format="dimension|fraction" name="windowMinWidthMinor"/>
  7919. <attr name="android:windowIsFloating"/>
  7920. <attr name="android:windowAnimationStyle"/>
  7921. <!-- =================== -->
  7922. <!-- Action bar styles -->
  7923. <!-- =================== -->
  7924. <eat-comment/>
  7925. <!-- Default style for tabs within an action bar -->
  7926. <attr format="reference" name="actionBarTabStyle"/>
  7927. <attr format="reference" name="actionBarTabBarStyle"/>
  7928. <attr format="reference" name="actionBarTabTextStyle"/>
  7929. <attr format="reference" name="actionOverflowButtonStyle"/>
  7930. <attr format="reference" name="actionOverflowMenuStyle"/>
  7931. <!-- Reference to a theme that should be used to inflate popups
  7932. shown by widgets in the action bar. -->
  7933. <attr format="reference" name="actionBarPopupTheme"/>
  7934. <!-- Reference to a style for the Action Bar -->
  7935. <attr format="reference" name="actionBarStyle"/>
  7936. <!-- Reference to a style for the split Action Bar. This style
  7937. controls the split component that holds the menu/action
  7938. buttons. actionBarStyle is still used for the primary
  7939. bar. -->
  7940. <attr format="reference" name="actionBarSplitStyle"/>
  7941. <!-- Reference to a theme that should be used to inflate the
  7942. action bar. This will be inherited by any widget inflated
  7943. into the action bar. -->
  7944. <attr format="reference" name="actionBarTheme"/>
  7945. <!-- Reference to a theme that should be used to inflate the
  7946. action bar in action mode. This will be inherited by any widget inflated
  7947. into the action bar. -->
  7948. <attr format="reference" name="actionModeTheme"/>
  7949. <!-- Reference to a theme that should be used to inflate widgets
  7950. and layouts destined for the action bar. Most of the time
  7951. this will be a reference to the current theme, but when
  7952. the action bar has a significantly different contrast
  7953. profile than the rest of the activity the difference
  7954. can become important. If this is set to @null the current
  7955. theme will be used.-->
  7956. <attr format="reference" name="actionBarWidgetTheme"/>
  7957. <!-- Size of the Action Bar, including the contextual
  7958. bar used to present Action Modes. -->
  7959. <attr format="dimension" name="actionBarSize">
  7960. <enum name="wrap_content" value="0"/>
  7961. </attr>
  7962. <!-- Custom divider drawable to use for elements in the action bar. -->
  7963. <attr format="reference" name="actionBarDivider"/>
  7964. <!-- Custom item state list drawable background for action bar items. -->
  7965. <attr format="reference" name="actionBarItemBackground"/>
  7966. <!-- TextAppearance style that will be applied to text that
  7967. appears within action menu items. -->
  7968. <attr format="reference" name="actionMenuTextAppearance"/>
  7969. <!-- Color for text that appears within action menu items. -->
  7970. <!-- Color for text that appears within action menu items. -->
  7971. <attr format="color|reference" name="actionMenuTextColor"/>
  7972. <!-- =================== -->
  7973. <!-- Action mode styles -->
  7974. <!-- =================== -->
  7975. <eat-comment/>
  7976. <attr format="reference" name="actionModeStyle"/>
  7977. <attr format="reference" name="actionModeCloseButtonStyle"/>
  7978. <!-- Background drawable to use for action mode UI -->
  7979. <attr format="reference" name="actionModeBackground"/>
  7980. <!-- Background drawable to use for action mode UI in the lower split bar -->
  7981. <attr format="reference" name="actionModeSplitBackground"/>
  7982. <!-- Drawable to use for the close action mode button -->
  7983. <attr format="reference" name="actionModeCloseDrawable"/>
  7984. <!-- Drawable to use for the Cut action button in Contextual Action Bar -->
  7985. <attr format="reference" name="actionModeCutDrawable"/>
  7986. <!-- Drawable to use for the Copy action button in Contextual Action Bar -->
  7987. <attr format="reference" name="actionModeCopyDrawable"/>
  7988. <!-- Drawable to use for the Paste action button in Contextual Action Bar -->
  7989. <attr format="reference" name="actionModePasteDrawable"/>
  7990. <!-- Drawable to use for the Select all action button in Contextual Action Bar -->
  7991. <attr format="reference" name="actionModeSelectAllDrawable"/>
  7992. <!-- Drawable to use for the Share action button in WebView selection action modes -->
  7993. <attr format="reference" name="actionModeShareDrawable"/>
  7994. <!-- Drawable to use for the Find action button in WebView selection action modes -->
  7995. <attr format="reference" name="actionModeFindDrawable"/>
  7996. <!-- Drawable to use for the Web Search action button in WebView selection action modes -->
  7997. <attr format="reference" name="actionModeWebSearchDrawable"/>
  7998. <!-- Content description to use for the close action mode button -->
  7999. <attr format="string" name="actionModeCloseContentDescription"/>
  8000. <!-- PopupWindow style to use for action modes when showing as a window overlay. -->
  8001. <attr format="reference" name="actionModePopupWindowStyle"/>
  8002. <!-- =================== -->
  8003. <!-- Text styles -->
  8004. <!-- =================== -->
  8005. <eat-comment/>
  8006. <!-- Text color, typeface, size, and style for the text inside of a popup menu. -->
  8007. <attr format="reference" name="textAppearanceLargePopupMenu"/>
  8008. <!-- Text color, typeface, size, and style for small text inside of a popup menu. -->
  8009. <attr format="reference" name="textAppearanceSmallPopupMenu"/>
  8010. <!-- Text color, typeface, size, and style for header text inside of a popup menu. -->
  8011. <attr format="reference" name="textAppearancePopupMenuHeader"/>
  8012. <!-- =================== -->
  8013. <!-- Dialog styles -->
  8014. <!-- =================== -->
  8015. <eat-comment/>
  8016. <!-- Theme to use for dialogs spawned from this theme. -->
  8017. <attr format="reference" name="dialogTheme"/>
  8018. <!-- Preferred padding for dialog content. -->
  8019. <attr format="dimension" name="dialogPreferredPadding"/>
  8020. <!-- The list divider used in alert dialogs. -->
  8021. <attr format="reference" name="listDividerAlertDialog"/>
  8022. <!-- Preferred corner radius of dialogs. -->
  8023. <attr format="dimension" name="dialogCornerRadius"/>
  8024. <!-- =================== -->
  8025. <!-- Other widget styles -->
  8026. <!-- =================== -->
  8027. <eat-comment/>
  8028. <!-- Default ActionBar dropdown style. -->
  8029. <attr format="reference" name="actionDropDownStyle"/>
  8030. <!-- The preferred item height for dropdown lists. -->
  8031. <attr format="dimension" name="dropdownListPreferredItemHeight"/>
  8032. <!-- Default Spinner style. -->
  8033. <attr format="reference" name="spinnerDropDownItemStyle"/>
  8034. <!-- Specifies a drawable to use for the 'home as up' indicator. -->
  8035. <attr format="reference" name="homeAsUpIndicator"/>
  8036. <!-- Default action button style. -->
  8037. <attr format="reference" name="actionButtonStyle"/>
  8038. <!-- Style for button bars -->
  8039. <attr format="reference" name="buttonBarStyle"/>
  8040. <!-- Style for buttons within button bars -->
  8041. <attr format="reference" name="buttonBarButtonStyle"/>
  8042. <!-- A style that may be applied to buttons or other selectable items
  8043. that should react to pressed and focus states, but that do not
  8044. have a clear visual border along the edges. -->
  8045. <attr format="reference" name="selectableItemBackground"/>
  8046. <!-- Background drawable for borderless standalone items that need focus/pressed states. -->
  8047. <attr format="reference" name="selectableItemBackgroundBorderless"/>
  8048. <!-- Style for buttons without an explicit border, often used in groups. -->
  8049. <attr format="reference" name="borderlessButtonStyle"/>
  8050. <!-- A drawable that may be used as a vertical divider between visual elements. -->
  8051. <attr format="reference" name="dividerVertical"/>
  8052. <!-- A drawable that may be used as a horizontal divider between visual elements. -->
  8053. <attr format="reference" name="dividerHorizontal"/>
  8054. <!-- Default ActivityChooserView style. -->
  8055. <attr format="reference" name="activityChooserViewStyle"/>
  8056. <!-- Default Toolbar style. -->
  8057. <attr format="reference" name="toolbarStyle"/>
  8058. <!-- Default Toolar NavigationButtonStyle -->
  8059. <attr format="reference" name="toolbarNavigationButtonStyle"/>
  8060. <!-- Default PopupMenu style. -->
  8061. <attr format="reference" name="popupMenuStyle"/>
  8062. <!-- Default PopupWindow style. -->
  8063. <attr format="reference" name="popupWindowStyle"/>
  8064. <!-- EditText text foreground color. -->
  8065. <attr format="reference|color" name="editTextColor"/>
  8066. <!-- EditText background drawable. -->
  8067. <attr format="reference" name="editTextBackground"/>
  8068. <!-- ImageButton background drawable. -->
  8069. <attr format="reference" name="imageButtonStyle"/>
  8070. <!-- ============================ -->
  8071. <!-- SearchView styles and assets -->
  8072. <!-- ============================ -->
  8073. <eat-comment/>
  8074. <!-- Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. -->
  8075. <attr format="reference" name="textAppearanceSearchResultTitle"/>
  8076. <!-- Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. -->
  8077. <attr format="reference" name="textAppearanceSearchResultSubtitle"/>
  8078. <!-- Text color for urls in search suggestions, used by things like global search -->
  8079. <attr format="reference|color" name="textColorSearchUrl"/>
  8080. <!-- Style for the search query widget. -->
  8081. <attr format="reference" name="searchViewStyle"/>
  8082. <!-- =========== -->
  8083. <!-- List styles -->
  8084. <!-- =========== -->
  8085. <eat-comment/>
  8086. <!-- The preferred list item height. -->
  8087. <attr format="dimension" name="listPreferredItemHeight"/>
  8088. <!-- A smaller, sleeker list item height. -->
  8089. <attr format="dimension" name="listPreferredItemHeightSmall"/>
  8090. <!-- A larger, more robust list item height. -->
  8091. <attr format="dimension" name="listPreferredItemHeightLarge"/>
  8092. <!-- The preferred padding along the left edge of list items. -->
  8093. <attr format="dimension" name="listPreferredItemPaddingLeft"/>
  8094. <!-- The preferred padding along the right edge of list items. -->
  8095. <attr format="dimension" name="listPreferredItemPaddingRight"/>
  8096. <!-- The preferred padding along the start edge of list items. -->
  8097. <attr format="dimension" name="listPreferredItemPaddingStart"/>
  8098. <!-- The preferred padding along the end edge of list items. -->
  8099. <attr format="dimension" name="listPreferredItemPaddingEnd"/>
  8100. <!-- ListPopupWindow compatibility -->
  8101. <attr format="reference" name="dropDownListViewStyle"/>
  8102. <attr format="reference" name="listPopupWindowStyle"/>
  8103. <!-- The preferred TextAppearance for the primary text of list items. -->
  8104. <attr format="reference" name="textAppearanceListItem"/>
  8105. <!-- The preferred TextAppearance for the secondary text of list items. -->
  8106. <attr format="reference" name="textAppearanceListItemSecondary"/>
  8107. <!-- The preferred TextAppearance for the primary text of small list items. -->
  8108. <attr format="reference" name="textAppearanceListItemSmall"/>
  8109. <!-- ============ -->
  8110. <!-- Panel styles -->
  8111. <!-- ============ -->
  8112. <eat-comment/>
  8113. <!-- The background of a panel when it is inset from the left and right edges of the screen. -->
  8114. <attr format="reference" name="panelBackground"/>
  8115. <!-- Default Panel Menu width. -->
  8116. <attr format="dimension" name="panelMenuListWidth"/>
  8117. <!-- Default Panel Menu style. -->
  8118. <attr format="reference" name="panelMenuListTheme"/>
  8119. <!-- Drawable used as a background for selected list items. -->
  8120. <attr format="reference" name="listChoiceBackgroundIndicator"/>
  8121. <!-- ============= -->
  8122. <!-- Color palette -->
  8123. <!-- ============= -->
  8124. <eat-comment/>
  8125. <!-- The primary branding color for the app. By default, this is the color applied to the
  8126. action bar background. -->
  8127. <attr format="color" name="colorPrimary"/>
  8128. <!-- Dark variant of the primary branding color. By default, this is the color applied to
  8129. the status bar (via statusBarColor) and navigation bar (via navigationBarColor). -->
  8130. <attr format="color" name="colorPrimaryDark"/>
  8131. <!-- Bright complement to the primary branding color. By default, this is the color applied
  8132. to framework controls (via colorControlActivated). -->
  8133. <attr format="color" name="colorAccent"/>
  8134. <!-- The color applied to framework controls in their normal state. -->
  8135. <attr format="color" name="colorControlNormal"/>
  8136. <!-- The color applied to framework controls in their activated (ex. checked) state. -->
  8137. <attr format="color" name="colorControlActivated"/>
  8138. <!-- The color applied to framework control highlights (ex. ripples, list selectors). -->
  8139. <attr format="color" name="colorControlHighlight"/>
  8140. <!-- The color applied to framework buttons in their normal state. -->
  8141. <attr format="color" name="colorButtonNormal"/>
  8142. <!-- The color applied to framework switch thumbs in their normal state. -->
  8143. <attr format="color" name="colorSwitchThumbNormal"/>
  8144. <!-- The background used by framework controls. -->
  8145. <attr format="reference" name="controlBackground"/>
  8146. <!-- Default color of background imagery for floating components, ex. dialogs, popups, and cards. -->
  8147. <attr format="color" name="colorBackgroundFloating"/>
  8148. <!-- ============ -->
  8149. <!-- Alert Dialog styles -->
  8150. <!-- ============ -->
  8151. <eat-comment/>
  8152. <attr format="reference" name="alertDialogStyle"/>
  8153. <attr format="reference" name="alertDialogButtonGroupStyle"/>
  8154. <attr format="boolean" name="alertDialogCenterButtons"/>
  8155. <!-- Theme to use for alert dialogs spawned from this theme. -->
  8156. <attr format="reference" name="alertDialogTheme"/>
  8157. <!-- Color of list item text in alert dialogs. -->
  8158. <attr format="reference|color" name="textColorAlertDialogListItem"/>
  8159. <!-- Style for the "positive" buttons within button bars -->
  8160. <attr format="reference" name="buttonBarPositiveButtonStyle"/>
  8161. <!-- Style for the "negative" buttons within button bars -->
  8162. <attr format="reference" name="buttonBarNegativeButtonStyle"/>
  8163. <!-- Style for the "neutral" buttons within button bars -->
  8164. <attr format="reference" name="buttonBarNeutralButtonStyle"/>
  8165. <!-- ===================== -->
  8166. <!-- Default widget styles -->
  8167. <!-- ===================== -->
  8168. <eat-comment/>
  8169. <!-- Default AutoCompleteTextView style. -->
  8170. <attr format="reference" name="autoCompleteTextViewStyle"/>
  8171. <!-- Normal Button style. -->
  8172. <attr format="reference" name="buttonStyle"/>
  8173. <!-- Small Button style. -->
  8174. <attr format="reference" name="buttonStyleSmall"/>
  8175. <!-- Default Checkbox style. -->
  8176. <attr format="reference" name="checkboxStyle"/>
  8177. <!-- Default CheckedTextView style. -->
  8178. <attr format="reference" name="checkedTextViewStyle"/>
  8179. <!-- Default EditText style. -->
  8180. <attr format="reference" name="editTextStyle"/>
  8181. <!-- Default RadioButton style. -->
  8182. <attr format="reference" name="radioButtonStyle"/>
  8183. <!-- Default RatingBar style. -->
  8184. <attr format="reference" name="ratingBarStyle"/>
  8185. <!-- Indicator RatingBar style. -->
  8186. <attr format="reference" name="ratingBarStyleIndicator"/>
  8187. <!-- Small indicator RatingBar style. -->
  8188. <attr format="reference" name="ratingBarStyleSmall"/>
  8189. <!-- Default SeekBar style. -->
  8190. <attr format="reference" name="seekBarStyle"/>
  8191. <!-- Default Spinner style. -->
  8192. <attr format="reference" name="spinnerStyle"/>
  8193. <!-- Default style for the Switch widget. -->
  8194. <attr format="reference" name="switchStyle"/>
  8195. <!-- Default menu-style ListView style. -->
  8196. <attr format="reference" name="listMenuViewStyle"/>
  8197. <!-- ===================== -->
  8198. <!-- Tooltip styles -->
  8199. <!-- ===================== -->
  8200. <eat-comment/>
  8201. <!-- Background to use for tooltips -->
  8202. <attr format="reference" name="tooltipFrameBackground"/>
  8203. <!-- Foreground color to use for tooltips -->
  8204. <attr format="reference|color" name="tooltipForegroundColor"/>
  8205. <!-- Color used for error states and things that need to be drawn to
  8206. the user's attention. -->
  8207. <attr format="reference|color" name="colorError"/>
  8208. <attr format="string" name="viewInflaterClass"/>
  8209. <!-- ===================== -->
  8210. <!-- Animated list choice indicators -->
  8211. <!-- ===================== -->
  8212. <eat-comment/>
  8213. <!-- Animated Drawable to use for single choice indicators. -->
  8214. <attr format="reference" name="listChoiceIndicatorSingleAnimated"/>
  8215. <!-- Animated Drawable to use for multiple choice indicators. -->
  8216. <attr format="reference" name="listChoiceIndicatorMultipleAnimated"/>
  8217. </declare-styleable>
  8218. <declare-styleable name="Badge">
  8219. <!-- The radius of a badge without text (a "dot"). -->
  8220. <attr format="dimension" name="badgeRadius"/>
  8221. <!-- Start and end padding for a badge that is oblong due to long text. -->
  8222. <attr format="dimension" name="badgeWidePadding"/>
  8223. <!-- Radius of a badge with text. -->
  8224. <attr format="dimension" name="badgeWithTextRadius"/>
  8225. <attr format="color" name="backgroundColor"/>
  8226. <attr format="color" name="badgeTextColor"/>
  8227. <attr format="integer" name="maxCharacterCount"/>
  8228. <attr format="integer" name="number"/>
  8229. <attr name="badgeGravity">
  8230. <!-- Gravity.TOP | Gravity.END -->
  8231. <enum name="TOP_END" value="8388661"/>
  8232. <!-- Gravity.TOP | Gravity.START -->
  8233. <enum name="TOP_START" value="8388659"/>
  8234. <!-- Gravity.BOTTOM | Gravity.END -->
  8235. <enum name="BOTTOM_END" value="8388693"/>
  8236. <!-- Gravity.BOTTOM | Gravity.START -->
  8237. <enum name="BOTTOM_START" value="8388691"/>
  8238. </attr>
  8239. <!-- Offsets the badge horizontally towards the center of its anchor when
  8240. the badge doesn't have text (is a "dot"). Defaults to 0. -->
  8241. <attr format="dimension" name="horizontalOffset"/>
  8242. <!-- Offsets the badge vertically towards the center of its anchor when the
  8243. badge doesn't have text (is a "dot"). Defaults to 0. -->
  8244. <attr format="dimension" name="verticalOffset"/>
  8245. <!-- Offsets the badge horizontally towards the center of its anchor when
  8246. the badge has text. If this is not defined, it will default to
  8247. horizontalOffset's value. -->
  8248. <attr format="dimension" name="horizontalOffsetWithText"/>
  8249. <!-- Offsets the badge vertically towards the center of its anchor when the
  8250. badge has text. If this is not defined, it will default to
  8251. verticalOffset's value. -->
  8252. <attr format="dimension" name="verticalOffsetWithText"/>
  8253. </declare-styleable>
  8254. <declare-styleable name="BaseProgressIndicator">
  8255. <!-- Whether the progress indicator should be indeterminate mode. -->
  8256. <attr name="android:indeterminate"/>
  8257. <!-- The thickness of the progress track and indicator. -->
  8258. <attr format="dimension" name="trackThickness"/>
  8259. <!--
  8260. The radius of each corner of both the indicator and the track. A radius
  8261. larger than half of the track width will throw exceptions during
  8262. initialization.
  8263. -->
  8264. <attr format="dimension" name="trackCornerRadius"/>
  8265. <!--
  8266. The indicator color (or colors in an array). By default, it uses theme
  8267. primary color.
  8268. -->
  8269. <attr format="color|reference" name="indicatorColor"/>
  8270. <!--
  8271. The color used for the progress track. If not defined, it will be set to
  8272. the indicatorColor and apply the android:disabledAlpha from the theme.
  8273. -->
  8274. <attr name="trackColor"/>
  8275. <!-- The animation behavior to show the indicator and track. -->
  8276. <attr name="showAnimationBehavior">
  8277. <!-- No animation used; appears immediately. -->
  8278. <enum name="none" value="0"/>
  8279. <!--
  8280. Expands from the bottom edge to the top edge for the linear type;
  8281. expands from the inner edge to the outer edge for the circular type.
  8282. -->
  8283. <enum name="outward" value="1"/>
  8284. <!--
  8285. Expands from the top edge to the bottom edge for the linear type;
  8286. expands from the outer edge to the inner edge for the circular type.
  8287. -->
  8288. <enum name="inward" value="2"/>
  8289. </attr>
  8290. <!-- The animation behavior to hide the indicator and track. -->
  8291. <attr name="hideAnimationBehavior">
  8292. <!-- No animation used; disappears immediately. -->
  8293. <enum name="none" value="0"/>
  8294. <!--
  8295. Collapses from the bottom edge to the top edge for the linear type;
  8296. collapses from the inner edge to the outer edge for the circular type.
  8297. -->
  8298. <enum name="outward" value="1"/>
  8299. <!--
  8300. Collapses from the top edge to the bottom edge for the linear type;
  8301. collapses from the outer edge to the inner edge for the circular type.
  8302. -->
  8303. <enum name="inward" value="2"/>
  8304. </attr>
  8305. <!--
  8306. The time, in milliseconds, that the progress indicator will wait to show
  8307. once show() is called. If set to zero or negative values (-1 as default),
  8308. the show action will start immediately.
  8309. -->
  8310. <attr format="integer" name="showDelay"/>
  8311. <!--
  8312. The minimum time, in milliseconds, that the requested hide action will
  8313. wait to start once show action is started. If set to zero or negative
  8314. values (-1 as default), the requested hide action will start immediately.
  8315. This value is capped to a limit defined in ProgressIndicator class.
  8316. -->
  8317. <attr format="integer" name="minHideDelay"/>
  8318. </declare-styleable>
  8319. <declare-styleable name="BottomAppBar">
  8320. <!-- Background for the BottomAppBar. -->
  8321. <attr name="backgroundTint"/>
  8322. <!-- The tint color for the navigation button icon drawable corresponding to
  8323. the "app:navigationIcon" attribute. -->
  8324. <attr name="navigationIconTint"/>
  8325. <!-- Elevation for the BottomAppBar. -->
  8326. <attr name="elevation"/>
  8327. <!-- The alignment of the fab relative to the BottomAppBar. -->
  8328. <attr name="fabAlignmentMode">
  8329. <!-- Mode that aligns the fab to the center. -->
  8330. <enum name="center" value="0"/>
  8331. <!-- Mode that aligns the fab to the end. -->
  8332. <enum name="end" value="1"/>
  8333. </attr>
  8334. <!-- The animation mode that should be used when the fab animates between alignment modes. -->
  8335. <attr name="fabAnimationMode">
  8336. <!-- Mode that scales the fab down to a point, moves it, then scales the fab back to its normal size. -->
  8337. <enum name="scale" value="0"/>
  8338. <!-- Mode that slides the fab from one alignment mode to the next. -->
  8339. <enum name="slide" value="1"/>
  8340. </attr>
  8341. <!-- The margin between the semi-circular cradle for the fab and the fab. -->
  8342. <attr format="dimension" name="fabCradleMargin"/>
  8343. <!-- The radius of the rounded corners on each side of the cradle. -->
  8344. <attr format="dimension" name="fabCradleRoundedCornerRadius"/>
  8345. <!-- The vertical offset between the fab from the cradle. -->
  8346. <attr format="dimension" name="fabCradleVerticalOffset"/>
  8347. <!-- Whether the BottomAppBar should hide when a NestedScrollView is scrolled. -->
  8348. <attr format="boolean" name="hideOnScroll"/>
  8349. <!-- Whether the BottomAppBar should apply padding to be above the bottom window insets. -->
  8350. <attr name="paddingBottomSystemWindowInsets"/>
  8351. <!-- Whether the BottomAppBar should apply padding to be to the right of the left window insets. -->
  8352. <attr name="paddingLeftSystemWindowInsets"/>
  8353. <!-- Whether the BottomAppBar should apply padding to be to the left of the right window insets. -->
  8354. <attr name="paddingRightSystemWindowInsets"/>
  8355. </declare-styleable>
  8356. <declare-styleable name="BottomNavigationView">
  8357. <!-- Whether the items translate horizontally when in "selected" label visibility mode. -->
  8358. <attr format="boolean" name="itemHorizontalTranslationEnabled"/>
  8359. <!-- The min height this view should maintain. -->
  8360. <attr name="android:minHeight"/>
  8361. </declare-styleable>
  8362. <declare-styleable name="BottomSheetBehavior_Layout">
  8363. <!-- The height of the bottom sheet when it is collapsed. -->
  8364. <attr format="dimension" name="behavior_peekHeight">
  8365. <!-- Peek at the 16:9 ratio keyline of its parent -->
  8366. <enum name="auto" value="-1"/>
  8367. </attr>
  8368. <!-- Whether this bottom sheet can be hidden by dragging it further downwards -->
  8369. <attr format="boolean" name="behavior_hideable"/>
  8370. <!-- Skip the collapsed state once expanded; no effect unless it is hideable -->
  8371. <attr format="boolean" name="behavior_skipCollapsed"/>
  8372. <!-- Whether height of expanded sheet wraps content or not -->
  8373. <attr format="boolean" name="behavior_fitToContents"/>
  8374. <!-- Whether this bottom sheet is draggable. If not, the app will have to supply different
  8375. means to expand and collapse the sheet -->
  8376. <attr format="boolean" name="behavior_draggable"/>
  8377. <!-- The ratio to be used to set the height of half-expanded state in proportion to parent, when
  8378. fitToContents is false. Defaults to true half, 0.5, if not explicitly set. Ratio must be a
  8379. float value between 0 and 1 and produce a half-expanded state height larger than the
  8380. peek height for the half-expanded state to be operational -->
  8381. <attr format="reference|float" name="behavior_halfExpandedRatio"/>
  8382. <!-- The top offset of the BottomSheet in the expanded-state when fitsToContent is false.
  8383. The default value is 0, which results in the sheet matching the parent's top. -->
  8384. <attr format="reference|dimension" name="behavior_expandedOffset"/>
  8385. <!-- Shape appearance style reference for BottomSheet. Attribute declaration is in the shape
  8386. package. -->
  8387. <attr name="shapeAppearance"/>
  8388. <!-- Shape appearance overlay style reference for BottomSheet. To be used to augment attributes
  8389. declared in the shapeAppearance. Attribute declaration is in the shape package. -->
  8390. <attr name="shapeAppearanceOverlay"/>
  8391. <!-- Background color used by the BottomSheetBehavior background drawable when shape theming is
  8392. enabled. Accepts a ColorStateList or ColorInt. If shape theming is not enabled,
  8393. android:background should instead be utilized to set the background resource. -->
  8394. <attr name="backgroundTint"/>
  8395. <!-- Behavior properties will be saved and restored by evaluating each flag.
  8396. usage: app:behavior_saveFlags=”hideable|skipCollapsed” -->
  8397. <attr name="behavior_saveFlags">
  8398. <!-- This flag will preserve the peekHeight on configuration change. -->
  8399. <flag name="peekHeight" value="0x1"/>
  8400. <!-- This flag will preserve the fitToContents boolean value on configuration change. -->
  8401. <flag name="fitToContents" value="0x2"/>
  8402. <!-- This flag will preserve the hideable boolean value on configuration change. -->
  8403. <flag name="hideable" value="0x4"/>
  8404. <!-- This flag will preserve the skipCollapsed boolean value on configuration change. -->
  8405. <flag name="skipCollapsed" value="0x8"/>
  8406. <!-- This flag will preserve the all the aforementioned values on configuration change. -->
  8407. <flag name="all" value="-1"/>
  8408. <!-- This flag will not preserve the aforementioned values on configuration change. The only
  8409. value preserved will be the positional state, e.g. collapsed, hidden, expanded, etc.
  8410. This is the default behavior. -->
  8411. <flag name="none" value="0"/>
  8412. </attr>
  8413. <!-- Sets whether this bottom sheet should adjust it's position based on the system gesture area
  8414. on Android Q and above. Value is false (insets respected) by default. -->
  8415. <attr format="boolean" name="gestureInsetBottomIgnored"/>
  8416. <attr name="paddingBottomSystemWindowInsets"/>
  8417. <attr name="paddingLeftSystemWindowInsets"/>
  8418. <attr name="paddingRightSystemWindowInsets"/>
  8419. <attr name="paddingTopSystemWindowInsets"/>
  8420. <attr name="android:elevation"/>
  8421. <attr name="android:maxWidth"/>
  8422. <attr name="android:maxHeight"/>
  8423. </declare-styleable>
  8424. <declare-styleable name="ButtonBarLayout">
  8425. <!-- Whether to automatically stack the buttons when there is not
  8426. enough space to lay them out side-by-side. -->
  8427. <attr format="boolean" name="allowStacking"/>
  8428. </declare-styleable>
  8429. <declare-styleable name="Capability">
  8430. <!-- Resource reference to the string array of query patterns for a custom capability. -->
  8431. <attr format="reference" name="queryPatterns"/>
  8432. <!-- Indicates whether a parameter in a capability template can only contain a matched
  8433. shortcut id and not an arbitrary string. -->
  8434. <attr format="boolean" name="shortcutMatchRequired"/>
  8435. </declare-styleable>
  8436. <declare-styleable name="CardView">
  8437. <!-- Background color for CardView. -->
  8438. <attr format="color" name="cardBackgroundColor"/>
  8439. <!-- Corner radius for CardView. -->
  8440. <attr format="dimension" name="cardCornerRadius"/>
  8441. <!-- Elevation for CardView. -->
  8442. <attr format="dimension" name="cardElevation"/>
  8443. <!-- Maximum Elevation for CardView. -->
  8444. <attr format="dimension" name="cardMaxElevation"/>
  8445. <!-- Add padding in API v21+ as well to have the same measurements with previous versions. -->
  8446. <attr format="boolean" name="cardUseCompatPadding"/>
  8447. <!-- Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. -->
  8448. <attr format="boolean" name="cardPreventCornerOverlap"/>
  8449. <!-- Inner padding between the edges of the Card and children of the CardView. -->
  8450. <attr format="dimension" name="contentPadding"/>
  8451. <!-- Inner padding between the left edge of the Card and children of the CardView. -->
  8452. <attr format="dimension" name="contentPaddingLeft"/>
  8453. <!-- Inner padding between the right edge of the Card and children of the CardView. -->
  8454. <attr format="dimension" name="contentPaddingRight"/>
  8455. <!-- Inner padding between the top edge of the Card and children of the CardView. -->
  8456. <attr format="dimension" name="contentPaddingTop"/>
  8457. <!-- Inner padding between the bottom edge of the Card and children of the CardView. -->
  8458. <attr format="dimension" name="contentPaddingBottom"/>
  8459. <!-- Workaround to read user defined minimum width -->
  8460. <attr name="android:minWidth"/>
  8461. <!-- Workaround to read user defined minimum height -->
  8462. <attr name="android:minHeight"/>
  8463. </declare-styleable>
  8464. <declare-styleable name="CheckedTextView">
  8465. <attr name="android:checkMark"/>
  8466. <!-- Compat attr to load backported drawable types -->
  8467. <attr format="reference" name="checkMarkCompat"/>
  8468. <!-- Tint to apply to the check mark drawable. -->
  8469. <attr format="color" name="checkMarkTint"/>
  8470. <!-- Blending mode used to apply the check mark tint. -->
  8471. <attr name="checkMarkTintMode">
  8472. <!-- The tint is drawn on top of the drawable.
  8473. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  8474. <enum name="src_over" value="3"/>
  8475. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  8476. color channels are thrown out. [Sa * Da, Sc * Da] -->
  8477. <enum name="src_in" value="5"/>
  8478. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  8479. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  8480. <enum name="src_atop" value="9"/>
  8481. <!-- Multiplies the color and alpha channels of the drawable with those of
  8482. the tint. [Sa * Da, Sc * Dc] -->
  8483. <enum name="multiply" value="14"/>
  8484. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  8485. <enum name="screen" value="15"/>
  8486. <!-- Combines the tint and icon color and alpha channels, clamping the
  8487. result to valid color values. Saturate(S + D) -->
  8488. <enum name="add" value="16"/>
  8489. </attr>
  8490. </declare-styleable>
  8491. <declare-styleable name="Chip">
  8492. <!-- Surface layer color to apply to the chip. -->
  8493. <!-- Do not expose publicly because there is no public getter/setter and the user doesn't need
  8494. to configure this.-->
  8495. <attr format="color" name="chipSurfaceColor"/>
  8496. <!-- Background color to apply to the chip. -->
  8497. <attr format="color" name="chipBackgroundColor"/>
  8498. <!-- Min height to apply to the chip. Total height includes stroke width. -->
  8499. <attr format="dimension" name="chipMinHeight"/>
  8500. <!-- Corner radius to apply to the chip's shape. -->
  8501. <attr format="dimension" name="chipCornerRadius"/>
  8502. <!-- Stroke color to apply to the chip's outline. -->
  8503. <attr format="color" name="chipStrokeColor"/>
  8504. <!-- Stroke width to apply to the chip's outline. -->
  8505. <attr format="dimension" name="chipStrokeWidth"/>
  8506. <!-- Ripple color to apply to the chip. -->
  8507. <attr name="rippleColor"/>
  8508. <!-- Minimum size of chip's touch target, by default, Android recommended 48dp. -->
  8509. <attr format="dimension" name="chipMinTouchTargetSize"/>
  8510. <!-- Whether to extend the bounds of chip to meet chipMinTouchTargetSize. -->
  8511. <attr name="ensureMinTouchTargetSize"/>
  8512. <!-- Text to display on the chip. -->
  8513. <attr name="android:text"/>
  8514. <!-- Text color. -->
  8515. <attr name="android:textColor"/>
  8516. <!-- Default appearance of text: color, typeface, size, and style. -->
  8517. <attr name="android:textAppearance"/>
  8518. <!-- Text size. Overrides the size set in the textAppearance -->
  8519. <attr name="android:textSize"/>
  8520. <!-- If set, causes words that are longer than the view is wide to be ellipsized instead of
  8521. truncated at the end. -->
  8522. <attr name="android:ellipsize"/>
  8523. <!-- Make the Chip to be at most this many pixels wide. -->
  8524. <attr name="android:maxWidth"/>
  8525. <!-- Whether to show the chip icon. -->
  8526. <attr format="boolean" name="chipIconVisible"/>
  8527. <!-- Deprecated. Use chipIconVisible instead. -->
  8528. <attr format="boolean" name="chipIconEnabled"/>
  8529. <!-- Icon drawable to display at the start of the chip. -->
  8530. <attr format="reference" name="chipIcon"/>
  8531. <!-- Tint to apply to the chip icon. -->
  8532. <attr format="color" name="chipIconTint"/>
  8533. <!-- Size of the chip's icon and checked icon. -->
  8534. <attr format="dimension" name="chipIconSize"/>
  8535. <!-- Whether to show the close icon. -->
  8536. <attr format="boolean" name="closeIconVisible"/>
  8537. <!-- Deprecated. Use closeIconVisible instead. -->
  8538. <attr format="boolean" name="closeIconEnabled"/>
  8539. <!-- Close icon drawable to display at the end of the chip. -->
  8540. <attr format="reference" name="closeIcon"/>
  8541. <!-- Tint to apply to the chip's close icon. -->
  8542. <attr format="color" name="closeIconTint"/>
  8543. <!-- Size of the chip's close icon. -->
  8544. <attr format="dimension" name="closeIconSize"/>
  8545. <!-- Whether the chip can be checked. If false, the chip will act as a button. -->
  8546. <attr name="android:checkable"/>
  8547. <!-- Whether to show the checked icon. -->
  8548. <attr format="boolean" name="checkedIconVisible"/>
  8549. <!-- Deprecated. Use checkedIconVisible instead -->
  8550. <attr format="boolean" name="checkedIconEnabled"/>
  8551. <!-- Check icon drawable to overlay the chip's icon. -->
  8552. <attr name="checkedIcon"/>
  8553. <!-- Tint to apply to the chip's checked icon. -->
  8554. <attr name="checkedIconTint"/>
  8555. <!-- Motion spec for show animation. This should be a MotionSpec resource. -->
  8556. <attr name="showMotionSpec"/>
  8557. <!-- Motion spec for hide animation. This should be a MotionSpec resource. -->
  8558. <attr name="hideMotionSpec"/>
  8559. <!-- Shape appearance style reference for Chip. Attribute declaration is in the Shape
  8560. package. -->
  8561. <attr name="shapeAppearance"/>
  8562. <!-- Shape appearance overlay style reference for Chip. To be used to augment attributes
  8563. declared in the shapeAppearance. Attribute declaration is in the Shape package. -->
  8564. <attr name="shapeAppearanceOverlay"/>
  8565. <!-- The following attributes are adjustable padding on the chip, listed from start to end. -->
  8566. <!-- Chip starts here. -->
  8567. <!-- Padding at the start of the chip, before the icon. -->
  8568. <attr format="dimension" name="chipStartPadding"/>
  8569. <!-- Padding at the start of the icon, after the start of the chip. If icon exists. -->
  8570. <attr format="dimension" name="iconStartPadding"/>
  8571. <!-- Icon is here. -->
  8572. <!-- Padding at the end of the icon, before the text. If icon exists. -->
  8573. <attr format="dimension" name="iconEndPadding"/>
  8574. <!-- Padding at the start of the text, after the icon. -->
  8575. <attr format="dimension" name="textStartPadding"/>
  8576. <!-- Text is here. -->
  8577. <!-- Padding at the end of the text, before the close icon. -->
  8578. <attr format="dimension" name="textEndPadding"/>
  8579. <!-- Padding at the start of the close icon, after the text. If close icon exists. -->
  8580. <attr format="dimension" name="closeIconStartPadding"/>
  8581. <!-- Close icon is here. -->
  8582. <!-- Padding at the end of the close icon, before the end of the chip. If close icon exists. -->
  8583. <attr format="dimension" name="closeIconEndPadding"/>
  8584. <!-- Padding at the end of the chip, after the close icon. -->
  8585. <attr format="dimension" name="chipEndPadding"/>
  8586. <!-- Chip ends here. -->
  8587. </declare-styleable>
  8588. <declare-styleable name="ChipGroup">
  8589. <!-- Horizontal and vertical spacing between chips in this group. -->
  8590. <attr format="dimension" name="chipSpacing"/>
  8591. <!-- Horizontal spacing between chips in this group. -->
  8592. <attr format="dimension" name="chipSpacingHorizontal"/>
  8593. <!-- Vertical spacing between chips in this group. -->
  8594. <attr format="dimension" name="chipSpacingVertical"/>
  8595. <!-- Constrains the chips in this group to a single horizontal line. By default, this is false
  8596. and the chips in this group will reflow to multiple lines.
  8597. If you set this to true, you'll usually want to wrap this ChipGroup in a
  8598. HorizontalScrollView. -->
  8599. <attr format="boolean" name="singleLine"/>
  8600. <!-- Whether only a single chip in this group is allowed to be checked at any time. By default,
  8601. this is false and multiple chips in this group are allowed to be checked at once. -->
  8602. <attr name="singleSelection"/>
  8603. <!-- Whether we prevent all child chips from being deselected.
  8604. It's false by default. -->
  8605. <attr name="selectionRequired"/>
  8606. <!-- The id of the child chip that should be checked by default within this chip group. -->
  8607. <attr format="reference" name="checkedChip"/>
  8608. </declare-styleable>
  8609. <declare-styleable name="CircularProgressIndicator">
  8610. <!--
  8611. Defines the size (outer diameter) of the circular progress indicator.
  8612. -->
  8613. <attr format="dimension" name="indicatorSize"/>
  8614. <!--
  8615. The extra space from the outer edge of the indicator to the edge of the
  8616. canvas.
  8617. -->
  8618. <attr format="dimension" name="indicatorInset"/>
  8619. <!--
  8620. The direction in which the circular indicator progresses, in the
  8621. determinate mode, and is animated, in the indeterminate mode.
  8622. -->
  8623. <attr name="indicatorDirectionCircular">
  8624. <!--
  8625. In the indeterminate mode, the spinner will spin clockwise; in the
  8626. determinate mode, the indicator will progress from the top (12 o'clock)
  8627. clockwise.
  8628. -->
  8629. <enum name="clockwise" value="0"/>
  8630. <!--
  8631. In the indeterminate mode, the spinner will spin counter-clockwise; in
  8632. the determinate mode, the indicator will progress from the top (12
  8633. o'clock) counter-clockwise.
  8634. -->
  8635. <enum name="counterclockwise" value="1"/>
  8636. </attr>
  8637. </declare-styleable>
  8638. <declare-styleable name="ClockFaceView">
  8639. <attr format="color" name="clockNumberTextColor"/>
  8640. <attr format="color" name="clockFaceBackgroundColor"/>
  8641. </declare-styleable>
  8642. <declare-styleable name="ClockHandView">
  8643. <attr format="color" name="clockHandColor"/>
  8644. <attr name="materialCircleRadius"/>
  8645. <attr format="dimension" name="selectorSize"/>
  8646. </declare-styleable>
  8647. <declare-styleable name="CollapsingToolbarLayout">
  8648. <!-- Specifies extra space on the start, top, end and bottom
  8649. sides of the the expanded title text. Margin values should be positive. -->
  8650. <attr format="dimension" name="expandedTitleMargin"/>
  8651. <!-- Specifies extra space on the start side of the the expanded title text.
  8652. Margin values should be positive. -->
  8653. <attr format="dimension" name="expandedTitleMarginStart"/>
  8654. <!-- Specifies extra space on the top side of the the expanded title text.
  8655. Margin values should be positive. -->
  8656. <attr format="dimension" name="expandedTitleMarginTop"/>
  8657. <!-- Specifies extra space on the end side of the the expanded title text.
  8658. Margin values should be positive. -->
  8659. <attr format="dimension" name="expandedTitleMarginEnd"/>
  8660. <!-- Specifies extra space on the bottom side of the the expanded title text.
  8661. Margin values should be positive. -->
  8662. <attr format="dimension" name="expandedTitleMarginBottom"/>
  8663. <!-- The text appearance of the CollapsingToolbarLayout's title when it is fully
  8664. 'expanded' -->
  8665. <attr format="reference" name="expandedTitleTextAppearance"/>
  8666. <!-- The text appearance of the CollapsingToolbarLayouts title when it is fully
  8667. 'collapsed' -->
  8668. <attr format="reference" name="collapsedTitleTextAppearance"/>
  8669. <!-- The text color of the CollapsingToolbarLayout's title when it is fully
  8670. 'expanded' -->
  8671. <attr format="color|reference" name="expandedTitleTextColor"/>
  8672. <!-- The text color of the CollapsingToolbarLayouts title when it is fully
  8673. 'collapsed' -->
  8674. <attr format="color|reference" name="collapsedTitleTextColor"/>
  8675. <!-- The drawable to use as a scrim on top of the CollapsingToolbarLayouts content when
  8676. it has been scrolled sufficiently off screen. -->
  8677. <attr format="color" name="contentScrim"/>
  8678. <!-- The drawable to use as a scrim for the status bar content when the
  8679. CollapsingToolbarLayout has been scrolled sufficiently off screen. Only works on
  8680. Lollipop when used together with android:fitSystemWindows="true". -->
  8681. <attr format="color" name="statusBarScrim"/>
  8682. <!-- The id of the primary Toolbar child that you wish to use for the purpose of collapsing.
  8683. This Toolbar descendant view does not need to be a direct child of the layout.
  8684. If you do not set this, the first direct Toolbar child found will be used. -->
  8685. <attr format="reference" name="toolbarId"/>
  8686. <!-- Specifies the amount of visible height in pixels used to define when to trigger a
  8687. scrim visibility change. -->
  8688. <attr format="dimension" name="scrimVisibleHeightTrigger"/>
  8689. <!-- Specifies the duration used for scrim visibility animations. -->
  8690. <attr format="integer" name="scrimAnimationDuration"/>
  8691. <!-- Specifies how the title should be positioned when collapsed. -->
  8692. <attr name="collapsedTitleGravity">
  8693. <!-- Push title to the top of its container, not changing its size. -->
  8694. <flag name="top" value="0x30"/>
  8695. <!-- Push title to the bottom of its container, not changing its size. -->
  8696. <flag name="bottom" value="0x50"/>
  8697. <!-- Push title to the left of its container, not changing its size. -->
  8698. <flag name="left" value="0x03"/>
  8699. <!-- Push title to the right of its container, not changing its size. -->
  8700. <flag name="right" value="0x05"/>
  8701. <!-- Place title in the vertical center of its container, not changing its size. -->
  8702. <flag name="center_vertical" value="0x10"/>
  8703. <!-- Grow the vertical size of the title if needed so it completely fills its container. -->
  8704. <flag name="fill_vertical" value="0x70"/>
  8705. <!-- Place title in the horizontal center of its container, not changing its size. -->
  8706. <flag name="center_horizontal" value="0x01"/>
  8707. <!-- Place the title in the center of its container in both the vertical and horizontal axis, not changing its size. -->
  8708. <flag name="center" value="0x11"/>
  8709. <!-- Push title to the beginning of its container, not changing its size. -->
  8710. <flag name="start" value="0x00800003"/>
  8711. <!-- Push title to the end of its container, not changing its size. -->
  8712. <flag name="end" value="0x00800005"/>
  8713. </attr>
  8714. <!-- Specifies how the title should be positioned when expanded. -->
  8715. <attr name="expandedTitleGravity">
  8716. <!-- Push title to the top of its container, not changing its size. -->
  8717. <flag name="top" value="0x30"/>
  8718. <!-- Push title to the bottom of its container, not changing its size. -->
  8719. <flag name="bottom" value="0x50"/>
  8720. <!-- Push title to the left of its container, not changing its size. -->
  8721. <flag name="left" value="0x03"/>
  8722. <!-- Push title to the right of its container, not changing its size. -->
  8723. <flag name="right" value="0x05"/>
  8724. <!-- Place title in the vertical center of its container, not changing its size. -->
  8725. <flag name="center_vertical" value="0x10"/>
  8726. <!-- Grow the vertical size of the title if needed so it completely fills its container. -->
  8727. <flag name="fill_vertical" value="0x70"/>
  8728. <!-- Place title in the horizontal center of its container, not changing its size. -->
  8729. <flag name="center_horizontal" value="0x01"/>
  8730. <!-- Place the title in the center of its container in both the vertical and horizontal axis, not changing its size. -->
  8731. <flag name="center" value="0x11"/>
  8732. <!-- Push title to the beginning of its container, not changing its size. -->
  8733. <flag name="start" value="0x00800003"/>
  8734. <!-- Push title to the end of its container, not changing its size. -->
  8735. <flag name="end" value="0x00800005"/>
  8736. </attr>
  8737. <!-- Whether the CollapsingToolbarLayout should draw its own collapsing title. -->
  8738. <attr format="boolean" name="titleEnabled"/>
  8739. <!-- The title to show when titleEnabled is set to true. -->
  8740. <attr name="title"/>
  8741. <!-- Mode to specify the effect used to collapse and expand the title text. -->
  8742. <attr name="titleCollapseMode">
  8743. <!-- The expanded title will continuously scale and translate to its final collapsed position. -->
  8744. <enum name="scale" value="0"/>
  8745. <!-- The expanded title will fade out and translate, and the collapsed title will fade in. -->
  8746. <enum name="fade" value="1"/>
  8747. </attr>
  8748. <!-- The maximum number of lines to display in the expanded state. Experimental Feature. -->
  8749. <attr format="integer" name="maxLines"/>
  8750. <!-- Whether the system window inset top should be applied regardless of
  8751. what the layout_height is set to. Experimental Feature. -->
  8752. <attr format="boolean" name="forceApplySystemWindowInsetTop"/>
  8753. <!-- Whether extra height should be added when the title text spans across
  8754. multiple lines. Experimental Feature. -->
  8755. <attr format="boolean" name="extraMultilineHeightEnabled"/>
  8756. <!-- The interpolator to use when animating the title position from collapsed to expanded and
  8757. vice versa. -->
  8758. <attr format="reference" name="titlePositionInterpolator"/>
  8759. </declare-styleable>
  8760. <declare-styleable name="CollapsingToolbarLayout_Layout">
  8761. <attr name="layout_collapseMode">
  8762. <!-- The view will act as normal with no collapsing behavior. -->
  8763. <enum name="none" value="0"/>
  8764. <!-- The view will pin in place. -->
  8765. <enum name="pin" value="1"/>
  8766. <!-- The view will scroll in a parallax fashion. See the
  8767. layout_collapseParallaxMultiplier attribute to change the multiplier. -->
  8768. <enum name="parallax" value="2"/>
  8769. </attr>
  8770. <!-- The multiplier used when layout_collapseMode is set to 'parallax'. The value should
  8771. be between 0.0 and 1.0. -->
  8772. <attr format="float" name="layout_collapseParallaxMultiplier"/>
  8773. </declare-styleable>
  8774. <declare-styleable name="ColorStateListItem">
  8775. <!-- Base color for this state. -->
  8776. <attr name="android:color"/>
  8777. <!-- Alpha multiplier applied to the base color. -->
  8778. <attr format="float" name="alpha"/>
  8779. <attr name="android:alpha"/>
  8780. <!-- Perceptual luminance applied to the base color. From 0 to 100. -->
  8781. <attr format="float" name="lStar"/>
  8782. <attr name="android:lStar"/>
  8783. </declare-styleable>
  8784. <declare-styleable name="CompoundButton">
  8785. <attr name="android:button"/>
  8786. <!-- Compat attr to load backported drawable types -->
  8787. <attr format="reference" name="buttonCompat"/>
  8788. <!-- Tint to apply to the button drawable. -->
  8789. <attr format="color" name="buttonTint"/>
  8790. <!-- Blending mode used to apply the button tint. -->
  8791. <attr name="buttonTintMode">
  8792. <!-- The tint is drawn on top of the drawable.
  8793. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  8794. <enum name="src_over" value="3"/>
  8795. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  8796. color channels are thrown out. [Sa * Da, Sc * Da] -->
  8797. <enum name="src_in" value="5"/>
  8798. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  8799. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  8800. <enum name="src_atop" value="9"/>
  8801. <!-- Multiplies the color and alpha channels of the drawable with those of
  8802. the tint. [Sa * Da, Sc * Dc] -->
  8803. <enum name="multiply" value="14"/>
  8804. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  8805. <enum name="screen" value="15"/>
  8806. <!-- Combines the tint and icon color and alpha channels, clamping the
  8807. result to valid color values. Saturate(S + D) -->
  8808. <enum name="add" value="16"/>
  8809. </attr>
  8810. </declare-styleable>
  8811. <declare-styleable name="Constraint"><attr name="android:orientation"/><attr name="android:id"/><attr name="android:visibility"/><attr name="visibilityMode"/><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:transformPivotX"/><attr name="android:transformPivotY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_marginStart"/><attr name="android:layout_marginBottom"/><attr name="android:layout_marginTop"/><attr name="android:layout_marginEnd"/><attr name="android:layout_marginLeft"/><attr name="android:layout_marginRight"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/><attr name="barrierDirection"/><attr name="barrierMargin"/><attr name="constraint_referenced_ids"/><attr name="android:maxHeight"/><attr name="android:maxWidth"/><attr name="android:minHeight"/><attr name="android:minWidth"/><attr name="barrierAllowsGoneWidgets"/><attr name="chainUseRtl"/><attr name="flow_horizontalStyle"/><attr name="flow_verticalStyle"/><attr name="flow_verticalAlign"/><attr name="flow_horizontalAlign"/><attr name="flow_verticalBias"/><attr name="flow_horizontalBias"/><attr name="flow_wrapMode"/><attr name="flow_maxElementsWrap"/><attr name="flow_horizontalGap"/><attr name="flow_verticalGap"/><attr name="flow_firstHorizontalStyle"/><attr name="flow_firstVerticalStyle"/><attr name="flow_firstHorizontalBias"/><attr name="flow_firstVerticalBias"/><attr name="flow_lastHorizontalStyle"/><attr name="flow_lastVerticalStyle"/><attr name="flow_lastHorizontalBias"/><attr name="flow_lastVerticalBias"/><attr name="animate_relativeTo"/><attr name="transitionEasing"/><attr name="pathMotionArc"/><attr name="transitionPathRotate"/><attr name="drawPath"/><attr name="motionProgress"/><attr name="layout_constraintTag"/><attr name="motionStagger"/></declare-styleable>
  8812. <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="android:visibility"/><attr name="android:elevation"/><attr name="layout_optimizationLevel"/><attr name="layoutDescription"/><attr name="constraintSet"/><attr name="barrierDirection"/><attr name="barrierAllowsGoneWidgets"/><attr name="barrierMargin"/><attr name="constraint_referenced_ids"/><attr name="chainUseRtl"/><attr name="flow_horizontalStyle"/><attr name="flow_verticalStyle"/><attr name="flow_wrapMode"/><attr name="flow_maxElementsWrap"/><attr name="flow_horizontalGap"/><attr name="flow_verticalGap"/><attr name="android:padding"/><attr name="android:paddingTop"/><attr name="android:paddingBottom"/><attr name="android:paddingLeft"/><attr name="android:paddingRight"/><attr name="android:paddingStart"/><attr name="android:paddingEnd"/><attr name="flow_verticalAlign"/><attr name="flow_horizontalAlign"/><attr name="flow_verticalBias"/><attr name="flow_horizontalBias"/><attr name="flow_firstHorizontalStyle"/><attr name="flow_firstVerticalStyle"/><attr name="flow_firstHorizontalBias"/><attr name="flow_firstVerticalBias"/><attr name="flow_lastHorizontalStyle"/><attr name="flow_lastVerticalStyle"/><attr name="flow_lastHorizontalBias"/><attr name="flow_lastVerticalBias"/><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="layout_constraintTag"/></declare-styleable>
  8813. <declare-styleable name="ConstraintLayout_placeholder"><attr name="placeholder_emptyVisibility"/><attr name="content"/></declare-styleable>
  8814. <declare-styleable name="ConstraintSet"><attr format="reference" name="deriveConstraintsFrom"/><attr name="android:orientation"/><attr name="android:id"/><attr name="android:visibility"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="pivotAnchor"/><attr name="android:pivotX"/><attr name="android:pivotY"/><attr name="android:transformPivotX"/><attr name="android:transformPivotY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_marginStart"/><attr name="android:layout_marginBottom"/><attr name="android:layout_marginTop"/><attr name="android:layout_marginEnd"/><attr name="android:layout_marginLeft"/><attr name="android:layout_marginRight"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/><attr name="barrierDirection"/><attr name="constraint_referenced_ids"/><attr name="barrierMargin"/><attr name="android:maxHeight"/><attr name="android:maxWidth"/><attr name="android:minHeight"/><attr name="android:minWidth"/><attr name="barrierAllowsGoneWidgets"/><attr name="chainUseRtl"/><attr name="flow_horizontalStyle"/><attr name="flow_verticalStyle"/><attr name="flow_verticalAlign"/><attr name="flow_horizontalAlign"/><attr name="flow_verticalBias"/><attr name="flow_horizontalBias"/><attr name="flow_wrapMode"/><attr name="flow_maxElementsWrap"/><attr name="flow_horizontalGap"/><attr name="flow_verticalGap"/><attr name="flow_firstHorizontalStyle"/><attr name="flow_firstVerticalStyle"/><attr name="flow_firstHorizontalBias"/><attr name="flow_firstVerticalBias"/><attr name="flow_lastHorizontalStyle"/><attr name="flow_lastVerticalStyle"/><attr name="flow_lastHorizontalBias"/><attr name="flow_lastVerticalBias"/><attr name="animate_relativeTo"/><attr name="transitionEasing"/><attr name="pathMotionArc"/><attr name="transitionPathRotate"/><attr name="motionStagger"/><attr name="drawPath"/><attr name="motionProgress"/><attr name="layout_constraintTag"/></declare-styleable>
  8815. <declare-styleable name="CoordinatorLayout">
  8816. <!-- A reference to an array of integers representing the
  8817. locations of horizontal keylines in dp from the starting edge.
  8818. Child views can refer to these keylines for alignment using
  8819. layout_keyline="index" where index is a 0-based index into
  8820. this array. -->
  8821. <attr format="reference" name="keylines"/>
  8822. <!-- Drawable to display behind the status bar when the view is set to draw behind it. -->
  8823. <attr format="color|reference" name="statusBarBackground"/>
  8824. </declare-styleable>
  8825. <declare-styleable name="CoordinatorLayout_Layout">
  8826. <attr name="android:layout_gravity"/>
  8827. <!-- The class name of a Behavior class defining special runtime behavior
  8828. for this child view. -->
  8829. <attr format="string" name="layout_behavior"/>
  8830. <!-- The id of an anchor view that this view should position relative to. -->
  8831. <attr format="reference" name="layout_anchor"/>
  8832. <!-- The index of a keyline this view should position relative to.
  8833. android:layout_gravity will affect how the view aligns to the
  8834. specified keyline. -->
  8835. <attr format="integer" name="layout_keyline"/>
  8836. <!-- Specifies how an object should position relative to an anchor, on both the X and Y axes,
  8837. within its parent's bounds. -->
  8838. <attr name="layout_anchorGravity">
  8839. <!-- Push object to the top of its container, not changing its size. -->
  8840. <flag name="top" value="0x30"/>
  8841. <!-- Push object to the bottom of its container, not changing its size. -->
  8842. <flag name="bottom" value="0x50"/>
  8843. <!-- Push object to the left of its container, not changing its size. -->
  8844. <flag name="left" value="0x03"/>
  8845. <!-- Push object to the right of its container, not changing its size. -->
  8846. <flag name="right" value="0x05"/>
  8847. <!-- Place object in the vertical center of its container, not changing its size. -->
  8848. <flag name="center_vertical" value="0x10"/>
  8849. <!-- Grow the vertical size of the object if needed so it completely fills its container. -->
  8850. <flag name="fill_vertical" value="0x70"/>
  8851. <!-- Place object in the horizontal center of its container, not changing its size. -->
  8852. <flag name="center_horizontal" value="0x01"/>
  8853. <!-- Grow the horizontal size of the object if needed so it completely fills its container. -->
  8854. <flag name="fill_horizontal" value="0x07"/>
  8855. <!-- Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. -->
  8856. <flag name="center" value="0x11"/>
  8857. <!-- Grow the horizontal and vertical size of the object if needed so it completely fills its container. -->
  8858. <flag name="fill" value="0x77"/>
  8859. <!-- Additional option that can be set to have the top and/or bottom edges of
  8860. the child clipped to its container's bounds.
  8861. The clip will be based on the vertical gravity: a top gravity will clip the bottom
  8862. edge, a bottom gravity will clip the top edge, and neither will clip both edges. -->
  8863. <flag name="clip_vertical" value="0x80"/>
  8864. <!-- Additional option that can be set to have the left and/or right edges of
  8865. the child clipped to its container's bounds.
  8866. The clip will be based on the horizontal gravity: a left gravity will clip the right
  8867. edge, a right gravity will clip the left edge, and neither will clip both edges. -->
  8868. <flag name="clip_horizontal" value="0x08"/>
  8869. <!-- Push object to the beginning of its container, not changing its size. -->
  8870. <flag name="start" value="0x00800003"/>
  8871. <!-- Push object to the end of its container, not changing its size. -->
  8872. <flag name="end" value="0x00800005"/>
  8873. </attr>
  8874. <!-- Specifies how this view insets the CoordinatorLayout and make some other views
  8875. dodge it. -->
  8876. <attr format="enum" name="layout_insetEdge">
  8877. <!-- Don't inset. -->
  8878. <enum name="none" value="0x0"/>
  8879. <!-- Inset the top edge. -->
  8880. <enum name="top" value="0x30"/>
  8881. <!-- Inset the bottom edge. -->
  8882. <enum name="bottom" value="0x50"/>
  8883. <!-- Inset the left edge. -->
  8884. <enum name="left" value="0x03"/>
  8885. <!-- Inset the right edge. -->
  8886. <enum name="right" value="0x05"/>
  8887. <!-- Inset the start edge. -->
  8888. <enum name="start" value="0x00800003"/>
  8889. <!-- Inset the end edge. -->
  8890. <enum name="end" value="0x00800005"/>
  8891. </attr>
  8892. <!-- Specifies how this view dodges the inset edges of the CoordinatorLayout. -->
  8893. <attr name="layout_dodgeInsetEdges">
  8894. <!-- Don't dodge any edges -->
  8895. <flag name="none" value="0x0"/>
  8896. <!-- Dodge the top inset edge. -->
  8897. <flag name="top" value="0x30"/>
  8898. <!-- Dodge the bottom inset edge. -->
  8899. <flag name="bottom" value="0x50"/>
  8900. <!-- Dodge the left inset edge. -->
  8901. <flag name="left" value="0x03"/>
  8902. <!-- Dodge the right inset edge. -->
  8903. <flag name="right" value="0x05"/>
  8904. <!-- Dodge the start inset edge. -->
  8905. <flag name="start" value="0x00800003"/>
  8906. <!-- Dodge the end inset edge. -->
  8907. <flag name="end" value="0x00800005"/>
  8908. <!-- Dodge all the inset edges. -->
  8909. <flag name="all" value="0x77"/>
  8910. </attr>
  8911. </declare-styleable>
  8912. <declare-styleable name="CustomAttribute"><attr format="string" name="attributeName"/><attr format="color" name="customColorValue"/><attr format="color" name="customColorDrawableValue"/><attr format="integer" name="customIntegerValue"/><attr format="float" name="customFloatValue"/><attr format="string" name="customStringValue"/><attr format="dimension" name="customDimension"/><attr format="dimension" name="customPixelDimension"/><attr format="boolean" name="customBoolean"/></declare-styleable>
  8913. <declare-styleable name="DrawerArrowToggle">
  8914. <!-- The drawing color for the bars -->
  8915. <attr format="color" name="color"/>
  8916. <!-- Whether bars should rotate or not during transition -->
  8917. <attr format="boolean" name="spinBars"/>
  8918. <!-- The total size of the drawable -->
  8919. <attr format="dimension" name="drawableSize"/>
  8920. <!-- The max gap between the bars when they are parallel to each other -->
  8921. <attr format="dimension" name="gapBetweenBars"/>
  8922. <!-- The length of the arrow head when formed to make an arrow -->
  8923. <attr format="dimension" name="arrowHeadLength"/>
  8924. <!-- The length of the shaft when formed to make an arrow -->
  8925. <attr format="dimension" name="arrowShaftLength"/>
  8926. <!-- The length of the bars when they are parallel to each other -->
  8927. <attr format="dimension" name="barLength"/>
  8928. <!-- The thickness (stroke size) for the bar paint -->
  8929. <attr format="dimension" name="thickness"/>
  8930. </declare-styleable>
  8931. <declare-styleable name="DrawerLayout">
  8932. <!-- The height difference between the drawer and the base surface. Only takes effect on API 21 and above -->
  8933. <attr name="elevation"/>
  8934. </declare-styleable>
  8935. <declare-styleable name="ExtendedFloatingActionButton">
  8936. <!-- Elevation for the ExtendedFloatingActionButton. -->
  8937. <attr name="elevation"/>
  8938. <!-- Motion spec for show animation. This should be a MotionSpec resource. -->
  8939. <attr name="showMotionSpec"/>
  8940. <!-- Motion spec for hide animation. This should be a MotionSpec resource. -->
  8941. <attr name="hideMotionSpec"/>
  8942. <!-- Motion spec for extend animation. This should be a MotionSpec resource. -->
  8943. <attr format="reference" name="extendMotionSpec"/>
  8944. <!-- Motion spec for shrink animation. This should be a MotionSpec resource. -->
  8945. <attr format="reference" name="shrinkMotionSpec"/>
  8946. <!-- FAB size when collapsed. -->
  8947. <attr format="dimension" name="collapsedSize"/>
  8948. </declare-styleable>
  8949. <declare-styleable name="ExtendedFloatingActionButton_Behavior_Layout">
  8950. <!-- Whether the extended FAB should automatically hide when there is no space for it. -->
  8951. <attr name="behavior_autoHide"/>
  8952. <!-- Whether the extended FAB should automatically shrink when there is no space for it. -->
  8953. <attr format="boolean" name="behavior_autoShrink"/>
  8954. </declare-styleable>
  8955. <declare-styleable name="FloatingActionButton">
  8956. <!-- Whether the FloatingActionButton is enabled -->
  8957. <attr name="android:enabled"/>
  8958. <!-- Background for the FloatingActionButton -->
  8959. <attr name="backgroundTint"/>
  8960. <attr name="backgroundTintMode"/>
  8961. <!-- Ripple color for the FAB. -->
  8962. <attr name="rippleColor"/>
  8963. <!-- Size for the FAB. If fabCustomSize is set, this will be ignored. -->
  8964. <attr name="fabSize">
  8965. <!-- A size which will change based on the window size. -->
  8966. <enum name="auto" value="-1"/>
  8967. <!-- The normal sized button. -->
  8968. <enum name="normal" value="0"/>
  8969. <!-- The mini sized button. -->
  8970. <enum name="mini" value="1"/>
  8971. </attr>
  8972. <!-- Custom size for the FAB. If this is set, fabSize will be ignored. -->
  8973. <attr format="dimension" name="fabCustomSize"/>
  8974. <!-- Elevation value for the FAB -->
  8975. <attr name="elevation"/>
  8976. <!-- Whether to extend the bounds of the FloatingActionButton to meet
  8977. @dimen/mtrl_fab_min_touch_target. -->
  8978. <attr name="ensureMinTouchTargetSize"/>
  8979. <!-- TranslationZ value for the FAB when hovered, focused, or hovered and focused. -->
  8980. <attr format="dimension" name="hoveredFocusedTranslationZ"/>
  8981. <!-- TranslationZ value for the FAB when pressed-->
  8982. <attr format="dimension" name="pressedTranslationZ"/>
  8983. <!-- The width of the border around the FAB. -->
  8984. <attr format="dimension" name="borderWidth"/>
  8985. <!-- Enable compat padding. -->
  8986. <attr format="boolean" name="useCompatPadding"/>
  8987. <!-- Maximum icon image size. -->
  8988. <attr format="dimension" name="maxImageSize"/>
  8989. <!-- Motion spec for show animation. This should be a MotionSpec resource.
  8990. If this attr is set to @null, a default animation will be used which
  8991. respects duration and easing theme values.-->
  8992. <attr name="showMotionSpec"/>
  8993. <!-- Motion spec for hide animation. This should be a MotionSpec resource.
  8994. If this attr is set to @null, a default animation will be used which
  8995. respects duration and easing theme values.-->
  8996. <attr name="hideMotionSpec"/>
  8997. <!-- Shape appearance style reference for FloatingActionButton. Attribute declaration
  8998. is in the shape package. -->
  8999. <attr name="shapeAppearance"/>
  9000. <!-- Shape appearance overlay style reference for FloatingActionButton. -->
  9001. <attr name="shapeAppearanceOverlay"/>
  9002. </declare-styleable>
  9003. <declare-styleable name="FloatingActionButton_Behavior_Layout">
  9004. <!-- Whether the FAB should automatically hide when there is no space for it. -->
  9005. <attr format="boolean" name="behavior_autoHide"/>
  9006. </declare-styleable>
  9007. <declare-styleable name="FlowLayout">
  9008. <!-- Horizontal spacing between two items being laid out. -->
  9009. <attr format="dimension" name="itemSpacing"/>
  9010. <!-- Vertical Spacing between two lines of items being laid out. -->
  9011. <attr format="dimension" name="lineSpacing"/>
  9012. </declare-styleable>
  9013. <declare-styleable name="FontFamily">
  9014. <!-- The authority of the Font Provider to be used for the request. -->
  9015. <attr format="string" name="fontProviderAuthority"/>
  9016. <!-- The package for the Font Provider to be used for the request. This is used to verify
  9017. the identity of the provider. -->
  9018. <attr format="string" name="fontProviderPackage"/>
  9019. <!-- The query to be sent over to the provider. Refer to your font provider's documentation
  9020. on the format of this string. -->
  9021. <attr format="string" name="fontProviderQuery"/>
  9022. <!-- The sets of hashes for the certificates the provider should be signed with. This is
  9023. used to verify the identity of the provider, and is only required if the provider is not
  9024. part of the system image. This value may point to one list or a list of lists, where each
  9025. individual list represents one collection of signature hashes. Refer to your font provider's
  9026. documentation for these values. -->
  9027. <attr format="reference" name="fontProviderCerts"/>
  9028. <!-- The strategy to be used when fetching font data from a font provider in XML layouts.
  9029. This attribute is ignored when the resource is loaded from code, as it is equivalent to the
  9030. choice of API between {@link
  9031. androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and
  9032. {@link
  9033. androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)}
  9034. (async). -->
  9035. <attr name="fontProviderFetchStrategy">
  9036. <!-- The blocking font fetch works as follows.
  9037. First, check the local cache, then if the requested font is not cached, request the
  9038. font from the provider and wait until it is finished. You can change the length of
  9039. the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the
  9040. default typeface will be used instead. -->
  9041. <enum name="blocking" value="0"/>
  9042. <!-- The async font fetch works as follows.
  9043. First, check the local cache, then if the requeted font is not cached, trigger a
  9044. request the font and continue with layout inflation. Once the font fetch succeeds, the
  9045. target text view will be refreshed with the downloaded font data. The
  9046. fontProviderFetchTimeout will be ignored if async loading is specified. -->
  9047. <enum name="async" value="1"/>
  9048. </attr>
  9049. <!-- The length of the timeout during fetching. -->
  9050. <attr format="integer" name="fontProviderFetchTimeout">
  9051. <!-- A special value for the timeout. In this case, the blocking font fetching will not
  9052. timeout and wait until a reply is received from the font provider. -->
  9053. <enum name="forever" value="-1"/>
  9054. </attr>
  9055. <!-- Provides the system font family name to check before downloading the font. For
  9056. example if the fontProviderQuery asked for "Sans Serif", it is possible to define
  9057. fontProviderSystemFontFamily as "sans-serif" to tell the system to use "sans-serif" font
  9058. family if it exists on the system. -->
  9059. <attr format="string" name="fontProviderSystemFontFamily"/>
  9060. </declare-styleable>
  9061. <declare-styleable name="FontFamilyFont">
  9062. <!-- The style of the given font file. This will be used when the font is being loaded into
  9063. the font stack and will override any style information in the font's header tables. If
  9064. unspecified, the value in the font's header tables will be used. -->
  9065. <attr name="fontStyle">
  9066. <enum name="normal" value="0"/>
  9067. <enum name="italic" value="1"/>
  9068. </attr>
  9069. <!-- The reference to the font file to be used. This should be a file in the res/font folder
  9070. and should therefore have an R reference value. E.g. @font/myfont -->
  9071. <attr format="reference" name="font"/>
  9072. <!-- The weight of the given font file. This will be used when the font is being loaded into
  9073. the font stack and will override any weight information in the font's header tables. Must
  9074. be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most
  9075. common values are 400 for regular weight and 700 for bold weight. If unspecified, the value
  9076. in the font's header tables will be used. -->
  9077. <attr format="integer" name="fontWeight"/>
  9078. <!-- The variation settings to be applied to the font. The string should be in the following
  9079. format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be
  9080. used, or the font used does not support variation settings, this attribute needs not be
  9081. specified. -->
  9082. <attr format="string" name="fontVariationSettings"/>
  9083. <!-- The index of the font in the tcc font file. If the font file referenced is not in the
  9084. tcc format, this attribute needs not be specified. -->
  9085. <attr format="integer" name="ttcIndex"/>
  9086. <!-- References to the framework attrs -->
  9087. <attr name="android:fontStyle"/>
  9088. <attr name="android:font"/>
  9089. <attr name="android:fontWeight"/>
  9090. <attr name="android:fontVariationSettings"/>
  9091. <attr name="android:ttcIndex"/>
  9092. </declare-styleable>
  9093. <declare-styleable name="ForegroundLinearLayout">
  9094. <attr name="android:foreground"/>
  9095. <attr name="android:foregroundGravity"/>
  9096. <!-- Do not expose publicly, used by ForegroundLinearLayout but never set by any style. -->
  9097. <attr format="boolean" name="foregroundInsidePadding"/>
  9098. </declare-styleable>
  9099. <declare-styleable name="Fragment">
  9100. <attr name="android:name"/>
  9101. <attr name="android:id"/>
  9102. <attr name="android:tag"/>
  9103. </declare-styleable>
  9104. <declare-styleable name="FragmentContainerView">
  9105. <attr name="android:name"/>
  9106. <attr name="android:tag"/>
  9107. </declare-styleable>
  9108. <declare-styleable name="GradientColor">
  9109. <!-- Start color of the gradient. -->
  9110. <attr name="android:startColor"/>
  9111. <!-- Optional center color. -->
  9112. <attr name="android:centerColor"/>
  9113. <!-- End color of the gradient. -->
  9114. <attr name="android:endColor"/>
  9115. <!-- Type of gradient. The default type is linear. -->
  9116. <attr name="android:type"/>
  9117. <!-- Only applied to RadialGradient-->
  9118. <!-- Radius of the gradient, used only with radial gradient. -->
  9119. <attr name="android:gradientRadius"/>
  9120. <!-- Only applied to SweepGradient / RadialGradient-->
  9121. <!-- X coordinate of the center of the gradient within the path. -->
  9122. <attr name="android:centerX"/>
  9123. <!-- Y coordinate of the center of the gradient within the path. -->
  9124. <attr name="android:centerY"/>
  9125. <!-- LinearGradient specific -->
  9126. <!-- X coordinate of the start point origin of the gradient.
  9127. Defined in same coordinates as the path itself -->
  9128. <attr name="android:startX"/>
  9129. <!-- Y coordinate of the start point of the gradient within the shape.
  9130. Defined in same coordinates as the path itself -->
  9131. <attr name="android:startY"/>
  9132. <!-- X coordinate of the end point origin of the gradient.
  9133. Defined in same coordinates as the path itself -->
  9134. <attr name="android:endX"/>
  9135. <!-- Y coordinate of the end point of the gradient within the shape.
  9136. Defined in same coordinates as the path itself -->
  9137. <attr name="android:endY"/>
  9138. <!-- Defines the tile mode of the gradient. SweepGradient doesn't support tiling. -->
  9139. <attr name="android:tileMode"/>
  9140. </declare-styleable>
  9141. <declare-styleable name="GradientColorItem">
  9142. <!-- The offset (or ratio) of this current color item inside the gradient.
  9143. The value is only meaningful when it is between 0 and 1. -->
  9144. <attr name="android:offset"/>
  9145. <!-- The current color for the offset inside the gradient. -->
  9146. <attr name="android:color"/>
  9147. </declare-styleable>
  9148. <declare-styleable name="ImageFilterView"><attr format="reference" name="altSrc"/><attr format="float" name="saturation"/><attr format="float" name="brightness"/><attr format="float" name="warmth"/><attr format="float" name="contrast"/><attr format="float" name="crossfade"/><attr format="dimension" name="round"/><attr format="boolean" name="overlay"/><attr format="float" name="roundPercent"/></declare-styleable>
  9149. <declare-styleable name="Insets">
  9150. <!-- Just adding the parameters that we need for now. We can add others if we need them, but
  9151. ideally we'll be able to use https://github.com/chrisbanes/insetter once it's ready. -->
  9152. <attr format="boolean" name="paddingBottomSystemWindowInsets"/>
  9153. <attr format="boolean" name="paddingLeftSystemWindowInsets"/>
  9154. <attr format="boolean" name="paddingRightSystemWindowInsets"/>
  9155. <attr format="boolean" name="paddingTopSystemWindowInsets"/>
  9156. </declare-styleable>
  9157. <declare-styleable name="KeyAttribute"><attr name="framePosition"/><attr name="motionTarget"/><attr name="transitionEasing"/><attr name="curveFit"/><attr name="motionProgress"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:transformPivotX"/><attr name="android:transformPivotY"/><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>
  9158. <declare-styleable name="KeyCycle"><attr name="motionTarget"/><attr name="curveFit"/><attr name="framePosition"/><attr name="transitionEasing"/><attr name="motionProgress"/><attr name="waveShape"/><attr name="wavePeriod"/><attr name="waveOffset"/><attr name="waveVariesBy"/><attr name="transitionPathRotate"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/></declare-styleable>
  9159. <declare-styleable name="KeyFrame"/>
  9160. <declare-styleable name="KeyFramesAcceleration"/>
  9161. <declare-styleable name="KeyFramesVelocity"/>
  9162. <declare-styleable name="KeyPosition"><attr format="enum" name="keyPositionType">
  9163. <enum name="deltaRelative" value="0"/>
  9164. <enum name="pathRelative" value="1"/>
  9165. <enum name="parentRelative" value="2"/>
  9166. </attr><attr format="float" name="percentX"/><attr format="float" name="percentY"/><attr format="float" name="percentWidth"/><attr format="float" name="percentHeight"/><attr name="framePosition"/><attr name="motionTarget"/><attr name="transitionEasing"/><attr name="pathMotionArc"/><attr name="curveFit"/><attr name="drawPath"/><attr name="sizePercent"/></declare-styleable>
  9167. <declare-styleable name="KeyTimeCycle"><attr name="framePosition"/><attr name="motionTarget"/><attr name="transitionEasing"/><attr name="curveFit"/><attr name="waveShape"/><attr name="wavePeriod"/><attr name="motionProgress"/><attr name="waveOffset"/><attr name="waveDecay"/><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>
  9168. <declare-styleable name="KeyTrigger"><attr name="framePosition"/><attr name="motionTarget"/><attr format="reference" name="triggerReceiver"/><attr format="string" name="onNegativeCross"/><attr format="string" name="onPositiveCross"/><attr format="string" name="onCross"/><attr format="float" name="triggerSlack"/><attr format="reference" name="triggerId"/><attr format="boolean" name="motion_postLayoutCollision"/><attr format="reference" name="motion_triggerOnCollision"/></declare-styleable>
  9169. <declare-styleable name="Layout"><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="android:orientation"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/><attr name="barrierDirection"/><attr name="barrierMargin"/><attr name="constraint_referenced_ids"/><attr format="dimension" name="maxHeight"/><attr format="dimension" name="maxWidth"/><attr format="dimension" name="minHeight"/><attr format="dimension" name="minWidth"/><attr name="barrierAllowsGoneWidgets"/><attr name="chainUseRtl"/></declare-styleable>
  9170. <declare-styleable name="LinearLayoutCompat">
  9171. <!-- Should the layout be a column or a row? Use "horizontal"
  9172. for a row, "vertical" for a column. The default is
  9173. horizontal. -->
  9174. <attr name="android:orientation"/>
  9175. <attr name="android:gravity"/>
  9176. <!-- When set to false, prevents the layout from aligning its children's
  9177. baselines. This attribute is particularly useful when the children
  9178. use different values for gravity. The default value is true. -->
  9179. <attr name="android:baselineAligned"/>
  9180. <!-- When a linear layout is part of another layout that is baseline
  9181. aligned, it can specify which of its children to baseline align to
  9182. (that is, which child TextView).-->
  9183. <attr name="android:baselineAlignedChildIndex"/>
  9184. <!-- Defines the maximum weight sum. If unspecified, the sum is computed
  9185. by adding the layout_weight of all of the children. This can be
  9186. used for instance to give a single child 50% of the total available
  9187. space by giving it a layout_weight of 0.5 and setting the weightSum
  9188. to 1.0. -->
  9189. <attr name="android:weightSum"/>
  9190. <!-- When set to true, all children with a weight will be considered having
  9191. the minimum size of the largest child. If false, all children are
  9192. measured normally. -->
  9193. <attr format="boolean" name="measureWithLargestChild"/>
  9194. <!-- Drawable to use as a vertical divider between buttons. -->
  9195. <attr name="divider"/>
  9196. <!-- Setting for which dividers to show. -->
  9197. <attr name="showDividers">
  9198. <flag name="none" value="0"/>
  9199. <flag name="beginning" value="1"/>
  9200. <flag name="middle" value="2"/>
  9201. <flag name="end" value="4"/>
  9202. </attr>
  9203. <!-- Size of padding on either end of a divider. -->
  9204. <attr format="dimension" name="dividerPadding"/>
  9205. </declare-styleable>
  9206. <declare-styleable name="LinearLayoutCompat_Layout">
  9207. <attr name="android:layout_width"/>
  9208. <attr name="android:layout_height"/>
  9209. <attr name="android:layout_weight"/>
  9210. <attr name="android:layout_gravity"/>
  9211. </declare-styleable>
  9212. <declare-styleable name="LinearProgressIndicator">
  9213. <!-- The animation style of the indeterminate mode. -->
  9214. <attr name="indeterminateAnimationType">
  9215. <!--
  9216. The track will be filled with three adjacent segments in iterative different colors.
  9217. This type is only available when there are three or more indicator
  9218. colors.
  9219. -->
  9220. <enum name="contiguous" value="0"/>
  9221. <!--
  9222. There will be two disjoint segments in the same color per cycle. The color iterates between cycles.
  9223. -->
  9224. <enum name="disjoint" value="1"/>
  9225. </attr>
  9226. <!--
  9227. The direction in which the linear indicator progresses, in the determinate
  9228. mode, and is animated, in the indeterminate mode.
  9229. -->
  9230. <attr name="indicatorDirectionLinear">
  9231. <!-- Animated from the left end to the right end of the track. -->
  9232. <enum name="leftToRight" value="0"/>
  9233. <!-- Animated from the right end to the left end of the track. -->
  9234. <enum name="rightToLeft" value="1"/>
  9235. <!--
  9236. Animated from the start position to the end position of the track.
  9237. This will be same as the leftToRight for API before 17.
  9238. -->
  9239. <enum name="startToEnd" value="2"/>
  9240. <!--
  9241. Animated from the end position to the start position of the track.
  9242. This will be same as the rightToLeft for API before 17.
  9243. -->
  9244. <enum name="endToStart" value="3"/>
  9245. </attr>
  9246. </declare-styleable>
  9247. <declare-styleable name="ListPopupWindow">
  9248. <!-- Amount of pixels by which the drop down should be offset vertically. -->
  9249. <attr name="android:dropDownVerticalOffset"/>
  9250. <!-- Amount of pixels by which the drop down should be offset horizontally. -->
  9251. <attr name="android:dropDownHorizontalOffset"/>
  9252. </declare-styleable>
  9253. <declare-styleable name="MaterialAlertDialog">
  9254. <attr format="dimension" name="backgroundInsetStart"/>
  9255. <attr format="dimension" name="backgroundInsetTop"/>
  9256. <attr format="dimension" name="backgroundInsetEnd"/>
  9257. <attr format="dimension" name="backgroundInsetBottom"/>
  9258. </declare-styleable>
  9259. <declare-styleable name="MaterialAlertDialogTheme">
  9260. <attr format="reference" name="materialAlertDialogTheme"/>
  9261. <attr format="reference" name="materialAlertDialogTitlePanelStyle"/>
  9262. <attr format="reference" name="materialAlertDialogTitleIconStyle"/>
  9263. <attr format="reference" name="materialAlertDialogTitleTextStyle"/>
  9264. <attr format="reference" name="materialAlertDialogBodyTextStyle"/>
  9265. <attr format="integer" name="materialAlertDialogButtonSpacerVisibility"/>
  9266. </declare-styleable>
  9267. <declare-styleable name="MaterialAutoCompleteTextView" parent="AppCompatAutoCompleteTextView">
  9268. <attr name="android:inputType"/>
  9269. </declare-styleable>
  9270. <declare-styleable name="MaterialButton">
  9271. <!-- Whether the button can be checked. -->
  9272. <attr name="android:checkable"/>
  9273. <attr name="android:insetLeft"/>
  9274. <attr name="android:insetRight"/>
  9275. <attr name="android:insetTop"/>
  9276. <attr name="android:insetBottom"/>
  9277. <!-- Background for the MaterialButton. If this is set to a drawable or color, MaterialButton
  9278. will respect this background and not create its own MaterialShapeDrawable for the
  9279. background. This means that the insets, shape appearance, and stroke will be ignored.
  9280. If this attribute is not set or is @empty or @null, a MaterialShapeDrawable will be used
  9281. for the background based on the insets, shape appearance, and stroke. -->
  9282. <attr name="android:background"/>
  9283. <attr name="backgroundTint"/>
  9284. <attr name="backgroundTintMode"/>
  9285. <!-- Elevation for the MaterialButton. -->
  9286. <attr name="elevation"/>
  9287. <!-- Icon drawable to display at the start of this view. -->
  9288. <attr format="reference" name="icon"/>
  9289. <!-- Specifies the width and height to use for the icon drawable. -->
  9290. <attr format="dimension" name="iconSize"/>
  9291. <!-- Padding between icon and button text. -->
  9292. <attr format="dimension" name="iconPadding"/>
  9293. <!-- Specifies how the icon should be positioned on the X axis. -->
  9294. <attr name="iconGravity">
  9295. <!-- Push icon to the start of the button. -->
  9296. <flag name="start" value="0x1"/>
  9297. <!-- Push the icon to the start of the text keeping a distance equal to
  9298. {@code iconPadding} from the text. -->
  9299. <flag name="textStart" value="0x2"/>
  9300. <!-- Push icon to the end of the button. -->
  9301. <flag name="end" value="0x3"/>
  9302. <!-- Push the icon to the end of the text keeping a distance equal to
  9303. {@code iconPadding} from the text. -->
  9304. <flag name="textEnd" value="0x4"/>
  9305. <!-- Push the icon to the top of the button. -->
  9306. <flag name="top" value="0x10"/>
  9307. <!-- Push the icon to the top of the text keeping a distance equal to
  9308. {@code iconPadding} from the text. -->
  9309. <flag name="textTop" value="0x20"/>
  9310. </attr>
  9311. <!-- Tint for icon drawable to display. -->
  9312. <attr format="color" name="iconTint"/>
  9313. <!-- Tint mode for icon drawable to display. -->
  9314. <attr name="iconTintMode"/>
  9315. <!-- Shape appearance style reference for MaterialButton. Attribute declaration is in the Shape
  9316. package. -->
  9317. <attr name="shapeAppearance"/>
  9318. <!-- Shape appearance overlay style reference for MaterialButton. To be used to augment
  9319. attributes declared in the shapeAppearance. Attribute declaration is in the Shape package.
  9320. -->
  9321. <attr name="shapeAppearanceOverlay"/>
  9322. <!-- Specifies the color used to draw the path outline of the button. Attribute type definition
  9323. is in resources package. -->
  9324. <attr name="strokeColor"/>
  9325. <!-- Width of the stroke path of the button. Default is 0. Attribute type definition is in
  9326. resources package. -->
  9327. <attr name="strokeWidth"/>
  9328. <!--
  9329. Specifies the radius for the corners of the button. Default is 0, for non-rounded corners.
  9330. -->
  9331. <attr format="dimension" name="cornerRadius"/>
  9332. <!-- Ripple color for the button. This may be a color state list, if the desired ripple color
  9333. should be stateful. Attribute type definition is in resources package. -->
  9334. <attr name="rippleColor"/>
  9335. </declare-styleable>
  9336. <declare-styleable name="MaterialButtonToggleGroup">
  9337. <!-- Whether only a single button in this group is allowed to be checked at any time. By
  9338. default, this is false and multiple buttons in this group are allowed to be checked at
  9339. once. -->
  9340. <attr name="singleSelection"/>
  9341. <!-- Whether we prevent all child buttons from being deselected.
  9342. It's false by default. -->
  9343. <attr name="selectionRequired"/>
  9344. <!-- The id of the child button that should be checked by default within this button group. -->
  9345. <attr format="reference" name="checkedButton"/>
  9346. </declare-styleable>
  9347. <declare-styleable name="MaterialCalendar">
  9348. <attr name="android:windowFullscreen"/>
  9349. <attr format="reference" name="dayStyle"/>
  9350. <attr format="reference" name="dayInvalidStyle"/>
  9351. <attr format="reference" name="daySelectedStyle"/>
  9352. <attr format="reference" name="dayTodayStyle"/>
  9353. <attr format="reference" name="yearStyle"/>
  9354. <attr format="reference" name="yearSelectedStyle"/>
  9355. <attr format="reference" name="yearTodayStyle"/>
  9356. <attr format="color" name="rangeFillColor"/>
  9357. <attr format="boolean" name="nestedScrollable"/>
  9358. </declare-styleable>
  9359. <declare-styleable name="MaterialCalendarItem">
  9360. <attr name="android:insetLeft"/>
  9361. <attr name="android:insetTop"/>
  9362. <attr name="android:insetRight"/>
  9363. <attr name="android:insetBottom"/>
  9364. <attr format="color" name="itemFillColor"/>
  9365. <attr name="itemTextColor"/>
  9366. <attr format="color" name="itemStrokeColor"/>
  9367. <attr format="dimension" name="itemStrokeWidth"/>
  9368. <attr name="itemShapeAppearance"/>
  9369. <attr name="itemShapeAppearanceOverlay"/>
  9370. </declare-styleable>
  9371. <declare-styleable name="MaterialCardView">
  9372. <!-- Whether the card can be checked. -->
  9373. <attr name="android:checkable"/>
  9374. <!-- Foreground color for CardView. -->
  9375. <attr format="color" name="cardForegroundColor"/>
  9376. <!-- Check icon drawable. -->
  9377. <attr name="checkedIcon"/>
  9378. <!-- Tint color for the checked icon. -->
  9379. <attr name="checkedIconTint"/>
  9380. <!-- Check icon size for Checkable Cards-->
  9381. <attr format="dimension" name="checkedIconSize"/>
  9382. <!-- Check icon margin for Checkable Cards-->
  9383. <attr format="dimension" name="checkedIconMargin"/>
  9384. <!-- Ripple color for the Card. -->
  9385. <attr name="rippleColor"/>
  9386. <!-- State when a Card is being dragged. -->
  9387. <attr format="boolean" name="state_dragged"/>
  9388. <!-- Specifies the color used to draw the path outline of the card. Attribute type definition is
  9389. in resources package. -->
  9390. <attr name="strokeColor"/>
  9391. <!-- Width of the stroke path of the card. Default is 0. Attribute type definition is in
  9392. resources package. -->
  9393. <attr name="strokeWidth"/>
  9394. <!-- Shape appearance style reference for MaterialCardView. Attribute declaration is in the
  9395. shape package. -->
  9396. <attr name="shapeAppearance"/>
  9397. <!-- Shape appearance overlay style reference for MaterialCardView. To be used to augment
  9398. attributes declared in the shapeAppearance. Attribute declaration is in the shape package.
  9399. -->
  9400. <attr name="shapeAppearanceOverlay"/>
  9401. </declare-styleable>
  9402. <declare-styleable name="MaterialCheckBox">
  9403. <!-- When set to true, MaterialCheckBox will tint itself according to
  9404. Material Theme colors. When set to false, Material Theme colors will
  9405. be ignored. This value should be set to false when using custom drawables
  9406. that should not be tinted. This value is ignored if a buttonTint is set. -->
  9407. <attr name="useMaterialThemeColors"/>
  9408. <!-- Tint for the checkbox. -->
  9409. <attr name="buttonTint"/>
  9410. </declare-styleable>
  9411. <declare-styleable name="MaterialDivider">
  9412. <!-- Color of the divider. -->
  9413. <attr format="color|reference" name="dividerColor"/>
  9414. <!-- Thickness of the divider. -->
  9415. <attr format="dimension" name="dividerThickness"/>
  9416. <!-- Start indent of the divider. -->
  9417. <attr name="dividerInsetEnd"/>
  9418. <!-- End indent of the divider. -->
  9419. <attr name="dividerInsetStart"/>
  9420. </declare-styleable>
  9421. <declare-styleable name="MaterialRadioButton">
  9422. <!-- When set to true, MaterialRadioButton will tint itself according to
  9423. Material Theme colors. When set to false, Material Theme colors will
  9424. be ignored. This value should be set to false when using custom drawables
  9425. that should not be tinted. This value is ignored if a buttonTint is set. -->
  9426. <attr name="useMaterialThemeColors"/>
  9427. <!-- Tint for the radio. -->
  9428. <attr name="buttonTint"/>
  9429. </declare-styleable>
  9430. <declare-styleable name="MaterialShape">
  9431. <!-- Shape appearance style reference to be used to construct a ShapeAppearanceModel. -->
  9432. <attr format="reference" name="shapeAppearance"/>
  9433. <!-- Shape appearance overlay style reference to be used to modify the shapeAppearance. -->
  9434. <attr format="reference" name="shapeAppearanceOverlay"/>
  9435. </declare-styleable>
  9436. <declare-styleable name="MaterialTextAppearance" parent="TextAppearance">
  9437. <attr name="android:lineHeight"/>
  9438. <attr format="dimension" name="lineHeight"/>
  9439. <attr name="android:letterSpacing"/>
  9440. </declare-styleable>
  9441. <declare-styleable name="MaterialTextView" parent="AppCompatTextView">
  9442. <attr name="android:textAppearance"/>
  9443. <attr name="android:lineHeight"/>
  9444. <attr name="lineHeight"/>
  9445. </declare-styleable>
  9446. <declare-styleable name="MaterialTimePicker">
  9447. <attr name="keyboardIcon"/>
  9448. <attr name="clockIcon"/>
  9449. </declare-styleable>
  9450. <declare-styleable name="MaterialToolbar">
  9451. <!-- The tint color for the navigation button icon drawable corresponding to
  9452. the "app:navigationIcon" attribute. -->
  9453. <attr name="navigationIconTint"/>
  9454. <!-- Whether the title text corresponding to the "app:title" attribute
  9455. should be centered horizontally within the toolbar. Default is false.
  9456. -->
  9457. <attr format="boolean" name="titleCentered"/>
  9458. <!-- Whether the subtitle text corresponding to the "app:subtitle" attribute
  9459. should be centered horizontally within the toolbar. Default is false.
  9460. -->
  9461. <attr format="boolean" name="subtitleCentered"/>
  9462. </declare-styleable>
  9463. <declare-styleable name="MenuGroup">
  9464. <!-- The ID of the group. -->
  9465. <attr name="android:id"/>
  9466. <!-- The category applied to all items within this group.
  9467. (This will be or'ed with the orderInCategory attribute.) -->
  9468. <attr name="android:menuCategory"/>
  9469. <!-- The order within the category applied to all items within this group.
  9470. (This will be or'ed with the category attribute.) -->
  9471. <attr name="android:orderInCategory"/>
  9472. <!-- Whether the items are capable of displaying a check mark. -->
  9473. <attr name="android:checkableBehavior"/>
  9474. <!-- Whether the items are shown/visible. -->
  9475. <attr name="android:visible"/>
  9476. <!-- Whether the items are enabled. -->
  9477. <attr name="android:enabled"/>
  9478. </declare-styleable>
  9479. <declare-styleable name="MenuItem">
  9480. <!-- The ID of the item. -->
  9481. <attr name="android:id"/>
  9482. <!-- The category applied to the item.
  9483. (This will be or'ed with the orderInCategory attribute.) -->
  9484. <attr name="android:menuCategory"/>
  9485. <!-- The order within the category applied to the item.
  9486. (This will be or'ed with the category attribute.) -->
  9487. <attr name="android:orderInCategory"/>
  9488. <!-- The title associated with the item. -->
  9489. <attr name="android:title"/>
  9490. <!-- The condensed title associated with the item. This is used in situations where the
  9491. normal title may be too long to be displayed. -->
  9492. <attr name="android:titleCondensed"/>
  9493. <!-- The icon associated with this item. This icon will not always be shown, so
  9494. the title should be sufficient in describing this item. -->
  9495. <attr name="android:icon"/>
  9496. <!-- The alphabetic shortcut key. This is the shortcut when using a keyboard
  9497. with alphabetic keys. -->
  9498. <attr name="android:alphabeticShortcut"/>
  9499. <!-- The alphabetic modifier key. This is the modifier when using a keyboard
  9500. with alphabetic keys. The values should be kept in sync with KeyEvent -->
  9501. <attr name="alphabeticModifiers">
  9502. <flag name="META" value="0x10000"/>
  9503. <flag name="CTRL" value="0x1000"/>
  9504. <flag name="ALT" value="0x02"/>
  9505. <flag name="SHIFT" value="0x1"/>
  9506. <flag name="SYM" value="0x4"/>
  9507. <flag name="FUNCTION" value="0x8"/>
  9508. </attr>
  9509. <!-- The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key)
  9510. keyboard. -->
  9511. <attr name="android:numericShortcut"/>
  9512. <!-- The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key)
  9513. keyboard. The values should be kept in sync with KeyEvent -->
  9514. <attr name="numericModifiers">
  9515. <flag name="META" value="0x10000"/>
  9516. <flag name="CTRL" value="0x1000"/>
  9517. <flag name="ALT" value="0x02"/>
  9518. <flag name="SHIFT" value="0x1"/>
  9519. <flag name="SYM" value="0x4"/>
  9520. <flag name="FUNCTION" value="0x8"/>
  9521. </attr>
  9522. <!-- Whether the item is capable of displaying a check mark. -->
  9523. <attr name="android:checkable"/>
  9524. <!-- Whether the item is checked. Note that you must first have enabled checking with
  9525. the checkable attribute or else the check mark will not appear. -->
  9526. <attr name="android:checked"/>
  9527. <!-- Whether the item is shown/visible. -->
  9528. <attr name="android:visible"/>
  9529. <!-- Whether the item is enabled. -->
  9530. <attr name="android:enabled"/>
  9531. <!-- Name of a method on the Context used to inflate the menu that will be
  9532. called when the item is clicked. -->
  9533. <attr name="android:onClick"/>
  9534. <!-- How this item should display in the Action Bar, if present. -->
  9535. <attr name="showAsAction">
  9536. <!-- Never show this item in an action bar, show it in the overflow menu instead.
  9537. Mutually exclusive with "ifRoom" and "always". -->
  9538. <flag name="never" value="0"/>
  9539. <!-- Show this item in an action bar if there is room for it as determined
  9540. by the system. Favor this option over "always" where possible.
  9541. Mutually exclusive with "never" and "always". -->
  9542. <flag name="ifRoom" value="1"/>
  9543. <!-- Always show this item in an actionbar, even if it would override
  9544. the system's limits of how much stuff to put there. This may make
  9545. your action bar look bad on some screens. In most cases you should
  9546. use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". -->
  9547. <flag name="always" value="2"/>
  9548. <!-- When this item is shown as an action in the action bar, show a text
  9549. label with it even if it has an icon representation. -->
  9550. <flag name="withText" value="4"/>
  9551. <!-- This item's action view collapses to a normal menu
  9552. item. When expanded, the action view takes over a
  9553. larger segment of its container. -->
  9554. <flag name="collapseActionView" value="8"/>
  9555. </attr>
  9556. <!-- An optional layout to be used as an action view.
  9557. See {@link android.view.MenuItem#setActionView(android.view.View)}
  9558. for more info. -->
  9559. <attr format="reference" name="actionLayout"/>
  9560. <!-- The name of an optional View class to instantiate and use as an
  9561. action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
  9562. for more info. -->
  9563. <attr format="string" name="actionViewClass"/>
  9564. <!-- The name of an optional ActionProvider class to instantiate an action view
  9565. and perform operations such as default action for that menu item.
  9566. See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
  9567. for more info. -->
  9568. <attr format="string" name="actionProviderClass"/>
  9569. <!-- The content description associated with the item. -->
  9570. <attr format="string" name="contentDescription"/>
  9571. <!-- The tooltip text associated with the item. -->
  9572. <attr format="string" name="tooltipText"/>
  9573. <!-- Tint to apply to the icon. -->
  9574. <attr format="color" name="iconTint"/>
  9575. <!-- Blending mode used to apply the icon tint. -->
  9576. <attr name="iconTintMode">
  9577. <!-- The tint is drawn on top of the icon.
  9578. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  9579. <enum name="src_over" value="3"/>
  9580. <!-- The tint is masked by the alpha channel of the icon. The icon’s
  9581. color channels are thrown out. [Sa * Da, Sc * Da] -->
  9582. <enum name="src_in" value="5"/>
  9583. <!-- The tint is drawn above the icon, but with the icon’s alpha
  9584. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  9585. <enum name="src_atop" value="9"/>
  9586. <!-- Multiplies the color and alpha channels of the icon with those of
  9587. the tint. [Sa * Da, Sc * Dc] -->
  9588. <enum name="multiply" value="14"/>
  9589. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  9590. <enum name="screen" value="15"/>
  9591. <!-- Combines the tint and icon color and alpha channels, clamping the
  9592. result to valid color values. Saturate(S + D) -->
  9593. <enum name="add" value="16"/>
  9594. </attr>
  9595. </declare-styleable>
  9596. <declare-styleable name="MenuView">
  9597. <!-- Default appearance of menu item text. -->
  9598. <attr name="android:itemTextAppearance"/>
  9599. <!-- Default horizontal divider between rows of menu items. -->
  9600. <attr name="android:horizontalDivider"/>
  9601. <!-- Default vertical divider between menu items. -->
  9602. <attr name="android:verticalDivider"/>
  9603. <!-- Default background for the menu header. -->
  9604. <attr name="android:headerBackground"/>
  9605. <!-- Default background for each menu item. -->
  9606. <attr name="android:itemBackground"/>
  9607. <!-- Default animations for the menu. -->
  9608. <attr name="android:windowAnimationStyle"/>
  9609. <!-- Default disabled icon alpha for each menu item that shows an icon. -->
  9610. <attr name="android:itemIconDisabledAlpha"/>
  9611. <!-- Whether space should be reserved in layout when an icon is missing. -->
  9612. <attr format="boolean" name="preserveIconSpacing"/>
  9613. <!-- Drawable for the arrow icon indicating a particular item is a submenu. -->
  9614. <attr format="reference" name="subMenuArrow"/>
  9615. </declare-styleable>
  9616. <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>
  9617. <declare-styleable name="Motion"><attr name="animate_relativeTo"/><attr name="transitionEasing"/><attr name="pathMotionArc"/><attr name="motionPathRotate"/><attr name="motionStagger"/><attr name="drawPath"/></declare-styleable>
  9618. <declare-styleable name="MotionHelper"><attr format="boolean" name="onShow"/><attr format="boolean" name="onHide"/></declare-styleable>
  9619. <declare-styleable name="MotionLayout"><attr name="layoutDescription"/><attr format="reference" name="currentState"/><attr name="motionProgress"/><attr format="boolean" name="applyMotionScene"/><attr format="boolean" name="showPaths"/><attr format="enum" name="motionDebug">
  9620. <enum name="NO_DEBUG" value="0"/>
  9621. <enum name="SHOW_PROGRESS" value="1"/>
  9622. <enum name="SHOW_PATH" value="2"/>
  9623. <enum name="SHOW_ALL" value="3"/>
  9624. </attr></declare-styleable>
  9625. <declare-styleable name="MotionScene"><attr name="defaultDuration"/><attr name="layoutDuringTransition"/></declare-styleable>
  9626. <declare-styleable name="MotionTelltales"><attr format="enum" name="telltales_velocityMode">
  9627. <enum name="layout" value="0"/>
  9628. <enum name="postLayout" value="1"/>
  9629. <enum name="staticPostLayout" value="2"/>
  9630. <enum name="staticLayout" value="3"/>
  9631. </attr><attr format="color" name="telltales_tailColor"/><attr format="float" name="telltales_tailScale"/></declare-styleable>
  9632. <declare-styleable name="NavigationBarActiveIndicator">
  9633. <!--The color to be used for the navigation item's active indicator. -->
  9634. <attr name="android:color"/>
  9635. <!--The shape appearance style to be used for the navigation items' active indicator. -->
  9636. <attr name="android:width"/>
  9637. <!--The desired height of the navigation items' active indicator. -->
  9638. <attr name="android:height"/>
  9639. <!--The start and end margin used by the navigation items' active indicator. -->
  9640. <attr name="shapeAppearance"/>
  9641. <!--The desired width of the navigation items' active indicator. -->
  9642. <attr format="dimension" name="marginHorizontal"/>
  9643. </declare-styleable>
  9644. <declare-styleable name="NavigationBarView">
  9645. <!-- Background tint for the navigation bar. -->
  9646. <attr name="backgroundTint"/>
  9647. <!-- The menu resource to inflate and populate items from. Attribute type definition is in
  9648. navigation package. -->
  9649. <attr name="menu"/>
  9650. <!-- Whether navigation items display with a label, without a label, or with a label during
  9651. selected state. Can also be "auto", which uses the item count to determine whether to show
  9652. or hide the label. -->
  9653. <attr name="labelVisibilityMode">
  9654. <!-- Label behaves as "labeled" when there are 3 items or less, or "selected" when there are
  9655. 4 items or more. -->
  9656. <enum name="auto" value="-1"/>
  9657. <!-- Label is shown on the selected navigation item. -->
  9658. <enum name="selected" value="0"/>
  9659. <!-- Label is shown on all navigation items. -->
  9660. <enum name="labeled" value="1"/>
  9661. <!-- Label is not shown on any navigation items. -->
  9662. <enum name="unlabeled" value="2"/>
  9663. </attr>
  9664. <!-- The background for the navigation items. Attribute type definition is in navigation
  9665. package. -->
  9666. <attr name="itemBackground"/>
  9667. <!-- The ColorStateList to use for a ripple background. This only exists because creating
  9668. ripples in drawable xml based on theme colors is not supported pre-23. This will be ignored
  9669. if itemBackground is set.-->
  9670. <attr format="color" name="itemRippleColor"/>
  9671. <!-- The size to provide for the navigation item icons. -->
  9672. <attr name="itemIconSize"/>
  9673. <!-- The tint to apply to the navigation item icons. Attribute type definition is in navigation
  9674. package. -->
  9675. <attr name="itemIconTint"/>
  9676. <!-- The text appearance to apply to the inactive navigation item labels. Setting
  9677. android:textColor in itemTextAppearanceInactive will take precedence over android:textColor
  9678. in itemTextAppearanceActive. Instead, set itemTextColor with a ColorStateList to make
  9679. the text color stateful. -->
  9680. <attr format="reference" name="itemTextAppearanceInactive"/>
  9681. <!-- The text appearance to apply to the active navigation item label. You should not set
  9682. android:textColor in itemTextAppearanceActive. Instead, set itemTextColor to a
  9683. ColorStateList to make the text color stateful. -->
  9684. <attr format="reference" name="itemTextAppearanceActive"/>
  9685. <!-- The color to apply to the navigation items' text. Setting itemTextColor will take
  9686. precedence over android:textColor in itemTextAppearanceInactive or
  9687. itemTextAppearanceActive. Attribute type definition is in navigation package. -->
  9688. <attr name="itemTextColor"/>
  9689. <!-- The distance from the top of the icon/active indicator to the top of
  9690. the navigation bar item. -->
  9691. <attr format="dimension" name="itemPaddingTop"/>
  9692. <!-- The distance from the bottom of the label to the bottom of the navigation
  9693. bar item.-->
  9694. <attr format="dimension" name="itemPaddingBottom"/>
  9695. <!-- The style used for each navigation item's active indicator-->
  9696. <attr format="reference" name="itemActiveIndicatorStyle"/>
  9697. <!-- The elevation to use for the navigation bar view -->
  9698. <attr name="elevation"/>
  9699. </declare-styleable>
  9700. <declare-styleable name="NavigationRailView">
  9701. <!-- The minimum height of each menu item. If not set, the min height -->
  9702. <!-- will be the same as the width of the rail. -->
  9703. <attr format="dimension" name="itemMinHeight"/>
  9704. <!-- Specifies the layout that will be used to create the header view, if any -->
  9705. <attr name="headerLayout"/>
  9706. <!-- Specifies how the navigation rail destinations should be aligned as a group. -->
  9707. <attr name="menuGravity">
  9708. <!-- Navigation rail destinations will be aligned as a group at the top. This is the default behavior. -->
  9709. <!-- Gravity.TOP | Gravity.CENTER_HORIZONTAL-->
  9710. <enum name="top" value="49"/>
  9711. <!-- Navigation rail destinations will be aligned as a group at the center. -->
  9712. <!-- Gravity.CENTER -->
  9713. <enum name="center" value="17"/>
  9714. <!-- Navigation rail destinations will be aligned as a group at the bottom. -->
  9715. <!-- Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL -->
  9716. <enum name="bottom" value="81"/>
  9717. </attr>
  9718. </declare-styleable>
  9719. <declare-styleable name="NavigationView">
  9720. <attr name="android:background"/>
  9721. <attr name="android:fitsSystemWindows"/>
  9722. <attr name="android:layout_gravity"/>
  9723. <attr name="android:maxWidth"/>
  9724. <attr name="elevation"/>
  9725. <!-- The menu resource to inflate and populate items from. -->
  9726. <attr format="reference" name="menu"/>
  9727. <attr format="reference|color" name="subheaderColor"/>
  9728. <attr format="reference" name="subheaderTextAppearance"/>
  9729. <attr format="color" name="itemIconTint"/>
  9730. <attr name="itemTextColor"/>
  9731. <!-- A background drawable to use for navigation items. If this is set, this overrides the
  9732. default background drawable for items and the itemShape* attributes will be ignored -->
  9733. <attr format="reference" name="itemBackground"/>
  9734. <attr format="reference" name="itemTextAppearance"/>
  9735. <!-- Layout resource to inflate as the header -->
  9736. <attr name="headerLayout"/>
  9737. <!-- Horizontal padding (left and right) of navigation items, around the icon & text -->
  9738. <attr format="dimension" name="itemHorizontalPadding"/>
  9739. <!-- Vertical padding (top and bottom) of navigation items. -->
  9740. <attr format="dimension" name="itemVerticalPadding"/>
  9741. <!-- Padding between the icon and the text for navigation items that display an icon -->
  9742. <attr format="dimension" name="itemIconPadding"/>
  9743. <!-- The size of the icon navigation items that display an icon -->
  9744. <attr format="dimension" name="itemIconSize"/>
  9745. <!-- Makes the TextView of the item text be at most this many lines tall. -->
  9746. <attr format="integer" min="1" name="itemMaxLines"/>
  9747. <!-- Shape appearance style reference for the shaped item background. To use the shaped
  9748. item background, either itemShapeAppearance or itemShapeAppearanceOverlay must be set and
  9749. itemBackground must be null so that it can be set programmatically. -->
  9750. <attr name="itemShapeAppearance"/>
  9751. <!-- Shape appearance overlay style reference for item background. To be used to augment
  9752. attributes declared in itemShapeAppearance. To use the shaped item background, either
  9753. itemShapeAppearance or itemShapeAppearanceOverlay must be set and itemBackground must be
  9754. null so that it can be set programmatically. -->
  9755. <attr name="itemShapeAppearanceOverlay"/>
  9756. <!-- Inset start margin for the item background shape. Used if itemBackground isn't set and
  9757. there is an itemShapeAppearance or itemShapeAppearanceOverlay. -->
  9758. <attr format="dimension" name="itemShapeInsetStart"/>
  9759. <!-- Inset top margin for the item background shape. Used if itemBackground isn't set and there
  9760. is an itemShapeAppearance or itemShapeAppearanceOverlay. -->
  9761. <attr format="dimension" name="itemShapeInsetTop"/>
  9762. <!-- Inset end margin for the item background shape. Used if itemBackground isn't set and there
  9763. and there is an itemShapeAppearance or itemShapeAppearanceOverlay. -->
  9764. <attr format="dimension" name="itemShapeInsetEnd"/>
  9765. <!-- Inset bottom margin for the item background shape. Used if itemBackground isn't set and
  9766. there is an itemShapeAppearance or itemShapeAppearanceOverlay. -->
  9767. <attr format="dimension" name="itemShapeInsetBottom"/>
  9768. <!-- Fill color for the item background shape. Used if itemBackground isn't set and there is an
  9769. itemShapeAppearance or itemShapeAppearanceOverlay. -->
  9770. <attr format="color" name="itemShapeFillColor"/>
  9771. <!-- Shape appearance style reference for NavigationView. Attribute declaration is in the Shape
  9772. package. -->
  9773. <attr name="shapeAppearance"/>
  9774. <!-- Shape appearance overlay style reference for NavigationView. To be used to augment
  9775. attributes declared in the shapeAppearance. Attribute declaration is in the Shape package.
  9776. -->
  9777. <attr name="shapeAppearanceOverlay"/>
  9778. <!-- Whether or not the navigation view should draw a scrim behind the top window
  9779. inset, usually the status bar, when drawing edge to edge. -->
  9780. <attr format="boolean" name="topInsetScrimEnabled"/>
  9781. <!-- Whether or not the navigation view should draw a scrim behind the bottom window
  9782. inset, usually the navigation area, when drawing edge to edge. -->
  9783. <attr format="boolean" name="bottomInsetScrimEnabled"/>
  9784. <!-- The distance between the start of the navigation view container and a menu divider. -->
  9785. <attr name="dividerInsetStart"/>
  9786. <!-- The distance between the end of the navigation view container and a menu divider. -->
  9787. <attr name="dividerInsetEnd"/>
  9788. <!-- The distance between the start of the navigation view container and a menu group label. -->
  9789. <attr format="dimension" name="subheaderInsetStart"/>
  9790. <!-- The distance between the end of the navigation view container and a menu group label. -->
  9791. <attr format="dimension" name="subheaderInsetEnd"/>
  9792. <!-- Corner size for the exposed corners (those not attatched to the side
  9793. of the screen) when the navigation view is placed inside a drawer layout.-->
  9794. <attr format="dimension" name="drawerLayoutCornerSize"/>
  9795. </declare-styleable>
  9796. <declare-styleable name="OnClick"><attr name="targetId"/><attr name="clickAction">
  9797. <flag name="toggle" value="0x0011"/>
  9798. <flag name="transitionToEnd" value="0x0001"/>
  9799. <flag name="transitionToStart" value="0x0010"/>
  9800. <flag name="jumpToEnd" value="0x100"/>
  9801. <flag name="jumpToStart" value="0x1000"/>
  9802. </attr></declare-styleable>
  9803. <declare-styleable name="OnSwipe"><attr format="float" name="dragScale"/><attr format="float" name="dragThreshold"/><attr format="float" name="maxVelocity"/><attr format="float" name="maxAcceleration"/><attr name="dragDirection"/><attr name="touchAnchorId"/><attr name="touchAnchorSide"/><attr format="reference" name="touchRegionId"/><attr format="reference" name="limitBoundsTo"/><attr format="flags" name="nestedScrollFlags">
  9804. <flag name="none" value="0"/>
  9805. <flag name="disablePostScroll" value="1"/>
  9806. <flag name="disableScroll" value="2"/>
  9807. </attr><attr format="boolean" name="moveWhenScrollAtTop"/><attr format="enum" name="onTouchUp">
  9808. <enum name="autoComplete" value="0"/>
  9809. <enum name="autoCompleteToStart" value="1"/>
  9810. <enum name="autoCompleteToEnd" value="2"/>
  9811. <enum name="stop" value="3"/>
  9812. <enum name="decelerate" value="4"/>
  9813. <enum name="decelerateAndComplete" value="5"/>
  9814. </attr></declare-styleable>
  9815. <declare-styleable name="PopupWindow">
  9816. <!-- Whether the popup window should overlap its anchor view. -->
  9817. <attr format="boolean" name="overlapAnchor"/>
  9818. <attr name="android:popupBackground"/>
  9819. <attr name="android:popupAnimationStyle"/>
  9820. </declare-styleable>
  9821. <declare-styleable name="PopupWindowBackgroundState">
  9822. <!-- State identifier indicating the popup will be above the anchor. -->
  9823. <attr format="boolean" name="state_above_anchor"/>
  9824. </declare-styleable>
  9825. <declare-styleable name="PropertySet"><attr name="android:visibility"/><attr name="visibilityMode"/><attr format="float" name="android:alpha"/><attr name="motionProgress"/><attr name="layout_constraintTag"/></declare-styleable>
  9826. <declare-styleable name="RadialViewGroup">
  9827. <!-- Radius indicating how far away from the center of the group the
  9828. children are positioned -->
  9829. <attr name="materialCircleRadius"/>
  9830. </declare-styleable>
  9831. <declare-styleable name="RangeSlider">
  9832. <attr format="reference" name="values"/>
  9833. <!-- If there is more than one thumb, and the slider is
  9834. not discrete the thumbs will be separated by this dimen -->
  9835. <attr format="dimension" name="minSeparation"/>
  9836. </declare-styleable>
  9837. <declare-styleable name="RecycleListView">
  9838. <!-- Bottom padding to use when no buttons are present. -->
  9839. <attr format="dimension" name="paddingBottomNoButtons"/>
  9840. <!-- Top padding to use when no title is present. -->
  9841. <attr format="dimension" name="paddingTopNoTitle"/>
  9842. </declare-styleable>
  9843. <declare-styleable name="RecyclerView">
  9844. <!-- Class name of the Layout Manager to be used.
  9845. <p/>
  9846. The class must ext androidx.recyclerview.widget.RecyclerViewView$LayoutManager
  9847. and have either a default constructor or constructor with the signature
  9848. (android.content.Context, android.util.AttributeSet, int, int).
  9849. <p/>
  9850. If the name starts with a '.', application package is prefixed.
  9851. Else, if the name contains a '.', the classname is assumed to be a full class name.
  9852. Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. -->
  9853. <attr format="string" name="layoutManager"/>
  9854. <!-- ============================= -->
  9855. <!-- Attributes for Layout Manager -->
  9856. <!-- ============================= -->
  9857. <eat-comment/>
  9858. <attr name="android:orientation"/>
  9859. <attr name="android:descendantFocusability"/>
  9860. <attr name="android:clipToPadding"/>
  9861. <attr format="integer" name="spanCount"/>
  9862. <attr format="boolean" name="reverseLayout"/>
  9863. <attr format="boolean" name="stackFromEnd"/>
  9864. <attr format="boolean" name="fastScrollEnabled"/>
  9865. <attr format="reference" name="fastScrollVerticalThumbDrawable"/>
  9866. <attr format="reference" name="fastScrollVerticalTrackDrawable"/>
  9867. <attr format="reference" name="fastScrollHorizontalThumbDrawable"/>
  9868. <attr format="reference" name="fastScrollHorizontalTrackDrawable"/>
  9869. </declare-styleable>
  9870. <declare-styleable name="ScrimInsetsFrameLayout">
  9871. <attr format="color|reference" name="insetForeground"/>
  9872. </declare-styleable>
  9873. <declare-styleable name="ScrollingViewBehavior_Layout">
  9874. <!-- The amount that the scrolling view should overlap the bottom of any AppBarLayout -->
  9875. <attr format="dimension" name="behavior_overlapTop"/>
  9876. </declare-styleable>
  9877. <declare-styleable name="SearchView">
  9878. <!-- The layout to use for the search view. -->
  9879. <attr format="reference" name="layout"/>
  9880. <!-- The default state of the SearchView. If true, it will be iconified when not in
  9881. use and expanded when clicked. -->
  9882. <attr format="boolean" name="iconifiedByDefault"/>
  9883. <!-- An optional maximum width of the SearchView. -->
  9884. <attr name="android:maxWidth"/>
  9885. <!-- An optional user-defined query hint string to be displayed in the empty query field. -->
  9886. <attr format="string" name="queryHint"/>
  9887. <!-- Default query hint used when {@code queryHint} is undefined and
  9888. the search view's {@code SearchableInfo} does not provide a hint. -->
  9889. <attr format="string" name="defaultQueryHint"/>
  9890. <!-- The IME options to set on the query text field. -->
  9891. <attr name="android:imeOptions"/>
  9892. <!-- The input type to set on the query text field. -->
  9893. <attr name="android:inputType"/>
  9894. <!-- Close button icon -->
  9895. <attr format="reference" name="closeIcon"/>
  9896. <!-- Go button icon -->
  9897. <attr format="reference" name="goIcon"/>
  9898. <!-- Search icon -->
  9899. <attr format="reference" name="searchIcon"/>
  9900. <!-- Search icon displayed as a text field hint -->
  9901. <attr format="reference" name="searchHintIcon"/>
  9902. <!-- Voice button icon -->
  9903. <attr format="reference" name="voiceIcon"/>
  9904. <!-- Commit icon shown in the query suggestion row -->
  9905. <attr format="reference" name="commitIcon"/>
  9906. <!-- Layout for query suggestion rows -->
  9907. <attr format="reference" name="suggestionRowLayout"/>
  9908. <!-- Background for the section containing the search query -->
  9909. <attr format="reference" name="queryBackground"/>
  9910. <!-- Background for the section containing the action (e.g. voice search) -->
  9911. <attr format="reference" name="submitBackground"/>
  9912. <attr name="android:focusable"/>
  9913. </declare-styleable>
  9914. <declare-styleable name="ShapeAppearance">
  9915. <!-- Corner size to be used in the ShapeAppearance. All corners default to this value -->
  9916. <attr format="dimension|fraction" name="cornerSize"/>
  9917. <!-- Top left corner size to be used in the ShapeAppearance. -->
  9918. <attr format="dimension|fraction" name="cornerSizeTopLeft"/>
  9919. <!-- Top right corner size to be used in the ShapeAppearance. -->
  9920. <attr format="dimension|fraction" name="cornerSizeTopRight"/>
  9921. <!-- Bottom right corner size to be used in the ShapeAppearance. -->
  9922. <attr format="dimension|fraction" name="cornerSizeBottomRight"/>
  9923. <!-- Bottom left corner size to be used in the ShapeAppearance. -->
  9924. <attr format="dimension|fraction" name="cornerSizeBottomLeft"/>
  9925. <!-- Corner family to be used in the ShapeAppearance. All corners default to this value -->
  9926. <attr format="enum" name="cornerFamily">
  9927. <enum name="rounded" value="0"/>
  9928. <enum name="cut" value="1"/>
  9929. </attr>
  9930. <!-- Top left corner family to be used in the ShapeAppearance. -->
  9931. <attr format="enum" name="cornerFamilyTopLeft">
  9932. <enum name="rounded" value="0"/>
  9933. <enum name="cut" value="1"/>
  9934. </attr>
  9935. <!-- Top right corner family to be used in the ShapeAppearance. -->
  9936. <attr format="enum" name="cornerFamilyTopRight">
  9937. <enum name="rounded" value="0"/>
  9938. <enum name="cut" value="1"/>
  9939. </attr>
  9940. <!-- Bottom right corner family to be used in the ShapeAppearance. -->
  9941. <attr format="enum" name="cornerFamilyBottomRight">
  9942. <enum name="rounded" value="0"/>
  9943. <enum name="cut" value="1"/>
  9944. </attr>
  9945. <!-- Bottom left corner family to be used in the ShapeAppearance. -->
  9946. <attr format="enum" name="cornerFamilyBottomLeft">
  9947. <enum name="rounded" value="0"/>
  9948. <enum name="cut" value="1"/>
  9949. </attr>
  9950. </declare-styleable>
  9951. <declare-styleable name="ShapeableImageView">
  9952. <attr name="strokeWidth"/>
  9953. <attr name="strokeColor"/>
  9954. <!-- Shape appearance style reference for ShapeableImageView. Attribute declaration is in the
  9955. shape package. -->
  9956. <attr name="shapeAppearance"/>
  9957. <!-- Shape appearance overlay style reference for ShapeableImageView. To be used to augment
  9958. attributes declared in the shapeAppearance. Attribute declaration is in the shape package.
  9959. -->
  9960. <attr name="shapeAppearanceOverlay"/>
  9961. <!-- Attributes for padding the image, since android:padding is applied to the background
  9962. for ShapeableImageView
  9963. -->
  9964. <attr name="contentPadding"/>
  9965. <attr name="contentPaddingBottom"/>
  9966. <attr format="dimension" name="contentPaddingEnd"/>
  9967. <attr name="contentPaddingLeft"/>
  9968. <attr name="contentPaddingRight"/>
  9969. <attr format="dimension" name="contentPaddingStart"/>
  9970. <attr name="contentPaddingTop"/>
  9971. </declare-styleable>
  9972. <declare-styleable name="Slider">
  9973. <attr name="android:value"/>
  9974. <attr name="android:valueFrom"/>
  9975. <attr name="android:valueTo"/>
  9976. <attr name="android:stepSize"/>
  9977. <!-- Whether the Slider is enabled. -->
  9978. <attr name="android:enabled"/>
  9979. <!-- The color of the slider's halo. -->
  9980. <attr format="color" name="haloColor"/>
  9981. <!-- The radius of the halo. -->
  9982. <attr format="dimension" name="haloRadius"/>
  9983. <!-- Determines if Slider should increase its default height to include space for the label. -->
  9984. <attr name="labelBehavior">
  9985. <!-- Mode that draws the label floating above the bounds of this view. -->
  9986. <enum name="floating" value="0"/>
  9987. <!-- Mode that draws the label within the bounds of the view. -->
  9988. <enum name="withinBounds" value="1"/>
  9989. <!-- Mode that prevents the label from being drawn -->
  9990. <enum name="gone" value="2"/>
  9991. </attr>
  9992. <!-- The style used for the label TooltipDrawable. -->
  9993. <attr format="reference" name="labelStyle"/>
  9994. <!-- The color of the slider's thumb. -->
  9995. <attr format="color" name="thumbColor"/>
  9996. <!-- The elevation of the thumb. -->
  9997. <attr format="dimension" name="thumbElevation"/>
  9998. <!-- The radius of the thumb. -->
  9999. <attr format="dimension" name="thumbRadius"/>
  10000. <!-- The stroke color for the thumb. -->
  10001. <attr format="color" name="thumbStrokeColor"/>
  10002. <!-- The stroke width for the thumb. -->
  10003. <attr format="dimension" name="thumbStrokeWidth"/>
  10004. <!-- The color of the slider's tick marks. Only used when the slider is in discrete mode. -->
  10005. <attr format="color" name="tickColor"/>
  10006. <!-- The color of the slider's tick marks for the active portion of the track. Only used when
  10007. the slider is in discrete mode. -->
  10008. <attr format="color" name="tickColorActive"/>
  10009. <!-- The color of the slider's tick marks for the inactive portion of the track. Only used when
  10010. the slider is in discrete mode. -->
  10011. <attr format="color" name="tickColorInactive"/>
  10012. <!-- Whether to show the tick marks. Only used when the slider is in discrete mode. -->
  10013. <attr format="boolean" name="tickVisible"/>
  10014. <!-- The color of the track. -->
  10015. <attr name="trackColor"/>
  10016. <!-- The color of active portion of the track. -->
  10017. <attr format="color" name="trackColorActive"/>
  10018. <!-- The color of inactive portion of the track. -->
  10019. <attr format="color" name="trackColorInactive"/>
  10020. <!-- The height of the track. -->
  10021. <attr format="dimension" name="trackHeight"/>
  10022. </declare-styleable>
  10023. <declare-styleable name="Snackbar">
  10024. <!-- Style to use for Snackbars in this theme. -->
  10025. <attr format="reference" name="snackbarStyle"/>
  10026. <!-- Style to use for action button within a Snackbar in this theme. -->
  10027. <attr format="reference" name="snackbarButtonStyle"/>
  10028. <!-- Style to use for message text within a Snackbar in this theme. -->
  10029. <attr format="reference" name="snackbarTextViewStyle"/>
  10030. </declare-styleable>
  10031. <declare-styleable name="SnackbarLayout">
  10032. <attr name="android:maxWidth"/>
  10033. <attr name="elevation"/>
  10034. <attr format="dimension" name="maxActionInlineWidth"/>
  10035. <!-- Sets the enter and exit animations for a Snackbar. -->
  10036. <attr format="enum" name="animationMode">
  10037. <!-- Mode that corresponds to the slide in and out animations. -->
  10038. <enum name="slide" value="0"/>
  10039. <!-- Mode that corresponds to the fade in and out animations. -->
  10040. <enum name="fade" value="1"/>
  10041. </attr>
  10042. <!-- Alpha level for the color that is overlaid on top of the background color. Ignored if
  10043. backgroundTint is set. -->
  10044. <attr format="float" name="backgroundOverlayColorAlpha"/>
  10045. <!-- Background tint used by the Snackbar background drawable. Accepts a ColorStateList or
  10046. ColorInt. -->
  10047. <attr name="backgroundTint"/>
  10048. <!-- Background tint mode used by the Snackbar background drawable. -->
  10049. <attr name="backgroundTintMode"/>
  10050. <!-- Alpha level for the action button text, to allow for adjusting the lightness or darkness of
  10051. the theme color used for Snackbar text buttons (e.g., colorPrimary). -->
  10052. <attr format="float" name="actionTextColorAlpha"/>
  10053. </declare-styleable>
  10054. <declare-styleable name="Spinner">
  10055. <!-- The prompt to display when the spinner's dialog is shown. -->
  10056. <attr name="android:prompt"/>
  10057. <!-- Theme to use for the drop-down or dialog popup window. -->
  10058. <attr name="popupTheme"/>
  10059. <!-- Background drawable to use for the dropdown in spinnerMode="dropdown". -->
  10060. <attr name="android:popupBackground"/>
  10061. <!-- Width of the dropdown in spinnerMode="dropdown". -->
  10062. <attr name="android:dropDownWidth"/>
  10063. <!-- Reference to an array resource that will populate the Spinner. -->
  10064. <attr name="android:entries"/>
  10065. </declare-styleable>
  10066. <declare-styleable name="State"><attr name="android:id"/><attr format="reference" name="constraints"/></declare-styleable>
  10067. <declare-styleable name="StateListDrawable">
  10068. <!-- Indicates whether the drawable should be initially visible. -->
  10069. <attr name="android:visible"/>
  10070. <!-- If true, allows the drawable's padding to change based on the
  10071. current state that is selected. If false, the padding will
  10072. stay the same (based on the maximum padding of all the states).
  10073. Enabling this feature requires that the owner of the drawable
  10074. deal with performing layout when the state changes, which is
  10075. often not supported. -->
  10076. <attr name="android:variablePadding"/>
  10077. <!-- If true, the drawable's reported internal size will remain
  10078. constant as the state changes; the size is the maximum of all
  10079. of the states. If false, the size will vary based on the
  10080. current state. -->
  10081. <attr name="android:constantSize"/>
  10082. <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
  10083. same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
  10084. an RGB 565 screen). -->
  10085. <attr name="android:dither"/>
  10086. <!-- Amount of time (in milliseconds) to fade in a new state drawable. -->
  10087. <attr name="android:enterFadeDuration"/>
  10088. <!-- Amount of time (in milliseconds) to fade out an old state drawable. -->
  10089. <attr name="android:exitFadeDuration"/>
  10090. <!-- Indicates if the drawable needs to be mirrored when its layout direction is
  10091. RTL (right-to-left). -->
  10092. <!--<attr name="autoMirrored"/>-->
  10093. </declare-styleable>
  10094. <declare-styleable name="StateListDrawableItem">
  10095. <!-- Reference to a drawable resource to use for the state. If not
  10096. given, the drawable must be defined by the first child tag. -->
  10097. <attr name="android:drawable"/>
  10098. </declare-styleable>
  10099. <declare-styleable name="StateSet"><attr format="reference" name="defaultState"/></declare-styleable>
  10100. <declare-styleable name="SwitchCompat">
  10101. <!-- Drawable to use as the "thumb" that switches back and forth. -->
  10102. <attr name="android:thumb"/>
  10103. <!-- Tint to apply to the thumb drawable. -->
  10104. <attr format="color" name="thumbTint"/>
  10105. <!-- Blending mode used to apply the thumb tint. -->
  10106. <attr name="thumbTintMode">
  10107. <!-- The tint is drawn on top of the drawable.
  10108. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  10109. <enum name="src_over" value="3"/>
  10110. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  10111. color channels are thrown out. [Sa * Da, Sc * Da] -->
  10112. <enum name="src_in" value="5"/>
  10113. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  10114. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  10115. <enum name="src_atop" value="9"/>
  10116. <!-- Multiplies the color and alpha channels of the drawable with those of
  10117. the tint. [Sa * Da, Sc * Dc] -->
  10118. <enum name="multiply" value="14"/>
  10119. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  10120. <enum name="screen" value="15"/>
  10121. <!-- Combines the tint and drawable color and alpha channels, clamping the
  10122. result to valid color values. Saturate(S + D) -->
  10123. <enum name="add" value="16"/>
  10124. </attr>
  10125. <!-- Drawable to use as the "track" that the switch thumb slides within. -->
  10126. <attr format="reference" name="track"/>
  10127. <!-- Tint to apply to the track. -->
  10128. <attr format="color" name="trackTint"/>
  10129. <!-- Blending mode used to apply the track tint. -->
  10130. <attr name="trackTintMode">
  10131. <!-- The tint is drawn on top of the drawable.
  10132. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  10133. <enum name="src_over" value="3"/>
  10134. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  10135. color channels are thrown out. [Sa * Da, Sc * Da] -->
  10136. <enum name="src_in" value="5"/>
  10137. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  10138. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  10139. <enum name="src_atop" value="9"/>
  10140. <!-- Multiplies the color and alpha channels of the drawable with those of
  10141. the tint. [Sa * Da, Sc * Dc] -->
  10142. <enum name="multiply" value="14"/>
  10143. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  10144. <enum name="screen" value="15"/>
  10145. <!-- Combines the tint and drawable color and alpha channels, clamping the
  10146. result to valid color values. Saturate(S + D) -->
  10147. <enum name="add" value="16"/>
  10148. </attr>
  10149. <!-- Text to use when the switch is in the checked/"on" state. -->
  10150. <attr name="android:textOn"/>
  10151. <!-- Text to use when the switch is in the unchecked/"off" state. -->
  10152. <attr name="android:textOff"/>
  10153. <!-- Amount of padding on either side of text within the switch thumb. -->
  10154. <attr format="dimension" name="thumbTextPadding"/>
  10155. <!-- TextAppearance style for text displayed on the switch thumb. -->
  10156. <attr format="reference" name="switchTextAppearance"/>
  10157. <!-- Minimum width for the switch component -->
  10158. <attr format="dimension" name="switchMinWidth"/>
  10159. <!-- Minimum space between the switch and caption text -->
  10160. <attr format="dimension" name="switchPadding"/>
  10161. <!-- Whether to split the track and leave a gap for the thumb drawable. -->
  10162. <attr format="boolean" name="splitTrack"/>
  10163. <!-- Whether to draw on/off text. -->
  10164. <attr format="boolean" name="showText"/>
  10165. </declare-styleable>
  10166. <declare-styleable name="SwitchMaterial">
  10167. <!-- When set to true, SwitchMaterial will tint itself according to
  10168. Material Theme colors. When set to false, Material Theme colors will
  10169. be ignored. This value should be set to false when using custom drawables
  10170. that should not be tinted. This value is ignored if a buttonTint is set. -->
  10171. <attr name="useMaterialThemeColors"/>
  10172. </declare-styleable>
  10173. <declare-styleable name="TabItem">
  10174. <!-- Text to display in the tab. -->
  10175. <attr name="android:text"/>
  10176. <!-- Icon to display in the tab. -->
  10177. <attr name="android:icon"/>
  10178. <!-- A reference to a layout resource to be displayed in the tab. -->
  10179. <attr name="android:layout"/>
  10180. </declare-styleable>
  10181. <declare-styleable name="TabLayout">
  10182. <!-- Color of the indicator used to show the currently selected tab. -->
  10183. <attr format="color" name="tabIndicatorColor"/>
  10184. <!-- {@deprecated Instead, set the intrinsic size of the custom drawable provided to the
  10185. tabIndicator attribute in order to change the indicator height. For example, this can be
  10186. done by setting the <size> property in a <shape> resource.} -->
  10187. <attr format="dimension" name="tabIndicatorHeight"/>
  10188. <!-- Position in the Y axis from the starting edge that tabs should be positioned from. -->
  10189. <attr format="dimension" name="tabContentStart"/>
  10190. <!-- Reference to a background to be applied to tabs. -->
  10191. <attr format="reference" name="tabBackground"/>
  10192. <!-- Reference to a drawable to use as selection indicator for tabs. If this attribute is not
  10193. specified, indicator defaults to a line along the bottom of the tab. -->
  10194. <attr format="reference" name="tabIndicator"/>
  10195. <!-- Gravity constant for tab selection indicator. -->
  10196. <attr name="tabIndicatorGravity">
  10197. <!-- Align indicator to the bottom of this tab layout. -->
  10198. <enum name="bottom" value="0"/>
  10199. <!-- Align indicator along the center of this tab layout. -->
  10200. <enum name="center" value="1"/>
  10201. <!-- Align indicator to the top of this tab layout. -->
  10202. <enum name="top" value="2"/>
  10203. <!-- Stretch indicator to match the height and width of a tab item in this layout. -->
  10204. <enum name="stretch" value="3"/>
  10205. </attr>
  10206. <!-- Duration in milliseconds for the animation of the selection indicator from one tab item
  10207. to another. -->
  10208. <attr format="integer" name="tabIndicatorAnimationDuration"/>
  10209. <!-- Whether the selection indicator width should fill the full width of the tab item,
  10210. or if it should be fitted to the content of the tab text label. If no text label is
  10211. present, it will be set to the width of the icon or to a minimum width of 24dp. -->
  10212. <attr format="boolean" name="tabIndicatorFullWidth"/>
  10213. <!-- The animation mode used to animate the selection indicator between
  10214. destinations. -->
  10215. <attr name="tabIndicatorAnimationMode">
  10216. <!-- Animate the selection indicator's left and right bounds in step with
  10217. each other. -->
  10218. <enum name="linear" value="0"/>
  10219. <!-- Animate the selection indicator's left and right bounds out of step
  10220. with each other, decelerating the front and accelerating the back.
  10221. This causes the indicator to look like it stretches between destinations
  10222. an then shrinks back down to fit the size of it's target tab. -->
  10223. <enum name="elastic" value="1"/>
  10224. </attr>
  10225. <!-- The behavior mode for the Tabs in this layout -->
  10226. <attr name="tabMode">
  10227. <enum name="scrollable" value="0"/>
  10228. <enum name="fixed" value="1"/>
  10229. <enum name="auto" value="2"/>
  10230. </attr>
  10231. <!-- Gravity constant for tabs. -->
  10232. <attr name="tabGravity">
  10233. <enum name="fill" value="0"/>
  10234. <enum name="center" value="1"/>
  10235. <enum name="start" value="2"/>
  10236. </attr>
  10237. <!-- Whether to display tab labels horizontally inline with icons, or underneath icons. -->
  10238. <attr format="boolean" name="tabInlineLabel"/>
  10239. <!-- The minimum width for tabs. -->
  10240. <attr format="dimension" name="tabMinWidth"/>
  10241. <!-- The maximum width for tabs. -->
  10242. <attr format="dimension" name="tabMaxWidth"/>
  10243. <!-- A reference to a TextAppearance style to be applied to tabs. -->
  10244. <attr format="reference" name="tabTextAppearance"/>
  10245. <!-- The default text color to be applied to tabs. -->
  10246. <attr format="color" name="tabTextColor"/>
  10247. <!-- {@deprecated Instead, provide a ColorStateList to the tabTextColor attribute with a
  10248. selected color set.} -->
  10249. <attr format="color" name="tabSelectedTextColor"/>
  10250. <!-- The preferred padding along the start edge of tabs. -->
  10251. <attr format="dimension" name="tabPaddingStart"/>
  10252. <!-- The preferred padding along the top edge of tabs. -->
  10253. <attr format="dimension" name="tabPaddingTop"/>
  10254. <!-- The preferred padding along the end edge of tabs. -->
  10255. <attr format="dimension" name="tabPaddingEnd"/>
  10256. <!-- The preferred padding along the bottom edge of tabs. -->
  10257. <attr format="dimension" name="tabPaddingBottom"/>
  10258. <!-- The preferred padding along all edges of tabs. -->
  10259. <attr format="dimension" name="tabPadding"/>
  10260. <!-- Tint to apply to tab icons, if present. This can be a color state list or a color. -->
  10261. <attr format="color" name="tabIconTint"/>
  10262. <!-- Blending mode to apply to tab icons. -->
  10263. <attr name="tabIconTintMode">
  10264. <enum name="src_over" value="3"/>
  10265. <enum name="src_in" value="5"/>
  10266. <enum name="src_atop" value="9"/>
  10267. <enum name="multiply" value="14"/>
  10268. <enum name="screen" value="15"/>
  10269. <enum name="add" value="16"/>
  10270. </attr>
  10271. <!-- Ripple color for the tabs. This may be a color state list, if the desired ripple color
  10272. should be stateful.-->
  10273. <attr format="color" name="tabRippleColor"/>
  10274. <!-- Whether to use unbounded ripple effect for tabs, or if ripple should instead be bound to
  10275. tab item bounds. -->
  10276. <attr format="boolean" name="tabUnboundedRipple"/>
  10277. </declare-styleable>
  10278. <declare-styleable name="TextAppearance">
  10279. <attr name="android:textSize"/>
  10280. <attr name="android:textColor"/>
  10281. <attr name="android:textColorHint"/>
  10282. <attr name="android:textColorLink"/>
  10283. <attr name="android:textStyle"/>
  10284. <attr name="android:textFontWeight"/>
  10285. <attr name="android:typeface"/>
  10286. <attr name="android:fontFamily"/>
  10287. <attr name="fontFamily"/>
  10288. <attr name="textAllCaps"/>
  10289. <!-- Set the textLocale by a comma-separated language tag string,
  10290. for example "ja-JP,zh-CN". This attribute only takes effect on API 21 and above.
  10291. Before API 24, only the first language tag is used. Starting from API 24,
  10292. the string will be converted into a {@link android.os.LocaleList} and then used by
  10293. {@link android.widget.TextView} -->
  10294. <attr name="textLocale"/>
  10295. <attr name="android:shadowColor"/>
  10296. <attr name="android:shadowDy"/>
  10297. <attr name="android:shadowDx"/>
  10298. <attr name="android:shadowRadius"/>
  10299. <!-- OpenType font variation settings, available aftear api 26. -->
  10300. <attr name="fontVariationSettings"/>
  10301. </declare-styleable>
  10302. <declare-styleable name="TextInputEditText">
  10303. <!-- Whether the TextInputEditText should use the TextInputLayout's focused
  10304. rectangle instead of its own. -->
  10305. <attr format="boolean" name="textInputLayoutFocusedRectEnabled"/>
  10306. </declare-styleable>
  10307. <declare-styleable name="TextInputLayout">
  10308. <!-- Whether the layout is enabled -->
  10309. <attr name="android:enabled"/>
  10310. <!-- The hint to display in the floating label. -->
  10311. <attr name="android:hint"/>
  10312. <!-- The text color for the hint when the text field is not activated (such
  10313. as for the resting and disabled states). -->
  10314. <attr name="android:textColorHint"/>
  10315. <!-- Makes the text field be at least this dimension wide if its width is
  10316. set to wrap_content. -->
  10317. <attr name="android:minWidth"/>
  10318. <!-- Makes the text field be at most this dimension wide if its width is set
  10319. to wrap_content. -->
  10320. <attr name="android:maxWidth"/>
  10321. <!-- Whether the layout's floating label functionality is enabled. -->
  10322. <attr format="boolean" name="hintEnabled"/>
  10323. <!-- Whether to animate hint state changes. -->
  10324. <attr format="boolean" name="hintAnimationEnabled"/>
  10325. <!-- TextAppearance of the hint in the collapsed floating label. -->
  10326. <attr format="reference" name="hintTextAppearance"/>
  10327. <!-- Text color of the hint in the collapsed floating label.
  10328. If set, this takes precedence over hintTextAppearance. -->
  10329. <attr format="color" name="hintTextColor"/>
  10330. <!-- Whether the hint should occupy the input area when the text field is
  10331. unpopulated and not focused. -->
  10332. <attr format="boolean" name="expandedHintEnabled"/>
  10333. <!-- The text to display as helper text underneath the text input area. -->
  10334. <attr format="string" name="helperText"/>
  10335. <!-- Whether the layout's helper text functionality is enabled. -->
  10336. <attr format="boolean" name="helperTextEnabled"/>
  10337. <!-- TextAppearance of the helper text displayed underneath the text input area. -->
  10338. <attr format="reference" name="helperTextTextAppearance"/>
  10339. <!-- Text color of the helper text displayed underneath the text input area.
  10340. If set, this takes precedence over helperTextTextAppearance. -->
  10341. <attr format="color" name="helperTextTextColor"/>
  10342. <!-- Whether the layout is laid out as if an error will be displayed. -->
  10343. <attr format="boolean" name="errorEnabled"/>
  10344. <!-- TextAppearance of any error message displayed. -->
  10345. <attr format="reference" name="errorTextAppearance"/>
  10346. <!-- Text color for any error message displayed.
  10347. If set, this takes precedence over errorTextAppearance. -->
  10348. <attr format="color" name="errorTextColor"/>
  10349. <!-- Text to set as the content description for the error view.
  10350. Should be set when the error message has special characters that a
  10351. screen reader is not able to announce properly. -->
  10352. <attr format="string" name="errorContentDescription"/>
  10353. <!-- End icon to be shown when an error is displayed. -->
  10354. <attr format="reference" name="errorIconDrawable"/>
  10355. <!-- Tint color to use for the error icon. -->
  10356. <attr format="reference" name="errorIconTint"/>
  10357. <!-- Blending mode used to apply the error icon tint. -->
  10358. <attr name="errorIconTintMode">
  10359. <!-- The tint is drawn on top of the drawable.
  10360. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  10361. <enum name="src_over" value="3"/>
  10362. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  10363. color channels are thrown out. [Sa * Da, Sc * Da] -->
  10364. <enum name="src_in" value="5"/>
  10365. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  10366. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  10367. <enum name="src_atop" value="9"/>
  10368. <!-- Multiplies the color and alpha channels of the drawable with those of
  10369. the tint. [Sa * Da, Sc * Dc] -->
  10370. <enum name="multiply" value="14"/>
  10371. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  10372. <enum name="screen" value="15"/>
  10373. </attr>
  10374. <!-- Whether the layout is laid out as if the character counter will be displayed. -->
  10375. <attr format="boolean" name="counterEnabled"/>
  10376. <!-- The max length to display in the character counter. -->
  10377. <attr format="integer" name="counterMaxLength"/>
  10378. <!-- TextAppearance of the character counter. -->
  10379. <attr format="reference" name="counterTextAppearance"/>
  10380. <!-- Text color of the character counter.
  10381. If set, this takes precedence over counterTextAppearance. -->
  10382. <attr format="reference" name="counterTextColor"/>
  10383. <!-- TextAppearance of the character counter when the text is longer than the max. -->
  10384. <attr format="reference" name="counterOverflowTextAppearance"/>
  10385. <!-- Text color of the character counter when the text is longer than the max.
  10386. If set, this takes precedence over counterOverflowTextAppearance. -->
  10387. <attr format="reference" name="counterOverflowTextColor"/>
  10388. <!-- The text to display as placeholder text in the text input area. -->
  10389. <attr format="string" name="placeholderText"/>
  10390. <!-- TextAppearance of the placeholder text displayed in the text input area. -->
  10391. <attr format="reference" name="placeholderTextAppearance"/>
  10392. <!-- Text color of the placeholder text displayed in the text input area.
  10393. If set, this takes precedence over placeholderTextAppearance. -->
  10394. <attr format="color" name="placeholderTextColor"/>
  10395. <!-- The text to display as prefix text in the text input area. -->
  10396. <attr format="string" name="prefixText"/>
  10397. <!-- TextAppearance of the prefix text displayed in the text input area. -->
  10398. <attr format="reference" name="prefixTextAppearance"/>
  10399. <!-- Text color of the prefix text displayed in the text input area.
  10400. If set, this takes precedence over prefixTextAppearance. -->
  10401. <attr format="color" name="prefixTextColor"/>
  10402. <!-- The text to display as suffix text in the text input area. -->
  10403. <attr format="string" name="suffixText"/>
  10404. <!-- TextAppearance of the suffix text displayed in the text input area. -->
  10405. <attr format="reference" name="suffixTextAppearance"/>
  10406. <!-- Text color of the suffix text displayed in the text input area.
  10407. If set, this takes precedence over suffixTextAppearance. -->
  10408. <attr format="color" name="suffixTextColor"/>
  10409. <!-- Drawable to use for the start icon. -->
  10410. <attr format="reference" name="startIconDrawable"/>
  10411. <!-- Text to set as the content description for the start icon. -->
  10412. <attr format="string" name="startIconContentDescription"/>
  10413. <!-- Whether the start icon is checkable. -->
  10414. <attr format="boolean" name="startIconCheckable"/>
  10415. <!-- Tint color to use for the start icon. -->
  10416. <attr format="color" name="startIconTint"/>
  10417. <!-- Blending mode used to apply the background tint. -->
  10418. <attr name="startIconTintMode">
  10419. <!-- The tint is drawn on top of the drawable.
  10420. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  10421. <enum name="src_over" value="3"/>
  10422. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  10423. color channels are thrown out. [Sa * Da, Sc * Da] -->
  10424. <enum name="src_in" value="5"/>
  10425. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  10426. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  10427. <enum name="src_atop" value="9"/>
  10428. <!-- Multiplies the color and alpha channels of the drawable with those of
  10429. the tint. [Sa * Da, Sc * Dc] -->
  10430. <enum name="multiply" value="14"/>
  10431. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  10432. <enum name="screen" value="15"/>
  10433. </attr>
  10434. <!-- The end icon mode of the TextInputLayout. It will display one of the end icons detailed
  10435. below, or no end icon. -->
  10436. <attr name="endIconMode">
  10437. <!-- The view will display a custom icon specified by the user. -->
  10438. <enum name="custom" value="-1"/>
  10439. <!-- No end icon. -->
  10440. <enum name="none" value="0"/>
  10441. <!-- The view will display a toggle when the EditText has a password. -->
  10442. <enum name="password_toggle" value="1"/>
  10443. <!-- The view will display a clear text button while the EditText contains input. -->
  10444. <enum name="clear_text" value="2"/>
  10445. <!-- The view will display a toggle that displays/hides a dropdown menu. -->
  10446. <enum name="dropdown_menu" value="3"/>
  10447. </attr>
  10448. <!-- Drawable to use for the end icon. -->
  10449. <attr format="reference" name="endIconDrawable"/>
  10450. <!-- Text to set as the content description for the end icon. -->
  10451. <attr format="string" name="endIconContentDescription"/>
  10452. <!-- Whether the end icon is checkable. -->
  10453. <attr format="boolean" name="endIconCheckable"/>
  10454. <!-- Tint color to use for the end icon. -->
  10455. <attr format="color" name="endIconTint"/>
  10456. <!-- Blending mode used to apply the background tint. -->
  10457. <attr name="endIconTintMode">
  10458. <!-- The tint is drawn on top of the drawable.
  10459. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  10460. <enum name="src_over" value="3"/>
  10461. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  10462. color channels are thrown out. [Sa * Da, Sc * Da] -->
  10463. <enum name="src_in" value="5"/>
  10464. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  10465. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  10466. <enum name="src_atop" value="9"/>
  10467. <!-- Multiplies the color and alpha channels of the drawable with those of
  10468. the tint. [Sa * Da, Sc * Dc] -->
  10469. <enum name="multiply" value="14"/>
  10470. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  10471. <enum name="screen" value="15"/>
  10472. </attr>
  10473. <!-- Whether the text input area should be drawn as a filled box, an outline box, or not as a box.-->
  10474. <attr name="boxBackgroundMode">
  10475. <!-- Specifies that there should be no box set on the text input area. -->
  10476. <enum name="none" value="0"/>
  10477. <!-- Filled box mode for the text input box. -->
  10478. <enum name="filled" value="1"/>
  10479. <!-- Outline box mode for the text input box. -->
  10480. <enum name="outline" value="2"/>
  10481. </attr>
  10482. <!-- Value to use for the EditText's collapsed top padding in box mode. -->
  10483. <attr format="dimension" name="boxCollapsedPaddingTop"/>
  10484. <!-- The value to use for the box's top start corner radius when in box mode. -->
  10485. <attr format="dimension" name="boxCornerRadiusTopStart"/>
  10486. <!-- The value to use for the box's top end corner radius when in box mode. -->
  10487. <attr format="dimension" name="boxCornerRadiusTopEnd"/>
  10488. <!-- The value to use for the box's bottom start corner radius when in box mode. -->
  10489. <attr format="dimension" name="boxCornerRadiusBottomStart"/>
  10490. <!-- The value to use for the box's bottom end corner radius when in box mode. -->
  10491. <attr format="dimension" name="boxCornerRadiusBottomEnd"/>
  10492. <!-- The color to use for the box's stroke when in outline box mode. -->
  10493. <attr format="color" name="boxStrokeColor"/>
  10494. <!-- The color to use for the box's stroke in outline box mode when an error
  10495. is being displayed. If not set, it defaults to errorTextColor if on
  10496. error state, or to counterOverflowTextColor if on overflow state. -->
  10497. <attr format="color" name="boxStrokeErrorColor"/>
  10498. <!-- The color to use for the box's background color when in filled box mode.
  10499. If a non-stateful color resource is specified, default colors will be used for the hover
  10500. and disabled states. -->
  10501. <attr format="color" name="boxBackgroundColor"/>
  10502. <!-- The value to use for the box's stroke when in outline box mode, or for the underline stroke
  10503. in filled mode. -->
  10504. <attr format="dimension" name="boxStrokeWidth"/>
  10505. <!-- The value to use for the focused box's stroke when in outline box mode, or for the focused
  10506. underline stroke in filled mode.. -->
  10507. <attr format="dimension" name="boxStrokeWidthFocused"/>
  10508. <!-- Shape appearance style reference for TextInputLayout. Attribute declaration is in the Shape
  10509. package. -->
  10510. <attr name="shapeAppearance"/>
  10511. <!-- Shape appearance overlay style reference for TextInputLayout. To be used to augment
  10512. attributes declared in the shapeAppearance. Attribute declaration is in the Shape
  10513. package. -->
  10514. <attr name="shapeAppearanceOverlay"/>
  10515. <!-- Whether the view will display a toggle when the EditText has a password.
  10516. Deprecated. The view's end icon should be specified via endIconMode instead. -->
  10517. <attr format="boolean" name="passwordToggleEnabled"/>
  10518. <!-- Drawable to use as the password input visibility toggle icon.
  10519. Deprecated. Use endIconDrawable instead. -->
  10520. <attr format="reference" name="passwordToggleDrawable"/>
  10521. <!-- Text to set as the content description for the password input visibility toggle.
  10522. Deprecated. Use endIconContentDescription instead. -->
  10523. <attr format="string" name="passwordToggleContentDescription"/>
  10524. <!-- Icon to use for the password input visibility toggle
  10525. Deprecated. Use endIconTint instead. -->
  10526. <attr format="color" name="passwordToggleTint"/>
  10527. <!-- Blending mode used to apply the background tint.
  10528. Deprecated. Use endIconTintMode instead. -->
  10529. <attr name="passwordToggleTintMode">
  10530. <!-- The tint is drawn on top of the drawable.
  10531. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  10532. <enum name="src_over" value="3"/>
  10533. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  10534. color channels are thrown out. [Sa * Da, Sc * Da] -->
  10535. <enum name="src_in" value="5"/>
  10536. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  10537. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  10538. <enum name="src_atop" value="9"/>
  10539. <!-- Multiplies the color and alpha channels of the drawable with those of
  10540. the tint. [Sa * Da, Sc * Dc] -->
  10541. <enum name="multiply" value="14"/>
  10542. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  10543. <enum name="screen" value="15"/>
  10544. </attr>
  10545. </declare-styleable>
  10546. <declare-styleable name="ThemeEnforcement">
  10547. <!-- Internal flag used to denote that a style uses new attributes defined by
  10548. Theme.MaterialComponents, and that the component should check via ThemeEnforcement that the
  10549. client's app theme inherits from Theme.MaterialComponents.
  10550. Not all usages of new attributes are problematic in the context of a legacy app theme. You
  10551. should only use this flag if a particular usage is known to cause a visual glitch or crash.
  10552. For example, tinting a vector drawable with a non-existent theme attribute is known to
  10553. crash on pre-21 devices. -->
  10554. <attr format="boolean" name="enforceMaterialTheme"/>
  10555. <!-- Internal flag used to denote that a style requires that the textAppearance attribute is
  10556. specified and evaluates to a valid text appearance. -->
  10557. <attr format="boolean" name="enforceTextAppearance"/>
  10558. <!-- Attribute used to check that a component has a TextAppearance specified on it. -->
  10559. <attr name="android:textAppearance"/>
  10560. </declare-styleable>
  10561. <declare-styleable name="Toolbar">
  10562. <attr format="reference" name="titleTextAppearance"/>
  10563. <attr format="reference" name="subtitleTextAppearance"/>
  10564. <attr name="title"/>
  10565. <attr name="subtitle"/>
  10566. <attr name="android:gravity"/>
  10567. <!-- Specifies extra space on the left, start, right and end sides
  10568. of the toolbar's title. Margin values should be positive. -->
  10569. <attr format="dimension" name="titleMargin"/>
  10570. <!-- Specifies extra space on the start side of the toolbar's title.
  10571. If both this attribute and titleMargin are specified, then this
  10572. attribute takes precedence. Margin values should be positive. -->
  10573. <attr format="dimension" name="titleMarginStart"/>
  10574. <!-- Specifies extra space on the end side of the toolbar's title.
  10575. If both this attribute and titleMargin are specified, then this
  10576. attribute takes precedence. Margin values should be positive. -->
  10577. <attr format="dimension" name="titleMarginEnd"/>
  10578. <!-- Specifies extra space on the top side of the toolbar's title.
  10579. If both this attribute and titleMargin are specified, then this
  10580. attribute takes precedence. Margin values should be positive. -->
  10581. <attr format="dimension" name="titleMarginTop"/>
  10582. <!-- Specifies extra space on the bottom side of the toolbar's title.
  10583. If both this attribute and titleMargin are specified, then this
  10584. attribute takes precedence. Margin values should be positive. -->
  10585. <attr format="dimension" name="titleMarginBottom"/>
  10586. <!-- {@deprecated Use titleMargin} -->
  10587. <attr format="dimension" name="titleMargins"/>
  10588. <attr name="contentInsetStart"/>
  10589. <attr name="contentInsetEnd"/>
  10590. <attr name="contentInsetLeft"/>
  10591. <attr name="contentInsetRight"/>
  10592. <attr name="contentInsetStartWithNavigation"/>
  10593. <attr name="contentInsetEndWithActions"/>
  10594. <attr format="dimension" name="maxButtonHeight"/>
  10595. <attr name="buttonGravity">
  10596. <!-- Place object in the vertical center of its container, not changing its size. -->
  10597. <flag name="center_vertical" value="0x10"/>
  10598. <!-- Push object to the top of its container, not changing its size. -->
  10599. <flag name="top" value="0x30"/>
  10600. <!-- Push object to the bottom of its container, not changing its size. -->
  10601. <flag name="bottom" value="0x50"/>
  10602. </attr>
  10603. <!-- Icon drawable to use for the collapse button. -->
  10604. <attr format="reference" name="collapseIcon"/>
  10605. <!-- Text to set as the content description for the collapse button. -->
  10606. <attr format="string" name="collapseContentDescription"/>
  10607. <!-- Reference to a theme that should be used to inflate popups
  10608. shown by widgets in the toolbar. -->
  10609. <attr name="popupTheme"/>
  10610. <!-- Icon drawable to use for the navigation button located at
  10611. the start of the toolbar. -->
  10612. <attr format="reference" name="navigationIcon"/>
  10613. <!-- Text to set as the content description for the navigation button
  10614. located at the start of the toolbar. -->
  10615. <attr format="string" name="navigationContentDescription"/>
  10616. <!-- Drawable to set as the logo that appears at the starting side of
  10617. the Toolbar, just after the navigation button. -->
  10618. <attr name="logo"/>
  10619. <!-- A content description string to describe the appearance of the
  10620. associated logo image. -->
  10621. <attr format="string" name="logoDescription"/>
  10622. <!-- A color to apply to the title string. -->
  10623. <attr format="color" name="titleTextColor"/>
  10624. <!-- A color to apply to the subtitle string. -->
  10625. <attr format="color" name="subtitleTextColor"/>
  10626. <attr name="android:minHeight"/>
  10627. <!-- Menu resource to inflate to be shown in the toolbar -->
  10628. <attr format="reference" name="menu"/>
  10629. </declare-styleable>
  10630. <declare-styleable name="Tooltip">
  10631. <attr name="android:text"/>
  10632. <attr name="android:textAppearance"/>
  10633. <attr name="android:textColor"/>
  10634. <attr name="android:layout_margin"/>
  10635. <attr name="android:minWidth"/>
  10636. <attr name="android:minHeight"/>
  10637. <attr name="android:padding"/>
  10638. <attr format="color" name="backgroundTint"/>
  10639. </declare-styleable>
  10640. <declare-styleable name="Transform"><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="android:transformPivotX"/><attr name="android:transformPivotY"/><attr format="dimension" name="android:translationX"/><attr format="dimension" name="android:translationY"/><attr format="dimension" name="android:translationZ"/></declare-styleable>
  10641. <declare-styleable name="Transition"><attr name="android:id"/><attr format="reference" name="constraintSetStart"/><attr format="reference" name="constraintSetEnd"/><attr format="boolean" name="transitionDisable"/><attr name="layoutDuringTransition"/><attr name="pathMotionArc"/><attr format="enum" name="autoTransition">
  10642. <enum name="none" value="0"/>
  10643. <enum name="jumpToStart" value="1"/>
  10644. <enum name="jumpToEnd" value="2"/>
  10645. <enum name="animateToStart" value="3"/>
  10646. <enum name="animateToEnd" value="4"/>
  10647. </attr><attr format="string|reference|enum" name="motionInterpolator">
  10648. <enum name="easeInOut" value="0"/>
  10649. <enum name="easeIn" value="1"/>
  10650. <enum name="easeOut" value="2"/>
  10651. <enum name="linear" value="3"/>
  10652. <enum name="bounce" value="5"/>
  10653. </attr><attr name="duration"/><attr format="float" name="staggered"/><attr name="transitionFlags">
  10654. <flag name="none" value="0"/>
  10655. <flag name="beginOnFirstDraw" value="1"/>
  10656. />
  10657. </attr></declare-styleable>
  10658. <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>
  10659. <declare-styleable name="View">
  10660. <!-- Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. -->
  10661. <attr format="dimension" name="paddingStart"/>
  10662. <!-- Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. -->
  10663. <attr format="dimension" name="paddingEnd"/>
  10664. <!-- Boolean that controls whether a view can take focus. By default the user can not
  10665. move focus to a view; by setting this attribute to true the view is
  10666. allowed to take focus. This value does not impact the behavior of
  10667. directly calling {@link android.view.View#requestFocus}, which will
  10668. always request focus regardless of this view. It only impacts where
  10669. focus navigation will try to move focus. -->
  10670. <attr name="android:focusable"/>
  10671. <!-- Deprecated. -->
  10672. <attr format="reference" name="theme"/>
  10673. <!-- Specifies a theme override for a view. When a theme override is set, the
  10674. view will be inflated using a {@link android.content.Context} themed with
  10675. the specified resource. -->
  10676. <attr name="android:theme"/>
  10677. </declare-styleable>
  10678. <declare-styleable name="ViewBackgroundHelper">
  10679. <attr name="android:background"/>
  10680. <!-- Tint to apply to the background. -->
  10681. <attr format="color" name="backgroundTint"/>
  10682. <!-- Blending mode used to apply the background tint. -->
  10683. <attr name="backgroundTintMode">
  10684. <!-- The tint is drawn on top of the drawable.
  10685. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  10686. <enum name="src_over" value="3"/>
  10687. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  10688. color channels are thrown out. [Sa * Da, Sc * Da] -->
  10689. <enum name="src_in" value="5"/>
  10690. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  10691. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  10692. <enum name="src_atop" value="9"/>
  10693. <!-- Multiplies the color and alpha channels of the drawable with those of
  10694. the tint. [Sa * Da, Sc * Dc] -->
  10695. <enum name="multiply" value="14"/>
  10696. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  10697. <enum name="screen" value="15"/>
  10698. <!-- Combines the tint and icon color and alpha channels, clamping the
  10699. result to valid color values. Saturate(S + D) -->
  10700. <enum name="add" value="16"/>
  10701. </attr>
  10702. </declare-styleable>
  10703. <declare-styleable name="ViewPager2">
  10704. <attr name="android:orientation"/>
  10705. </declare-styleable>
  10706. <declare-styleable name="ViewStubCompat">
  10707. <!-- Supply an identifier for the layout resource to inflate when the ViewStub
  10708. becomes visible or when forced to do so. The layout resource must be a
  10709. valid reference to a layout. -->
  10710. <attr name="android:layout"/>
  10711. <!-- Overrides the id of the inflated View with this value. -->
  10712. <attr name="android:inflatedId"/>
  10713. <attr name="android:id"/>
  10714. </declare-styleable>
  10715. </resources>