values.xml 454 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
  3. <attr format="color" name="Alphabet_text_color"/>
  4. <attr format="color" name="BG_0"/>
  5. <attr format="color" name="BG_1"/>
  6. <attr format="color" name="BG_2"/>
  7. <attr format="color" name="BG_3"/>
  8. <attr format="color" name="BG_4"/>
  9. <attr format="color" name="BG_5"/>
  10. <attr format="color" name="FG_0"/>
  11. <attr format="color" name="FG_1"/>
  12. <attr format="color" name="FG_2"/>
  13. <attr format="color" name="FG_3"/>
  14. <attr format="color" name="Indigo"/>
  15. <attr format="color" name="LightGreen"/>
  16. <attr format="color" name="Link"/>
  17. <attr format="color" name="Orange"/>
  18. <attr format="color" name="Purple"/>
  19. <attr format="reference" name="SwipeBackLayoutStyle"/>
  20. <attr format="color" name="TextGreen"/>
  21. <attr format="color" name="Yellow"/>
  22. <attr format="reference" name="actionbar_icon_dark_back"/>
  23. <attr format="color" name="app_actionbar_color"/>
  24. <attr format="color" name="app_content_bg_color"/>
  25. <attr format="color" name="app_theme_color"/>
  26. <attr format="color" name="arrow_color"/>
  27. <attr format="boolean" name="barrierAllowsGoneWidgets"/>
  28. <attr format="enum" name="barrierDirection">
  29. <enum name="left" value="0"/>
  30. <enum name="right" value="1"/>
  31. <enum name="top" value="2"/>
  32. <enum name="bottom" value="3"/>
  33. <enum name="start" value="5"/>
  34. <enum name="end" value="6"/>
  35. </attr>
  36. <attr format="reference" name="bottomAppBarStyle"/>
  37. <attr format="reference" name="bottomNavigationStyle"/>
  38. <attr format="reference" name="bottomSheetDialogTheme"/>
  39. <attr format="reference" name="bottomSheetStyle"/>
  40. <attr format="reference" name="cardViewStyle"/>
  41. <attr format="boolean" name="chainUseRtl"/>
  42. <attr format="reference" name="chatfrom_bg"/>
  43. <attr format="reference" name="chatfrom_bg_app"/>
  44. <attr format="reference" name="chatfrom_voice_playing_f1"/>
  45. <attr format="reference" name="chatfrom_voice_playing_f2"/>
  46. <attr format="reference" name="chatfrom_voice_playing_f3"/>
  47. <attr format="reference" name="chatto_bg"/>
  48. <attr format="reference" name="chatto_bg_app"/>
  49. <attr format="reference" name="checkbox_selector"/>
  50. <attr format="reference" name="chipGroupStyle"/>
  51. <attr format="reference" name="chipStandaloneStyle"/>
  52. <attr format="reference" name="chipStyle"/>
  53. <attr format="color" name="colorSecondary"/>
  54. <attr format="reference" name="colorful_card"/>
  55. <attr format="reference" name="colorful_favorites"/>
  56. <attr format="reference" name="colorful_game"/>
  57. <attr format="reference" name="colorful_moment"/>
  58. <attr format="reference" name="constraintSet"/>
  59. <attr format="string" name="constraint_referenced_ids"/>
  60. <attr format="reference" name="content"/>
  61. <attr format="color" name="conversation_click_color"/>
  62. <attr format="reference" name="coordinatorLayoutStyle"/>
  63. <attr format="reference" name="datePickerStyle"/>
  64. <attr format="color" name="default_bg_color"/>
  65. <attr format="reference" name="drawerArrowStyle"/>
  66. <attr format="reference" name="emoji_pop_bg_smiley"/>
  67. <attr format="reference" name="emoji_pop_bg_smiley_left"/>
  68. <attr format="reference" name="emoji_pop_bg_smiley_right"/>
  69. <attr name="emptyVisibility">
  70. <enum name="gone" value="0"/>
  71. <enum name="invisible" value="1"/>
  72. </attr>
  73. <attr format="reference" name="et_clear_selector"/>
  74. <attr name="floatingActionButtonStyle"/>
  75. <attr format="dimension" name="height"/>
  76. <attr format="reference" name="hideMotionSpec"/>
  77. <attr format="boolean" name="isLightTheme"/>
  78. <attr format="color" name="item_color_selector"/>
  79. <attr format="boolean" name="layout_constrainedHeight"/>
  80. <attr format="boolean" name="layout_constrainedWidth"/>
  81. <attr format="integer" name="layout_constraintBaseline_creator"/>
  82. <attr format="reference|enum" name="layout_constraintBaseline_toBaselineOf">
  83. <enum name="parent" value="0"/>
  84. </attr>
  85. <attr format="integer" name="layout_constraintBottom_creator"/>
  86. <attr format="reference|enum" name="layout_constraintBottom_toBottomOf">
  87. <enum name="parent" value="0"/>
  88. </attr>
  89. <attr format="reference|enum" name="layout_constraintBottom_toTopOf">
  90. <enum name="parent" value="0"/>
  91. </attr>
  92. <attr format="reference" name="layout_constraintCircle"/>
  93. <attr format="integer" name="layout_constraintCircleAngle"/>
  94. <attr format="dimension" name="layout_constraintCircleRadius"/>
  95. <attr format="string" name="layout_constraintDimensionRatio"/>
  96. <attr format="reference|enum" name="layout_constraintEnd_toEndOf">
  97. <enum name="parent" value="0"/>
  98. </attr>
  99. <attr format="reference|enum" name="layout_constraintEnd_toStartOf">
  100. <enum name="parent" value="0"/>
  101. </attr>
  102. <attr format="dimension" name="layout_constraintGuide_begin"/>
  103. <attr format="dimension" name="layout_constraintGuide_end"/>
  104. <attr format="float" name="layout_constraintGuide_percent"/>
  105. <attr name="layout_constraintHeight_default">
  106. <enum name="spread" value="0"/>
  107. <enum name="wrap" value="1"/>
  108. <enum name="percent" value="2"/>
  109. </attr>
  110. <attr format="dimension|enum" name="layout_constraintHeight_max">
  111. <enum name="wrap" value="-2"/>
  112. </attr>
  113. <attr format="dimension|enum" name="layout_constraintHeight_min">
  114. <enum name="wrap" value="-2"/>
  115. </attr>
  116. <attr format="float" name="layout_constraintHeight_percent"/>
  117. <attr format="float" name="layout_constraintHorizontal_bias"/>
  118. <attr format="enum" name="layout_constraintHorizontal_chainStyle">
  119. <enum name="spread" value="0"/>
  120. <enum name="spread_inside" value="1"/>
  121. <enum name="packed" value="2"/>
  122. </attr>
  123. <attr format="float" name="layout_constraintHorizontal_weight"/>
  124. <attr format="integer" name="layout_constraintLeft_creator"/>
  125. <attr format="reference|enum" name="layout_constraintLeft_toLeftOf">
  126. <enum name="parent" value="0"/>
  127. </attr>
  128. <attr format="reference|enum" name="layout_constraintLeft_toRightOf">
  129. <enum name="parent" value="0"/>
  130. </attr>
  131. <attr format="integer" name="layout_constraintRight_creator"/>
  132. <attr format="reference|enum" name="layout_constraintRight_toLeftOf">
  133. <enum name="parent" value="0"/>
  134. </attr>
  135. <attr format="reference|enum" name="layout_constraintRight_toRightOf">
  136. <enum name="parent" value="0"/>
  137. </attr>
  138. <attr format="reference|enum" name="layout_constraintStart_toEndOf">
  139. <enum name="parent" value="0"/>
  140. </attr>
  141. <attr format="reference|enum" name="layout_constraintStart_toStartOf">
  142. <enum name="parent" value="0"/>
  143. </attr>
  144. <attr format="integer" name="layout_constraintTop_creator"/>
  145. <attr format="reference|enum" name="layout_constraintTop_toBottomOf">
  146. <enum name="parent" value="0"/>
  147. </attr>
  148. <attr format="reference|enum" name="layout_constraintTop_toTopOf">
  149. <enum name="parent" value="0"/>
  150. </attr>
  151. <attr format="float" name="layout_constraintVertical_bias"/>
  152. <attr format="enum" name="layout_constraintVertical_chainStyle">
  153. <enum name="spread" value="0"/>
  154. <enum name="spread_inside" value="1"/>
  155. <enum name="packed" value="2"/>
  156. </attr>
  157. <attr format="float" name="layout_constraintVertical_weight"/>
  158. <attr name="layout_constraintWidth_default">
  159. <enum name="spread" value="0"/>
  160. <enum name="wrap" value="1"/>
  161. <enum name="percent" value="2"/>
  162. </attr>
  163. <attr format="dimension|enum" name="layout_constraintWidth_max">
  164. <enum name="wrap" value="-2"/>
  165. </attr>
  166. <attr format="dimension|enum" name="layout_constraintWidth_min">
  167. <enum name="wrap" value="-2"/>
  168. </attr>
  169. <attr format="float" name="layout_constraintWidth_percent"/>
  170. <attr format="dimension" name="layout_editor_absoluteX"/>
  171. <attr format="dimension" name="layout_editor_absoluteY"/>
  172. <attr format="dimension" name="layout_goneMarginBottom"/>
  173. <attr format="dimension" name="layout_goneMarginEnd"/>
  174. <attr format="dimension" name="layout_goneMarginLeft"/>
  175. <attr format="dimension" name="layout_goneMarginRight"/>
  176. <attr format="dimension" name="layout_goneMarginStart"/>
  177. <attr format="dimension" name="layout_goneMarginTop"/>
  178. <attr name="layout_optimizationLevel">
  179. <flag name="none" value="0"/>
  180. <flag name="standard" value="7"/> <!-- direct, barriers, chains -->
  181. <flag name="direct" value="1"/>
  182. <flag name="barrier" value="2"/>
  183. <flag name="chains" value="4"/>
  184. <flag name="dimensions" value="8"/>
  185. <flag name="groups" value="32"/>
  186. </attr>
  187. <attr format="reference" name="list_item_divider"/>
  188. <attr format="reference" name="list_top_line_selector"/>
  189. <attr format="reference" name="materialButtonStyle"/>
  190. <attr format="reference" name="materialCardViewStyle"/>
  191. <attr format="reference" name="me_alpha_bg"/>
  192. <attr format="reference" name="me_normal_bg"/>
  193. <attr format="reference" name="navigationViewStyle"/>
  194. <attr format="reference" name="ok_icon"/>
  195. <attr format="reference" name="progress_cancel"/>
  196. <attr format="reference" name="radio_selector"/>
  197. <attr format="reference" name="recyclerViewStyle"/>
  198. <attr format="color" name="rippleColor"/>
  199. <attr format="color|reference" name="scrimBackground"/>
  200. <attr format="reference" name="showMotionSpec"/>
  201. <attr format="reference" name="sns_comment_btn"/>
  202. <attr format="color" name="strokeColor"/>
  203. <attr format="dimension" name="strokeWidth"/>
  204. <attr format="reference" name="tabStyle"/>
  205. <attr format="reference" name="textAppearanceBody1"/>
  206. <attr format="reference" name="textAppearanceBody2"/>
  207. <attr format="reference" name="textAppearanceButton"/>
  208. <attr format="reference" name="textAppearanceCaption"/>
  209. <attr format="reference" name="textAppearanceHeadline1"/>
  210. <attr format="reference" name="textAppearanceHeadline2"/>
  211. <attr format="reference" name="textAppearanceHeadline3"/>
  212. <attr format="reference" name="textAppearanceHeadline4"/>
  213. <attr format="reference" name="textAppearanceHeadline5"/>
  214. <attr format="reference" name="textAppearanceHeadline6"/>
  215. <attr format="reference" name="textAppearanceOverline"/>
  216. <attr format="reference" name="textAppearanceSubtitle1"/>
  217. <attr format="reference" name="textAppearanceSubtitle2"/>
  218. <attr format="reference" name="textInputStyle"/>
  219. <attr format="string" name="themeName"/>
  220. <attr format="color" name="time_text_color"/>
  221. <attr format="reference" name="tips_background"/>
  222. <attr format="string" name="title"/>
  223. <bool name="abc_action_bar_embed_tabs">true</bool>
  224. <bool name="abc_allow_stacked_button_bar">false</bool>
  225. <bool name="abc_config_actionMenuItemAllCaps">true</bool>
  226. <bool name="mtrl_btn_textappearance_all_caps">true</bool>
  227. <color name="BG_0">@color/BW_93</color>
  228. <color name="BG_1">@color/BW_97</color>
  229. <color name="BG_2">@color/BW_100</color>
  230. <color name="BG_3">@color/BW_97</color>
  231. <color name="BG_4">@color/BW_BG_30</color>
  232. <color name="BG_5">#FFFFFF</color>
  233. <color name="BW_0">#000000</color>
  234. <color name="BW_0_Alpha_0_0_3">#08000000</color>
  235. <color name="BW_0_Alpha_0_0_5">#0D000000</color>
  236. <color name="BW_0_Alpha_0_1">#1A000000</color>
  237. <color name="BW_0_Alpha_0_1_3">#21000000</color>
  238. <color name="BW_0_Alpha_0_1_5">#26000000</color>
  239. <color name="BW_0_Alpha_0_2">#33000000</color>
  240. <color name="BW_0_Alpha_0_2_5">#40000000</color>
  241. <color name="BW_0_Alpha_0_3">#4D000000</color>
  242. <color name="BW_0_Alpha_0_4">#66000000</color>
  243. <color name="BW_0_Alpha_0_5">#80000000</color>
  244. <color name="BW_0_Alpha_0_8">#CC000000</color>
  245. <color name="BW_0_Alpha_0_9">#E6000000</color>
  246. <color name="BW_10">#181818</color>
  247. <color name="BW_100">#FFFFFF</color>
  248. <color name="BW_100_Alpha_0_0_5">#0DFFFFFF</color>
  249. <color name="BW_100_Alpha_0_1">#1AFFFFFF</color>
  250. <color name="BW_100_Alpha_0_2">#33FFFFFF</color>
  251. <color name="BW_100_Alpha_0_3">#4DFFFFFF</color>
  252. <color name="BW_100_Alpha_0_5">#80FFFFFF</color>
  253. <color name="BW_100_Alpha_0_6">#99FFFFFF</color>
  254. <color name="BW_100_Alpha_0_8">#CCFFFFFF</color>
  255. <color name="BW_100_Alpha_0_9">#E6FFFFFF</color>
  256. <color name="BW_20">#303030</color>
  257. <color name="BW_50">#808080</color>
  258. <color name="BW_70">#B2B2B2</color>
  259. <color name="BW_70_dark">#6B6B6B</color>
  260. <color name="BW_90">#E5E5E5</color>
  261. <color name="BW_93">#EDEDED</color>
  262. <color name="BW_94">@color/BW_93</color>
  263. <color name="BW_95">@color/BW_93</color>
  264. <color name="BW_97">#F7F7F7</color>
  265. <color name="BW_98">@color/BW_97</color>
  266. <color name="BW_BG_100">#FFFFFF</color>
  267. <color name="BW_BG_19">#191919</color>
  268. <color name="BW_BG_20">#333333</color>
  269. <color name="BW_BG_30">#4C4C4C</color>
  270. <color name="BW_BG_95">@color/BW_93</color>
  271. <color name="BW_BG_98">@color/BW_97</color>
  272. <color name="BW_F_Alpha_0_8">#CCFFFFFF</color>
  273. <color name="Blue">#10AEFF</color>
  274. <color name="Blue_100">#10AEFF</color>
  275. <color name="Blue_120">#3FBEFF</color>
  276. <color name="Blue_170">#B7E6FF</color>
  277. <color name="Blue_80">#0C8BCC</color>
  278. <color name="Blue_90">#0E9CE6</color>
  279. <color name="Blue_BG_100">#48A6E2</color>
  280. <color name="Blue_BG_110">#5AAFE4</color>
  281. <color name="Blue_BG_130">#7FC0EA</color>
  282. <color name="Blue_BG_90">#4095CB</color>
  283. <color name="Blur_1">#D9F5F5F5</color>
  284. <color name="Blur_2">#A6AAAAAA</color>
  285. <color name="Blur_3">#A65B5B5B</color>
  286. <color name="Blur_4">#CC333333</color>
  287. <color name="Blur_5">#CC0C0C0C</color>
  288. <color name="Brand">#07C160</color>
  289. <color name="Brand_100">#07C160</color>
  290. <color name="Brand_120">#69c694</color>
  291. <color name="Brand_170">#B4ECCE</color>
  292. <color name="Brand_80">#059A4C</color>
  293. <color name="Brand_90">#06AE56</color>
  294. <color name="Brand_Alpha_0_1">#1A07C160</color>
  295. <color name="Brand_Alpha_0_2">#3307C160</color>
  296. <color name="Brand_Alpha_0_3">#4D07C160</color>
  297. <color name="Brand_Alpha_0_5">#8007C160</color>
  298. <color name="Brand_BG_100">#2AAE67</color>
  299. <color name="Brand_BG_110">#3EB575</color>
  300. <color name="Brand_BG_130">#69C694</color>
  301. <color name="Brand_BG_90">#259C5C</color>
  302. <color name="Btn_green_text_color">#06AE56</color>
  303. <color name="Btn_white_color_pressed">#CECECE</color>
  304. <color name="Dark_0">#111111</color>
  305. <color name="Dark_1">#1E1E1E</color>
  306. <color name="Dark_2">#191919</color>
  307. <color name="Dark_3">#202020</color>
  308. <color name="Dark_4">#404040</color>
  309. <color name="Dark_5">#2C2C2C</color>
  310. <color name="FG_0">@color/BW_0_Alpha_0_9</color>
  311. <color name="FG_0_5">@color/BW_0_Alpha_0_9</color>
  312. <color name="FG_1">@color/BW_0_Alpha_0_5</color>
  313. <color name="FG_2">@color/BW_0_Alpha_0_3</color>
  314. <color name="FG_3">@color/BW_0_Alpha_0_1</color>
  315. <color name="FG_4">@color/BW_0_Alpha_0_1_5</color>
  316. <color name="Green">#91D300</color>
  317. <color name="Green_100">#91D300</color>
  318. <color name="Green_120">#A7DB33</color>
  319. <color name="Green_170">#DEF1B3</color>
  320. <color name="Green_80">#74A800</color>
  321. <color name="Green_90">#82BD00</color>
  322. <color name="Green_BG_100">#96BE40</color>
  323. <color name="Green_BG_110">#A0C452</color>
  324. <color name="Green_BG_130">#B5D179</color>
  325. <color name="Green_BG_90">#86AA39</color>
  326. <color name="Indigo">#1485EE</color>
  327. <color name="Indigo_100">#1485EE</color>
  328. <color name="Indigo_120">#439DF1</color>
  329. <color name="Indigo_170">#B8DAF9</color>
  330. <color name="Indigo_60">#0C4F8E</color>
  331. <color name="Indigo_80">#106ABE</color>
  332. <color name="Indigo_90">#1277D6</color>
  333. <color name="Indigo_BG_100">#2B77BF</color>
  334. <color name="Indigo_BG_110">#3F84C5</color>
  335. <color name="Indigo_BG_130">#6BA0D2</color>
  336. <color name="Indigo_BG_90">#266AAB</color>
  337. <color name="LightGreen">#95EC69</color>
  338. <color name="LightGreen_100">#95EC69</color>
  339. <color name="LightGreen_120">#AAEF87</color>
  340. <color name="LightGreen_170">#DEF9D1</color>
  341. <color name="LightGreen_80">#77BC54</color>
  342. <color name="LightGreen_90">#85D35E</color>
  343. <color name="LightGreen_BG_100">#72CF60</color>
  344. <color name="LightGreen_BG_110">#80D370</color>
  345. <color name="LightGreen_BG_130">#9CDD90</color>
  346. <color name="LightGreen_BG_90">#66B956</color>
  347. <color name="Link">#576B95</color>
  348. <color name="Link_100">#576B95</color>
  349. <color name="Link_120">#7888AA</color>
  350. <color name="Link_170">#CCD2DE</color>
  351. <color name="Link_80">#455577</color>
  352. <color name="Link_90">#4E6085</color>
  353. <color name="Link_Alpha_0_3">#4D576B95</color>
  354. <color name="Link_Alpha_0_6">#99576B95</color>
  355. <color name="Orange">#FA9D3B</color>
  356. <color name="Orange_100">#FA9D3B</color>
  357. <color name="Orange_120">#FBB062</color>
  358. <color name="Orange_170">#FDE1C3</color>
  359. <color name="Orange_80">#C87D2F</color>
  360. <color name="Orange_90">#E08C34</color>
  361. <color name="Orange_BG_100">#EA7800</color>
  362. <color name="Orange_BG_110">#EC8519</color>
  363. <color name="Orange_BG_130">#F0A04D</color>
  364. <color name="Orange_BG_90">#D26B00</color>
  365. <color name="Purple">#6467F0</color>
  366. <color name="Purple_100">#6467F0</color>
  367. <color name="Purple_120">#8385F3</color>
  368. <color name="Purple_170">#D0D1FA</color>
  369. <color name="Purple_80">#5052C0</color>
  370. <color name="Purple_90">#595CD7</color>
  371. <color name="Purple_BG_100">#6769BA</color>
  372. <color name="Purple_BG_110">#7678C1</color>
  373. <color name="Purple_BG_130">#9496CE</color>
  374. <color name="Purple_BG_90">#5C5EA7</color>
  375. <color name="Red">#FA5151</color>
  376. <color name="Red_100">#FA5151</color>
  377. <color name="Red_120">#FB7373</color>
  378. <color name="Red_170">#FDCACA</color>
  379. <color name="Red_190">#FEEDED</color>
  380. <color name="Red_80">#C84040</color>
  381. <color name="Red_90">#E14949</color>
  382. <color name="Red_Alpha_0_2">#33FA5151</color>
  383. <color name="Red_BG_100">#CF5148</color>
  384. <color name="Red_BG_110">#D3625A</color>
  385. <color name="Red_BG_130">#DD847E</color>
  386. <color name="Red_BG_90">#B94840</color>
  387. <color name="UN_BG_0">#EDEDED</color>
  388. <color name="UN_BW_0_Alpha_0_0_5">#0D000000</color>
  389. <color name="UN_BW_0_Alpha_0_1">#1A000000</color>
  390. <color name="UN_BW_0_Alpha_0_2">#33000000</color>
  391. <color name="UN_BW_0_Alpha_0_3">#4D000000</color>
  392. <color name="UN_BW_0_Alpha_0_5">#80000000</color>
  393. <color name="UN_BW_0_Alpha_0_9">#E6000000</color>
  394. <color name="UN_BW_100">@color/White</color>
  395. <color name="UN_BW_93">#EDEDED</color>
  396. <color name="UN_BW_97">#F7F7F7</color>
  397. <color name="UN_Brand">#07C160</color>
  398. <color name="UN_Brand_BG_100">#2AAE67</color>
  399. <color name="UN_Link">#576B95</color>
  400. <color name="UN_Red">#FA5151</color>
  401. <color name="UN_Yellow">#FFC300</color>
  402. <color name="UN_Yellow_90">#E6AF00</color>
  403. <color name="UN_Yellow_BG_100">#EFB600</color>
  404. <color name="White">#FFFFFF</color>
  405. <color name="Yellow">#FFC300</color>
  406. <color name="Yellow_100">#FFC300</color>
  407. <color name="Yellow_120">#FFCF33</color>
  408. <color name="Yellow_170">#FFECB2</color>
  409. <color name="Yellow_80">#CC9C00</color>
  410. <color name="Yellow_90">#E6AF00</color>
  411. <color name="Yellow_BG_100">#EFB600</color>
  412. <color name="Yellow_BG_110">#F0BD19</color>
  413. <color name="Yellow_BG_130">#F3CC4D</color>
  414. <color name="Yellow_BG_90">#D7A400</color>
  415. <color name="abc_input_method_navigation_guard">@android:color/black</color>
  416. <color name="abc_search_url_text_normal">#7fa87f</color>
  417. <color name="abc_search_url_text_pressed">@android:color/black</color>
  418. <color name="abc_search_url_text_selected">@android:color/black</color>
  419. <color name="accent_material_dark">@color/material_deep_teal_200</color>
  420. <color name="accent_material_light">@color/material_deep_teal_500</color>
  421. <color name="action_bar_color">@color/dark_actionbar_color</color>
  422. <color name="action_bar_tittle_color">@color/white_text_color</color>
  423. <color name="actionbar_bg_color">@color/dark_actionbar_color</color>
  424. <color name="actionbar_devider_color">@color/BW_0_Alpha_0_1</color>
  425. <color name="actionbar_selector_color">@color/BW_0_Alpha_0_2</color>
  426. <color name="actionbar_subtitle_color">@color/BW_0_Alpha_0_5</color>
  427. <color name="actionbar_subtitle_light_color">@color/BW_100_Alpha_0_6</color>
  428. <color name="actionbar_title_color">@color/BW_0_Alpha_0_9</color>
  429. <color name="actionbar_title_light_color">@color/BW_100_Alpha_0_8</color>
  430. <color name="ad_btn_color">#FFFFFF</color>
  431. <color name="album_chooser_bg_color">#FF4C4C4C</color>
  432. <color name="album_chooser_icon_bg_color">#CCCCCCCC</color>
  433. <color name="album_chooser_icon_color">#CD000000</color>
  434. <color name="alpha_white_text_color">@color/BW_100_Alpha_0_5</color>
  435. <color name="androidx_core_ripple_material_light">#1f000000</color>
  436. <color name="androidx_core_secondary_text_default_material_light">#8a000000</color>
  437. <color name="app_brand_action_sheet_header_text_color">@color/desc_text_color</color>
  438. <color name="app_brand_action_sheet_title_color">#DF000000</color>
  439. <color name="app_brand_capsule_divider_dark">#40FFFFFF</color>
  440. <color name="app_brand_capsule_divider_light">#20000000</color>
  441. <color name="app_brand_capsule_inside_dark">#33000000</color>
  442. <color name="app_brand_capsule_inside_light">#99FFFFFF</color>
  443. <color name="app_brand_capsule_stroke_line_dark">#3FFFFFFF</color>
  444. <color name="app_brand_capsule_stroke_line_light">#33979797</color>
  445. <color name="app_brand_jslogin_auth_desc_color">@color/desc_text_color</color>
  446. <color name="app_brand_jslogin_avatar_devide_line_color">@color/small_line_color</color>
  447. <color name="app_brand_jslogin_devide_line_color">@color/small_line_color</color>
  448. <color name="app_brand_jslogin_login_accept_color">@color/brand_text_color</color>
  449. <color name="app_brand_jslogin_login_reject_color">@color/desc_text_color</color>
  450. <color name="app_brand_jslogin_wechat_auth_color">@color/normal_text_color</color>
  451. <color name="app_brand_toast_bg_color">#B3111111</color>
  452. <color name="app_brand_verify_code_color">#33B532</color>
  453. <color name="appbrand_keyboard_bottom_left_right">@color/appbrand_keyboard_bottom_left_right_light</color>
  454. <color name="appbrand_keyboard_bottom_left_right_high">@color/appbrand_keyboard_bottom_left_right_high_light</color>
  455. <color name="appbrand_keyboard_bottom_left_right_high_light">#BFBFBF</color>
  456. <color name="appbrand_keyboard_bottom_left_right_light">#E0E0E0</color>
  457. <color name="appbrand_keyboard_item_normal">@color/appbrand_keyboard_item_normal_light</color>
  458. <color name="appbrand_keyboard_item_normal_light">#EDEDED</color>
  459. <color name="appbrand_keyboard_item_pressed">@color/appbrand_keyboard_item_pressed_light</color>
  460. <color name="appbrand_keyboard_item_pressed_light">#1A000000</color>
  461. <color name="appbrand_keyboard_item_text_color">@color/normal_text</color>
  462. <color name="arrow_color">#B2B2B2</color>
  463. <color name="background_floating_material_dark">@color/material_grey_800</color>
  464. <color name="background_floating_material_light">@android:color/white</color>
  465. <color name="background_material_dark">@color/material_grey_850</color>
  466. <color name="background_material_light">@color/material_grey_50</color>
  467. <color name="biz_time_line_new_msg_tips_bg">#08000000</color>
  468. <color name="black">@color/BW_0</color>
  469. <color name="black_color">#000000</color>
  470. <color name="black_text_color">@color/BW_0_Alpha_0_9</color>
  471. <color name="black_text_color_disabled">@color/BW_0_Alpha_0_2</color>
  472. <color name="black_text_color_pressed">@color/BW_100_Alpha_0_6</color>
  473. <color name="blue_bg_color">@color/Blue</color>
  474. <color name="blue_text_color">@color/brand_text_color</color>
  475. <color name="bottom_cell_bg_color">@color/BW_97</color>
  476. <color name="bottom_cell_bg_press_color">@color/BW_0_Alpha_0_1</color>
  477. <color name="bottom_sheet_text_color">@color/normal_text_color</color>
  478. <color name="bottom_sheet_text_color_disable">@color/BW_0_Alpha_0_2_5</color>
  479. <color name="bottom_sheet_text_desc_color">@color/BW_0_Alpha_0_5</color>
  480. <color name="bottom_sheet_title_text_color">@color/BW_0_Alpha_0_5</color>
  481. <color name="bottomsheet_footer_menu_color">@color/White</color>
  482. <color name="bottomsheet_header_menu_color">@color/BW_100_Alpha_0_5</color>
  483. <color name="bottomsheet_shape_color">@color/White</color>
  484. <color name="brand_text_color">@color/Link_100</color>
  485. <color name="brand_text_color_disable">@color/Link_Alpha_0_3</color>
  486. <color name="brand_text_color_pressed">@color/Link_Alpha_0_6</color>
  487. <color name="bright_foreground_disabled_material_dark">#80ffffff</color>
  488. <color name="bright_foreground_disabled_material_light">#80000000</color>
  489. <color name="bright_foreground_inverse_material_dark">@color/bright_foreground_material_light</color>
  490. <color name="bright_foreground_inverse_material_light">@color/bright_foreground_material_dark</color>
  491. <color name="bright_foreground_material_dark">@android:color/white</color>
  492. <color name="bright_foreground_material_light">@android:color/black</color>
  493. <color name="btn_dark_color_disable">@color/BW_0_Alpha_0_0_5</color>
  494. <color name="btn_gold_red_color_disable">#F4AF9C</color>
  495. <color name="btn_gold_red_color_normal">#EA5F39</color>
  496. <color name="btn_gold_red_color_pressed">#D25533</color>
  497. <color name="btn_green_color_disable">@color/BW_0_Alpha_0_0_5</color>
  498. <color name="btn_green_color_normal">@color/wechat_green</color>
  499. <color name="btn_green_color_pressed">@color/wechat_green_press</color>
  500. <color name="btn_green_outline_color_disable">#00179E16</color>
  501. <color name="btn_green_outline_color_normal">@color/wechat_green</color>
  502. <color name="btn_green_outline_color_pressed">#00B76D</color>
  503. <color name="btn_green_text_color">#06AE56</color>
  504. <color name="btn_grey_outline_color_disable">#F2F2F2</color>
  505. <color name="btn_grey_outline_color_normal">#F2F2F2</color>
  506. <color name="btn_grey_outline_color_pressed">#DBDBDB</color>
  507. <color name="btn_red_color_disable">@color/BW_0_Alpha_0_0_5</color>
  508. <color name="btn_red_color_normal">@color/Red</color>
  509. <color name="btn_red_color_pressed">@color/Red_90</color>
  510. <color name="btn_red_outline_color_disable">#00D33D3A</color>
  511. <color name="btn_red_outline_color_normal">#D33D3A</color>
  512. <color name="btn_red_outline_color_pressed">#BD3734</color>
  513. <color name="btn_white_color_disable">@color/BW_0_Alpha_0_0_5</color>
  514. <color name="btn_white_color_normal">@color/BW_0_Alpha_0_0_5</color>
  515. <color name="btn_white_color_pressed">#CECECE</color>
  516. <color name="btn_white_text_color">#FFFFFF</color>
  517. <color name="bubble_chat_from_bg_color">@color/white_color</color>
  518. <color name="bubble_chat_to_bg_color">@color/LightGreen</color>
  519. <color name="button_material_dark">#ff5a595b</color>
  520. <color name="button_material_light">#ffd6d7d7</color>
  521. <color name="cancel_btn_color">@color/normal_text_color</color>
  522. <color name="cardview_dark_background">#FF424242</color>
  523. <color name="cardview_light_background">#FFFFFFFF</color>
  524. <color name="cardview_shadow_end_color">#03000000</color>
  525. <color name="cardview_shadow_start_color">#37000000</color>
  526. <color name="chat_img_default_bg_color">@color/BW_0_Alpha_0_4</color>
  527. <color name="chat_img_mask_color">#80a2a2a2</color>
  528. <color name="chat_to_cursor_handle_color">@color/wechat_green</color>
  529. <color name="chat_to_link">@color/Link_100</color>
  530. <color name="chat_to_selected">#4D07C160</color>
  531. <color name="chatting_panel_bg_color">@color/BW_97</color>
  532. <color name="chatting_to_disable_text_color">#33000000</color>
  533. <color name="chatting_to_text_color">#E6000000</color>
  534. <color name="click_top_item">#E5E5E5</color>
  535. <color name="color_80888888">#80888888</color>
  536. <color name="conversation_click">#EDEDED</color>
  537. <color name="cursor_handle_color">@color/wechat_green</color>
  538. <color name="dark_actionbar_color">@color/Dark_0</color>
  539. <color name="dark_bg_hint_color">@color/BW_100_Alpha_0_3</color>
  540. <color name="dark_bg_line_color">@color/BW_100_Alpha_0_1</color>
  541. <color name="dark_selected_color">@color/BW_100_Alpha_0_1</color>
  542. <color name="default_background_color">@color/BG_0</color>
  543. <color name="desc_text">@color/BW_0_Alpha_0_5</color>
  544. <color name="desc_text_color">@color/BW_0_Alpha_0_5</color>
  545. <color name="design_bottom_navigation_shadow_color">#14000000</color>
  546. <color name="design_default_color_primary">#3F51B5</color>
  547. <color name="design_default_color_primary_dark">#303F9F</color>
  548. <color name="design_fab_shadow_end_color">@android:color/transparent</color>
  549. <color name="design_fab_shadow_mid_color">#14000000</color>
  550. <color name="design_fab_shadow_start_color">#44000000</color>
  551. <color name="design_fab_stroke_end_inner_color">#0A000000</color>
  552. <color name="design_fab_stroke_end_outer_color">#0F000000</color>
  553. <color name="design_fab_stroke_top_inner_color">#1AFFFFFF</color>
  554. <color name="design_fab_stroke_top_outer_color">#2EFFFFFF</color>
  555. <color name="design_snackbar_background_color">#323232</color>
  556. <color name="dialog_content_bg">#08000000</color>
  557. <color name="dialog_content_bg_press">@color/BG_0</color>
  558. <color name="dialog_divider_line_color">@color/BW_0_Alpha_0_1</color>
  559. <color name="dialog_msg_color">@color/BW_0_Alpha_0_5</color>
  560. <color name="dialog_msg_title_color">@color/BW_0_Alpha_0_9</color>
  561. <color name="dim_foreground_disabled_material_dark">#80bebebe</color>
  562. <color name="dim_foreground_disabled_material_light">#80323232</color>
  563. <color name="dim_foreground_material_dark">#ffbebebe</color>
  564. <color name="dim_foreground_material_light">#ff323232</color>
  565. <color name="disable_text_color">@color/BW_0_Alpha_0_2</color>
  566. <color name="error_color_material">#ffffff</color>
  567. <color name="error_color_material_dark">#ff7043</color>
  568. <color name="error_color_material_light">#ff5722</color>
  569. <color name="foreground_material_dark">@android:color/white</color>
  570. <color name="foreground_material_light">@android:color/black</color>
  571. <color name="form_hint_text_color">@color/BW_0_Alpha_0_3</color>
  572. <color name="gallery_btn_disable_color">#14FFFFFF</color>
  573. <color name="green_text_color">#06AE56</color>
  574. <color name="green_text_color_disable">@color/btn_green_color_disable</color>
  575. <color name="green_text_color_pressed">@color/btn_green_color_pressed</color>
  576. <color name="grey_background_text_color">@color/BW_0_Alpha_0_5</color>
  577. <color name="grey_bg_color">@color/grey_text_color</color>
  578. <color name="grey_blue_bg_color">#686F78</color>
  579. <color name="grey_btn_color_disable">@color/BW_0_Alpha_0_0_5</color>
  580. <color name="grey_btn_color_normal">@color/BW_0_Alpha_0_0_5</color>
  581. <color name="grey_btn_color_pressed">#CECECE</color>
  582. <color name="grey_btn_stroke_color_disable">#7f9e9e9e</color>
  583. <color name="grey_btn_stroke_color_normal">#bebebe</color>
  584. <color name="grey_btn_stroke_color_pressed">#9e9e9e</color>
  585. <color name="grey_color_01">#C9C9C9</color>
  586. <color name="grey_text_color">@color/BW_0_Alpha_0_5</color>
  587. <color name="half_alpha_black">@color/BW_0_Alpha_0_5</color>
  588. <color name="highlighted_text_material_dark">#6680cbc4</color>
  589. <color name="highlighted_text_material_light">#66009688</color>
  590. <color name="hint_text_color">@color/BW_0_Alpha_0_3</color>
  591. <color name="icon_border_color">@color/White</color>
  592. <color name="icon_color">@color/FG_0</color>
  593. <color name="icon_color_press">#ACACAC</color>
  594. <color name="image_gallery_mask">@color/UN_BW_0_Alpha_0_1</color>
  595. <color name="input_grey_bg_color">#F7F7F7</color>
  596. <color name="input_menu_divider">#66D8D8D8</color>
  597. <color name="key_step_logger_analyser_bg_color">@color/BG_2</color>
  598. <color name="light_bg_color">#C9C9C9</color>
  599. <color name="light_bg_hint_color">@color/BW_0_Alpha_0_3</color>
  600. <color name="light_blue_bg_color">#EFEFF4</color>
  601. <color name="light_grey_text_color">@color/BW_0_Alpha_0_3</color>
  602. <color name="light_selected_color">@color/BW_0_Alpha_0_1</color>
  603. <color name="line_color">@color/BW_0_Alpha_0_1</color>
  604. <color name="list_devider_color">@color/BW_0_Alpha_0_1</color>
  605. <color name="list_divider_color_black">@color/small_line_color</color>
  606. <color name="list_top_bg_color">@color/BG_3</color>
  607. <color name="loading_bg_color">@color/BW_0_Alpha_0_4</color>
  608. <color name="loading_icon_color">#E5E5E5</color>
  609. <color name="lucky_money_mask">#CDF2F2F2</color>
  610. <color name="map_dark">#80000000</color>
  611. <color name="mask_color">#80000000</color>
  612. <color name="material_blue_grey_800">#ff37474f</color>
  613. <color name="material_blue_grey_900">#ff263238</color>
  614. <color name="material_blue_grey_950">#ff21272b</color>
  615. <color name="material_deep_teal_200">#ff80cbc4</color>
  616. <color name="material_deep_teal_500">#ff008577</color>
  617. <color name="material_grey_100">#fff5f5f5</color>
  618. <color name="material_grey_300">#ffe0e0e0</color>
  619. <color name="material_grey_50">#fffafafa</color>
  620. <color name="material_grey_600">#ff757575</color>
  621. <color name="material_grey_800">#ff424242</color>
  622. <color name="material_grey_850">#ff303030</color>
  623. <color name="material_grey_900">#ff212121</color>
  624. <color name="menu_devider_color">@color/BW_0_Alpha_0_1</color>
  625. <color name="menu_pressed_color">@color/BW_0_Alpha_0_1</color>
  626. <color name="mtrl_btn_bg_color_disabled">#1F000000</color>
  627. <color name="mtrl_btn_text_color_disabled">#61000000</color>
  628. <color name="mtrl_btn_transparent_bg_color">#00ffffff</color>
  629. <color name="mtrl_scrim_color">#52000000</color>
  630. <color name="mtrl_textinput_default_box_stroke_color">#6B000000</color>
  631. <color name="mtrl_textinput_disabled_color">#1F000000</color>
  632. <color name="mtrl_textinput_filled_box_default_background_color">#0A000000</color>
  633. <color name="mtrl_textinput_hovered_box_stroke_color">#DE000000</color>
  634. <color name="normal_actionbar_color">@color/BW_93</color>
  635. <color name="normal_bg_color">@color/BW_93</color>
  636. <color name="normal_text">@color/BW_0_Alpha_0_9</color>
  637. <color name="normal_text_color">@color/BW_0_Alpha_0_9</color>
  638. <color name="notification_action_color_filter">#ffffffff</color>
  639. <color name="notification_icon_bg_color">#ff9e9e9e</color>
  640. <color name="orange_bg_color">@color/Orange</color>
  641. <color name="panel_shade_color">@color/BW_100</color>
  642. <color name="panel_shade_press_color">@color/BW_0_Alpha_0_1</color>
  643. <color name="picker_divider">#EEEEEE</color>
  644. <color name="picker_half_alpha_bg">#80000000</color>
  645. <color name="picker_normal">#4D000000</color>
  646. <color name="picker_selected">#E6000000</color>
  647. <color name="pickerview_bgColor_default">#FFFFFFFF</color>
  648. <color name="pickerview_bgColor_overlay">#60000000</color>
  649. <color name="pickerview_bg_topbar">#f5f5f5</color>
  650. <color name="pickerview_timebtn_nor">#057dff</color>
  651. <color name="pickerview_timebtn_pre">#c2daf5</color>
  652. <color name="pickerview_topbar_title">#000000</color>
  653. <color name="pickerview_wheelview_textcolor_center">#2a2a2a</color>
  654. <color name="pickerview_wheelview_textcolor_divider">#d5d5d5</color>
  655. <color name="pickerview_wheelview_textcolor_out">#a8a8a8</color>
  656. <color name="pop_menu_color">#FFFFFF</color>
  657. <color name="press_color_for_darkbg">@color/BW_100_Alpha_0_3</color>
  658. <color name="press_color_for_lightbg">@color/BW_0_Alpha_0_1</color>
  659. <color name="primary_dark_material_dark">@android:color/black</color>
  660. <color name="primary_dark_material_light">@color/material_grey_600</color>
  661. <color name="primary_material_dark">@color/material_grey_900</color>
  662. <color name="primary_material_light">@color/material_grey_100</color>
  663. <color name="primary_text_default_material_dark">#ffffffff</color>
  664. <color name="primary_text_default_material_light">#de000000</color>
  665. <color name="primary_text_disabled_material_dark">#4Dffffff</color>
  666. <color name="primary_text_disabled_material_light">#39000000</color>
  667. <color name="profile_btn_text">@color/BW_0_Alpha_0_8</color>
  668. <color name="ps_color_0077F6">#0077F6</color>
  669. <color name="ps_color_20">#20000000</color>
  670. <color name="ps_color_20c064">#20c064</color>
  671. <color name="ps_color_33">#333333</color>
  672. <color name="ps_color_394a3e">#394a3e</color>
  673. <color name="ps_color_4d">#4d4d4d</color>
  674. <color name="ps_color_4e4d4e">#4e4d4e</color>
  675. <color name="ps_color_529BeA">#529BeA</color>
  676. <color name="ps_color_53575e">#53575e</color>
  677. <color name="ps_color_66">#666666</color>
  678. <color name="ps_color_70">#70000000</color>
  679. <color name="ps_color_80">#80000000</color>
  680. <color name="ps_color_8D57FC">#8D57FC</color>
  681. <color name="ps_color_99_black">#99000000</color>
  682. <color name="ps_color_9b">#9b9b9b</color>
  683. <color name="ps_color_E4E4E4">#E4E4E4</color>
  684. <color name="ps_color_a83">#a8333333</color>
  685. <color name="ps_color_aab2bd">#AAB2BD</color>
  686. <color name="ps_color_ba3">#b0567ba3</color>
  687. <color name="ps_color_bd">#BDBDBD</color>
  688. <color name="ps_color_bfe85d">#BF96E85D</color>
  689. <color name="ps_color_black">#000000</color>
  690. <color name="ps_color_blue">#7D7DFF</color>
  691. <color name="ps_color_e">#EEEEEE</color>
  692. <color name="ps_color_e0ff6100">#E0FF6100</color>
  693. <color name="ps_color_eb">#ebebeb</color>
  694. <color name="ps_color_ec">#ececec</color>
  695. <color name="ps_color_f0">#F0F0F0</color>
  696. <color name="ps_color_f2">#F2F2F2</color>
  697. <color name="ps_color_fa">#FAFAFA</color>
  698. <color name="ps_color_fa632d">#FA632D</color>
  699. <color name="ps_color_ff572e">#ff572e</color>
  700. <color name="ps_color_ffd042">#FFFFD042</color>
  701. <color name="ps_color_ffe85d">#FF96E85D</color>
  702. <color name="ps_color_grey">#393a3e</color>
  703. <color name="ps_color_grey_3e">#dd393a3e</color>
  704. <color name="ps_color_half_grey">#E6393a3e</color>
  705. <color name="ps_color_half_white">#99FFFFFF</color>
  706. <color name="ps_color_light_grey">#999999</color>
  707. <color name="ps_color_transparent">#00000000</color>
  708. <color name="ps_color_transparent_e0db">#E0DBDBDB</color>
  709. <color name="ps_color_transparent_white">#F0FFFFFF</color>
  710. <color name="ps_color_white">#FFFFFF</color>
  711. <color name="qbar_possible_result_points">#c0ffff00</color>
  712. <color name="qbar_result_view">#b0000000</color>
  713. <color name="qbar_viewfinder_mask">#60000000</color>
  714. <color name="red_bg_color">@color/Red</color>
  715. <color name="red_text_color">@color/Red_90</color>
  716. <color name="request_dialog_btn_green_text_color">#07C160</color>
  717. <color name="ripple_material_dark">#33ffffff</color>
  718. <color name="ripple_material_light">#1f000000</color>
  719. <color name="round_wheel_color">@color/BW_0_Alpha_0_1</color>
  720. <color name="scan_circle_button_bg_color">#4D000000</color>
  721. <color name="secondary_text_default_material_dark">#b3ffffff</color>
  722. <color name="secondary_text_default_material_light">#8a000000</color>
  723. <color name="secondary_text_disabled_material_dark">#36ffffff</color>
  724. <color name="secondary_text_disabled_material_light">#24000000</color>
  725. <color name="selected_blue">@color/wechat_green_quarter_alpha</color>
  726. <color name="settings_bg">@color/BW_93</color>
  727. <color name="small_line_color">#1A000000</color>
  728. <color name="specail_green_cursor_color">@color/Brand</color>
  729. <color name="statusbar_fg_color">@color/BW_0_Alpha_0_1</color>
  730. <color name="statusbar_fg_drak_color">@color/BW_0_Alpha_0_2</color>
  731. <color name="sub_menu_pressed_color">@color/small_line_color</color>
  732. <color name="switch_btn_off_color">@color/BW_0_Alpha_0_2</color>
  733. <color name="switch_btn_on_color">@color/wechat_green</color>
  734. <color name="switch_thumb_disabled_material_dark">#ff616161</color>
  735. <color name="switch_thumb_disabled_material_light">#ffbdbdbd</color>
  736. <color name="switch_thumb_normal_material_dark">#ffbdbdbd</color>
  737. <color name="switch_thumb_normal_material_light">#fff1f1f1</color>
  738. <color name="sys_text_color">@color/BW_0_Alpha_0_3</color>
  739. <color name="text_btn_color_pressed">#0F000000</color>
  740. <color name="tipbar_bg_red_normal">@color/Red_190</color>
  741. <color name="tipbar_bg_red_press">#E4D4D4</color>
  742. <color name="tipbar_bg_white">@color/BW_97</color>
  743. <color name="tipsbar_black_bg_color">#9A000000</color>
  744. <color name="tipsbar_green_bg_color">#E6F8EF</color>
  745. <color name="tipsbar_grey_bg_color">@color/BW_0_Alpha_0_3</color>
  746. <color name="tipsbar_orange_bg_color">#E6FA9D3B</color>
  747. <color name="tipsbar_red_bg_color">@color/Red_190</color>
  748. <color name="tipsbar_red_press_color">#E4D4D4</color>
  749. <color name="tipsbar_text_color">@color/BW_0_Alpha_0_5</color>
  750. <color name="tipsbar_white_bg_color">#E6FFFFFF</color>
  751. <color name="tooltip_background_dark">#e6616161</color>
  752. <color name="tooltip_background_light">#e6FFFFFF</color>
  753. <color name="trans_cancel_btn_color">#99808080</color>
  754. <color name="transparent">#00000000</color>
  755. <color name="un_grey_btn_color_pressed">#CECECE</color>
  756. <color name="uncompleted_color">@color/grey_text_color</color>
  757. <color name="uncompleted_text_color">@color/black_text_color</color>
  758. <color name="voice_active_btn_color">#E6FFFFFF</color>
  759. <color name="voice_range_end_color">#D5D5D5</color>
  760. <color name="voice_range_normal_color">#33000000</color>
  761. <color name="voice_range_ring_color">#26FFFFFF</color>
  762. <color name="voice_range_start_color">#999999</color>
  763. <color name="wallet_tenpay_keyboard_text_color">@color/normal_text_color</color>
  764. <color name="webview_bg_color">#EDEDED</color>
  765. <color name="webview_logo_bg_color">#282b2d</color>
  766. <color name="webview_logo_text_color">#6F7476</color>
  767. <color name="wechat_green">@color/Brand</color>
  768. <color name="wechat_green_bubble">#A0E75A</color>
  769. <color name="wechat_green_disable">@color/Brand_170</color>
  770. <color name="wechat_green_half_alpha">#7F1AAD19</color>
  771. <color name="wechat_green_press">@color/Brand_90</color>
  772. <color name="wechat_green_quarter_alpha">#4D07C160</color>
  773. <color name="wechat_light_green">#7FEB37</color>
  774. <color name="white">@color/BW_100</color>
  775. <color name="white_color">#FFFFFF</color>
  776. <color name="white_text_color">@color/White</color>
  777. <color name="white_text_color_disabled">@color/BW_100_Alpha_0_3</color>
  778. <color name="white_text_color_pressed">@color/BW_100_Alpha_0_6</color>
  779. <color name="wmpf_qrlogin_widget_alert_title_color_fail">#FA5151</color>
  780. <color name="wmpf_qrlogin_widget_alert_title_color_ok">#1AAD19</color>
  781. <color name="wxa_menu_header_status_desc_text">#FFFFFFFF</color>
  782. <color name="wxa_recents_item_type_tag_bg">#42000000</color>
  783. <color name="wxa_recents_item_type_tag_text">#FFFFFFFF</color>
  784. <dimen name="ActionBarTextSize">@dimen/BodyTextSize</dimen>
  785. <dimen name="AvartarSize">@dimen/Edge_5A</dimen>
  786. <dimen name="BasicPaddingSize">4dp</dimen>
  787. <dimen name="BigAvatarSize">@dimen/Edge_8A</dimen>
  788. <dimen name="BigPadding">12dp</dimen>
  789. <dimen name="BigTextSize">17dp</dimen>
  790. <dimen name="BigTitleTextSize">32dp</dimen>
  791. <dimen name="BigerMoreTextSize">26dp</dimen>
  792. <dimen name="BigerTextSize">24dp</dimen>
  793. <dimen name="BiggerMoreTextSize">26dp</dimen>
  794. <dimen name="BiggerPadding">14dp</dimen>
  795. <dimen name="BiggerTextSize">24dp</dimen>
  796. <dimen name="BodyTextSize">17dp</dimen>
  797. <dimen name="BottomSheetGridMaxHeight">347dp</dimen>
  798. <dimen name="BottomSheetGridMaxHeight_Landscape">235dp</dimen>
  799. <dimen name="BottomSheetListMaxHeight">312dp</dimen>
  800. <dimen name="BottomSheetTextTitleHeight">36dp</dimen>
  801. <dimen name="BottomSheetTitleTextSize">12dp</dimen>
  802. <dimen name="BtnMarginTop">14dp</dimen>
  803. <dimen name="ButtonCornerSize">4dp</dimen>
  804. <dimen name="ButtonSmallCornerSize">3.2dp</dimen>
  805. <dimen name="ButtonlineSize">1dp</dimen>
  806. <dimen name="CaptionTextSize">10dp</dimen>
  807. <dimen name="ChatCardWidth">130dp</dimen>
  808. <dimen name="ChatImgLimitWidth">150dp</dimen>
  809. <dimen name="ChatImgMaxWidth">200dp</dimen>
  810. <dimen name="ChatImgMinWidth">75dp</dimen>
  811. <dimen name="ChatItemThumWidth">45dp</dimen>
  812. <dimen name="ChatLucyTitleTextSize">15dp</dimen>
  813. <dimen name="ChatVideoStatusBtnWidth">40dp</dimen>
  814. <dimen name="ChatVideoTextSize">11dp</dimen>
  815. <dimen name="CheckBoxHeight">24dp</dimen>
  816. <dimen name="CheckBoxSmallHeight">20dp</dimen>
  817. <dimen name="CheckBoxSmallWidth">20dp</dimen>
  818. <dimen name="CheckBoxWidth">24dp</dimen>
  819. <dimen name="ConfirmButtonMaxWidth">142dp</dimen>
  820. <dimen name="ConfirmButtonWidth">64dp</dimen>
  821. <dimen name="ContactAvatarSize">@dimen/AvartarSize</dimen>
  822. <dimen name="CornerSize">2dp</dimen>
  823. <dimen name="DefaultActionbarHeight">@dimen/wechat_abc_action_bar_default_height</dimen>
  824. <dimen name="DefaultActionbarHeightLand">48dp</dimen>
  825. <dimen name="DefaultActionbarHeightPort">48dp</dimen>
  826. <dimen name="DefaultCornerSize">4dp</dimen>
  827. <dimen name="DefaultIconSize">@dimen/Edge_3A</dimen>
  828. <dimen name="DefaultListItemHeight">@dimen/Edge_7A</dimen>
  829. <dimen name="DefaultTabbarHeight">@dimen/Edge_7A</dimen>
  830. <dimen name="DescTextSize">14dp</dimen>
  831. <dimen name="DialogAvatarLinePadding">15dp</dimen>
  832. <dimen name="DialogBigImageMaxHeight">140dp</dimen>
  833. <dimen name="DialogBigImageMinHeight">70dp</dimen>
  834. <dimen name="DialogEdgePadding">24dp</dimen>
  835. <dimen name="DialogHeaderHeight">64dp</dimen>
  836. <dimen name="DialogMsgTextSize">14dp</dimen>
  837. <dimen name="DialogMsgTitleTextSize">@dimen/BodyTextSize</dimen>
  838. <dimen name="DialogTitleDetailMaxHeight">238dp</dimen>
  839. <dimen name="DialogTitleTextSize">@dimen/BodyTextSize</dimen>
  840. <dimen name="DialogUserNameSize">10dp</dimen>
  841. <dimen name="DividerHeight">0.5dp</dimen>
  842. <dimen name="DividerPadding">2px</dimen>
  843. <dimen name="DividerSmallHeight">1px</dimen>
  844. <dimen name="EdgePadding">@dimen/Edge_2A</dimen>
  845. <dimen name="Edge_0_5_A">4dp</dimen>
  846. <dimen name="Edge_10A">80dp</dimen>
  847. <dimen name="Edge_10_5_A">84dp</dimen>
  848. <dimen name="Edge_11A">88dp</dimen>
  849. <dimen name="Edge_12A">96dp</dimen>
  850. <dimen name="Edge_13A">104dp</dimen>
  851. <dimen name="Edge_14A">112dp</dimen>
  852. <dimen name="Edge_14_5_A">116dp</dimen>
  853. <dimen name="Edge_15A">120dp</dimen>
  854. <dimen name="Edge_16A">128dp</dimen>
  855. <dimen name="Edge_17A">136dp</dimen>
  856. <dimen name="Edge_18A">144dp</dimen>
  857. <dimen name="Edge_1_5_A">12dp</dimen>
  858. <dimen name="Edge_20A">160dp</dimen>
  859. <dimen name="Edge_22A">176dp</dimen>
  860. <dimen name="Edge_23A">184dp</dimen>
  861. <dimen name="Edge_24A">192dp</dimen>
  862. <dimen name="Edge_25A">200dp</dimen>
  863. <dimen name="Edge_26A">208dp</dimen>
  864. <dimen name="Edge_2A">16dp</dimen>
  865. <dimen name="Edge_2_5_A">20dp</dimen>
  866. <dimen name="Edge_30A">240dp</dimen>
  867. <dimen name="Edge_3A">24dp</dimen>
  868. <dimen name="Edge_3_5_A">28dp</dimen>
  869. <dimen name="Edge_44A">352dp</dimen>
  870. <dimen name="Edge_4A">32dp</dimen>
  871. <dimen name="Edge_4_5_A">36dp</dimen>
  872. <dimen name="Edge_50A">400dp</dimen>
  873. <dimen name="Edge_5A">40dp</dimen>
  874. <dimen name="Edge_5_5_A">44dp</dimen>
  875. <dimen name="Edge_6A">48dp</dimen>
  876. <dimen name="Edge_6_5_A">52dp</dimen>
  877. <dimen name="Edge_7A">56dp</dimen>
  878. <dimen name="Edge_7_5_A">60dp</dimen>
  879. <dimen name="Edge_8A">64dp</dimen>
  880. <dimen name="Edge_9A">72dp</dimen>
  881. <dimen name="Edge_A">8dp</dimen>
  882. <dimen name="FootnoteextSize">12dp</dimen>
  883. <dimen name="GroupTitleTextSize">15dp</dimen>
  884. <dimen name="HeadingTextSize">26dp</dimen>
  885. <dimen name="HeadlineTextSize">22dp</dimen>
  886. <dimen name="HintTextSize">14dp</dimen>
  887. <dimen name="HugeTextSize">22dp</dimen>
  888. <dimen name="HugerTextSize">26dp</dimen>
  889. <dimen name="HugersTextSize">28dp</dimen>
  890. <dimen name="HugerssTextSize">30dp</dimen>
  891. <dimen name="KeyStepLoggerStateIconDescSize">17dp</dimen>
  892. <dimen name="KeyStepLoggerStateIconSize">21dp</dimen>
  893. <dimen name="LagerTextSize">18dp</dimen>
  894. <dimen name="LargeBtnPadding">@dimen/Edge_3A</dimen>
  895. <dimen name="LargeBtnTextSize">18dp</dimen>
  896. <dimen name="LargePadding">16dp</dimen>
  897. <dimen name="LargerPadding">24dp</dimen>
  898. <dimen name="LargestPadding">32dp</dimen>
  899. <dimen name="LargestTextSize">30dp</dimen>
  900. <dimen name="ListIconWidth">36dp</dimen>
  901. <dimen name="ListItemHeight">@dimen/Edge_7A</dimen>
  902. <dimen name="ListPadding">20dp</dimen>
  903. <dimen name="LittlePadding">6dp</dimen>
  904. <dimen name="LoadingHeight">6dp</dimen>
  905. <dimen name="LoadingLayoutWidth">42dp</dimen>
  906. <dimen name="MainTabIconSize">@dimen/Edge_3A</dimen>
  907. <dimen name="MiddleAvartarSize">@dimen/Edge_6A</dimen>
  908. <dimen name="MiddleBtnHeight">@dimen/Edge_5A</dimen>
  909. <dimen name="MiddleBtnTextSize">17dp</dimen>
  910. <dimen name="MiddleBtnWidth">@dimen/Edge_23A</dimen>
  911. <dimen name="MiddlePadding">10dp</dimen>
  912. <dimen name="MinDialogHeight">93dp</dimen>
  913. <dimen name="MinDialogWidth">320dp</dimen>
  914. <dimen name="MinMenuWidth">200dp</dimen>
  915. <dimen name="MiniAvatarSize">32dp</dimen>
  916. <dimen name="NoPadding">0dp</dimen>
  917. <dimen name="NormalButtonHeight">48dp</dimen>
  918. <dimen name="NormalCardAvatarWidth">50dp</dimen>
  919. <dimen name="NormalPadding">12dp</dimen>
  920. <dimen name="NormalTextSize">@dimen/BodyTextSize</dimen>
  921. <dimen name="NormalTiteSzie">@dimen/BodyTextSize</dimen>
  922. <dimen name="OneDPPadding">1dp</dimen>
  923. <dimen name="OnePXPadding">1px</dimen>
  924. <dimen name="PlusMenuWidth">180dp</dimen>
  925. <dimen name="PopPadding">40dp</dimen>
  926. <dimen name="SettingCatalogPadding">20dp</dimen>
  927. <dimen name="SmallActionbarHeight">28dp</dimen>
  928. <dimen name="SmallAvatarSize">40dp</dimen>
  929. <dimen name="SmallBtnPadding">@dimen/Edge_1_5_A</dimen>
  930. <dimen name="SmallBtnTextSize">16dp</dimen>
  931. <dimen name="SmallBtnWidth">60dp</dimen>
  932. <dimen name="SmallButtonHeight">@dimen/Edge_4A</dimen>
  933. <dimen name="SmallListHeight">@dimen/DefaultListItemHeight</dimen>
  934. <dimen name="SmallPadding">8dp</dimen>
  935. <dimen name="SmallTextSize">14dp</dimen>
  936. <dimen name="SmallTiteSzie">12dp</dimen>
  937. <dimen name="SmallerPadding">3dp</dimen>
  938. <dimen name="SmallerTextSize">13dp</dimen>
  939. <dimen name="SmallestPadding">2dp</dimen>
  940. <dimen name="SmallestTextSize">12dp</dimen>
  941. <dimen name="SuperTextSize">20dp</dimen>
  942. <dimen name="SwitchBtnHeight">24dp</dimen>
  943. <dimen name="SwitchBtnRadiusIn">10dp</dimen>
  944. <dimen name="SwitchBtnRadiusOut">12dp</dimen>
  945. <dimen name="SwitchBtnWidth">45dp</dimen>
  946. <dimen name="ZeroDPPadding">0dp</dimen>
  947. <dimen name="abc_action_bar_content_inset_material">16dp</dimen>
  948. <dimen name="abc_action_bar_content_inset_with_nav">72dp</dimen>
  949. <dimen name="abc_action_bar_default_height_material">56dp</dimen>
  950. <dimen name="abc_action_bar_default_padding_end_material">0dp</dimen>
  951. <dimen name="abc_action_bar_default_padding_start_material">0dp</dimen>
  952. <dimen name="abc_action_bar_elevation_material">4dp</dimen>
  953. <dimen name="abc_action_bar_icon_vertical_padding_material">16dp</dimen>
  954. <dimen name="abc_action_bar_overflow_padding_end_material">10dp</dimen>
  955. <dimen name="abc_action_bar_overflow_padding_start_material">6dp</dimen>
  956. <dimen name="abc_action_bar_progress_bar_size">0dp</dimen>
  957. <dimen name="abc_action_bar_stacked_max_height">48dp</dimen>
  958. <dimen name="abc_action_bar_stacked_tab_max_width">180dp</dimen>
  959. <dimen name="abc_action_bar_subtitle_bottom_margin_material">5dp</dimen>
  960. <dimen name="abc_action_bar_subtitle_top_margin_material">-3dp</dimen>
  961. <dimen name="abc_action_button_min_height_material">48dp</dimen>
  962. <dimen name="abc_action_button_min_width_material">48dp</dimen>
  963. <dimen name="abc_action_button_min_width_overflow_material">36dp</dimen>
  964. <dimen name="abc_alert_dialog_button_bar_height">48dp</dimen>
  965. <dimen name="abc_alert_dialog_button_dimen">48dp</dimen>
  966. <dimen name="abc_button_inset_horizontal_material">@dimen/abc_control_inset_material</dimen>
  967. <dimen name="abc_button_inset_vertical_material">6dp</dimen>
  968. <dimen name="abc_button_padding_horizontal_material">8dp</dimen>
  969. <dimen name="abc_button_padding_vertical_material">@dimen/abc_control_padding_material</dimen>
  970. <dimen name="abc_cascading_menus_min_smallest_width">720dp</dimen>
  971. <dimen name="abc_config_prefDialogWidth">320dp</dimen>
  972. <dimen name="abc_control_corner_material">2dp</dimen>
  973. <dimen name="abc_control_inset_material">4dp</dimen>
  974. <dimen name="abc_control_padding_material">4dp</dimen>
  975. <dimen name="abc_dialog_corner_radius_material">2dp</dimen>
  976. <item name="abc_dialog_fixed_height_major" type="dimen">80%</item>
  977. <item name="abc_dialog_fixed_height_minor" type="dimen">100%</item>
  978. <item name="abc_dialog_fixed_width_major" type="dimen">320dp</item>
  979. <item name="abc_dialog_fixed_width_minor" type="dimen">320dp</item>
  980. <dimen name="abc_dialog_list_padding_bottom_no_buttons">8dp</dimen>
  981. <dimen name="abc_dialog_list_padding_top_no_title">8dp</dimen>
  982. <item name="abc_dialog_min_width_major" type="dimen">65%</item>
  983. <item name="abc_dialog_min_width_minor" type="dimen">95%</item>
  984. <dimen name="abc_dialog_padding_material">24dp</dimen>
  985. <dimen name="abc_dialog_padding_top_material">18dp</dimen>
  986. <dimen name="abc_dialog_title_divider_material">8dp</dimen>
  987. <item format="float" name="abc_disabled_alpha_material_dark" type="dimen">0.30</item>
  988. <item format="float" name="abc_disabled_alpha_material_light" type="dimen">0.26</item>
  989. <dimen name="abc_dropdownitem_icon_width">32dip</dimen>
  990. <dimen name="abc_dropdownitem_text_padding_left">8dip</dimen>
  991. <dimen name="abc_dropdownitem_text_padding_right">8dip</dimen>
  992. <dimen name="abc_edit_text_inset_bottom_material">7dp</dimen>
  993. <dimen name="abc_edit_text_inset_horizontal_material">4dp</dimen>
  994. <dimen name="abc_edit_text_inset_top_material">10dp</dimen>
  995. <dimen name="abc_floating_window_z">16dp</dimen>
  996. <dimen name="abc_list_item_height_large_material">80dp</dimen>
  997. <dimen name="abc_list_item_height_material">64dp</dimen>
  998. <dimen name="abc_list_item_height_small_material">48dp</dimen>
  999. <dimen name="abc_list_item_padding_horizontal_material">@dimen/abc_action_bar_content_inset_material</dimen>
  1000. <dimen name="abc_panel_menu_list_width">296dp</dimen>
  1001. <dimen name="abc_progress_bar_height_material">4dp</dimen>
  1002. <dimen name="abc_search_view_preferred_height">48dip</dimen>
  1003. <dimen name="abc_search_view_preferred_width">320dip</dimen>
  1004. <dimen name="abc_seekbar_track_background_height_material">2dp</dimen>
  1005. <dimen name="abc_seekbar_track_progress_height_material">2dp</dimen>
  1006. <dimen name="abc_select_dialog_padding_start_material">20dp</dimen>
  1007. <dimen name="abc_switch_padding">3dp</dimen>
  1008. <dimen name="abc_text_size_body_1_material">14sp</dimen>
  1009. <dimen name="abc_text_size_body_2_material">14sp</dimen>
  1010. <dimen name="abc_text_size_button_material">14sp</dimen>
  1011. <dimen name="abc_text_size_caption_material">12sp</dimen>
  1012. <dimen name="abc_text_size_display_1_material">34sp</dimen>
  1013. <dimen name="abc_text_size_display_2_material">45sp</dimen>
  1014. <dimen name="abc_text_size_display_3_material">56sp</dimen>
  1015. <dimen name="abc_text_size_display_4_material">112sp</dimen>
  1016. <dimen name="abc_text_size_headline_material">24sp</dimen>
  1017. <dimen name="abc_text_size_large_material">22sp</dimen>
  1018. <dimen name="abc_text_size_medium_material">18sp</dimen>
  1019. <dimen name="abc_text_size_menu_header_material">14sp</dimen>
  1020. <dimen name="abc_text_size_menu_material">16sp</dimen>
  1021. <dimen name="abc_text_size_small_material">14sp</dimen>
  1022. <dimen name="abc_text_size_subhead_material">16sp</dimen>
  1023. <dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen>
  1024. <dimen name="abc_text_size_title_material">20sp</dimen>
  1025. <dimen name="abc_text_size_title_material_toolbar">20dp</dimen>
  1026. <dimen name="album_chooser_height">32dp</dimen>
  1027. <dimen name="album_chooser_img_margin_start">6dp</dimen>
  1028. <dimen name="album_chooser_txt_height">25dp</dimen>
  1029. <dimen name="album_chooser_txt_margin_start">12dp</dimen>
  1030. <dimen name="album_chooser_txt_size">17dp</dimen>
  1031. <dimen name="album_smart_gallery_entrance_size">24dp</dimen>
  1032. <dimen name="app_brand_action_sheet_header_height">56dp</dimen>
  1033. <dimen name="app_brand_action_sheet_header_text_size">16dp</dimen>
  1034. <dimen name="app_brand_actionbar_back_arrow_height">24dp</dimen>
  1035. <dimen name="app_brand_actionbar_back_arrow_width">12dp</dimen>
  1036. <dimen name="app_brand_actionbar_capsule_view_right_margin_default">9dp</dimen>
  1037. <dimen name="app_brand_actionbar_capsule_view_right_margin_wxa">@dimen/app_brand_actionbar_capsule_view_right_margin_default</dimen>
  1038. <dimen name="app_brand_actionbar_height">@dimen/DefaultActionbarHeightPort</dimen>
  1039. <dimen name="app_brand_actionbar_height_single_page_mode_security">64dp</dimen>
  1040. <dimen name="app_brand_actionbar_home_nav_area_h_w">32dp</dimen>
  1041. <dimen name="app_brand_actionbar_home_nav_area_margin_left">12dp</dimen>
  1042. <dimen name="app_brand_actionbar_home_nav_area_margin_right">8dp</dimen>
  1043. <dimen name="app_brand_actionbar_home_nav_btn_h_w">32dp</dimen>
  1044. <dimen name="app_brand_actionbar_left_margin">@dimen/LargePadding</dimen>
  1045. <dimen name="app_brand_actionbar_right_custom_btn_image_h_w">24dp</dimen>
  1046. <dimen name="app_brand_actionbar_right_margin">@dimen/LargePadding</dimen>
  1047. <dimen name="app_brand_auth_auto_fill_data_know_list_item_bottom_margin">10dp</dimen>
  1048. <dimen name="app_brand_default_capsule_actionbarcornersize">1000dp</dimen>
  1049. <dimen name="app_brand_default_capsule_actionbardividerheight">19dp</dimen>
  1050. <dimen name="app_brand_default_capsule_actionbarheight">32dp</dimen>
  1051. <dimen name="app_brand_default_capsule_bar_initial_width">96dp</dimen>
  1052. <dimen name="app_brand_desktop_half_view_item_width">64dp</dimen>
  1053. <dimen name="app_brand_desktop_icon_size">48dp</dimen>
  1054. <dimen name="app_brand_error_page_top_margin">96dp</dimen>
  1055. <dimen name="app_brand_launcher_recents_unread_red_dot_radius">9dp</dimen>
  1056. <dimen name="app_brand_loading_circleWidth">0.5dp</dimen>
  1057. <dimen name="app_brand_loading_dotWidth">1dp</dimen>
  1058. <dimen name="app_brand_loading_progressWidth">3dp</dimen>
  1059. <dimen name="app_brand_recent_view_height">150dp</dimen>
  1060. <dimen name="app_brand_recent_view_padding_left">3dp</dimen>
  1061. <dimen name="app_brand_recent_view_padding_top">40dp</dimen>
  1062. <dimen name="app_brand_tabbar_item_badge_default_margin_start">-10dp</dimen>
  1063. <dimen name="app_brand_tabbar_item_reddot_default_margin_start">-3dp</dimen>
  1064. <dimen name="auth_state_icon_size">12dp</dimen>
  1065. <dimen name="authorize_bottom_dialog_bottom_margin_bottom_landscape">28dp</dimen>
  1066. <dimen name="authorize_bottom_dialog_bottom_margin_bottom_portrait">52dp</dimen>
  1067. <dimen name="authorize_bottom_dialog_bottom_margin_top">40dp</dimen>
  1068. <dimen name="authorize_bottom_dialog_width_landscape">375dp</dimen>
  1069. <dimen name="authorize_dialog_select_list_item_height">64dp</dimen>
  1070. <dimen name="big_horizontal_progress_height">8dp</dimen>
  1071. <dimen name="bottomsheet_dividing_line_height">0.5dp</dimen>
  1072. <dimen name="bottomsheet_grid_icon_width">32dp</dimen>
  1073. <dimen name="bottomsheet_grid_item_height">82dp</dimen>
  1074. <dimen name="bottomsheet_grid_text_size">10dp</dimen>
  1075. <dimen name="bottomsheet_list_checkbox_item_height">64dp</dimen>
  1076. <dimen name="bottomsheet_list_icon_padding">24dp</dimen>
  1077. <dimen name="bottomsheet_list_icon_width">24dp</dimen>
  1078. <dimen name="bottomsheet_list_item_height">@dimen/Edge_7A</dimen>
  1079. <dimen name="bottomsheet_list_text_desc_size">@dimen/FootnoteextSize</dimen>
  1080. <dimen name="bottomsheet_list_text_size">17dp</dimen>
  1081. <dimen name="bottomsheet_title_default_height">132dp</dimen>
  1082. <dimen name="cardview_compat_inset_shadow">1dp</dimen>
  1083. <dimen name="cardview_default_elevation">2dp</dimen>
  1084. <dimen name="cardview_default_radius">2dp</dimen>
  1085. <dimen name="chattingBubblepadding">17dp</dimen>
  1086. <dimen name="chatting_custom_huge_item_width">271dp</dimen>
  1087. <dimen name="chatting_custom_item_width">236dp</dimen>
  1088. <dimen name="chatting_custom_super_item_width">256dp</dimen>
  1089. <dimen name="chatting_huge_item_width">282dp</dimen>
  1090. <dimen name="chatting_huger_item_width">282dp</dimen>
  1091. <dimen name="chatting_large_item_width">273dp</dimen>
  1092. <dimen name="chatting_loaction_item_height">145dp</dimen>
  1093. <dimen name="chatting_loaction_item_width">240dp</dimen>
  1094. <dimen name="chatting_music_item_height">90dp</dimen>
  1095. <dimen name="chatting_music_item_width">250dp</dimen>
  1096. <dimen name="chatting_normal_item_width">280dp</dimen>
  1097. <dimen name="chatting_small_item_width">277dp</dimen>
  1098. <dimen name="chatting_super_item_width">280dp</dimen>
  1099. <dimen name="collapse_arrow_height">24dp</dimen>
  1100. <dimen name="collapse_arrow_width">47dp</dimen>
  1101. <dimen name="compat_button_inset_horizontal_material">4dp</dimen>
  1102. <dimen name="compat_button_inset_vertical_material">6dp</dimen>
  1103. <dimen name="compat_button_padding_horizontal_material">8dp</dimen>
  1104. <dimen name="compat_button_padding_vertical_material">4dp</dimen>
  1105. <dimen name="compat_control_corner_material">2dp</dimen>
  1106. <dimen name="compat_notification_large_icon_max_height">320dp</dimen>
  1107. <dimen name="compat_notification_large_icon_max_width">320dp</dimen>
  1108. <dimen name="design_appbar_elevation">4dp</dimen>
  1109. <dimen name="design_bottom_navigation_active_item_max_width">168dp</dimen>
  1110. <dimen name="design_bottom_navigation_active_item_min_width">96dp</dimen>
  1111. <dimen name="design_bottom_navigation_active_text_size">14sp</dimen>
  1112. <dimen name="design_bottom_navigation_elevation">8dp</dimen>
  1113. <dimen name="design_bottom_navigation_height">56dp</dimen>
  1114. <dimen name="design_bottom_navigation_icon_size">24dp</dimen>
  1115. <dimen name="design_bottom_navigation_item_max_width">96dp</dimen>
  1116. <dimen name="design_bottom_navigation_item_min_width">56dp</dimen>
  1117. <dimen name="design_bottom_navigation_margin">8dp</dimen>
  1118. <dimen name="design_bottom_navigation_shadow_height">1dp</dimen>
  1119. <dimen name="design_bottom_navigation_text_size">12sp</dimen>
  1120. <dimen name="design_bottom_sheet_modal_elevation">16dp</dimen>
  1121. <dimen name="design_bottom_sheet_peek_height_min">64dp</dimen>
  1122. <dimen name="design_fab_border_width">0.5dp</dimen>
  1123. <dimen name="design_fab_elevation">6dp</dimen>
  1124. <dimen name="design_fab_image_size">24dp</dimen>
  1125. <dimen name="design_fab_size_mini">40dp</dimen>
  1126. <dimen name="design_fab_size_normal">56dp</dimen>
  1127. <dimen name="design_fab_translation_z_hovered_focused">6dp</dimen>
  1128. <dimen name="design_fab_translation_z_pressed">6dp</dimen>
  1129. <dimen name="design_navigation_elevation">16dp</dimen>
  1130. <dimen name="design_navigation_icon_padding">32dp</dimen>
  1131. <dimen name="design_navigation_icon_size">24dp</dimen>
  1132. <dimen name="design_navigation_item_horizontal_padding">16dp</dimen>
  1133. <dimen name="design_navigation_item_icon_padding">32dp</dimen>
  1134. <dimen name="design_navigation_max_width">280dp</dimen>
  1135. <dimen name="design_navigation_padding_bottom">8dp</dimen>
  1136. <dimen name="design_navigation_separator_vertical_padding">8dp</dimen>
  1137. <dimen name="design_snackbar_action_inline_max_width">128dp</dimen>
  1138. <dimen name="design_snackbar_background_corner_radius">0dp</dimen>
  1139. <dimen name="design_snackbar_elevation">6dp</dimen>
  1140. <dimen name="design_snackbar_extra_spacing_horizontal">0dp</dimen>
  1141. <dimen name="design_snackbar_max_width">-1px</dimen>
  1142. <dimen name="design_snackbar_min_width">-1px</dimen>
  1143. <dimen name="design_snackbar_padding_horizontal">12dp</dimen>
  1144. <dimen name="design_snackbar_padding_vertical">14dp</dimen>
  1145. <dimen name="design_snackbar_padding_vertical_2lines">24dp</dimen>
  1146. <dimen name="design_snackbar_text_size">14sp</dimen>
  1147. <dimen name="design_tab_max_width">264dp</dimen>
  1148. <dimen name="design_tab_scrollable_min_width">72dp</dimen>
  1149. <dimen name="design_tab_text_size">14sp</dimen>
  1150. <dimen name="design_tab_text_size_2line">12sp</dimen>
  1151. <dimen name="design_textinput_caption_translate_y">5dp</dimen>
  1152. <item format="float" name="disabled_alpha_material_dark" type="dimen">0.30</item>
  1153. <item format="float" name="disabled_alpha_material_light" type="dimen">0.26</item>
  1154. <dimen name="dividingHeight">24dp</dimen>
  1155. <dimen name="edgePadding">11dp</dimen>
  1156. <dimen name="fastscroll_default_thickness">8dp</dimen>
  1157. <dimen name="fastscroll_margin">0dp</dimen>
  1158. <dimen name="fastscroll_minimum_range">50dp</dimen>
  1159. <dimen name="grid_item_left_right_padding">12dp</dimen>
  1160. <dimen name="grid_item_top_bottom_padding">@dimen/Edge_3A</dimen>
  1161. <item format="float" name="highlight_alpha_material_colored" type="dimen">0.26</item>
  1162. <item format="float" name="highlight_alpha_material_dark" type="dimen">0.20</item>
  1163. <item format="float" name="highlight_alpha_material_light" type="dimen">0.12</item>
  1164. <item format="float" name="hint_alpha_material_dark" type="dimen">0.50</item>
  1165. <item format="float" name="hint_alpha_material_light" type="dimen">0.38</item>
  1166. <item format="float" name="hint_pressed_alpha_material_dark" type="dimen">0.70</item>
  1167. <item format="float" name="hint_pressed_alpha_material_light" type="dimen">0.54</item>
  1168. <dimen name="horizontalPadding">4dp</dimen>
  1169. <dimen name="item_touch_helper_max_drag_scroll_per_frame">20dp</dimen>
  1170. <dimen name="item_touch_helper_swipe_escape_max_velocity">800dp</dimen>
  1171. <dimen name="item_touch_helper_swipe_escape_velocity">120dp</dimen>
  1172. <dimen name="login_auth_button_padding_top">22dp</dimen>
  1173. <dimen name="login_auth_item_padding_top">14dp</dimen>
  1174. <dimen name="login_desc_list_height">182dp</dimen>
  1175. <dimen name="login_scope_item_width">232dp</dimen>
  1176. <dimen name="menuLeftPadding">16dp</dimen>
  1177. <dimen name="menuRightPadding">28dp</dimen>
  1178. <dimen name="minMenuWidth">100dp</dimen>
  1179. <dimen name="msgIconWidth">40dp</dimen>
  1180. <dimen name="mtrl_bottomappbar_fabOffsetEndMode">60dp</dimen>
  1181. <dimen name="mtrl_bottomappbar_fab_cradle_margin">5dp</dimen>
  1182. <dimen name="mtrl_bottomappbar_fab_cradle_rounded_corner_radius">8dp</dimen>
  1183. <dimen name="mtrl_bottomappbar_fab_cradle_vertical_offset">0dp</dimen>
  1184. <dimen name="mtrl_bottomappbar_height">56dp</dimen>
  1185. <dimen name="mtrl_btn_corner_radius">4dp</dimen>
  1186. <dimen name="mtrl_btn_dialog_btn_min_width">64dp</dimen>
  1187. <dimen name="mtrl_btn_disabled_elevation">0dp</dimen>
  1188. <dimen name="mtrl_btn_disabled_z">0dp</dimen>
  1189. <dimen name="mtrl_btn_elevation">2dp</dimen>
  1190. <dimen name="mtrl_btn_focused_z">2dp</dimen>
  1191. <dimen name="mtrl_btn_hovered_z">2dp</dimen>
  1192. <dimen name="mtrl_btn_icon_btn_padding_left">12dp</dimen>
  1193. <dimen name="mtrl_btn_icon_padding">8dp</dimen>
  1194. <dimen name="mtrl_btn_inset">6dp</dimen>
  1195. <item format="float" name="mtrl_btn_letter_spacing" type="dimen">0.07</item>
  1196. <dimen name="mtrl_btn_padding_bottom">4dp</dimen>
  1197. <dimen name="mtrl_btn_padding_left">16dp</dimen>
  1198. <dimen name="mtrl_btn_padding_right">16dp</dimen>
  1199. <dimen name="mtrl_btn_padding_top">4dp</dimen>
  1200. <dimen name="mtrl_btn_pressed_z">6dp</dimen>
  1201. <dimen name="mtrl_btn_stroke_size">1dp</dimen>
  1202. <dimen name="mtrl_btn_text_btn_icon_padding">4dp</dimen>
  1203. <dimen name="mtrl_btn_text_btn_padding_left">8dp</dimen>
  1204. <dimen name="mtrl_btn_text_btn_padding_right">8dp</dimen>
  1205. <dimen name="mtrl_btn_text_size">14sp</dimen>
  1206. <dimen name="mtrl_btn_z">0dp</dimen>
  1207. <dimen name="mtrl_card_elevation">1dp</dimen>
  1208. <dimen name="mtrl_card_spacing">8dp</dimen>
  1209. <dimen name="mtrl_chip_pressed_translation_z">3dp</dimen>
  1210. <dimen name="mtrl_chip_text_size">14sp</dimen>
  1211. <dimen name="mtrl_fab_elevation">6dp</dimen>
  1212. <dimen name="mtrl_fab_translation_z_hovered_focused">2dp</dimen>
  1213. <dimen name="mtrl_fab_translation_z_pressed">6dp</dimen>
  1214. <dimen name="mtrl_navigation_elevation">0dp</dimen>
  1215. <dimen name="mtrl_navigation_item_horizontal_padding">22dp</dimen>
  1216. <dimen name="mtrl_navigation_item_icon_padding">14dp</dimen>
  1217. <dimen name="mtrl_snackbar_background_corner_radius">4dp</dimen>
  1218. <dimen name="mtrl_snackbar_margin">8dp</dimen>
  1219. <dimen name="mtrl_textinput_box_bottom_offset">3dp</dimen>
  1220. <dimen name="mtrl_textinput_box_corner_radius_medium">4dp</dimen>
  1221. <dimen name="mtrl_textinput_box_corner_radius_small">0dp</dimen>
  1222. <dimen name="mtrl_textinput_box_label_cutout_padding">4dp</dimen>
  1223. <dimen name="mtrl_textinput_box_padding_end">12dp</dimen>
  1224. <dimen name="mtrl_textinput_box_stroke_width_default">1dp</dimen>
  1225. <dimen name="mtrl_textinput_box_stroke_width_focused">2dp</dimen>
  1226. <dimen name="mtrl_textinput_outline_box_expanded_padding">16dp</dimen>
  1227. <dimen name="mtrl_toolbar_default_height">56dp</dimen>
  1228. <dimen name="notification_action_icon_size">32dp</dimen>
  1229. <dimen name="notification_action_text_size">13sp</dimen>
  1230. <dimen name="notification_big_circle_margin">12dp</dimen>
  1231. <dimen name="notification_content_margin_start">8dp</dimen>
  1232. <dimen name="notification_large_icon_height">64dp</dimen>
  1233. <dimen name="notification_large_icon_width">64dp</dimen>
  1234. <dimen name="notification_main_column_padding_top">10dp</dimen>
  1235. <dimen name="notification_media_narrow_margin">@dimen/notification_content_margin_start</dimen>
  1236. <dimen name="notification_right_icon_size">16dp</dimen>
  1237. <dimen name="notification_right_side_padding_top">2dp</dimen>
  1238. <dimen name="notification_small_icon_background_padding">3dp</dimen>
  1239. <dimen name="notification_small_icon_size_as_large">24dp</dimen>
  1240. <dimen name="notification_subtext_size">13sp</dimen>
  1241. <dimen name="notification_top_pad">10dp</dimen>
  1242. <dimen name="notification_top_pad_large_text">5dp</dimen>
  1243. <dimen name="picker_container_height_landscape">414dp</dimen>
  1244. <dimen name="picker_item_height">24dp</dimen>
  1245. <dimen name="picker_max_height">184dp</dimen>
  1246. <dimen name="picker_toolbar_height_land_space">72dp</dimen>
  1247. <dimen name="picker_toolbar_height_portrait">112dp</dimen>
  1248. <dimen name="pickerview_min_textsize">10sp</dimen>
  1249. <dimen name="pickerview_textsize">17sp</dimen>
  1250. <dimen name="pickerview_topbar_btn_textsize">17sp</dimen>
  1251. <dimen name="pickerview_topbar_height">44dp</dimen>
  1252. <dimen name="pickerview_topbar_padding">20dp</dimen>
  1253. <dimen name="pickerview_topbar_title_textsize">17sp</dimen>
  1254. <dimen name="progress_cancel_btn_padding">3dp</dimen>
  1255. <dimen name="qbar_activity_horizontal_margin">16dp</dimen>
  1256. <dimen name="qbar_activity_vertical_margin">16dp</dimen>
  1257. <dimen name="qbar_scan_rect_height">400dp</dimen>
  1258. <dimen name="qbar_scan_rect_width">400dp</dimen>
  1259. <dimen name="qrcodeSize">@dimen/Edge_25A</dimen>
  1260. <dimen name="qrcode_login_qrimage_corner_radius">2.67dp</dimen>
  1261. <dimen name="scan_code_rect_height">244dp</dimen>
  1262. <dimen name="scan_code_rect_width">244dp</dimen>
  1263. <dimen name="scan_scroll_tab_layout_height">72dp</dimen>
  1264. <dimen name="scan_success_mark_dot_size_big">64dp</dimen>
  1265. <dimen name="small_horizontal_progress_height">4dp</dimen>
  1266. <dimen name="small_icon_h_w">27dp</dimen>
  1267. <dimen name="tipsBarHeight">48dp</dimen>
  1268. <dimen name="tipsBarIconWidth">24dp</dimen>
  1269. <dimen name="tipsBarTextSize">14dp</dimen>
  1270. <dimen name="tooltip_corner_radius">2dp</dimen>
  1271. <dimen name="tooltip_horizontal_padding">16dp</dimen>
  1272. <dimen name="tooltip_margin">8dp</dimen>
  1273. <dimen name="tooltip_precise_anchor_extra_offset">8dp</dimen>
  1274. <dimen name="tooltip_precise_anchor_threshold">96dp</dimen>
  1275. <dimen name="tooltip_vertical_padding">6.5dp</dimen>
  1276. <dimen name="tooltip_y_offset_non_touch">0dp</dimen>
  1277. <dimen name="tooltip_y_offset_touch">16dp</dimen>
  1278. <dimen name="topTabbarHeight">40dp</dimen>
  1279. <dimen name="unReadCountTextSize">13dp</dimen>
  1280. <dimen name="unReadNewTextSize">11dp</dimen>
  1281. <dimen name="verify_code_layout_height">48dp</dimen>
  1282. <dimen name="wechat_abc_action_bar_default_height">@dimen/DefaultActionbarHeightPort</dimen>
  1283. <dimen name="wmpf_dialog_corners_radius">12dp</dimen>
  1284. <item format="float" name="wmpf_qrlogin_appname_vertical_percent_value" type="dimen">0.0261</item>
  1285. <item format="float" name="wmpf_qrlogin_background_image_vertical_percent_value" type="dimen">0.69</item>
  1286. <item format="float" name="wmpf_qrlogin_body_vertical_percent_value" type="dimen">0.74</item>
  1287. <dimen name="wmpf_qrlogin_image_frame_max_width">225dp</dimen>
  1288. <item format="float" name="wmpf_qrlogin_image_frame_vertical_percent_value" type="dimen">0.42</item>
  1289. <item format="float" name="wmpf_qrlogin_wechat_icon_vertical_percent_value" type="dimen">0.0341</item>
  1290. <item format="float" name="wmpf_setting_body_vertical_percent_value" type="dimen">0.74</item>
  1291. <dimen name="wmpf_setting_dialog_preference_summary_text_size">15dp</dimen>
  1292. <dimen name="wmpf_splash_brand_icon_bottom_margin_game">56dp</dimen>
  1293. <dimen name="wmpf_splash_brand_icon_bottom_margin_wxa">24dp</dimen>
  1294. <drawable name="notification_template_icon_bg">#3333B5E5</drawable>
  1295. <drawable name="notification_template_icon_low_bg">#0cffffff</drawable>
  1296. <fraction name="wmpf_qrlogin_appname_vertical_percent">@dimen/wmpf_qrlogin_appname_vertical_percent_value</fraction>
  1297. <fraction name="wmpf_qrlogin_background_image_vertical_percent">@dimen/wmpf_qrlogin_background_image_vertical_percent_value</fraction>
  1298. <fraction name="wmpf_qrlogin_body_vertical_percent">@dimen/wmpf_qrlogin_body_vertical_percent_value</fraction>
  1299. <fraction name="wmpf_qrlogin_image_frame_vertical_percent">@dimen/wmpf_qrlogin_image_frame_vertical_percent_value</fraction>
  1300. <fraction name="wmpf_qrlogin_wechat_icon_vertical_percent">@dimen/wmpf_qrlogin_wechat_icon_vertical_percent_value</fraction>
  1301. <fraction name="wmpf_setting_body_vertical_percent">@dimen/wmpf_setting_body_vertical_percent_value</fraction>
  1302. <item name="accessibility_action_clickable_span" type="id"/>
  1303. <item name="accessibility_custom_action_0" type="id"/>
  1304. <item name="accessibility_custom_action_1" type="id"/>
  1305. <item name="accessibility_custom_action_10" type="id"/>
  1306. <item name="accessibility_custom_action_11" type="id"/>
  1307. <item name="accessibility_custom_action_12" type="id"/>
  1308. <item name="accessibility_custom_action_13" type="id"/>
  1309. <item name="accessibility_custom_action_14" type="id"/>
  1310. <item name="accessibility_custom_action_15" type="id"/>
  1311. <item name="accessibility_custom_action_16" type="id"/>
  1312. <item name="accessibility_custom_action_17" type="id"/>
  1313. <item name="accessibility_custom_action_18" type="id"/>
  1314. <item name="accessibility_custom_action_19" type="id"/>
  1315. <item name="accessibility_custom_action_2" type="id"/>
  1316. <item name="accessibility_custom_action_20" type="id"/>
  1317. <item name="accessibility_custom_action_21" type="id"/>
  1318. <item name="accessibility_custom_action_22" type="id"/>
  1319. <item name="accessibility_custom_action_23" type="id"/>
  1320. <item name="accessibility_custom_action_24" type="id"/>
  1321. <item name="accessibility_custom_action_25" type="id"/>
  1322. <item name="accessibility_custom_action_26" type="id"/>
  1323. <item name="accessibility_custom_action_27" type="id"/>
  1324. <item name="accessibility_custom_action_28" type="id"/>
  1325. <item name="accessibility_custom_action_29" type="id"/>
  1326. <item name="accessibility_custom_action_3" type="id"/>
  1327. <item name="accessibility_custom_action_30" type="id"/>
  1328. <item name="accessibility_custom_action_31" type="id"/>
  1329. <item name="accessibility_custom_action_4" type="id"/>
  1330. <item name="accessibility_custom_action_5" type="id"/>
  1331. <item name="accessibility_custom_action_6" type="id"/>
  1332. <item name="accessibility_custom_action_7" type="id"/>
  1333. <item name="accessibility_custom_action_8" type="id"/>
  1334. <item name="accessibility_custom_action_9" type="id"/>
  1335. <item name="action_bar_activity_content" type="id"/>
  1336. <item name="action_bar_spinner" type="id"/>
  1337. <item name="action_menu_divider" type="id"/>
  1338. <item name="action_menu_presenter" type="id"/>
  1339. <item name="app_brand_action_bar" type="id"/>
  1340. <item name="app_brand_action_bar_container" type="id"/>
  1341. <item name="app_brand_debug_view" type="id"/>
  1342. <item name="app_brand_keyboard_input_view_tag" type="id"/>
  1343. <item name="app_brand_keyboard_linear_layout" type="id"/>
  1344. <item name="app_brand_keyboard_number" type="id"/>
  1345. <item name="app_brand_keyboard_security" type="id"/>
  1346. <item name="app_brand_keyboard_smiley" type="id"/>
  1347. <item name="app_brand_map_view_controller" type="id"/>
  1348. <item name="app_brand_multi_options_picker_view_index_tag" type="id"/>
  1349. <item name="app_brand_multi_page_tabbar" type="id"/>
  1350. <item name="app_brand_page_area" type="id"/>
  1351. <item name="app_brand_page_attached_animator" type="id"/>
  1352. <item name="app_brand_page_content" type="id"/>
  1353. <item name="app_brand_page_input_container" type="id"/>
  1354. <item name="app_brand_page_view_footer" type="id"/>
  1355. <item name="app_brand_page_view_share_screenshot_cover" type="id"/>
  1356. <item name="app_brand_pageview_html_webview" type="id"/>
  1357. <item name="app_brand_picker_panel" type="id"/>
  1358. <item name="app_brand_runtime_root_child_index_tag" type="id"/>
  1359. <item name="app_brand_tab_bar_item_badge" type="id"/>
  1360. <item name="app_brand_tab_bar_item_container" type="id"/>
  1361. <item name="app_brand_tab_bar_item_icon" type="id"/>
  1362. <item name="app_brand_tab_bar_item_icon_text" type="id"/>
  1363. <item name="app_brand_tab_bar_item_indicator" type="id"/>
  1364. <item name="app_brand_tab_bar_item_red_dot" type="id"/>
  1365. <item name="app_brand_tab_bar_item_text" type="id"/>
  1366. <item name="app_brand_toast_view_tag" type="id"/>
  1367. <item name="app_brand_ui_loading_splash_action_bar" type="id"/>
  1368. <item name="app_brand_ui_root" type="id"/>
  1369. <item name="appbrand_view_motion_compat_inverse_matrix_held_by_view_tag" type="id"/>
  1370. <item name="auto_focus" type="id"/>
  1371. <item name="decode" type="id"/>
  1372. <item name="decode_failed" type="id"/>
  1373. <item name="decode_file" type="id"/>
  1374. <item name="decode_file_failed" type="id"/>
  1375. <item name="decode_succeeded" type="id"/>
  1376. <item name="encode_failed" type="id"/>
  1377. <item name="encode_succeeded" type="id"/>
  1378. <item name="fragment_container_view_tag" type="id"/>
  1379. <item name="ghost_view" type="id"/>
  1380. <item name="glide_custom_view_target_tag" type="id"/>
  1381. <item name="home" type="id"/>
  1382. <item name="item_touch_helper_previous_elevation" type="id"/>
  1383. <item name="launch_product_query" type="id"/>
  1384. <item name="line1" type="id"/>
  1385. <item name="line3" type="id"/>
  1386. <item name="mtrl_child_content_container" type="id"/>
  1387. <item name="mtrl_internal_children_alpha_tag" type="id"/>
  1388. <item name="parent_matrix" type="id"/>
  1389. <item name="progress_circular" type="id"/>
  1390. <item name="progress_horizontal" type="id"/>
  1391. <item name="quit" type="id"/>
  1392. <item name="restart_preview" type="id"/>
  1393. <item name="return_scan_result" type="id"/>
  1394. <item name="save_image_matrix" type="id"/>
  1395. <item name="save_non_transition_alpha" type="id"/>
  1396. <item name="save_scale_type" type="id"/>
  1397. <item name="search_book_contents_failed" type="id"/>
  1398. <item name="search_book_contents_succeeded" type="id"/>
  1399. <item name="snackbar_action" type="id"/>
  1400. <item name="snackbar_text" type="id"/>
  1401. <item name="special_effects_controller_view_tag" type="id"/>
  1402. <item name="split_action_bar" type="id"/>
  1403. <item name="tag_accessibility_actions" type="id"/>
  1404. <item name="tag_accessibility_clickable_spans" type="id"/>
  1405. <item name="tag_accessibility_heading" type="id"/>
  1406. <item name="tag_accessibility_pane_title" type="id"/>
  1407. <item name="tag_screen_reader_focusable" type="id"/>
  1408. <item name="tag_transition_group" type="id"/>
  1409. <item name="tag_unhandled_key_event_manager" type="id"/>
  1410. <item name="tag_unhandled_key_listeners" type="id"/>
  1411. <item name="text" type="id"/>
  1412. <item name="text2" type="id"/>
  1413. <item name="text_view_callback" type="id"/>
  1414. <item name="textinput_counter" type="id"/>
  1415. <item name="textinput_error" type="id"/>
  1416. <item name="textinput_helper_text" type="id"/>
  1417. <item name="title" type="id"/>
  1418. <item name="touch_loc" type="id"/>
  1419. <item name="transition_current_scene" type="id"/>
  1420. <item name="transition_layout_save" type="id"/>
  1421. <item name="transition_position" type="id"/>
  1422. <item name="transition_scene_layoutid_cache" type="id"/>
  1423. <item name="transition_transform" type="id"/>
  1424. <item name="up" type="id"/>
  1425. <item name="view_offset_helper" type="id"/>
  1426. <id name="view_tree_lifecycle_owner"/>
  1427. <id name="view_tree_saved_state_registry_owner"/>
  1428. <id name="view_tree_view_model_store_owner"/>
  1429. <item name="visible_removing_fragment_view_tag" type="id"/>
  1430. <item name="weui_at_end_callback" type="id"/>
  1431. <item name="weui_at_start_callback" type="id"/>
  1432. <integer name="TDI_TRANSFER_REQ_SCENE">3</integer>
  1433. <integer name="abc_config_activityDefaultDur">220</integer>
  1434. <integer name="abc_config_activityShortDur">150</integer>
  1435. <integer name="animation_default_duration">300</integer>
  1436. <integer name="app_bar_elevation_anim_duration">150</integer>
  1437. <integer name="bottom_sheet_slide_duration">150</integer>
  1438. <integer name="cancel_button_image_alpha">127</integer>
  1439. <integer name="config_tooltipAnimTime">150</integer>
  1440. <integer name="design_snackbar_text_max_lines">2</integer>
  1441. <integer name="design_tab_indicator_anim_duration_ms">300</integer>
  1442. <integer name="hide_password_duration">320</integer>
  1443. <integer name="mtrl_btn_anim_delay_ms">100</integer>
  1444. <integer name="mtrl_btn_anim_duration_ms">100</integer>
  1445. <integer name="mtrl_chip_anim_duration">100</integer>
  1446. <integer name="mtrl_tab_indicator_anim_duration_ms">250</integer>
  1447. <integer name="show_password_duration">200</integer>
  1448. <integer name="status_bar_notification_info_maxnum">999</integer>
  1449. <string name="abc_action_bar_home_description">Navigate home</string>
  1450. <string name="abc_action_bar_up_description">Navigate up</string>
  1451. <string name="abc_action_menu_overflow_description">More options</string>
  1452. <string name="abc_action_mode_done">Done</string>
  1453. <string name="abc_activity_chooser_view_see_all">See all</string>
  1454. <string name="abc_activitychooserview_choose_application">Choose an app</string>
  1455. <string name="abc_capital_off">OFF</string>
  1456. <string name="abc_capital_on">ON</string>
  1457. <string name="abc_menu_alt_shortcut_label">Alt+</string>
  1458. <string name="abc_menu_ctrl_shortcut_label">Ctrl+</string>
  1459. <string name="abc_menu_delete_shortcut_label">delete</string>
  1460. <string name="abc_menu_enter_shortcut_label">enter</string>
  1461. <string name="abc_menu_function_shortcut_label">Function+</string>
  1462. <string name="abc_menu_meta_shortcut_label">Meta+</string>
  1463. <string name="abc_menu_shift_shortcut_label">Shift+</string>
  1464. <string name="abc_menu_space_shortcut_label">space</string>
  1465. <string name="abc_menu_sym_shortcut_label">Sym+</string>
  1466. <string name="abc_prepend_shortcut_label">Menu+</string>
  1467. <string name="abc_search_hint">Search…</string>
  1468. <string name="abc_searchview_description_clear">Clear query</string>
  1469. <string name="abc_searchview_description_query">Search query</string>
  1470. <string name="abc_searchview_description_search">Search</string>
  1471. <string name="abc_searchview_description_submit">Submit query</string>
  1472. <string name="abc_searchview_description_voice">Voice search</string>
  1473. <string name="abc_shareactionprovider_share_with">Share with</string>
  1474. <string name="abc_shareactionprovider_share_with_application">Share with <ns1:g example="Mail" id="application_name">%s</ns1:g></string>
  1475. <string name="abc_toolbar_collapse_description">Collapse</string>
  1476. <string name="actionbar_back">返回</string>
  1477. <string name="actionbar_more">更多</string>
  1478. <string name="album_chooser_txt">图片和视频</string>
  1479. <string name="app_bottom_sheet_header_title_wechat_login_hint">微信帐号登录</string>
  1480. <string name="app_bottom_sheet_header_title_wechat_logout_hint">退出登录</string>
  1481. <string name="app_bottom_sheet_item_logout_alert_logout_confirm">退出</string>
  1482. <string name="app_brand_accessibility_camera_normal_mode">相机摄像模式</string>
  1483. <string name="app_brand_accessibility_camera_scan_mode">相机扫码模式</string>
  1484. <string name="app_brand_accessibility_canvas_view">绘图区域</string>
  1485. <string name="app_brand_accessibility_close_button">关闭</string>
  1486. <string name="app_brand_accessibility_live_player_mode_live">直播播放器组件</string>
  1487. <string name="app_brand_accessibility_live_player_mode_rtc">视频通话播放器组件</string>
  1488. <string name="app_brand_accessibility_live_pusher_view">直播推流组件</string>
  1489. <string name="app_brand_accessibility_option_button">更多</string>
  1490. <string name="app_brand_accessibility_video_view">视频播放器</string>
  1491. <string name="app_brand_action_plugin_splash_loading">加载中 ...</string>
  1492. <string name="app_brand_ad_title">封面广告</string>
  1493. <string name="app_brand_add_collection_blocked">该小程序涉及恶意营销,无法添加。</string>
  1494. <string name="app_brand_add_collection_over_limit">最多可添加%d个我的小程序</string>
  1495. <string name="app_brand_app_debug_type_previewing">体验版</string>
  1496. <string name="app_brand_app_debug_type_testing">开发版</string>
  1497. <string name="app_brand_auth_close_auth">关闭授权</string>
  1498. <string name="app_brand_auth_close_tips">关闭授权后可能会影响使用小程序的部分功能,请确认</string>
  1499. <string name="app_brand_auth_info_none">%s未使用你的任何信息</string>
  1500. <string name="app_brand_auth_info_used">允许\"%s\"使用</string>
  1501. <string name="app_brand_auth_user_auto_fill_data_dialog_know_detail">了解详情</string>
  1502. <string name="app_brand_auth_user_auto_fill_data_dialog_no">不允许</string>
  1503. <string name="app_brand_auth_user_auto_fill_data_dialog_title">是否使用你保存的信息</string>
  1504. <string name="app_brand_auth_user_auto_fill_data_dialog_title_after_write">是否保存填写的信息</string>
  1505. <string name="app_brand_auth_user_auto_fill_data_dialog_yes">允许</string>
  1506. <string name="app_brand_auth_user_auto_fill_data_url">https://${brand.qbrand.com}/cgi-bin/readtemplate?t=weixin_agreement&amp;s=quick_fill&amp;lang=</string>
  1507. <string name="app_brand_authorize_settings">设置</string>
  1508. <string name="app_brand_authorize_simple_desc_none">不允许</string>
  1509. <string name="app_brand_choose_media_memory_check_message">内存不足,可能影响后续操作,建议关闭空闲的后台程序。</string>
  1510. <string name="app_brand_choose_media_video_compressing">压缩中,请稍候...</string>
  1511. <string name="app_brand_choose_media_video_processing">处理中,请稍候...</string>
  1512. <string name="app_brand_collection_add_failed">添加失败</string>
  1513. <string name="app_brand_collection_list_blank_page_tip">还未添加我的小程序\n可在小程序右上角菜单里添加</string>
  1514. <string name="app_brand_collection_remove_failed">删除失败</string>
  1515. <string name="app_brand_copy_path_toast">已复制</string>
  1516. <string name="app_brand_debug_disabled_toast">调试模式已禁用,请重启生效</string>
  1517. <string name="app_brand_debug_enabled_toast">调试模式已启用,请重启生效</string>
  1518. <string name="app_brand_debug_v8_disabled_toast">V8调试已禁用,重启生效中...</string>
  1519. <string name="app_brand_debug_v8_enabled_toast">V8调试已启用,重启生效中...</string>
  1520. <string name="app_brand_demo_pkg_cgi_fail">网络请求失败,无法校验体验版小程序</string>
  1521. <string name="app_brand_demo_pkg_cgi_timeout">网络请求超时,无法校验体验版小程序</string>
  1522. <string name="app_brand_demo_pkg_has_been_deleted">小程序体验版不存在,无法体验</string>
  1523. <string name="app_brand_demo_pkg_user_not_in_white_list">无体验权限,请联系小程序管理员</string>
  1524. <string name="app_brand_desktop_delete_normal_text">删除</string>
  1525. <string name="app_brand_desktop_search_edit_text_hint">搜索小程序</string>
  1526. <string name="app_brand_desktop_title">小程序</string>
  1527. <string name="app_brand_dev_tools">开发调试</string>
  1528. <string name="app_brand_disable_debug">关闭调试</string>
  1529. <string name="app_brand_disable_v8_debug">关闭V8调试</string>
  1530. <string name="app_brand_enable_debug">开发调试</string>
  1531. <string name="app_brand_enable_v8_debug">打开V8调试</string>
  1532. <string name="app_brand_get_phone_number_bind_success">已保存</string>
  1533. <string name="app_brand_get_phone_number_expose_desc_default">你授权后,小程序开发者将获得你的${BRAND}绑定手机信息,为你提供相关服务。如发现该小程序不恰当收集你的信息,可以向平台举报,</string>
  1534. <string name="app_brand_get_phone_number_expose_desc_end">投诉该小程序</string>
  1535. <string name="app_brand_get_phone_number_expose_ok_hint">知道了</string>
  1536. <string name="app_brand_get_phone_number_expose_title">${BRAND}手机号授权功能说明</string>
  1537. <string name="app_brand_get_phone_number_has_phone_do_login">确认授权</string>
  1538. <string name="app_brand_get_phone_number_has_phone_title">${BRAND}手机号授权</string>
  1539. <string name="app_brand_get_phone_number_no_bind_phone_msg">${BRAND_account}绑定手机号后才可使用手机号快速填写功能</string>
  1540. <string name="app_brand_get_phone_number_no_bind_phone_title">${BRAND_account}还没有绑定手机号</string>
  1541. <string name="app_brand_get_phone_number_not_receive_verify_code">收不到验证码,</string>
  1542. <string name="app_brand_get_phone_number_ok">确认</string>
  1543. <string name="app_brand_get_phone_number_repeat_send_after_second">%s秒可重发</string>
  1544. <string name="app_brand_get_phone_number_resend_verify_code">重新发送</string>
  1545. <string name="app_brand_get_phone_number_send_verify_code_fail">发送失败,请稍后再试</string>
  1546. <string name="app_brand_get_phone_number_send_verify_code_frequent">操作太频繁,请稍后再试</string>
  1547. <string name="app_brand_get_phone_number_to_bind_phone">绑定手机号</string>
  1548. <string name="app_brand_get_phone_number_verify_code_error">验证码输入不正确,请重新输入</string>
  1549. <string name="app_brand_get_phone_number_verify_code_error_empty">验证码不能为空</string>
  1550. <string name="app_brand_get_phone_number_verify_code_error_format">验证码长度过短</string>
  1551. <string name="app_brand_get_phone_number_verify_code_fail">验证失败,请稍后再试</string>
  1552. <string formatted="false" name="app_brand_get_phone_number_verify_mobile">已发送到手机号:%s</string>
  1553. <string name="app_brand_get_phone_number_verify_sms_confirm_phone">确认手机号码</string>
  1554. <string name="app_brand_get_phone_number_verify_sms_msg">我们将发送验证码短信到下面的号码:\n</string>
  1555. <string name="app_brand_get_phone_number_verify_sms_title">请填写手机短信验证码</string>
  1556. <string name="app_brand_jsapi_mock_user_auth_allow_wording">允许</string>
  1557. <string name="app_brand_jsapi_mock_user_auth_apply_wording">申请</string>
  1558. <string name="app_brand_jsapi_mock_user_auth_camera_record_tip">使用你的摄像头</string>
  1559. <string name="app_brand_jsapi_mock_user_auth_deny_wording">拒绝</string>
  1560. <string name="app_brand_jsapi_mock_user_auth_location_tip">获取你的位置信息</string>
  1561. <string name="app_brand_jsapi_mock_user_auth_voice_record_tip">使用你的麦克风</string>
  1562. <string name="app_brand_jsapi_open_document_no_available_3rd_apps">未找到可以打开该类型文档的应用</string>
  1563. <string name="app_brand_jsapi_update_app_dialog_cancel_for_debug">调试不升级</string>
  1564. <string name="app_brand_jsapi_update_app_dialog_confirm">知道了</string>
  1565. <string name="app_brand_jsapi_update_app_dialog_confirm_for_debug">调试升级</string>
  1566. <string formatted="false" name="app_brand_jsapi_update_app_need_reboot_wording_for_game">%s小游戏需要重启以使用最新功能</string>
  1567. <string formatted="false" name="app_brand_jsapi_update_app_need_reboot_wording_for_normal">%s小程序需要重启以使用最新功能</string>
  1568. <string name="app_brand_jsapi_update_app_updating">更新中...</string>
  1569. <string name="app_brand_jsapi_user_auth_confirm">允许</string>
  1570. <string name="app_brand_jsapi_user_auth_deny">不允许</string>
  1571. <string name="app_brand_launcher_recents_list_menu_delete">删除</string>
  1572. <string name="app_brand_launching_dev_pkg_expired">开发版小程序已过期,请在开发者工具中重新扫码</string>
  1573. <string name="app_brand_launching_release_version_not_published_yet">小程序尚未发布</string>
  1574. <string name="app_brand_open_debug_app_failed_by_invalid_appid">小程序AppId异常,无法打开开发版小程序</string>
  1575. <string name="app_brand_open_debug_app_failed_by_network">网络请求失败,无法打开发版小程序</string>
  1576. <string name="app_brand_open_debug_app_failed_by_no_dev_code">开发版小程序不存在</string>
  1577. <string name="app_brand_open_debug_app_failed_by_no_login">未登录时无法打开开发版小程序</string>
  1578. <string name="app_brand_open_debug_app_failed_by_no_permission">无开发权限,请联系小程序管理员</string>
  1579. <string name="app_brand_open_debug_app_failed_by_system_error">启动开发版小程序异常</string>
  1580. <string name="app_brand_open_demo_app_failed_by_no_login">未登录时无法打开体验版小程序</string>
  1581. <string name="app_brand_performance_basic">基础</string>
  1582. <string name="app_brand_performance_cpu">CPU</string>
  1583. <string name="app_brand_performance_disable">关闭性能监控面板</string>
  1584. <string name="app_brand_performance_disable_toast">重启小程序后将关闭性能监控面板</string>
  1585. <string name="app_brand_performance_download">下载耗时</string>
  1586. <string name="app_brand_performance_dump_trace">导出 Trace 数据</string>
  1587. <string name="app_brand_performance_dump_trace_fail">导出 Trace 数据失败,请检查 SDCard 是否已插入,并有足够储存空间</string>
  1588. <string name="app_brand_performance_dump_trace_start">正在导出 Trace 数据...</string>
  1589. <string name="app_brand_performance_dump_trace_success">已成功导出 Trace 数据</string>
  1590. <string name="app_brand_performance_enable">打开性能监控面板</string>
  1591. <string name="app_brand_performance_enable_toast">重启小程序后将打开性能监控面板</string>
  1592. <string name="app_brand_performance_first_render">初次渲染耗时</string>
  1593. <string name="app_brand_performance_fps">帧率</string>
  1594. <string name="app_brand_performance_init">启动和切换</string>
  1595. <string name="app_brand_performance_js2render">首屏渲染耗时</string>
  1596. <string name="app_brand_performance_jsinject">js注入耗时</string>
  1597. <string name="app_brand_performance_launching">启动耗时</string>
  1598. <string name="app_brand_performance_memory">内存</string>
  1599. <string name="app_brand_performance_memory_delta">业务内存</string>
  1600. <string name="app_brand_performance_memory_details">内存详情</string>
  1601. <string name="app_brand_performance_memory_native">Native 内存</string>
  1602. <string name="app_brand_performance_other">其它</string>
  1603. <string name="app_brand_performance_re_render">再次渲染耗时</string>
  1604. <string name="app_brand_performance_render">渲染</string>
  1605. <string name="app_brand_performance_storage">数据缓存</string>
  1606. <string name="app_brand_performance_switch">页面切换耗时</string>
  1607. <string name="app_brand_performance_title">性能数据</string>
  1608. <string name="app_brand_performance_to_logic">视图层到逻辑层耗时</string>
  1609. <string name="app_brand_performance_to_logic_data">视图层到逻辑层数据</string>
  1610. <string name="app_brand_performance_to_logic_native">视图层到逻辑层Native耗时</string>
  1611. <string name="app_brand_performance_to_view">逻辑层到视图层耗时</string>
  1612. <string name="app_brand_performance_to_view_data">逻辑层到视图层数据</string>
  1613. <string name="app_brand_performance_to_view_native">逻辑层到视图层Native耗时</string>
  1614. <string name="app_brand_pick_contact_error">你选的手机号码格式错误,请重新选择。</string>
  1615. <string name="app_brand_pick_set_date">设置日期</string>
  1616. <string name="app_brand_pick_set_local">设置地区</string>
  1617. <string name="app_brand_pick_set_time">设置时间</string>
  1618. <string name="app_brand_plugin_splash_loading_plain_text">加载中</string>
  1619. <string formatted="false" name="app_brand_preparing_pkg_fail">下载代码包失败</string>
  1620. <string formatted="false" name="app_brand_preparing_pkg_manifest_null">%s记录不存在,无法运行</string>
  1621. <string name="app_brand_qrcode_result_dev_qrcode_expired">开发版小程序二维码已失效</string>
  1622. <string name="app_brand_read_contact_error">${BRAND}没有读取联系人权限,请到系统设置或手机管理软件中开启该权限。</string>
  1623. <string formatted="false" name="app_brand_recent_view_down_sound_path">sound/app_brand_pull_recent_vew_down_sound.mp3</string>
  1624. <string name="app_brand_remote_debug_collapse">收起</string>
  1625. <string name="app_brand_remote_debug_connect_abnormal">连接断开</string>
  1626. <string name="app_brand_remote_debug_connect_hit_break_point">已连接 断点中</string>
  1627. <string formatted="false" name="app_brand_remote_debug_connect_local_net_fail_confirm">连接局域网 %s 失败,已切换回广域网模式</string>
  1628. <string formatted="false" name="app_brand_remote_debug_connect_local_net_fail_confirm_for_miniapp">连接局域网 %s 失败,请重新编译资源包</string>
  1629. <string name="app_brand_remote_debug_connect_normal">已连接</string>
  1630. <string name="app_brand_remote_debug_expand">展开</string>
  1631. <string formatted="false" name="app_brand_remote_debug_info">待确认 %1$d\n待发送 %2$d\n已接收 %3$d</string>
  1632. <string name="app_brand_remote_debug_quit">结束</string>
  1633. <string name="app_brand_remote_debug_quit_confirm">确认结束调试?</string>
  1634. <string name="app_brand_remote_debug_server_abnormal">服务器忙</string>
  1635. <string name="app_brand_remote_debug_server_normal">服务器正常</string>
  1636. <string name="app_brand_scan_qrcode_parameter_error">二维码错误</string>
  1637. <string name="app_brand_short_link_launch_alert_allow">允许</string>
  1638. <string name="app_brand_short_link_launch_alert_cancel">取消</string>
  1639. <string name="app_brand_short_link_launch_alert_mgs">即将打开\"%s\"小程序</string>
  1640. <string name="app_brand_short_link_launch_alert_nocontent_mgs">即将打开小程序</string>
  1641. <string name="app_brand_show_debug_info">显示调试信息</string>
  1642. <string name="app_brand_supplement_info">补充说明</string>
  1643. <string name="app_brand_usage_add_collection">添加到我的小程序</string>
  1644. <string name="app_brand_usage_add_collection_for_menu_item">添加到\n我的小程序</string>
  1645. <string name="app_brand_usage_modify_collection_added">已添加</string>
  1646. <string name="app_brand_usage_modify_collection_removed">已移除</string>
  1647. <string name="app_brand_usage_remove_collection">从我的小程序中移除</string>
  1648. <string name="app_brand_usage_remove_collection_for_menu_item">从我的小程\n序中移除</string>
  1649. <string name="app_empty_string"/>
  1650. <string name="app_field_mmsight">拍摄</string>
  1651. <string name="app_field_select_new_pic">从相册选择</string>
  1652. <string name="app_i_known">知道了</string>
  1653. <string name="app_name">多端测试应用</string>
  1654. <string name="app_tip">提示</string>
  1655. <string name="appbar_scrolling_view_behavior" translatable="false">com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior</string>
  1656. <string name="appbrand_auth_user_auto_fill_accept">允许</string>
  1657. <string name="appbrand_auth_user_auto_fill_reject">拒绝</string>
  1658. <string name="appbrand_auth_user_auto_fill_title">快速填写授权</string>
  1659. <string name="appbrand_authorize_item_decs_personal_information">${BRAND}个人信息</string>
  1660. <string name="appbrand_authorize_item_delete">删除</string>
  1661. <string name="appbrand_camera_permission_authorize_desc">将会上传你摄录的照片及视频</string>
  1662. <string name="appbrand_commlib_updated_reload_prompt_btn_confirmed" translatable="false">@string/app_i_known</string>
  1663. <string name="appbrand_commlib_updated_reload_prompt_failed_tips">部分资源更新失败,无法打开小程序。</string>
  1664. <string name="appbrand_commlib_updated_reload_prompt_succeed_tips">部分资源已更新,需要重启以使用最新功能</string>
  1665. <string name="appbrand_data_transfer_tip">数据下载中,请稍候...</string>
  1666. <string name="appbrand_menu_back_to_home">回到首页</string>
  1667. <string name="appbrand_menu_back_to_home_disable">当前为首页</string>
  1668. <string name="appbrand_menu_profile_title">小程序资料</string>
  1669. <string name="appbrand_mobile_input_send_sms_timer_title">%d秒后重试</string>
  1670. <string name="appbrand_navigate_back_confirm_dialog_leave_btn">确认</string>
  1671. <string name="appbrand_navigate_back_confirm_dialog_stay_btn">取消</string>
  1672. <string name="appbrand_permission_authorize_explain_title">第三方用户信息授权说明</string>
  1673. <string name="appbrand_phone_number_add_for_use">保存此号码供以后授权使用</string>
  1674. <string name="appbrand_phone_number_add_phone_number">添加手机号码</string>
  1675. <string name="appbrand_phone_number_add_phone_number_tips">只可添加3个号码</string>
  1676. <string name="appbrand_phone_number_apply_for_access">申请使用</string>
  1677. <string name="appbrand_phone_number_cancel">拒绝</string>
  1678. <string name="appbrand_phone_number_exist">输入的手机号与${BRAND}绑定号码重复,请返回检查</string>
  1679. <string name="appbrand_phone_number_expose_desc_default">你授权后,小程序开发者将获得你${BRAND}绑定的或你添加的手机号信息,为你提供相关服务。如发现该小程序不恰当收集你的信息,可以向平台投诉。</string>
  1680. <string name="appbrand_phone_number_expose_slogan_end">投诉</string>
  1681. <string formatted="false" name="appbrand_phone_number_expose_slogan_start">如果发现不恰当收集或使用信息的行为,可以向平台%s</string>
  1682. <string name="appbrand_phone_number_finish_menu">完成</string>
  1683. <string name="appbrand_phone_number_format_err_msg">你输入的不是一个有效的手机号码</string>
  1684. <string name="appbrand_phone_number_format_err_title">手机号码错误</string>
  1685. <string name="appbrand_phone_number_input_hint">输入有效手机号</string>
  1686. <string name="appbrand_phone_number_input_layout_text">获取验证码</string>
  1687. <string name="appbrand_phone_number_input_title">手机号码</string>
  1688. <string name="appbrand_phone_number_loading">加载中</string>
  1689. <string name="appbrand_phone_number_manager_menu">管理</string>
  1690. <string name="appbrand_phone_number_manager_phone_number">管理手机号码</string>
  1691. <string name="appbrand_phone_number_ok">允许</string>
  1692. <string name="appbrand_phone_number_use_other_phone_number">使用其他手机号码</string>
  1693. <string name="appbrand_phone_number_verify_code_hint">输入六位验证码</string>
  1694. <string name="appbrand_phone_number_verify_code_sending">验证码发送中</string>
  1695. <string name="appbrand_phone_number_verify_code_title">验证码</string>
  1696. <string name="appbrand_phone_number_verify_code_verifying">验证中</string>
  1697. <string name="appbrand_phone_number_wechat_phone_number">${BRAND}绑定号码</string>
  1698. <string name="appbrand_phone_number_your_phone_number">你的手机号码</string>
  1699. <string name="appbrand_request_accept">允许</string>
  1700. <string name="appbrand_request_reject">拒绝</string>
  1701. <string name="appbrand_setting_do_delete">正在删除</string>
  1702. <string name="appbrand_setting_network_fail">设置失败,请检查你的网络设置</string>
  1703. <string name="appbrand_setting_usernifo_authrize_desc">开启后,\"%s\"可获取你的头像、昵称、地区和性别信息。</string>
  1704. <string name="appbrand_setting_usernifo_authrize_list_title">用户信息</string>
  1705. <string name="appbrand_setting_usernifo_authrize_page_switch_title">授权用户信息</string>
  1706. <string name="appbrand_setting_usernifo_authrize_user_info_list_desc">切换用户信息只更改你在“%s”中的微信头像和昵称。</string>
  1707. <string name="appbrand_subscribemsg">消息订阅</string>
  1708. <string name="appbrand_subscribemsg_profile_preference_off">不接收</string>
  1709. <string name="authorize_full_desc_both">使用小程序期间和离开小程序后</string>
  1710. <string name="authorize_full_desc_foreground">仅在使用小程序期间</string>
  1711. <string name="authorize_full_desc_none">不允许</string>
  1712. <string name="authorize_location_scopedsc">位置信息</string>
  1713. <string name="authorize_setting_do_setting">正在设置</string>
  1714. <string name="authorize_simple_desc_both">使用时和离开后</string>
  1715. <string name="authorize_simple_desc_foreground">使用时</string>
  1716. <string name="authorize_simple_desc_none">不允许</string>
  1717. <string name="authorize_tip">提示</string>
  1718. <string formatted="false" name="authorize_usage_desc">小程序说明:%s</string>
  1719. <string name="authorize_wait">请稍等</string>
  1720. <string name="biz_subscribe_msg_close_with_nickname">不允许“%s”发送任何通知</string>
  1721. <string name="biz_subscribe_msg_manager_ui_title">通知</string>
  1722. <string name="biz_subscribe_msg_open_with_nickname">允许“%s”发送以下通知</string>
  1723. <string name="biz_subscribe_msg_recv">接收通知</string>
  1724. <string name="biz_subscribe_msg_show_message_sample">查看消息示例</string>
  1725. <string name="biz_subscribe_msg_voice_template_accept">接收</string>
  1726. <string name="biz_subscribe_msg_voice_template_accept_play_voice">接收并开启语音提醒</string>
  1727. <string name="biz_subscribe_msg_voice_template_no_accept">不接收</string>
  1728. <string name="biz_subscribe_msg_voice_template_open_alert_left_btn_wording">知道了</string>
  1729. <string name="biz_subscribe_msg_voice_template_open_alert_msg">你可以试听提醒音,建议使用手机音量键调节到合适的效果。注意:手机需处于非静音状态。</string>
  1730. <string name="biz_subscribe_msg_voice_template_open_alert_right_btn_wording">试听语音</string>
  1731. <string name="biz_subscribe_msg_voice_template_open_alert_title">已开启语音提醒</string>
  1732. <string name="bottom_sheet_behavior" translatable="false">com.google.android.material.bottomsheet.BottomSheetBehavior</string>
  1733. <string name="bottom_sheet_more_share">更多分享</string>
  1734. <string name="bottom_sheet_no_more_share">暂没有更多分享</string>
  1735. <string name="button_cancel">取消</string>
  1736. <string name="button_clear">清空</string>
  1737. <string name="button_ok">确定</string>
  1738. <string name="character_counter_content_description">Character limit exceeded %1$d of %2$d</string>
  1739. <string name="character_counter_pattern" translatable="false">%1$d / %2$d</string>
  1740. <string name="cropimage_saved">图片已保存至%s 文件夹</string>
  1741. <string name="decode_wait">请稍等</string>
  1742. <string name="define_roundedimageview"/>
  1743. <string name="delete_appbrand">删除</string>
  1744. <string name="error_open_sdk_transfer_title">打开失败 </string>
  1745. <string name="error_wechat_low_version">微信客户端版本过低</string>
  1746. <string name="error_wechat_not_installed">未安装微信客户端</string>
  1747. <string name="exportfile_image_saved_to_path">图片已保存至 %s 路径</string>
  1748. <string name="exportfile_permission_msg">需要授权存储空间权限,以将图片、视频等文件保存到手机。</string>
  1749. <string name="fab_transformation_scrim_behavior" translatable="false">com.google.android.material.transformation.FabTransformationScrimBehavior</string>
  1750. <string name="fab_transformation_sheet_behavior" translatable="false">com.google.android.material.transformation.FabTransformationSheetBehavior</string>
  1751. <string name="face_login_btn_wording">确认登录</string>
  1752. <string name="face_login_et_hint">请输入你的手机号码</string>
  1753. <string name="face_login_title">人脸识别登录</string>
  1754. <string name="fat_aar_excluded_app_name">textview</string>
  1755. <string name="full_transluent_theme" translatable="false">fullTransluentTheme</string>
  1756. <string name="hide_bottom_view_on_scroll_behavior" translatable="false">com.google.android.material.behavior.HideBottomViewOnScrollBehavior</string>
  1757. <string name="host_mp_weixin_qq_com">mp.weixin.qq.com</string>
  1758. <string name="host_res_servicewechat_com">res.servicewechat.com</string>
  1759. <string name="host_servicewechat_com">servicewechat.com</string>
  1760. <string formatted="false" name="html_webview_geo_location_prompt_msg">允许%s访问你当前的地理位置信息?</string>
  1761. <string name="html_webview_geo_location_prompt_title">地理位置授权</string>
  1762. <string name="html_webview_js_oauth_no">否 </string>
  1763. <string name="html_webview_js_oauth_yes">是</string>
  1764. <string name="html_webview_native_oauth_failed">微信登录失败</string>
  1765. <string name="html_webview_native_oauth_waiting">正在登录中...</string>
  1766. <string name="icons_outlined_refresh">重新进入\n小程序</string>
  1767. <string name="item_selected">已选中</string>
  1768. <string name="jump_to_settings">去设置</string>
  1769. <string name="key_step_logger_analyser_detail_title">详情</string>
  1770. <string name="key_step_logger_analyser_list_title">列表</string>
  1771. <string name="key_step_logger_analyser_switch_title">视图切换</string>
  1772. <string name="key_step_logger_date_picker_btn">选择日期</string>
  1773. <string name="key_step_logger_icon_error">I非可选步骤未执行或者错误</string>
  1774. <string name="key_step_logger_icon_error_not_fatal">I非致命步骤执行错误</string>
  1775. <string name="key_step_logger_icon_ok">I执行成功</string>
  1776. <string name="key_step_logger_icon_optional">I可选步骤未执行</string>
  1777. <string name="keyboard_delete">删除</string>
  1778. <string name="library_roundedimageview_author">Vince Mi</string>
  1779. <string name="library_roundedimageview_authorWebsite">https://github.com/vinc3m1</string>
  1780. <string name="library_roundedimageview_isOpenSource">true</string>
  1781. <string name="library_roundedimageview_libraryDescription">A fast ImageView (and Drawable) that supports rounded corners (and ovals or circles) based on the original example from Romain Guy.</string>
  1782. <string name="library_roundedimageview_libraryName">RoundedImageView</string>
  1783. <string name="library_roundedimageview_libraryVersion">1.3.0</string>
  1784. <string name="library_roundedimageview_libraryWebsite">https://github.com/vinc3m1/RoundedImageView</string>
  1785. <string name="library_roundedimageview_licenseId">apache_2_0</string>
  1786. <string name="library_roundedimageview_repositoryLink">https://github.com/vinc3m1/RoundedImageView.git</string>
  1787. <string name="loading">加载中...</string>
  1788. <string name="login_accept_button">允许</string>
  1789. <string name="login_auth_non_userinfo">%s申请获得以下权限:</string>
  1790. <string name="login_auth_request_tips">%s申请获取以下权限:</string>
  1791. <string name="login_auth_snsapi_userinfo">%s申请获得:</string>
  1792. <string name="login_reject_button">拒绝</string>
  1793. <string name="luggage_app_brand_done">完成</string>
  1794. <string formatted="false" name="luggage_app_brand_error_guide">该页面不存在,你可以进入%s首页获取更多服务</string>
  1795. <string name="luggage_app_brand_error_page_reason">页面不存在</string>
  1796. <string name="luggage_app_brand_jsapi_getting_location">该小程序正在使用你的位置信息</string>
  1797. <string name="luggage_app_brand_jsapi_recording">该小程序正在使用你的麦克风</string>
  1798. <string name="luggage_app_brand_module_load_tips">加载中</string>
  1799. <string name="luggage_app_cancel">取消</string>
  1800. <string name="luggage_app_ok">确定</string>
  1801. <string name="luggage_app_waiting">请稍候...</string>
  1802. <string name="luggage_confirm_dialog_cancel">取消</string>
  1803. <string name="luggage_confirm_dialog_ok">确定</string>
  1804. <string name="luggage_game_splash_addiction" translatable="false">抵制不良游戏,拒绝盗版游戏。注意自我保护,谨防受骗上当。\n适度游戏益脑,沉迷游戏伤身。合理安排时间,享受健康生活。</string>
  1805. <string name="luggage_hce_service_description">微信</string>
  1806. <string name="luggage_jump_to_settings">去设置</string>
  1807. <string name="luggage_keyboard_delete">删除</string>
  1808. <string name="luggage_lbs_btn_cancel">我知道了</string>
  1809. <string name="luggage_lbs_btn_ok">前往设置</string>
  1810. <string name="luggage_lbs_content">无法使用此小程序,前往“权限”-“位置信息”-“精确定位”中打开</string>
  1811. <string name="luggage_lbs_titile">精确定位未开启</string>
  1812. <string name="luggage_not_open_nfc_switch_tips">你未在手机系统设置里打开NFC功能,请在系统设置里打开此功能</string>
  1813. <string name="luggage_not_set_default_nfc_application_tips">你未将${BRAND}设置为你的NFC默认应用,请将${BRAND}设置为默认应用</string>
  1814. <string name="luggage_open_nfc_switch_tips">请在你的手机系统设置里打开NFC功能</string>
  1815. <string name="luggage_phone_contact_add_exist_contact">添加到现有联系人</string>
  1816. <string name="luggage_phone_contact_add_new_contact">创建新联系人</string>
  1817. <string name="luggage_wxa_app_cancel">取消</string>
  1818. <string name="luggage_wxa_app_navigate_back_interuption_dialog_defult_content">离开此页面?</string>
  1819. <string name="luggage_wxa_app_ok">确定</string>
  1820. <string name="menu_copy_done">已复制</string>
  1821. <string name="menu_cut_done">已剪切</string>
  1822. <string name="menu_select">选择</string>
  1823. <string name="miniprogram_actionsheet_copy_link">复制链接</string>
  1824. <string name="miniprogram_actionsheet_exit">退出小程序</string>
  1825. <string name="miniprogram_actionsheet_open_setting">设置</string>
  1826. <string name="miniprogram_actionsheet_reload">重新进入\n小程序</string>
  1827. <string name="miniprogram_actionsheet_share">分享到微信</string>
  1828. <string name="miniprogram_actionsheet_share_disabled">当页面不可分享</string>
  1829. <string name="mmsight_capture_init_error">相机不能使用,请确认微信是否有相机及录音权限。</string>
  1830. <string name="mtrl_chip_close_icon_content_description">Remove %1$s</string>
  1831. <string name="multitask_bar_back_wechat">${BRAND}会话</string>
  1832. <string name="my_app_brand">我的小程序</string>
  1833. <string name="no_music_play">暂无歌曲播放</string>
  1834. <string name="notitle_transluent_theme" translatable="false">NoTitleTransluentTheme</string>
  1835. <string name="open_sdk_ticket_transfer_waiting_for_wechat">正在跳转微信...</string>
  1836. <string name="password_toggle_content_description">Show password</string>
  1837. <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>
  1838. <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>
  1839. <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>
  1840. <string name="path_password_strike_through" translatable="false">M3.27,4.27 L19.74,20.74</string>
  1841. <string name="permission_camera_request_again_msg">在设置-应用-权限中开启相机权限,以正常使用拍照、扫一扫等功能</string>
  1842. <string name="permission_dialog_cancel">取消</string>
  1843. <string name="permission_dialog_ok">确定</string>
  1844. <string name="permission_request_again_msg">开启权限以正常使用该功能</string>
  1845. <string name="permission_request_tips_title">权限申请</string>
  1846. <string name="permission_tips_title">权限申请</string>
  1847. <string name="picker_long_term">长期</string>
  1848. <string name="picker_time_apr">4</string>
  1849. <string name="picker_time_aug">8</string>
  1850. <string name="picker_time_dec">12</string>
  1851. <string name="picker_time_feb">2</string>
  1852. <string name="picker_time_jan">1</string>
  1853. <string name="picker_time_jul">7</string>
  1854. <string name="picker_time_jun">6</string>
  1855. <string name="picker_time_mar">3</string>
  1856. <string name="picker_time_may">5</string>
  1857. <string name="picker_time_nov">11</string>
  1858. <string name="picker_time_oct">10</string>
  1859. <string name="picker_time_sept">9</string>
  1860. <string name="pickerview_cancel">取消</string>
  1861. <string name="pickerview_day">日</string>
  1862. <string name="pickerview_hours">时</string>
  1863. <string name="pickerview_minutes">分</string>
  1864. <string name="pickerview_month">月</string>
  1865. <string name="pickerview_seconds">秒</string>
  1866. <string name="pickerview_submit">确定</string>
  1867. <string name="pickerview_year">年</string>
  1868. <string name="preview_item_test">体验版</string>
  1869. <string name="ps_all_audio">所有音频</string>
  1870. <string name="ps_audio">获取系统录音权限被拒绝</string>
  1871. <string name="ps_audio_empty">你可以使用系统录音录制音频</string>
  1872. <string name="ps_audio_error">音频已损坏</string>
  1873. <string name="ps_camera">获取系统相机权限被拒绝</string>
  1874. <string name="ps_camera_roll">相机胶卷</string>
  1875. <string name="ps_camera_roll_num">%1$s (%2$d)</string>
  1876. <string name="ps_cancel">取消</string>
  1877. <string name="ps_choose_limit_seconds">只能选择 %1$ds 至 %2$ds内的视频</string>
  1878. <string name="ps_choose_max_seconds">最大只能选择 %1$ds 以内的视频</string>
  1879. <string name="ps_choose_min_seconds">不能选择低于 %1$ds 内的视频</string>
  1880. <string name="ps_completed">已完成</string>
  1881. <string name="ps_confirm">确定</string>
  1882. <string name="ps_current_month">这个月</string>
  1883. <string name="ps_current_week">本周</string>
  1884. <string name="ps_data_exception">获取相册数据异常…</string>
  1885. <string name="ps_data_null">这里空空如也…</string>
  1886. <string name="ps_default_original_image">原图</string>
  1887. <string name="ps_done">完 成</string>
  1888. <string name="ps_done_front_num">%1$d/%2$d 完成</string>
  1889. <string name="ps_editor">编辑</string>
  1890. <string name="ps_empty">你可以使用相机拍摄照片或视频</string>
  1891. <string name="ps_empty_audio_title">无音频文件\n</string>
  1892. <string name="ps_empty_title">无视频或照片\n</string>
  1893. <string name="ps_error">图片已损坏</string>
  1894. <string name="ps_gif_tag">动图</string>
  1895. <string name="ps_go_setting">去设置</string>
  1896. <string name="ps_jurisdiction">读取内存卡权限被拒绝</string>
  1897. <string name="ps_know">我知道了</string>
  1898. <string name="ps_long_chart">长图</string>
  1899. <string name="ps_message_audio_max_num">你最多只能选择%1$s个音频</string>
  1900. <string name="ps_message_max_num">你最多只能选择%1$s张照片</string>
  1901. <string name="ps_message_video_max_num">你最多只能选择%1$s个视频</string>
  1902. <string name="ps_min_audio_num">音频最低选择不能少于%1$s个</string>
  1903. <string name="ps_min_img_num">图片最低选择不能少于%1$s张</string>
  1904. <string name="ps_min_video_num">视频最低选择不能少于%1$s个</string>
  1905. <string name="ps_not_crop_data">无可用裁剪数据</string>
  1906. <string name="ps_original_image">原图 (%1$s)</string>
  1907. <string name="ps_pause_audio">暂停</string>
  1908. <string name="ps_photograph">拍照</string>
  1909. <string name="ps_play_audio">播放</string>
  1910. <string name="ps_please">请稍候…</string>
  1911. <string name="ps_please_select">请选择</string>
  1912. <string name="ps_preview">预览</string>
  1913. <string name="ps_preview_image_num">%1$d/%2$d</string>
  1914. <string name="ps_preview_num">预览(%1$d)</string>
  1915. <string name="ps_prompt">提示</string>
  1916. <string name="ps_prompt_audio_content">是否保存音频至手机?</string>
  1917. <string name="ps_prompt_image_content">是否保存图片至手机?</string>
  1918. <string name="ps_prompt_video_content">是否保存视频至手机?</string>
  1919. <string name="ps_quit_audio">退出</string>
  1920. <string name="ps_record_video">录视频</string>
  1921. <string name="ps_rule">不能同时选择图片或视频</string>
  1922. <string name="ps_save_audio_error">音频保存失败</string>
  1923. <string name="ps_save_image_error">图片保存失败</string>
  1924. <string name="ps_save_success">文件保存成功至</string>
  1925. <string name="ps_save_video_error">视频保存失败</string>
  1926. <string name="ps_select">选择</string>
  1927. <string name="ps_select_audio_max_second">选择音频大于%1$d秒</string>
  1928. <string name="ps_select_audio_min_second">选择音频小于%1$d秒</string>
  1929. <string name="ps_select_max_size">选择文件大于%1$s</string>
  1930. <string name="ps_select_min_size">选择文件小于%1$s</string>
  1931. <string name="ps_select_no_support">不支持的选择类型</string>
  1932. <string name="ps_select_video_max_second">选择视频大于%1$d秒</string>
  1933. <string name="ps_select_video_min_second">选择视频小于%1$d秒</string>
  1934. <string name="ps_send">完成</string>
  1935. <string name="ps_send_num">完成(%1$d)</string>
  1936. <string name="ps_stop_audio">停止</string>
  1937. <string name="ps_take_picture">拍摄</string>
  1938. <string name="ps_tape">录音</string>
  1939. <string name="ps_use_camera">正在使用相机</string>
  1940. <string name="ps_use_sound">正在使用录音功能</string>
  1941. <string name="ps_video_error">视频已损坏</string>
  1942. <string name="ps_video_toast">视频不可预览</string>
  1943. <string name="ps_warning">暂无媒体文件!</string>
  1944. <string name="ps_webp_tag">webp</string>
  1945. <string name="push_down_keyboard">收起键盘</string>
  1946. <string name="qbar_tip_only_qrcode">将二维码放入框内,即可自动扫描</string>
  1947. <string name="qbar_tip_only_zbar">将条码放入框内,即可自动扫描</string>
  1948. <string name="qrcode_completed_2">sound/qrcode_completed_2.wav</string>
  1949. <string name="qrcode_transfer_normal_call_tip">请使用微信扫码完成下一步</string>
  1950. <string name="qrcode_transfer_pay_tip">请使用微信扫码支付</string>
  1951. <string name="qrcode_transfer_qr_connect_error">连接错误</string>
  1952. <string name="qrcode_transfer_qr_error">扫描失败</string>
  1953. <string name="qrcode_transfer_qr_scanned">扫描成功</string>
  1954. <string name="qrcode_transfer_share_tip">请使用微信扫码分享</string>
  1955. <string formatted="false" name="qrlogin_appname_format">微信登录%s</string>
  1956. <string name="qrlogin_display_message">使用微信扫描二维码登录\n登录后即可使用该设备上的小程序</string>
  1957. <string name="recent_app_brand">最近使用</string>
  1958. <string name="scan_click_to_resume">轻触屏幕继续扫描</string>
  1959. <string name="scan_entry_qbar">扫码</string>
  1960. <string name="scan_flash_close_hint">轻触关闭</string>
  1961. <string name="scan_flash_open_hint">轻触照亮</string>
  1962. <string name="scan_multi_code_tips">轻触小绿点,打开页面</string>
  1963. <string name="scan_no_code">未发现二维码 / 条码</string>
  1964. <string name="scan_qr_code_tips">扫二维码 / 条码 </string>
  1965. <string name="search_menu_title">Search</string>
  1966. <string name="setting_network_fail">设置失败,请检查你的网络设置</string>
  1967. <string name="status_bar_notification_info_overflow">999+</string>
  1968. <string name="subscribe_msg_alert_action_go_to_setting_page">前往设置</string>
  1969. <string name="subscribe_msg_alert_default_content">操作失败,请稍后重试</string>
  1970. <string name="subscribe_msg_common_fail">订阅失败,请稍后重试</string>
  1971. <string name="switch_check_desc">已开启</string>
  1972. <string name="switch_uncheck_desc">已关闭</string>
  1973. <string name="transluent_theme" translatable="false">transluentTheme</string>
  1974. <string name="ui_new">NEW</string>
  1975. <string name="ui_search">搜索</string>
  1976. <string name="video_file_saved">视频已保存至%s</string>
  1977. <string name="video_multispeed">"倍速"</string>
  1978. <string name="wechat_auth">${BRAND}授权</string>
  1979. <string name="wmpf_qrlogin_qrcode_expired_message">请刷新页面重新扫码</string>
  1980. <string name="wmpf_qrlogin_qrcode_expired_title">扫描失败</string>
  1981. <string name="wmpf_qrlogin_refresh_qrcode">刷新</string>
  1982. <string name="wmpf_qrlogin_scanned_tip_messeage">请在微信轻触确认即可登录</string>
  1983. <string name="wmpf_qrlogin_scanned_tip_title">扫描成功</string>
  1984. <string formatted="false" name="wv_allow_camera_and_record_audio_permission">%s 申请使用你的摄像头和麦克风</string>
  1985. <string formatted="false" name="wv_allow_camera_and_record_audio_permission_fail_tips">无法访问摄像头和麦克风,请前往「设置」中打开权限</string>
  1986. <string formatted="false" name="wv_allow_camera_permission">%s 申请使用你的摄像头</string>
  1987. <string formatted="false" name="wv_allow_camera_permission_fail_tips">无法访问摄像头,请前往「设置」中打开权限</string>
  1988. <string formatted="false" name="wv_allow_record_audio_permission">%s 申请使用你的麦克风</string>
  1989. <string formatted="false" name="wv_allow_record_audio_permission_fail_tips">无法访问麦克风,请前往「设置」中打开权限</string>
  1990. <string formatted="false" name="wv_get_location_msg_fail_tips">无法访问位置信息,请前往「设置」中打开权限</string>
  1991. <string name="wxa_brand_hint">小程序</string>
  1992. <string name="wxa_brand_hint_donut">Powered By Donut</string>
  1993. <string name="wxa_brand_hint_game">小游戏</string>
  1994. <string name="wxa_btn_hint">启动小程序</string>
  1995. <string name="wxa_image_preview_menu_cancel">取消</string>
  1996. <string name="wxa_image_preview_menu_save_to_disk">保存图片</string>
  1997. <string name="wxa_menu_enable_debug">开发调试</string>
  1998. <string name="wxa_menu_feedback">反馈与投诉</string>
  1999. <string name="wxa_menu_growth_care">未成年人成长守护</string>
  2000. <string name="wxa_menu_modify_collection_add">添加到微信我的小程序</string>
  2001. <string name="wxa_menu_moment">分享到\n朋友圈</string>
  2002. <string name="wxa_menu_send_app_msg_disable">当前页面不可转发</string>
  2003. <string name="wxa_menu_setting">设置</string>
  2004. <string name="wxa_menu_share_appmsg">发送给\n微信朋友</string>
  2005. <string name="wxa_menu_share_favor">收藏到\n微信</string>
  2006. <string name="wxa_menu_status_lbs">正在定位</string>
  2007. <string name="wxa_menu_status_normal">微信小程序</string>
  2008. <string name="wxa_menu_status_record_screen">正在录屏</string>
  2009. <string name="wxa_menu_status_record_voice">正在录音</string>
  2010. <string name="wxa_profile_button_enter_app">进入小程序</string>
  2011. <string name="wxa_profile_button_enter_wechat">在微信中查看</string>
  2012. <string name="wxa_profile_no_star">暂无评分</string>
  2013. <string name="wxa_profile_service_category">服务类目</string>
  2014. <string name="wxa_profile_star_not_enough">评价人数不足</string>
  2015. <string name="wxa_proflie_register_body">开发团队</string>
  2016. <string formatted="false" name="wxa_score_text">%s分</string>
  2017. <style name="ActionBar.Solid" parent="@style/Widget.AppCompat.ActionBar">
  2018. <item name="height">?attr/actionBarSize</item>
  2019. <item name="background">?attr/app_actionbar_color</item>
  2020. <item name="backgroundStacked">?attr/app_actionbar_color</item>
  2021. <item name="backgroundSplit">?attr/app_actionbar_color</item>
  2022. <item name="android:background">?attr/app_actionbar_color</item>
  2023. <item name="android:backgroundStacked">?attr/app_actionbar_color</item>
  2024. <item name="android:backgroundSplit">?attr/app_actionbar_color</item>
  2025. <item name="titleTextStyle">@style/MMActionBar.TitleTextStyle</item>
  2026. <item name="android:titleTextStyle">@style/MMActionBar.TitleTextStyle</item>
  2027. <item name="subtitleTextStyle">@style/MMActionBar.SubTitleTextStyle</item>
  2028. <item name="android:subtitleTextStyle">@style/MMActionBar.SubTitleTextStyle</item>
  2029. <!-- for action bar (toolbar actually) -->
  2030. <item name="elevation">1px</item> <!-- actionbar分割线高度 -->
  2031. <item name="contentInsetStart">0dp</item>
  2032. <item name="contentInsetEnd">0dp</item>
  2033. <item name="contentInsetLeft">0dp</item>
  2034. <item name="contentInsetRight">0dp</item>
  2035. <item name="android:paddingLeft">0dp</item>
  2036. <item name="android:paddingRight">0dp</item>
  2037. </style>
  2038. <style name="AlertDialog.AppCompat" parent="Base.AlertDialog.AppCompat"/>
  2039. <style name="AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat.Light"/>
  2040. <style name="Animation.AppCompat.Dialog" parent="Base.Animation.AppCompat.Dialog"/>
  2041. <style name="Animation.AppCompat.DropDownUp" parent="Base.Animation.AppCompat.DropDownUp"/>
  2042. <style name="Animation.AppCompat.Tooltip" parent="Base.Animation.AppCompat.Tooltip"/>
  2043. <style name="Animation.Design.BottomSheetDialog" parent="Animation.AppCompat.Dialog">
  2044. <item name="android:windowEnterAnimation">@anim/design_bottom_sheet_slide_in</item>
  2045. <item name="android:windowExitAnimation">@anim/design_bottom_sheet_slide_out</item>
  2046. </style>
  2047. <style name="AppBrandPickerPanelTextButton" parent="@style/MMSolidWhiteSmallButton">
  2048. <item name="android:layout_width">wrap_content</item>
  2049. <item name="android:minWidth">@dimen/ConfirmButtonWidth</item>
  2050. <item name="android:background">@drawable/alert_btn_background</item>
  2051. <item name="android:textSize">@dimen/NormalTextSize</item>
  2052. <item name="android:gravity">center</item>
  2053. </style>
  2054. <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"/>
  2055. <style name="AppTheme.Picker" parent="Theme.AppCompat.Light.NoActionBar">
  2056. <item name="android:textColorPrimary">@color/normal_text_color</item>
  2057. </style>
  2058. <style name="AppTheme.WeUI.Png" parent="Theme.AppCompat.Light.DarkActionBar">
  2059. <item name="radio_selector">@drawable/radio_selector_png</item>
  2060. <item name="checkbox_selector">@drawable/checkbox_btn_png</item>
  2061. <item name="ok_icon">@drawable/ok_icon</item>
  2062. <item name="progress_cancel">@drawable/progress_cancel_png</item>
  2063. <item name="et_clear_selector">@drawable/et_clear_png</item>
  2064. </style>
  2065. <style name="AppbrandKeyBoardDividerLine">
  2066. <item name="android:layout_width">match_parent</item>
  2067. <item name="android:layout_height">1px</item>
  2068. <item name="android:background">@color/FG_3</item>
  2069. </style>
  2070. <style name="AppbrandKeyBoardVerticalDividerLine">
  2071. <item name="android:layout_width">1px</item>
  2072. <item name="android:layout_height">match_parent</item>
  2073. <item name="android:background">@color/FG_3</item>
  2074. </style>
  2075. <style name="AppbrandKeyboardText">
  2076. <item name="android:layout_width">0dp</item>
  2077. <item name="android:layout_height">fill_parent</item>
  2078. <item name="android:layout_weight">1</item>
  2079. <item name="android:textColor">@color/normal_text</item>
  2080. <item name="android:textSize">28dp</item>
  2081. </style>
  2082. <style name="Base.AlertDialog.AppCompat" parent="android:Widget">
  2083. <item name="android:layout">@layout/abc_alert_dialog_material</item>
  2084. <item name="listLayout">@layout/abc_select_dialog_material</item>
  2085. <item name="listItemLayout">@layout/select_dialog_item_material</item>
  2086. <item name="multiChoiceItemLayout">@layout/select_dialog_multichoice_material</item>
  2087. <item name="singleChoiceItemLayout">@layout/select_dialog_singlechoice_material</item>
  2088. <item name="buttonIconDimen">@dimen/abc_alert_dialog_button_dimen</item>
  2089. </style>
  2090. <style name="Base.AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat"/>
  2091. <style name="Base.Animation.AppCompat.Dialog" parent="android:Animation">
  2092. <item name="android:windowEnterAnimation">@anim/abc_popup_enter</item>
  2093. <item name="android:windowExitAnimation">@anim/abc_popup_exit</item>
  2094. </style>
  2095. <style name="Base.Animation.AppCompat.DropDownUp" parent="android:Animation">
  2096. <item name="android:windowEnterAnimation">@anim/abc_grow_fade_in_from_bottom</item>
  2097. <item name="android:windowExitAnimation">@anim/abc_shrink_fade_out_from_bottom</item>
  2098. </style>
  2099. <style name="Base.Animation.AppCompat.Tooltip" parent="android:Animation">
  2100. <item name="android:windowEnterAnimation">@anim/abc_tooltip_enter</item>
  2101. <item name="android:windowExitAnimation">@anim/abc_tooltip_exit</item>
  2102. </style>
  2103. <style name="Base.CardView" parent="android:Widget">
  2104. <item name="cardCornerRadius">@dimen/cardview_default_radius</item>
  2105. <item name="cardElevation">@dimen/cardview_default_elevation</item>
  2106. <item name="cardMaxElevation">@dimen/cardview_default_elevation</item>
  2107. <item name="cardUseCompatPadding">false</item>
  2108. <item name="cardPreventCornerOverlap">true</item>
  2109. </style>
  2110. <style name="Base.DialogWindowTitle.AppCompat" parent="android:Widget">
  2111. <item name="android:maxLines">1</item>
  2112. <item name="android:scrollHorizontally">true</item>
  2113. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Title</item>
  2114. </style>
  2115. <style name="Base.DialogWindowTitleBackground.AppCompat" parent="android:Widget">
  2116. <item name="android:background">@null</item>
  2117. <item name="android:paddingLeft">?attr/dialogPreferredPadding</item>
  2118. <item name="android:paddingRight">?attr/dialogPreferredPadding</item>
  2119. <item name="android:paddingTop">@dimen/abc_dialog_padding_top_material</item>
  2120. </style>
  2121. <style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance">
  2122. <item name="android:textColor">?android:textColorPrimary</item>
  2123. <item name="android:textColorHint">?android:textColorHint</item>
  2124. <item name="android:textColorHighlight">?android:textColorHighlight</item>
  2125. <item name="android:textColorLink">?android:textColorLink</item>
  2126. <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
  2127. </style>
  2128. <style name="Base.TextAppearance.AppCompat.Body1">
  2129. <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
  2130. <item name="android:textColor">?android:textColorPrimary</item>
  2131. </style>
  2132. <style name="Base.TextAppearance.AppCompat.Body2">
  2133. <item name="android:textSize">@dimen/abc_text_size_body_2_material</item>
  2134. <item name="android:textColor">?android:textColorPrimary</item>
  2135. </style>
  2136. <style name="Base.TextAppearance.AppCompat.Button">
  2137. <item name="android:textSize">@dimen/abc_text_size_button_material</item>
  2138. <item name="android:textAllCaps">true</item>
  2139. <item name="android:textColor">?android:textColorPrimary</item>
  2140. </style>
  2141. <style name="Base.TextAppearance.AppCompat.Caption">
  2142. <item name="android:textSize">@dimen/abc_text_size_caption_material</item>
  2143. <item name="android:textColor">?android:textColorSecondary</item>
  2144. </style>
  2145. <style name="Base.TextAppearance.AppCompat.Display1">
  2146. <item name="android:textSize">@dimen/abc_text_size_display_1_material</item>
  2147. <item name="android:textColor">?android:textColorSecondary</item>
  2148. </style>
  2149. <style name="Base.TextAppearance.AppCompat.Display2">
  2150. <item name="android:textSize">@dimen/abc_text_size_display_2_material</item>
  2151. <item name="android:textColor">?android:textColorSecondary</item>
  2152. </style>
  2153. <style name="Base.TextAppearance.AppCompat.Display3">
  2154. <item name="android:textSize">@dimen/abc_text_size_display_3_material</item>
  2155. <item name="android:textColor">?android:textColorSecondary</item>
  2156. </style>
  2157. <style name="Base.TextAppearance.AppCompat.Display4">
  2158. <item name="android:textSize">@dimen/abc_text_size_display_4_material</item>
  2159. <item name="android:textColor">?android:textColorSecondary</item>
  2160. </style>
  2161. <style name="Base.TextAppearance.AppCompat.Headline">
  2162. <item name="android:textSize">@dimen/abc_text_size_headline_material</item>
  2163. <item name="android:textColor">?android:textColorPrimary</item>
  2164. </style>
  2165. <style name="Base.TextAppearance.AppCompat.Inverse">
  2166. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  2167. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  2168. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  2169. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  2170. </style>
  2171. <style name="Base.TextAppearance.AppCompat.Large">
  2172. <item name="android:textSize">@dimen/abc_text_size_large_material</item>
  2173. <item name="android:textColor">?android:attr/textColorPrimary</item>
  2174. </style>
  2175. <style name="Base.TextAppearance.AppCompat.Large.Inverse">
  2176. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  2177. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  2178. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  2179. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  2180. </style>
  2181. <style name="Base.TextAppearance.AppCompat.Medium">
  2182. <item name="android:textSize">@dimen/abc_text_size_medium_material</item>
  2183. <item name="android:textColor">?android:attr/textColorSecondary</item>
  2184. </style>
  2185. <style name="Base.TextAppearance.AppCompat.Medium.Inverse">
  2186. <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
  2187. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  2188. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  2189. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  2190. </style>
  2191. <style name="Base.TextAppearance.AppCompat.Menu">
  2192. <item name="android:textSize">@dimen/abc_text_size_menu_material</item>
  2193. <item name="android:textColor">?android:textColorPrimary</item>
  2194. </style>
  2195. <style name="Base.TextAppearance.AppCompat.SearchResult" parent="">
  2196. <item name="android:textStyle">normal</item>
  2197. <item name="android:textColor">?android:textColorPrimary</item>
  2198. <item name="android:textColorHint">?android:textColorHint</item>
  2199. </style>
  2200. <style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
  2201. <item name="android:textSize">14sp</item>
  2202. <item name="android:textColor">?android:textColorSecondary</item>
  2203. </style>
  2204. <style name="Base.TextAppearance.AppCompat.SearchResult.Title">
  2205. <item name="android:textSize">18sp</item>
  2206. </style>
  2207. <style name="Base.TextAppearance.AppCompat.Small">
  2208. <item name="android:textSize">@dimen/abc_text_size_small_material</item>
  2209. <item name="android:textColor">?android:attr/textColorTertiary</item>
  2210. </style>
  2211. <style name="Base.TextAppearance.AppCompat.Small.Inverse">
  2212. <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
  2213. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  2214. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  2215. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  2216. </style>
  2217. <style name="Base.TextAppearance.AppCompat.Subhead">
  2218. <item name="android:textSize">@dimen/abc_text_size_subhead_material</item>
  2219. <item name="android:textColor">?android:textColorPrimary</item>
  2220. </style>
  2221. <style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
  2222. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  2223. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  2224. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  2225. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  2226. </style>
  2227. <style name="Base.TextAppearance.AppCompat.Title">
  2228. <item name="android:textSize">@dimen/abc_text_size_title_material</item>
  2229. <item name="android:textColor">?android:textColorPrimary</item>
  2230. </style>
  2231. <style name="Base.TextAppearance.AppCompat.Title.Inverse">
  2232. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  2233. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  2234. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  2235. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  2236. </style>
  2237. <style name="Base.TextAppearance.AppCompat.Tooltip">
  2238. <item name="android:textSize">14sp</item>
  2239. </style>
  2240. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="TextAppearance.AppCompat.Button">
  2241. <item name="android:textColor">?attr/actionMenuTextColor</item>
  2242. <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
  2243. </style>
  2244. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="TextAppearance.AppCompat.Subhead">
  2245. <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
  2246. <item name="android:textColor">?android:attr/textColorSecondary</item>
  2247. </style>
  2248. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="TextAppearance.AppCompat.Subhead.Inverse">
  2249. <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
  2250. <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
  2251. </style>
  2252. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="TextAppearance.AppCompat.Title">
  2253. <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
  2254. <item name="android:textColor">?android:attr/textColorPrimary</item>
  2255. </style>
  2256. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="TextAppearance.AppCompat.Title.Inverse">
  2257. <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
  2258. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  2259. </style>
  2260. <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/>
  2261. <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title"/>
  2262. <style name="Base.TextAppearance.AppCompat.Widget.Button" parent="TextAppearance.AppCompat.Button"/>
  2263. <style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button">
  2264. <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
  2265. </style>
  2266. <style name="Base.TextAppearance.AppCompat.Widget.Button.Colored">
  2267. <item name="android:textColor">@color/abc_btn_colored_text_material</item>
  2268. </style>
  2269. <style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="TextAppearance.AppCompat.Button">
  2270. <item name="android:textColor">?android:textColorPrimaryInverse</item>
  2271. </style>
  2272. <style name="Base.TextAppearance.AppCompat.Widget.DropDownItem" parent="android:TextAppearance.Small">
  2273. <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
  2274. </style>
  2275. <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
  2276. <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
  2277. <item name="android:textColor">?attr/colorAccent</item>
  2278. </style>
  2279. <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu"/>
  2280. <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu"/>
  2281. <style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="TextAppearance.AppCompat.Button"/>
  2282. <style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="TextAppearance.AppCompat.Menu"/>
  2283. <style name="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="android:TextAppearance.Medium">
  2284. <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
  2285. </style>
  2286. <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle">
  2287. </style>
  2288. <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
  2289. </style>
  2290. <style name="Base.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
  2291. </style>
  2292. <style name="Base.Theme.AppCompat.CompactMenu" parent="">
  2293. <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
  2294. <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
  2295. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
  2296. </style>
  2297. <style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog"/>
  2298. <style name="Base.Theme.AppCompat.Dialog.Alert">
  2299. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2300. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2301. </style>
  2302. <style name="Base.Theme.AppCompat.Dialog.FixedSize">
  2303. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  2304. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  2305. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  2306. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  2307. </style>
  2308. <style name="Base.Theme.AppCompat.Dialog.MinWidth">
  2309. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2310. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2311. </style>
  2312. <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Theme.AppCompat"/>
  2313. <style name="Base.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
  2314. </style>
  2315. <style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light">
  2316. <item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item>
  2317. <item name="actionBarWidgetTheme">@null</item>
  2318. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
  2319. <!-- Panel attributes -->
  2320. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
  2321. <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
  2322. <item name="colorPrimary">@color/primary_material_dark</item>
  2323. </style>
  2324. <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog"/>
  2325. <style name="Base.Theme.AppCompat.Light.Dialog.Alert">
  2326. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2327. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2328. </style>
  2329. <style name="Base.Theme.AppCompat.Light.Dialog.FixedSize">
  2330. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  2331. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  2332. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  2333. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  2334. </style>
  2335. <style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
  2336. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2337. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2338. </style>
  2339. <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Theme.AppCompat.Light"/>
  2340. <style name="Base.Theme.MaterialComponents" parent="Base.V14.Theme.MaterialComponents"/>
  2341. <style name="Base.Theme.MaterialComponents.Bridge" parent="Base.V14.Theme.MaterialComponents.Bridge"/>
  2342. <style name="Base.Theme.MaterialComponents.CompactMenu" parent="">
  2343. <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
  2344. <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
  2345. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
  2346. </style>
  2347. <style name="Base.Theme.MaterialComponents.Dialog" parent="Base.V14.Theme.MaterialComponents.Dialog"/>
  2348. <style name="Base.Theme.MaterialComponents.Dialog.Alert">
  2349. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2350. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2351. </style>
  2352. <style name="Base.Theme.MaterialComponents.Dialog.FixedSize">
  2353. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  2354. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  2355. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  2356. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  2357. </style>
  2358. <style name="Base.Theme.MaterialComponents.Dialog.MinWidth">
  2359. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2360. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2361. </style>
  2362. <style name="Base.Theme.MaterialComponents.DialogWhenLarge" parent="Theme.MaterialComponents"/>
  2363. <style name="Base.Theme.MaterialComponents.Light" parent="Base.V14.Theme.MaterialComponents.Light"/>
  2364. <style name="Base.Theme.MaterialComponents.Light.Bridge" parent="Base.V14.Theme.MaterialComponents.Light.Bridge"/>
  2365. <style name="Base.Theme.MaterialComponents.Light.DarkActionBar" parent="Base.Theme.MaterialComponents.Light">
  2366. <item name="actionBarPopupTheme">@style/ThemeOverlay.MaterialComponents.Light</item>
  2367. <item name="actionBarWidgetTheme">@null</item>
  2368. <item name="actionBarTheme">@style/ThemeOverlay.MaterialComponents.Dark.ActionBar</item>
  2369. <!-- Panel attributes -->
  2370. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
  2371. <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
  2372. <item name="colorPrimary">@color/primary_material_dark</item>
  2373. </style>
  2374. <style name="Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge"/>
  2375. <style name="Base.Theme.MaterialComponents.Light.Dialog" parent="Base.V14.Theme.MaterialComponents.Light.Dialog"/>
  2376. <style name="Base.Theme.MaterialComponents.Light.Dialog.Alert">
  2377. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2378. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2379. </style>
  2380. <style name="Base.Theme.MaterialComponents.Light.Dialog.FixedSize">
  2381. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  2382. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  2383. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  2384. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  2385. </style>
  2386. <style name="Base.Theme.MaterialComponents.Light.Dialog.MinWidth">
  2387. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2388. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2389. </style>
  2390. <style name="Base.Theme.MaterialComponents.Light.DialogWhenLarge" parent="Theme.MaterialComponents.Light"/>
  2391. <style name="Base.Theme.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar"/>
  2392. <style name="Base.ThemeOverlay.AppCompat" parent="Platform.ThemeOverlay.AppCompat"/>
  2393. <style name="Base.ThemeOverlay.AppCompat.ActionBar">
  2394. <item name="colorControlNormal">?android:attr/textColorPrimary</item>
  2395. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
  2396. </style>
  2397. <style name="Base.ThemeOverlay.AppCompat.Dark" parent="Platform.ThemeOverlay.AppCompat.Dark">
  2398. <item name="android:windowBackground">@color/background_material_dark</item>
  2399. <item name="android:colorForeground">@color/foreground_material_dark</item>
  2400. <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
  2401. <item name="android:colorBackground">@color/background_material_dark</item>
  2402. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
  2403. <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
  2404. <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
  2405. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
  2406. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  2407. <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
  2408. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
  2409. <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
  2410. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
  2411. <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
  2412. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
  2413. <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
  2414. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  2415. <item name="colorControlHighlight">@color/ripple_material_dark</item>
  2416. <item name="colorButtonNormal">@color/button_material_dark</item>
  2417. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
  2418. <!-- Used by MediaRouter -->
  2419. <item name="isLightTheme">false</item>
  2420. </style>
  2421. <style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar">
  2422. <item name="colorControlNormal">?android:attr/textColorPrimary</item>
  2423. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
  2424. </style>
  2425. <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog"/>
  2426. <style name="Base.ThemeOverlay.AppCompat.Dialog.Alert">
  2427. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2428. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2429. </style>
  2430. <style name="Base.ThemeOverlay.AppCompat.Light" parent="Platform.ThemeOverlay.AppCompat.Light">
  2431. <item name="android:windowBackground">@color/background_material_light</item>
  2432. <item name="android:colorForeground">@color/foreground_material_light</item>
  2433. <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
  2434. <item name="android:colorBackground">@color/background_material_light</item>
  2435. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
  2436. <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
  2437. <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
  2438. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
  2439. <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
  2440. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
  2441. <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
  2442. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
  2443. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
  2444. <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  2445. <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
  2446. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
  2447. <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
  2448. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  2449. <item name="colorControlHighlight">@color/ripple_material_light</item>
  2450. <item name="colorButtonNormal">@color/button_material_light</item>
  2451. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
  2452. <!-- Used by MediaRouter -->
  2453. <item name="isLightTheme">true</item>
  2454. </style>
  2455. <style name="Base.ThemeOverlay.MaterialComponents.Dialog" parent="Base.V14.ThemeOverlay.MaterialComponents.Dialog"/>
  2456. <style name="Base.ThemeOverlay.MaterialComponents.Dialog.Alert" parent="Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert"/>
  2457. <style name="Base.V14.Theme.MaterialComponents" parent="Base.V14.Theme.MaterialComponents.Bridge">
  2458. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  2459. <!-- Colors -->
  2460. <item name="colorPrimary">@color/design_default_color_primary</item>
  2461. <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
  2462. <item name="colorAccent">?attr/colorSecondary</item>
  2463. <!-- Widget styles -->
  2464. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  2465. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  2466. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView.Colored</item>
  2467. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  2468. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  2469. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  2470. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  2471. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  2472. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  2473. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  2474. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  2475. <item name="snackbarButtonStyle">?attr/borderlessButtonStyle</item>
  2476. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout.Colored</item>
  2477. <item name="textInputStyle">@style/Widget.Design.TextInputLayout</item>
  2478. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  2479. <!-- Dialog themes -->
  2480. <item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert</item>
  2481. <item name="android:datePickerDialogTheme" ns2:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  2482. <item name="android:timePickerDialogTheme" ns2:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  2483. </style>
  2484. <style name="Base.V14.Theme.MaterialComponents.Bridge" parent="Platform.MaterialComponents">
  2485. <item name="colorSecondary">?attr/colorPrimary</item>
  2486. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  2487. <!-- Type styles -->
  2488. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  2489. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  2490. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  2491. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  2492. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  2493. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  2494. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  2495. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  2496. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  2497. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  2498. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  2499. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  2500. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  2501. </style>
  2502. <style name="Base.V14.Theme.MaterialComponents.Dialog" parent="Platform.MaterialComponents.Dialog">
  2503. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  2504. <!-- Colors -->
  2505. <item name="colorPrimary">@color/design_default_color_primary</item>
  2506. <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
  2507. <item name="colorSecondary">?attr/colorPrimary</item>
  2508. <item name="colorAccent">?attr/colorSecondary</item>
  2509. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  2510. <!-- Widget styles -->
  2511. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  2512. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  2513. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView.Colored</item>
  2514. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  2515. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  2516. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  2517. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  2518. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  2519. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  2520. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  2521. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  2522. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  2523. <item name="snackbarButtonStyle">?attr/borderlessButtonStyle</item>
  2524. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout.Colored</item>
  2525. <item name="textInputStyle">@style/Widget.Design.TextInputLayout</item>
  2526. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  2527. <!-- Type styles -->
  2528. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  2529. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  2530. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  2531. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  2532. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  2533. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  2534. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  2535. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  2536. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  2537. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  2538. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  2539. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  2540. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  2541. </style>
  2542. <style name="Base.V14.Theme.MaterialComponents.Light" parent="Base.V14.Theme.MaterialComponents.Light.Bridge">
  2543. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  2544. <!-- Colors -->
  2545. <item name="colorPrimary">@color/design_default_color_primary</item>
  2546. <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
  2547. <item name="colorAccent">?attr/colorSecondary</item>
  2548. <!-- Widget styles -->
  2549. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  2550. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  2551. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView</item>
  2552. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  2553. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  2554. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  2555. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  2556. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  2557. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  2558. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  2559. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  2560. <item name="snackbarButtonStyle">?attr/borderlessButtonStyle</item>
  2561. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout</item>
  2562. <item name="textInputStyle">@style/Widget.Design.TextInputLayout</item>
  2563. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  2564. <!-- Dialog themes -->
  2565. <item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert</item>
  2566. <item name="android:datePickerDialogTheme" ns2:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  2567. <item name="android:timePickerDialogTheme" ns2:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  2568. </style>
  2569. <style name="Base.V14.Theme.MaterialComponents.Light.Bridge" parent="Platform.MaterialComponents.Light">
  2570. <item name="colorSecondary">?attr/colorPrimary</item>
  2571. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  2572. <!-- Type styles -->
  2573. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  2574. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  2575. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  2576. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  2577. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  2578. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  2579. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  2580. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  2581. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  2582. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  2583. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  2584. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  2585. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  2586. </style>
  2587. <style name="Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Theme.AppCompat.Light.DarkActionBar">
  2588. <item name="colorSecondary">?attr/colorPrimary</item>
  2589. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  2590. <!-- Type styles -->
  2591. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  2592. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  2593. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  2594. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  2595. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  2596. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  2597. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  2598. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  2599. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  2600. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  2601. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  2602. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  2603. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  2604. </style>
  2605. <style name="Base.V14.Theme.MaterialComponents.Light.Dialog" parent="Platform.MaterialComponents.Light.Dialog">
  2606. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  2607. <!-- Colors -->
  2608. <item name="colorPrimary">@color/design_default_color_primary</item>
  2609. <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
  2610. <item name="colorSecondary">?attr/colorPrimary</item>
  2611. <item name="colorAccent">?attr/colorSecondary</item>
  2612. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  2613. <!-- Widget styles -->
  2614. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  2615. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  2616. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView</item>
  2617. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  2618. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  2619. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  2620. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  2621. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  2622. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  2623. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  2624. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  2625. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  2626. <item name="snackbarButtonStyle">?attr/borderlessButtonStyle</item>
  2627. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout</item>
  2628. <item name="textInputStyle">@style/Widget.Design.TextInputLayout</item>
  2629. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  2630. <!-- Type styles -->
  2631. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  2632. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  2633. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  2634. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  2635. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  2636. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  2637. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  2638. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  2639. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  2640. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  2641. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  2642. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  2643. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  2644. </style>
  2645. <style name="Base.V14.ThemeOverlay.MaterialComponents.Dialog" parent="ThemeOverlay.AppCompat.Dialog">
  2646. <!-- Widget styles -->
  2647. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  2648. </style>
  2649. <style name="Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert" parent="ThemeOverlay.AppCompat.Dialog.Alert">
  2650. <!-- Widget styles -->
  2651. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  2652. </style>
  2653. <style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">
  2654. <item name="viewInflaterClass">androidx.appcompat.app.AppCompatViewInflater</item>
  2655. <item name="windowNoTitle">false</item>
  2656. <item name="windowActionBar">true</item>
  2657. <item name="windowActionBarOverlay">false</item>
  2658. <item name="windowActionModeOverlay">false</item>
  2659. <item name="actionBarPopupTheme">@null</item>
  2660. <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
  2661. <!-- Used by MediaRouter -->
  2662. <item name="isLightTheme">false</item>
  2663. <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
  2664. <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
  2665. <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  2666. <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
  2667. <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
  2668. <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
  2669. <!-- Action Bar Styles -->
  2670. <item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item>
  2671. <item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item>
  2672. <item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item>
  2673. <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
  2674. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
  2675. <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.PopupMenu.Overflow</item>
  2676. <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item>
  2677. <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
  2678. <item name="actionBarWidgetTheme">@null</item>
  2679. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
  2680. <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
  2681. <item name="actionBarDivider">?attr/dividerVertical</item>
  2682. <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
  2683. <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
  2684. <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
  2685. <!-- Dropdown Spinner Attributes -->
  2686. <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
  2687. <!-- Action Mode -->
  2688. <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
  2689. <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
  2690. <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
  2691. <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
  2692. <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
  2693. <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
  2694. <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
  2695. <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
  2696. <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
  2697. <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
  2698. <!-- Panel attributes -->
  2699. <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
  2700. <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
  2701. <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
  2702. <item name="android:panelBackground">@android:color/transparent</item>
  2703. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
  2704. <!-- List attributes -->
  2705. <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  2706. <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  2707. <item name="textAppearanceListItemSecondary">@style/TextAppearance.AppCompat.Body1</item>
  2708. <item name="listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  2709. <item name="listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  2710. <item name="listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  2711. <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  2712. <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  2713. <item name="listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  2714. <item name="listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  2715. <!-- Spinner styles -->
  2716. <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
  2717. <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
  2718. <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
  2719. <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
  2720. <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  2721. <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
  2722. <!-- Popup Menu styles -->
  2723. <item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item>
  2724. <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>
  2725. <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>
  2726. <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
  2727. <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
  2728. <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
  2729. <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
  2730. <!-- SearchView attributes -->
  2731. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView</item>
  2732. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  2733. <item name="textColorSearchUrl">@color/abc_search_url_text</item>
  2734. <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
  2735. <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
  2736. <!-- ShareActionProvider attributes -->
  2737. <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
  2738. <!-- Toolbar styles -->
  2739. <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
  2740. <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
  2741. <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
  2742. <item name="editTextBackground">@drawable/abc_edit_text_material</item>
  2743. <item name="editTextColor">?android:attr/textColorPrimary</item>
  2744. <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  2745. <item name="android:textViewStyle">@style/Widget.AppCompat.TextView</item>
  2746. <!-- Color palette -->
  2747. <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
  2748. <item name="colorPrimary">@color/primary_material_dark</item>
  2749. <item name="colorAccent">@color/accent_material_dark</item>
  2750. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  2751. <item name="colorControlActivated">?attr/colorAccent</item>
  2752. <item name="colorControlHighlight">@color/ripple_material_dark</item>
  2753. <item name="colorButtonNormal">@color/button_material_dark</item>
  2754. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
  2755. <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
  2756. <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
  2757. <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
  2758. <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
  2759. <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
  2760. <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
  2761. <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
  2762. <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
  2763. <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
  2764. <!-- Button styles -->
  2765. <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
  2766. <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
  2767. <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
  2768. <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
  2769. <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
  2770. <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
  2771. <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
  2772. <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
  2773. <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
  2774. <!-- Dialog attributes -->
  2775. <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
  2776. <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
  2777. <item name="dialogCornerRadius">@dimen/abc_dialog_corner_radius_material</item>
  2778. <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
  2779. <item name="alertDialogStyle">@style/AlertDialog.AppCompat</item>
  2780. <item name="alertDialogCenterButtons">false</item>
  2781. <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
  2782. <item name="listDividerAlertDialog">@null</item>
  2783. <!-- Define these here; ContextThemeWrappers around themes that define them should
  2784. always clear these values. -->
  2785. <item name="windowFixedWidthMajor">@null</item>
  2786. <item name="windowFixedWidthMinor">@null</item>
  2787. <item name="windowFixedHeightMajor">@null</item>
  2788. <item name="windowFixedHeightMinor">@null</item>
  2789. <!-- Tooltip attributes -->
  2790. <item name="tooltipFrameBackground">@drawable/tooltip_frame_light</item>
  2791. <item name="tooltipForegroundColor">@color/foreground_material_light</item>
  2792. <item name="colorError">@color/error_color_material_dark</item>
  2793. </style>
  2794. <style name="Base.V7.Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat">
  2795. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  2796. <item name="android:colorBackgroundCacheHint">@null</item>
  2797. <item name="android:windowFrame">@null</item>
  2798. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  2799. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  2800. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  2801. <item name="android:windowIsFloating">true</item>
  2802. <item name="android:backgroundDimEnabled">true</item>
  2803. <item name="android:windowContentOverlay">@null</item>
  2804. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  2805. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  2806. <item name="windowActionBar">false</item>
  2807. <item name="windowActionModeOverlay">true</item>
  2808. <item name="listPreferredItemPaddingLeft">24dip</item>
  2809. <item name="listPreferredItemPaddingRight">24dip</item>
  2810. <item name="android:listDivider">@null</item>
  2811. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  2812. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  2813. <item name="android:windowCloseOnTouchOutside">true</item>
  2814. </style>
  2815. <style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light">
  2816. <item name="viewInflaterClass">androidx.appcompat.app.AppCompatViewInflater</item>
  2817. <item name="windowNoTitle">false</item>
  2818. <item name="windowActionBar">true</item>
  2819. <item name="windowActionBarOverlay">false</item>
  2820. <item name="windowActionModeOverlay">false</item>
  2821. <item name="actionBarPopupTheme">@null</item>
  2822. <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
  2823. <!-- Used by MediaRouter -->
  2824. <item name="isLightTheme">true</item>
  2825. <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
  2826. <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
  2827. <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  2828. <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
  2829. <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
  2830. <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
  2831. <!-- Action Bar Styles -->
  2832. <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item>
  2833. <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>
  2834. <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item>
  2835. <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
  2836. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
  2837. <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>
  2838. <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item>
  2839. <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
  2840. <item name="actionBarWidgetTheme">@null</item>
  2841. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
  2842. <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
  2843. <item name="actionBarDivider">?attr/dividerVertical</item>
  2844. <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
  2845. <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
  2846. <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
  2847. <!-- Action Mode -->
  2848. <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
  2849. <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
  2850. <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
  2851. <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
  2852. <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
  2853. <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
  2854. <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
  2855. <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
  2856. <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
  2857. <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
  2858. <!-- Dropdown Spinner Attributes -->
  2859. <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
  2860. <!-- Panel attributes -->
  2861. <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
  2862. <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
  2863. <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
  2864. <item name="android:panelBackground">@android:color/transparent</item>
  2865. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>
  2866. <!-- List attributes -->
  2867. <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  2868. <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  2869. <item name="textAppearanceListItemSecondary">@style/TextAppearance.AppCompat.Body1</item>
  2870. <item name="listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  2871. <item name="listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  2872. <item name="listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  2873. <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  2874. <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  2875. <item name="listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  2876. <item name="listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  2877. <!-- Spinner styles -->
  2878. <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
  2879. <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
  2880. <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
  2881. <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
  2882. <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  2883. <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
  2884. <!-- Popup Menu styles -->
  2885. <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item>
  2886. <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>
  2887. <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>
  2888. <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
  2889. <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
  2890. <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
  2891. <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
  2892. <!-- SearchView attributes -->
  2893. <item name="searchViewStyle">@style/Widget.AppCompat.Light.SearchView</item>
  2894. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  2895. <item name="textColorSearchUrl">@color/abc_search_url_text</item>
  2896. <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
  2897. <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
  2898. <!-- ShareActionProvider attributes -->
  2899. <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
  2900. <!-- Toolbar styles -->
  2901. <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
  2902. <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
  2903. <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
  2904. <item name="editTextBackground">@drawable/abc_edit_text_material</item>
  2905. <item name="editTextColor">?android:attr/textColorPrimary</item>
  2906. <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  2907. <item name="android:textViewStyle">@style/Widget.AppCompat.TextView</item>
  2908. <!-- Color palette -->
  2909. <item name="colorPrimaryDark">@color/primary_dark_material_light</item>
  2910. <item name="colorPrimary">@color/primary_material_light</item>
  2911. <item name="colorAccent">@color/accent_material_light</item>
  2912. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  2913. <item name="colorControlActivated">?attr/colorAccent</item>
  2914. <item name="colorControlHighlight">@color/ripple_material_light</item>
  2915. <item name="colorButtonNormal">@color/button_material_light</item>
  2916. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
  2917. <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
  2918. <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
  2919. <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
  2920. <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
  2921. <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
  2922. <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
  2923. <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
  2924. <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
  2925. <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
  2926. <!-- Button styles -->
  2927. <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
  2928. <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
  2929. <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
  2930. <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
  2931. <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
  2932. <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
  2933. <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
  2934. <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
  2935. <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
  2936. <!-- Dialog attributes -->
  2937. <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
  2938. <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
  2939. <item name="dialogCornerRadius">@dimen/abc_dialog_corner_radius_material</item>
  2940. <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
  2941. <item name="alertDialogStyle">@style/AlertDialog.AppCompat.Light</item>
  2942. <item name="alertDialogCenterButtons">false</item>
  2943. <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
  2944. <item name="listDividerAlertDialog">@null</item>
  2945. <!-- Define these here; ContextThemeWrappers around themes that define them should
  2946. always clear these values. -->
  2947. <item name="windowFixedWidthMajor">@null</item>
  2948. <item name="windowFixedWidthMinor">@null</item>
  2949. <item name="windowFixedHeightMajor">@null</item>
  2950. <item name="windowFixedHeightMinor">@null</item>
  2951. <!-- Tooltip attributes -->
  2952. <item name="tooltipFrameBackground">@drawable/tooltip_frame_dark</item>
  2953. <item name="tooltipForegroundColor">@color/foreground_material_dark</item>
  2954. <item name="colorError">@color/error_color_material_light</item>
  2955. </style>
  2956. <style name="Base.V7.Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light">
  2957. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  2958. <item name="android:colorBackgroundCacheHint">@null</item>
  2959. <item name="android:windowFrame">@null</item>
  2960. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  2961. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  2962. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  2963. <item name="android:windowIsFloating">true</item>
  2964. <item name="android:backgroundDimEnabled">true</item>
  2965. <item name="android:windowContentOverlay">@null</item>
  2966. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  2967. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  2968. <item name="windowActionBar">false</item>
  2969. <item name="windowActionModeOverlay">true</item>
  2970. <item name="listPreferredItemPaddingLeft">24dip</item>
  2971. <item name="listPreferredItemPaddingRight">24dip</item>
  2972. <item name="android:listDivider">@null</item>
  2973. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  2974. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  2975. <item name="android:windowCloseOnTouchOutside">true</item>
  2976. </style>
  2977. <style name="Base.V7.ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat">
  2978. <item name="android:colorBackgroundCacheHint">@null</item>
  2979. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  2980. <item name="android:windowFrame">@null</item>
  2981. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  2982. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  2983. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  2984. <item name="android:windowIsFloating">true</item>
  2985. <item name="android:backgroundDimEnabled">true</item>
  2986. <item name="android:windowContentOverlay">@null</item>
  2987. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  2988. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  2989. <item name="windowActionBar">false</item>
  2990. <item name="windowActionModeOverlay">true</item>
  2991. <item name="listPreferredItemPaddingLeft">24dip</item>
  2992. <item name="listPreferredItemPaddingRight">24dip</item>
  2993. <item name="android:listDivider">@null</item>
  2994. <item name="windowFixedWidthMajor">@null</item>
  2995. <item name="windowFixedWidthMinor">@null</item>
  2996. <item name="windowFixedHeightMajor">@null</item>
  2997. <item name="windowFixedHeightMinor">@null</item>
  2998. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  2999. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  3000. <item name="android:windowCloseOnTouchOutside">true</item>
  3001. </style>
  3002. <style name="Base.V7.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.AutoCompleteTextView">
  3003. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  3004. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  3005. <item name="android:background">?attr/editTextBackground</item>
  3006. <item name="android:textColor">?attr/editTextColor</item>
  3007. <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
  3008. <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
  3009. </style>
  3010. <style name="Base.V7.Widget.AppCompat.EditText" parent="android:Widget.EditText">
  3011. <item name="android:background">?attr/editTextBackground</item>
  3012. <item name="android:textColor">?attr/editTextColor</item>
  3013. <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
  3014. <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
  3015. </style>
  3016. <style name="Base.V7.Widget.AppCompat.Toolbar" parent="android:Widget">
  3017. <item name="titleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item>
  3018. <item name="subtitleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item>
  3019. <item name="android:minHeight">?attr/actionBarSize</item>
  3020. <item name="titleMargin">4dp</item>
  3021. <item name="maxButtonHeight">@dimen/abc_action_bar_default_height_material</item>
  3022. <item name="buttonGravity">top</item>
  3023. <item name="collapseIcon">?attr/homeAsUpIndicator</item>
  3024. <item name="collapseContentDescription">@string/abc_toolbar_collapse_description</item>
  3025. <item name="contentInsetStart">16dp</item>
  3026. <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
  3027. <item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item>
  3028. <item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item>
  3029. </style>
  3030. <style name="Base.Widget.AppCompat.ActionBar" parent="">
  3031. <item name="displayOptions">showTitle</item>
  3032. <item name="divider">?attr/dividerVertical</item>
  3033. <item name="height">?attr/actionBarSize</item>
  3034. <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>
  3035. <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item>
  3036. <item name="background">@null</item>
  3037. <item name="backgroundStacked">@null</item>
  3038. <item name="backgroundSplit">@null</item>
  3039. <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
  3040. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
  3041. <item name="android:gravity">center_vertical</item>
  3042. <item name="contentInsetStart">@dimen/abc_action_bar_content_inset_material</item>
  3043. <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
  3044. <item name="contentInsetEnd">@dimen/abc_action_bar_content_inset_material</item>
  3045. <item name="elevation">@dimen/abc_action_bar_elevation_material</item>
  3046. <item name="popupTheme">?attr/actionBarPopupTheme</item>
  3047. </style>
  3048. <style name="Base.Widget.AppCompat.ActionBar.Solid">
  3049. <item name="background">?attr/colorPrimary</item>
  3050. <item name="backgroundStacked">?attr/colorPrimary</item>
  3051. <item name="backgroundSplit">?attr/colorPrimary</item>
  3052. </style>
  3053. <style name="Base.Widget.AppCompat.ActionBar.TabBar" parent="">
  3054. <item name="divider">?attr/actionBarDivider</item>
  3055. <item name="showDividers">middle</item>
  3056. <item name="dividerPadding">8dip</item>
  3057. </style>
  3058. <style name="Base.Widget.AppCompat.ActionBar.TabText" parent="">
  3059. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium</item>
  3060. <item name="android:textColor">?android:attr/textColorPrimary</item>
  3061. <item name="android:textSize">12sp</item>
  3062. <item name="android:textStyle">bold</item>
  3063. <item name="android:ellipsize">marquee</item>
  3064. <item name="android:maxLines">2</item>
  3065. <item name="android:maxWidth">180dp</item>
  3066. <item name="textAllCaps">true</item>
  3067. </style>
  3068. <style name="Base.Widget.AppCompat.ActionBar.TabView" parent="">
  3069. <item name="android:background">@drawable/abc_tab_indicator_material</item>
  3070. <item name="android:gravity">center_horizontal</item>
  3071. <item name="android:paddingLeft">16dip</item>
  3072. <item name="android:paddingRight">16dip</item>
  3073. <item name="android:layout_width">0dip</item>
  3074. <item name="android:layout_weight">1</item>
  3075. <item name="android:minWidth">80dip</item>
  3076. </style>
  3077. <style name="Base.Widget.AppCompat.ActionButton" parent="RtlUnderlay.Widget.AppCompat.ActionButton">
  3078. <item name="android:background">?attr/actionBarItemBackground</item>
  3079. <item name="android:minWidth">@dimen/abc_action_button_min_width_material</item>
  3080. <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
  3081. <item name="android:scaleType">center</item>
  3082. <item name="android:gravity">center</item>
  3083. <item name="android:maxLines">2</item>
  3084. <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
  3085. </style>
  3086. <style name="Base.Widget.AppCompat.ActionButton.CloseMode">
  3087. <item name="android:background">?attr/controlBackground</item>
  3088. <item name="android:minWidth">56dp</item>
  3089. </style>
  3090. <style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow">
  3091. <item name="srcCompat">@drawable/abc_ic_menu_overflow_material</item>
  3092. <item name="android:background">?attr/actionBarItemBackground</item>
  3093. <item name="android:contentDescription">@string/abc_action_menu_overflow_description</item>
  3094. <item name="android:minWidth">@dimen/abc_action_button_min_width_overflow_material</item>
  3095. <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
  3096. </style>
  3097. <style name="Base.Widget.AppCompat.ActionMode" parent="">
  3098. <item name="background">?attr/actionModeBackground</item>
  3099. <item name="backgroundSplit">?attr/actionModeSplitBackground</item>
  3100. <item name="height">?attr/actionBarSize</item>
  3101. <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>
  3102. <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item>
  3103. <item name="closeItemLayout">@layout/abc_action_mode_close_item_material</item>
  3104. </style>
  3105. <style name="Base.Widget.AppCompat.ActivityChooserView" parent="">
  3106. <item name="android:gravity">center</item>
  3107. <item name="android:background">@drawable/abc_ab_share_pack_mtrl_alpha</item>
  3108. <item name="divider">?attr/dividerVertical</item>
  3109. <item name="showDividers">middle</item>
  3110. <item name="dividerPadding">6dip</item>
  3111. </style>
  3112. <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView"/>
  3113. <style name="Base.Widget.AppCompat.Button" parent="android:Widget">
  3114. <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
  3115. <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
  3116. <item name="android:minHeight">48dip</item>
  3117. <item name="android:minWidth">88dip</item>
  3118. <item name="android:focusable">true</item>
  3119. <item name="android:clickable">true</item>
  3120. <item name="android:gravity">center_vertical|center_horizontal</item>
  3121. </style>
  3122. <style name="Base.Widget.AppCompat.Button.Borderless">
  3123. <item name="android:background">@drawable/abc_btn_borderless_material</item>
  3124. </style>
  3125. <style name="Base.Widget.AppCompat.Button.Borderless.Colored">
  3126. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored</item>
  3127. </style>
  3128. <style name="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Widget.AppCompat.Button.Borderless.Colored">
  3129. <item name="android:minWidth">64dp</item>
  3130. <item name="android:minHeight">@dimen/abc_alert_dialog_button_bar_height</item>
  3131. </style>
  3132. <style name="Base.Widget.AppCompat.Button.Colored">
  3133. <item name="android:background">@drawable/abc_btn_colored_material</item>
  3134. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Colored</item>
  3135. </style>
  3136. <style name="Base.Widget.AppCompat.Button.Small">
  3137. <item name="android:minHeight">48dip</item>
  3138. <item name="android:minWidth">48dip</item>
  3139. </style>
  3140. <style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget">
  3141. <item name="android:background">@null</item>
  3142. </style>
  3143. <style name="Base.Widget.AppCompat.ButtonBar.AlertDialog"/>
  3144. <style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.CompoundButton.CheckBox">
  3145. <item name="android:button">?android:attr/listChoiceIndicatorMultiple</item>
  3146. <item name="buttonCompat">?attr/listChoiceIndicatorMultipleAnimated</item>
  3147. <item name="android:background">?attr/controlBackground</item>
  3148. </style>
  3149. <style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.CompoundButton.RadioButton">
  3150. <item name="android:button">?android:attr/listChoiceIndicatorSingle</item>
  3151. <item name="buttonCompat">?attr/listChoiceIndicatorSingleAnimated</item>
  3152. <item name="android:background">?attr/controlBackground</item>
  3153. </style>
  3154. <style name="Base.Widget.AppCompat.CompoundButton.Switch" parent="android:Widget.CompoundButton">
  3155. <item name="track">@drawable/abc_switch_track_mtrl_alpha</item>
  3156. <item name="android:thumb">@drawable/abc_switch_thumb_material</item>
  3157. <item name="switchTextAppearance">@style/TextAppearance.AppCompat.Widget.Switch</item>
  3158. <item name="android:background">?attr/controlBackground</item>
  3159. <item name="showText">false</item>
  3160. <item name="switchPadding">@dimen/abc_switch_padding</item>
  3161. <item name="android:textOn">@string/abc_capital_on</item>
  3162. <item name="android:textOff">@string/abc_capital_off</item>
  3163. </style>
  3164. <style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
  3165. <item name="barLength">18dp</item>
  3166. <item name="gapBetweenBars">3dp</item>
  3167. <item name="drawableSize">24dp</item>
  3168. </style>
  3169. <style name="Base.Widget.AppCompat.DrawerArrowToggle.Common" parent="">
  3170. <item name="color">?android:attr/textColorSecondary</item>
  3171. <item name="spinBars">true</item>
  3172. <item name="thickness">2dp</item>
  3173. <item name="arrowShaftLength">16dp</item>
  3174. <item name="arrowHeadLength">8dp</item>
  3175. </style>
  3176. <style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="">
  3177. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.DropDownItem</item>
  3178. <item name="android:paddingLeft">8dp</item>
  3179. <item name="android:paddingRight">8dp</item>
  3180. <item name="android:gravity">center_vertical</item>
  3181. </style>
  3182. <style name="Base.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText"/>
  3183. <style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.ImageButton">
  3184. <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
  3185. </style>
  3186. <style name="Base.Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
  3187. <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
  3188. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
  3189. </style>
  3190. <style name="Base.Widget.AppCompat.Light.ActionBar.Solid">
  3191. <item name="background">?attr/colorPrimary</item>
  3192. <item name="backgroundStacked">?attr/colorPrimary</item>
  3193. <item name="backgroundSplit">?attr/colorPrimary</item>
  3194. </style>
  3195. <style name="Base.Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
  3196. </style>
  3197. <style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
  3198. </style>
  3199. <style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
  3200. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  3201. </style>
  3202. <style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
  3203. <item name="android:background">@drawable/abc_tab_indicator_material</item>
  3204. </style>
  3205. <style name="Base.Widget.AppCompat.Light.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
  3206. </style>
  3207. <style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
  3208. <item name="overlapAnchor">true</item>
  3209. <item name="android:dropDownHorizontalOffset">-4dip</item>
  3210. </style>
  3211. <style name="Base.Widget.AppCompat.ListMenuView" parent="android:Widget">
  3212. <item name="subMenuArrow">@drawable/abc_ic_arrow_drop_right_black_24dp</item>
  3213. </style>
  3214. <style name="Base.Widget.AppCompat.ListPopupWindow" parent="">
  3215. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  3216. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  3217. <item name="android:dropDownVerticalOffset">0dip</item>
  3218. <item name="android:dropDownHorizontalOffset">0dip</item>
  3219. <item name="android:dropDownWidth">wrap_content</item>
  3220. </style>
  3221. <style name="Base.Widget.AppCompat.ListView" parent="android:Widget.ListView">
  3222. <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
  3223. </style>
  3224. <style name="Base.Widget.AppCompat.ListView.DropDown">
  3225. <item name="android:divider">@null</item>
  3226. </style>
  3227. <style name="Base.Widget.AppCompat.ListView.Menu" parent="android:Widget.ListView.Menu">
  3228. <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
  3229. <item name="android:divider">?attr/dividerHorizontal</item>
  3230. </style>
  3231. <style name="Base.Widget.AppCompat.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
  3232. </style>
  3233. <style name="Base.Widget.AppCompat.PopupMenu.Overflow">
  3234. <item name="overlapAnchor">true</item>
  3235. <item name="android:dropDownHorizontalOffset">-4dip</item>
  3236. </style>
  3237. <style name="Base.Widget.AppCompat.PopupWindow" parent="android:Widget.PopupWindow">
  3238. </style>
  3239. <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Holo.ProgressBar">
  3240. </style>
  3241. <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Holo.ProgressBar.Horizontal">
  3242. </style>
  3243. <style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.RatingBar">
  3244. <item name="android:progressDrawable">@drawable/abc_ratingbar_material</item>
  3245. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_material</item>
  3246. </style>
  3247. <style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.RatingBar">
  3248. <item name="android:progressDrawable">@drawable/abc_ratingbar_indicator_material</item>
  3249. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_indicator_material</item>
  3250. <item name="android:minHeight">36dp</item>
  3251. <item name="android:maxHeight">36dp</item>
  3252. <item name="android:isIndicator">true</item>
  3253. <item name="android:thumb">@null</item>
  3254. </style>
  3255. <style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.RatingBar">
  3256. <item name="android:progressDrawable">@drawable/abc_ratingbar_small_material</item>
  3257. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_small_material</item>
  3258. <item name="android:minHeight">16dp</item>
  3259. <item name="android:maxHeight">16dp</item>
  3260. <item name="android:isIndicator">true</item>
  3261. <item name="android:thumb">@null</item>
  3262. </style>
  3263. <style name="Base.Widget.AppCompat.SearchView" parent="android:Widget">
  3264. <item name="layout">@layout/abc_search_view</item>
  3265. <item name="queryBackground">@drawable/abc_textfield_search_material</item>
  3266. <item name="submitBackground">@drawable/abc_textfield_search_material</item>
  3267. <item name="closeIcon">@drawable/abc_ic_clear_material</item>
  3268. <item name="searchIcon">@drawable/abc_ic_search_api_material</item>
  3269. <item name="searchHintIcon">@drawable/abc_ic_search_api_material</item>
  3270. <item name="goIcon">@drawable/abc_ic_go_search_api_material</item>
  3271. <item name="voiceIcon">@drawable/abc_ic_voice_search_api_material</item>
  3272. <item name="commitIcon">@drawable/abc_ic_commit_search_api_mtrl_alpha</item>
  3273. <item name="suggestionRowLayout">@layout/abc_search_dropdown_item_icons_2line</item>
  3274. </style>
  3275. <style name="Base.Widget.AppCompat.SearchView.ActionBar">
  3276. <item name="queryBackground">@null</item>
  3277. <item name="submitBackground">@null</item>
  3278. <item name="searchHintIcon">@null</item>
  3279. <item name="defaultQueryHint">@string/abc_search_hint</item>
  3280. </style>
  3281. <style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget">
  3282. <item name="android:indeterminateOnly">false</item>
  3283. <item name="android:progressDrawable">@drawable/abc_seekbar_track_material</item>
  3284. <item name="android:indeterminateDrawable">@drawable/abc_seekbar_track_material</item>
  3285. <item name="android:thumb">@drawable/abc_seekbar_thumb_material</item>
  3286. <item name="android:focusable">true</item>
  3287. <item name="android:paddingLeft">16dip</item>
  3288. <item name="android:paddingRight">16dip</item>
  3289. </style>
  3290. <style name="Base.Widget.AppCompat.SeekBar.Discrete">
  3291. <item name="tickMark">@drawable/abc_seekbar_tick_mark_material</item>
  3292. </style>
  3293. <style name="Base.Widget.AppCompat.Spinner" parent="Platform.Widget.AppCompat.Spinner">
  3294. <item name="android:background">@drawable/abc_spinner_mtrl_am_alpha</item>
  3295. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  3296. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  3297. <item name="android:dropDownVerticalOffset">0dip</item>
  3298. <item name="android:dropDownHorizontalOffset">0dip</item>
  3299. <item name="android:dropDownWidth">wrap_content</item>
  3300. <item name="android:clickable">true</item>
  3301. <item name="android:gravity">left|start|center_vertical</item>
  3302. <item name="overlapAnchor">true</item>
  3303. </style>
  3304. <style name="Base.Widget.AppCompat.Spinner.Underlined">
  3305. <item name="android:background">@drawable/abc_spinner_textfield_background_material</item>
  3306. </style>
  3307. <style name="Base.Widget.AppCompat.TextView" parent="android:Widget.TextView"/>
  3308. <style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.TextView.SpinnerItem">
  3309. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item>
  3310. <item name="android:paddingLeft">8dp</item>
  3311. <item name="android:paddingRight">8dp</item>
  3312. </style>
  3313. <style name="Base.Widget.AppCompat.Toolbar" parent="Base.V7.Widget.AppCompat.Toolbar"/>
  3314. <style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget">
  3315. <item name="android:background">?attr/controlBackground</item>
  3316. <item name="android:minWidth">56dp</item>
  3317. <item name="android:scaleType">center</item>
  3318. </style>
  3319. <style name="Base.Widget.Design.TabLayout" parent="android:Widget">
  3320. <item name="android:background">@null</item>
  3321. <item name="tabIconTint">@null</item>
  3322. <item name="tabMaxWidth">@dimen/design_tab_max_width</item>
  3323. <item name="tabIndicatorAnimationDuration">@integer/design_tab_indicator_anim_duration_ms</item>
  3324. <item name="tabIndicatorColor">?attr/colorAccent</item>
  3325. <item name="tabIndicatorGravity">bottom</item>
  3326. <item name="tabIndicator">@drawable/mtrl_tabs_default_indicator</item>
  3327. <item name="tabPaddingStart">12dp</item>
  3328. <item name="tabPaddingEnd">12dp</item>
  3329. <item name="tabTextAppearance">@style/TextAppearance.Design.Tab</item>
  3330. <item name="tabRippleColor">?attr/colorControlHighlight</item>
  3331. <item name="tabUnboundedRipple">false</item>
  3332. </style>
  3333. <style name="Base.Widget.MaterialComponents.Chip" parent="android:Widget">
  3334. <item name="android:focusable">true</item>
  3335. <item name="android:clickable">true</item>
  3336. <item name="android:checkable">false</item>
  3337. <item name="android:stateListAnimator" ns2:ignore="NewApi">
  3338. @animator/mtrl_chip_state_list_anim
  3339. </item>
  3340. <item name="chipIconVisible">true</item>
  3341. <item name="checkedIconVisible">true</item>
  3342. <item name="closeIconVisible">true</item>
  3343. <item name="chipIcon">@null</item>
  3344. <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_circle</item>
  3345. <item name="closeIcon">@drawable/ic_mtrl_chip_close_circle</item>
  3346. <item name="android:text">@null</item>
  3347. <item name="enforceTextAppearance">true</item>
  3348. <item name="android:textAppearance">?attr/textAppearanceBody2</item>
  3349. <item name="android:textColor">@color/mtrl_chip_text_color</item>
  3350. <item name="closeIconTint">@color/mtrl_chip_close_icon_tint</item>
  3351. <item name="chipBackgroundColor">@color/mtrl_chip_background_color</item>
  3352. <item name="chipStrokeColor">#00000000</item>
  3353. <item name="chipStrokeWidth">0dp</item>
  3354. <item name="rippleColor">@color/mtrl_chip_ripple_color</item>
  3355. <item name="chipMinHeight">32dp</item>
  3356. <item name="chipCornerRadius">16dp</item>
  3357. <item name="chipIconSize">24dp</item>
  3358. <item name="closeIconSize">18dp</item>
  3359. <item name="chipStartPadding">4dp</item>
  3360. <item name="iconStartPadding">0dp</item>
  3361. <item name="iconEndPadding">0dp</item>
  3362. <item name="textStartPadding">8dp</item>
  3363. <item name="textEndPadding">6dp</item>
  3364. <item name="closeIconStartPadding">2dp</item>
  3365. <item name="closeIconEndPadding">2dp</item>
  3366. <item name="chipEndPadding">6dp</item>
  3367. </style>
  3368. <style name="Base.Widget.MaterialComponents.TextInputEditText" parent="Widget.AppCompat.EditText">
  3369. <item name="android:paddingStart" ns2:ignore="NewApi">12dp</item>
  3370. <item name="android:paddingEnd" ns2:ignore="NewApi">12dp</item>
  3371. <item name="android:paddingLeft">12dp</item>
  3372. <item name="android:paddingRight">12dp</item>
  3373. <item name="android:paddingTop">16dp</item>
  3374. <item name="android:paddingBottom">16dp</item>
  3375. </style>
  3376. <style name="Base.Widget.MaterialComponents.TextInputLayout" parent="Widget.Design.TextInputLayout">
  3377. <item name="boxBackgroundMode">outline</item>
  3378. <item name="boxBackgroundColor">@null</item>
  3379. <item name="boxCollapsedPaddingTop">0dp</item>
  3380. <item name="boxCornerRadiusTopStart">@dimen/mtrl_textinput_box_corner_radius_medium</item>
  3381. <item name="boxCornerRadiusTopEnd">@dimen/mtrl_textinput_box_corner_radius_medium</item>
  3382. <item name="boxCornerRadiusBottomEnd">@dimen/mtrl_textinput_box_corner_radius_medium</item>
  3383. <item name="boxCornerRadiusBottomStart">@dimen/mtrl_textinput_box_corner_radius_medium</item>
  3384. <item name="boxStrokeColor">?attr/colorControlActivated</item>
  3385. </style>
  3386. <style name="BodyTextStyle">
  3387. <item name="android:layout_width">wrap_content</item>
  3388. <item name="android:layout_height">wrap_content</item>
  3389. <item name="android:textSize">@dimen/BodyTextSize</item>
  3390. <item name="android:textColor">@color/FG_1</item>
  3391. </style>
  3392. <style name="BottomSheetDialog" parent="android:style/Theme.Dialog">
  3393. <item name="android:windowBackground">@android:color/transparent</item>
  3394. <item name="android:windowAnimationStyle">@style/BottomToTopSlowAnimation</item>
  3395. </style>
  3396. <style name="BottomToTopAnimation" parent="@android:style/Animation.Dialog">
  3397. <item name="android:windowEnterAnimation">@anim/in_from_bottom</item>
  3398. <item name="android:windowExitAnimation">@anim/out_to_bottom</item>
  3399. </style>
  3400. <style name="BottomToTopSlowAnimation" parent="@android:style/Animation.Dialog">
  3401. <item name="android:windowEnterAnimation">@anim/in_from_bottom_slow</item>
  3402. <item name="android:windowExitAnimation">@anim/out_to_bottom_slow</item>
  3403. </style>
  3404. <style name="CardView" parent="Base.CardView">
  3405. </style>
  3406. <style name="CardView.Dark">
  3407. <item name="cardBackgroundColor">@color/cardview_dark_background</item>
  3408. </style>
  3409. <style name="CardView.Light">
  3410. <item name="cardBackgroundColor">@color/cardview_light_background</item>
  3411. </style>
  3412. <style name="ConfirmDialogEditText" parent="@android:style/Widget.EditText">
  3413. <item name="android:layout_width">fill_parent</item>
  3414. <item name="android:layout_height">wrap_content</item>
  3415. <item name="android:layout_marginTop">@dimen/Edge_2A</item>
  3416. <item name="android:textSize">@dimen/GroupTitleTextSize</item>
  3417. <item name="android:textCursorDrawable">@drawable/green_cursor</item>
  3418. <item name="android:textColor">@color/normal_text_color</item>
  3419. <item name="android:textColorHint">@color/hint_text_color</item>
  3420. <item name="android:background">@drawable/input_gray_bg</item>
  3421. <item name="android:maxLines">2</item>
  3422. <item name="android:minHeight">32dp</item>
  3423. </style>
  3424. <style name="ConfirmDialogSource">
  3425. <item name="android:layout_width">fill_parent</item>
  3426. <item name="android:layout_height">wrap_content</item>
  3427. <item name="android:layout_marginTop">@dimen/BasicPaddingSize</item>
  3428. <item name="android:textColor">@color/dialog_msg_color</item>
  3429. <item name="android:textSize">@dimen/SmallestTextSize</item>
  3430. <item name="android:ellipsize">end</item>
  3431. <item name="android:maxLines">1</item>
  3432. </style>
  3433. <style name="CustomSheetStyle" parent="android:style/Theme.Dialog">
  3434. <item name="android:windowBackground">@android:color/transparent</item>
  3435. <item name="android:windowNoTitle">true</item>
  3436. <item name="android:windowIsFloating">true</item>
  3437. <item name="android:windowContentOverlay">@null</item>
  3438. <item name="android:scrollHorizontally">true</item>
  3439. <item name="android:windowFrame">@null</item>
  3440. <item name="android:windowIsTranslucent">false</item>
  3441. <item name="android:backgroundDimEnabled">true</item>
  3442. </style>
  3443. <style name="DescTextStyle">
  3444. <item name="android:layout_width">wrap_content</item>
  3445. <item name="android:layout_height">wrap_content</item>
  3446. <item name="android:textSize">@dimen/DescTextSize</item>
  3447. <item name="android:lineSpacingMultiplier">1.4</item>
  3448. <item name="android:textColor">@color/BW_0_Alpha_0_3</item>
  3449. </style>
  3450. <style name="DividerLine">
  3451. <item name="android:layout_width">match_parent</item>
  3452. <item name="android:layout_height">@dimen/bottomsheet_dividing_line_height</item>
  3453. <item name="android:background">@color/FG_3</item>
  3454. </style>
  3455. <style name="EmDescTextStyle">
  3456. <item name="android:layout_width">wrap_content</item>
  3457. <item name="android:layout_height">wrap_content</item>
  3458. <item name="android:textSize">@dimen/DescTextSize</item>
  3459. <item name="android:lineSpacingMultiplier">1.4</item>
  3460. <item name="android:textColor">@color/FG_1</item>
  3461. </style>
  3462. <style name="EmGroupTitleTextStyle">
  3463. <item name="android:layout_width">wrap_content</item>
  3464. <item name="android:layout_height">wrap_content</item>
  3465. <item name="android:textSize">@dimen/GroupTitleTextSize</item>
  3466. <item name="android:textStyle">bold</item>
  3467. <item name="android:lineSpacingMultiplier">1.4</item>
  3468. <item name="android:textColor">@color/FG_0</item>
  3469. </style>
  3470. <style name="EmTitleTextStyle">
  3471. <item name="android:layout_width">wrap_content</item>
  3472. <item name="android:layout_height">wrap_content</item>
  3473. <item name="android:textSize">@dimen/BodyTextSize</item>
  3474. <item name="android:textStyle">bold</item>
  3475. <item name="android:lineSpacingMultiplier">1.4</item>
  3476. <item name="android:textColor">@color/FG_0</item>
  3477. </style>
  3478. <style name="FootNoteTextStyle">
  3479. <item name="android:layout_width">wrap_content</item>
  3480. <item name="android:layout_height">wrap_content</item>
  3481. <item name="android:textSize">@dimen/FootnoteextSize</item>
  3482. <item name="android:lineSpacingMultiplier">1.4</item>
  3483. <item name="android:textColor">@color/FG_2</item>
  3484. </style>
  3485. <style name="GreenSmallButton" parent="@style/SmallButton">
  3486. <item name="android:background">@drawable/btn_solid_green</item>
  3487. </style>
  3488. <style name="GroupTitleTextStyle">
  3489. <item name="android:layout_width">wrap_content</item>
  3490. <item name="android:layout_height">wrap_content</item>
  3491. <item name="android:textSize">@dimen/DescTextSize</item>
  3492. <item name="android:lineSpacingMultiplier">1.4</item>
  3493. <item name="android:textColor">@color/FG_1</item>
  3494. </style>
  3495. <style name="HalfBottomDialog" parent="android:style/Theme.Dialog">
  3496. <item name="android:windowBackground">@android:color/transparent</item>
  3497. <item name="android:windowAnimationStyle">@style/BottomToTopSlowAnimation</item>
  3498. <item name="android:windowNoTitle">true</item>
  3499. </style>
  3500. <style name="HeadlineTextStyle">
  3501. <item name="android:layout_width">wrap_content</item>
  3502. <item name="android:layout_height">wrap_content</item>
  3503. <item name="android:textSize">@dimen/HeadlineTextSize</item>
  3504. <item name="android:lineSpacingMultiplier">1.4</item>
  3505. <item name="android:textColor">@color/FG_0</item>
  3506. </style>
  3507. <style name="MMActionBar.SubTitleTextStyle" parent="@style/TextAppearance.AppCompat.Widget.ActionBar.Title">
  3508. <item name="android:textColor">@color/actionbar_subtitle_color</item>
  3509. <item name="android:textSize">@dimen/FootnoteextSize</item>
  3510. </style>
  3511. <style name="MMActionBar.TitleTextStyle" parent="@style/TextAppearance.AppCompat.Widget.ActionBar.Title">
  3512. <item name="android:textColor">@color/actionbar_title_color</item>
  3513. <item name="android:textSize">@dimen/BodyTextSize</item>
  3514. </style>
  3515. <style name="MMBriefText">
  3516. <item name="android:layout_width">fill_parent</item>
  3517. <item name="android:layout_height">wrap_content</item>
  3518. <item name="android:textColor">@color/desc_text_color</item>
  3519. <item name="android:textSize">@dimen/DescTextSize</item>
  3520. </style>
  3521. <style name="MMCheckBox" parent="@android:style/Widget.CompoundButton.CheckBox">
  3522. <item name="android:background">?attr/checkbox_selector</item>
  3523. <item name="android:button">@null</item>
  3524. </style>
  3525. <style name="MMCheckBoxRed" parent="@android:style/Widget.CompoundButton.CheckBox">
  3526. <item name="android:background">@drawable/mm_checkbox_btn_red</item>
  3527. <item name="android:button">@null</item>
  3528. </style>
  3529. <style name="MMEditText">
  3530. <item name="android:layout_height">wrap_content</item>
  3531. <item name="android:layout_width">wrap_content</item>
  3532. <item name="android:textSize">@dimen/NormalTextSize</item>
  3533. <item name="android:minHeight">@dimen/Edge_4A</item>
  3534. <item name="android:paddingTop">@dimen/BasicPaddingSize</item>
  3535. <item name="android:paddingBottom">@dimen/BasicPaddingSize</item>
  3536. <item name="android:paddingRight">@dimen/Edge_2A</item>
  3537. <item name="android:singleLine">true</item>
  3538. <item name="android:background">@drawable/edittext_bg_selector</item>
  3539. <item name="android:gravity">center_vertical</item>
  3540. <item name="android:textColor">@color/FG_0</item>
  3541. <item name="android:textColorHint">@color/FG_2</item>
  3542. <item name="android:textCursorDrawable">@drawable/green_cursor</item>
  3543. </style>
  3544. <style name="MMFontPreferenceLarge" parent="@style/WCTextStyleTitle">
  3545. <item name="android:singleLine">true</item>
  3546. <item name="android:ellipsize">end</item>
  3547. <item name="android:gravity">center_vertical</item>
  3548. </style>
  3549. <style name="MMFontPreferenceSmall" parent="@style/MMPreferenceTextSmall">
  3550. <item name="android:layout_width">wrap_content</item>
  3551. <item name="android:layout_height">wrap_content</item>
  3552. <item name="android:singleLine">true</item>
  3553. <item name="android:ellipsize">end</item>
  3554. <item name="android:gravity">center_vertical</item>
  3555. </style>
  3556. <style name="MMFontPreferenceSummary" parent="MMFontPreferenceSmall">
  3557. <item name="android:textAppearance">@style/MMPreferenceTextSmall</item>
  3558. </style>
  3559. <style name="MMFormInputEditText" parent="@style/MMLineEditText">
  3560. <item name="android:background">@null</item>
  3561. <item name="android:layout_height">fill_parent</item>
  3562. <item name="android:layout_marginLeft">@dimen/LittlePadding</item>
  3563. <item name="android:textColorHint">@color/form_hint_text_color</item>
  3564. </style>
  3565. <style name="MMFormInputTitleTextView" parent="@style/MMLineEditText">
  3566. <item name="android:layout_width">@dimen/Edge_12A</item>
  3567. <item name="android:layout_height">fill_parent</item>
  3568. <item name="android:gravity">center_vertical</item>
  3569. <item name="android:textColor">@color/normal_text_color</item>
  3570. <item name="android:textSize">@dimen/NormalTextSize</item>
  3571. <item name="android:background">@null</item>
  3572. </style>
  3573. <style name="MMFormInputView" parent="@style/MMLineEditText">
  3574. <item name="android:layout_width">fill_parent</item>
  3575. <item name="android:layout_height">wrap_content</item>
  3576. <item name="android:minHeight">@dimen/SmallListHeight</item>
  3577. <item name="android:focusable">true</item>
  3578. <item name="android:focusableInTouchMode">true</item>
  3579. <item name="android:importantForAutofill">noExcludeDescendants</item>
  3580. <item name="android:orientation">horizontal</item>
  3581. </style>
  3582. <style name="MMFullLineItem">
  3583. <item name="android:background">@drawable/settings_line</item>
  3584. <item name="android:paddingLeft">@dimen/EdgePadding</item>
  3585. <item name="android:minHeight">@dimen/DefaultListItemHeight</item>
  3586. </style>
  3587. <style name="MMLargeButton">
  3588. <item name="android:layout_width">fill_parent</item>
  3589. <item name="android:layout_height">wrap_content</item>
  3590. <item name="android:minHeight">@dimen/NormalButtonHeight</item>
  3591. <item name="android:gravity">center</item>
  3592. <item name="android:textSize">@dimen/LargeBtnTextSize</item>
  3593. <item name="android:textColor">@color/white_text_color_selector</item>
  3594. <item name="android:paddingLeft">@dimen/SmallBtnPadding</item>
  3595. <item name="android:paddingRight">@dimen/SmallBtnPadding</item>
  3596. <item name="android:textAllCaps">false</item>
  3597. </style>
  3598. <style name="MMLineEditText" parent="@style/MMEditText">
  3599. <item name="android:layout_width">fill_parent</item>
  3600. </style>
  3601. <style name="MMList">
  3602. <item name="android:dividerHeight">0px</item>
  3603. <item name="android:fadingEdge">none</item>
  3604. <item name="android:scrollbars">none</item>
  3605. <item name="android:listSelector">@color/transparent</item>
  3606. <item name="android:layout_width">fill_parent</item>
  3607. <item name="android:layout_height">fill_parent</item>
  3608. <item name="android:divider">@null</item>
  3609. <item name="android:background">@color/default_background_color</item>
  3610. </style>
  3611. <style name="MMMiddleButton">
  3612. <item name="android:layout_width">wrap_content</item>
  3613. <item name="android:layout_height">wrap_content</item>
  3614. <item name="android:minHeight">@dimen/MiddleBtnHeight</item>
  3615. <item name="android:minWidth">@dimen/MiddleBtnWidth</item>
  3616. <item name="android:gravity">center</item>
  3617. <item name="android:textSize">@dimen/MiddleBtnTextSize</item>
  3618. <item name="android:textColor">@color/white_text_color_selector</item>
  3619. <item name="android:paddingLeft">@dimen/LargeBtnPadding</item>
  3620. <item name="android:paddingRight">@dimen/LargeBtnPadding</item>
  3621. <item name="android:textAllCaps">false</item>
  3622. </style>
  3623. <style name="MMPopupMenuButton">
  3624. <item name="android:layout_width">fill_parent</item>
  3625. <item name="android:layout_height">fill_parent</item>
  3626. <item name="android:gravity">center</item>
  3627. <item name="android:layout_gravity">center</item>
  3628. <item name="android:textColor">@color/FG_0</item>
  3629. <item name="android:textSize">@dimen/NormalTextSize</item>
  3630. <item name="android:ellipsize">end</item>
  3631. <item name="android:singleLine">true</item>
  3632. </style>
  3633. <style name="MMPreferenceTextLarge" parent="@style/WCTextStyleTitle">
  3634. <item name="android:singleLine">true</item>
  3635. <item name="android:ellipsize">end</item>
  3636. </style>
  3637. <style name="MMPreferenceTextSmall">
  3638. <item name="android:textSize">@dimen/BodyTextSize</item>
  3639. <item name="android:textColor">@color/FG_1</item>
  3640. <item name="android:singleLine">true</item>
  3641. <item name="android:ellipsize">end</item>
  3642. </style>
  3643. <style name="MMProgressHorizontal" parent="@android:style/Widget.ProgressBar.Horizontal">
  3644. <item name="android:progressDrawable">@drawable/mm_progress_horizontal</item>
  3645. <item name="android:minHeight">@dimen/big_horizontal_progress_height</item>
  3646. </style>
  3647. <style name="MMProgressHorizontalSmall" parent="@android:style/Widget.ProgressBar.Horizontal">
  3648. <item name="android:progressDrawable">@drawable/mm_progress_horizontal</item>
  3649. <item name="android:minHeight">@dimen/small_horizontal_progress_height</item>
  3650. </style>
  3651. <style name="MMProgressTransparentHorizontal" parent="@android:style/Widget.ProgressBar.Horizontal">
  3652. <item name="android:progressDrawable">@drawable/mm_progress_transparent_horizontal</item>
  3653. <item name="android:minHeight">@dimen/big_horizontal_progress_height</item>
  3654. </style>
  3655. <style name="MMRadioBtn" parent="@android:style/Widget.CompoundButton.RadioButton">
  3656. <item name="android:button">?attr/radio_selector</item>
  3657. <item name="android:textColor">@color/FG_0</item>
  3658. </style>
  3659. <style name="MMRadioBtnRed" parent="@android:style/Widget.CompoundButton.RadioButton">
  3660. <item name="android:button">@drawable/round_selector_red</item>
  3661. </style>
  3662. <style name="MMRatingBar" parent="@style/Widget.AppCompat.RatingBar">
  3663. <item name="android:progressDrawable">@drawable/rating_bar</item>
  3664. <item name="android:minHeight">32dp</item>
  3665. <item name="android:maxHeight">32dp</item>
  3666. <item name="android:thumb">@null</item>
  3667. </style>
  3668. <style name="MMRatingBarIndicator" parent="@style/Widget.AppCompat.RatingBar.Indicator">
  3669. <item name="android:progressDrawable">@drawable/rating_bar_indicator</item>
  3670. <item name="android:minHeight">16dp</item>
  3671. <item name="android:maxHeight">16dp</item>
  3672. <item name="android:thumb">@null</item>
  3673. <item name="android:isIndicator">true</item>
  3674. </style>
  3675. <style name="MMSeekBarStyle" parent="@android:style/Widget.ProgressBar.Horizontal">
  3676. <item name="android:progressDrawable">@drawable/mm_progress_horizontal</item>
  3677. <item name="android:minHeight">@dimen/small_horizontal_progress_height</item>
  3678. <item name="android:maxHeight">@dimen/small_horizontal_progress_height</item>
  3679. <item name="android:thumb">@drawable/seekbar_slider_block</item>
  3680. <item name="android:background">@null</item>
  3681. <item name="android:splitTrack">false</item>
  3682. </style>
  3683. <style name="MMSettingCatalog">
  3684. <item name="android:layout_width">fill_parent</item>
  3685. <item name="android:layout_height">wrap_content</item>
  3686. <!-- <item name="android:background">@drawable/list_thicklinecell_bg</item> -->
  3687. <item name="android:paddingTop">@dimen/SettingCatalogPadding</item>
  3688. <item name="android:paddingBottom">@dimen/LittlePadding</item>
  3689. <item name="android:orientation">horizontal</item>
  3690. <item name="android:gravity">center_vertical</item>
  3691. <item name="android:textSize">@dimen/HintTextSize</item>
  3692. <item name="android:textColor">@color/hint_text_color</item>
  3693. </style>
  3694. <style name="MMSmallButton">
  3695. <item name="android:layout_width">wrap_content</item>
  3696. <item name="android:layout_height">wrap_content</item>
  3697. <item name="android:minHeight">@dimen/SmallButtonHeight</item>
  3698. <item name="android:minWidth">@dimen/SmallBtnWidth</item>
  3699. <item name="android:gravity">center</item>
  3700. <item name="android:textSize">@dimen/SmallBtnTextSize</item>
  3701. <item name="android:textColor">@color/white_text_color_selector</item>
  3702. <item name="android:paddingLeft">@dimen/SmallBtnPadding</item>
  3703. <item name="android:paddingRight">@dimen/SmallBtnPadding</item>
  3704. <item name="android:textAllCaps">false</item>
  3705. </style>
  3706. <style name="MMSmallTextSettingCatalog" parent="MMSettingCatalog">
  3707. <item name="android:paddingTop">@dimen/Edge_2A</item>
  3708. </style>
  3709. <style name="MMSolidGoldRedLargeButton" parent="@style/MMLargeButton">
  3710. <item name="android:textColor">@color/white_text_color_selector</item>
  3711. <item name="android:background">@drawable/btn_solid_gold_red</item>
  3712. </style>
  3713. <style name="MMSolidGreenLargeButton" parent="@style/MMLargeButton">
  3714. <item name="android:textColor">@color/color_btn_text_selector</item>
  3715. <item name="android:background">@drawable/btn_solid_green</item>
  3716. </style>
  3717. <style name="MMSolidGreenMiddleButton" parent="@style/MMMiddleButton">
  3718. <item name="android:textColor">@color/color_btn_text_selector</item>
  3719. <item name="android:background">@drawable/btn_solid_green</item>
  3720. </style>
  3721. <style name="MMSolidGreenSmallButton" parent="@style/MMSmallButton">
  3722. <item name="android:textColor">@color/color_btn_text_selector</item>
  3723. <item name="android:background">@drawable/btn_solid_green_small</item>
  3724. </style>
  3725. <style name="MMSolidRedLargeButton" parent="@style/MMLargeButton">
  3726. <item name="android:textColor">@color/color_btn_text_selector</item>
  3727. <item name="android:background">@drawable/btn_solid_red</item>
  3728. </style>
  3729. <style name="MMSolidRedMiddleButton" parent="@style/MMMiddleButton">
  3730. <item name="android:textColor">@color/white_text_color_selector</item>
  3731. <item name="android:background">@drawable/btn_solid_red</item>
  3732. </style>
  3733. <style name="MMSolidRedSmallButton" parent="@style/MMSmallButton">
  3734. <item name="android:textColor">@color/white_text_color_selector</item>
  3735. <item name="android:background">@drawable/btn_solid_red</item>
  3736. </style>
  3737. <style name="MMSolidWhiteLargeButton" parent="@style/MMLargeButton">
  3738. <item name="android:textColor">@color/white_btn_text_selector</item>
  3739. <item name="android:background">@drawable/btn_solid_white</item>
  3740. </style>
  3741. <style name="MMSolidWhiteLargeButtonNew" parent="@style/MMLargeButton">
  3742. <item name="android:textColor">@color/white_btn_text_selector</item>
  3743. <item name="android:background">@drawable/btn_solid_white_new</item>
  3744. </style>
  3745. <style name="MMSolidWhiteMiddleButton" parent="@style/MMMiddleButton">
  3746. <item name="android:textColor">@color/white_btn_text_selector</item>
  3747. <item name="android:background">@drawable/btn_solid_white</item>
  3748. </style>
  3749. <style name="MMSolidWhiteMiddleButtonNew" parent="@style/MMMiddleButton">
  3750. <item name="android:textColor">@color/white_btn_text_selector</item>
  3751. <item name="android:background">@drawable/btn_solid_white_new</item>
  3752. </style>
  3753. <style name="MMSolidWhiteSmallButton" parent="@style/MMSmallButton">
  3754. <item name="android:textColor">@color/white_btn_text_selector</item>
  3755. <item name="android:background">@drawable/btn_solid_white</item>
  3756. </style>
  3757. <style name="MMSolidWhiteSmallButtonNew" parent="@style/MMSmallButton">
  3758. <item name="android:textColor">@color/white_btn_text_selector</item>
  3759. <item name="android:background">@drawable/btn_solid_white_new</item>
  3760. </style>
  3761. <style name="MMTextCheckBox" parent="@android:style/Widget.CompoundButton.CheckBox">
  3762. <item name="android:background">@null</item>
  3763. <item name="android:drawableLeft">?attr/checkbox_selector</item>
  3764. <item name="android:drawablePadding">8dp</item>
  3765. <item name="android:textSize">@dimen/NormalTextSize</item>
  3766. <item name="android:textColor">@color/normal_text_color</item>
  3767. <item name="android:button">@null</item>
  3768. </style>
  3769. <style name="MMlineGreenLargeButton" parent="@style/MMSolidWhiteLargeButton">
  3770. </style>
  3771. <style name="MMlineGreenMiddleButton" parent="@style/MMSolidWhiteMiddleButton">
  3772. </style>
  3773. <style name="MMlineGreenSmallButton" parent="@style/MMSolidWhiteSmallButton">
  3774. </style>
  3775. <style name="MMlineGreyLargeButton" parent="@style/MMSolidWhiteLargeButton">
  3776. </style>
  3777. <style name="MMlineGreyMiddleButton" parent="@style/MMSolidWhiteMiddleButton">
  3778. </style>
  3779. <style name="MMlineGreySmallButton" parent="@style/MMSolidWhiteSmallButton">
  3780. </style>
  3781. <style name="NewTipsStyle">
  3782. <item name="android:layout_height">wrap_content</item>
  3783. <item name="android:layout_width">wrap_content</item>
  3784. <item name="android:textColor">@color/White</item>
  3785. <item name="android:textSize">11dp</item>
  3786. <item name="android:text">@string/ui_new</item>
  3787. <item name="android:gravity">center</item>
  3788. <item name="android:background">@drawable/new_tips_bg</item>
  3789. </style>
  3790. <style name="OperateItem">
  3791. <item name="android:layout_width">wrap_content</item>
  3792. <item name="android:layout_height">wrap_content</item>
  3793. <item name="android:minWidth">40dp</item>
  3794. <item name="android:paddingBottom">9dp</item>
  3795. <item name="android:paddingLeft">12dp</item>
  3796. <item name="android:paddingRight">12dp</item>
  3797. <item name="android:paddingTop">9dp</item>
  3798. <item name="android:gravity">center</item>
  3799. <item name="android:textColor">@color/White</item>
  3800. <item name="android:textSize">@dimen/DescTextSize</item>
  3801. </style>
  3802. <style name="OperateTextView">
  3803. <item name="android:layout_width">wrap_content</item>
  3804. <item name="android:layout_height">wrap_content</item>
  3805. <item name="android:paddingBottom">12dp</item>
  3806. <item name="android:paddingLeft">16dp</item>
  3807. <item name="android:paddingRight">16dp</item>
  3808. <item name="android:paddingTop">12dp</item>
  3809. <item name="android:textColor">@color/black_text_color</item>
  3810. <item name="android:textSize">14sp</item>
  3811. </style>
  3812. <style name="Picture.Theme.AlertDialog" parent="android:Theme.Dialog">
  3813. <item name="android:windowIsFloating">true</item>
  3814. <item name="android:windowIsTranslucent">false</item>
  3815. <item name="android:windowNoTitle">true</item>
  3816. <item name="android:windowFullscreen">false</item>
  3817. <item name="android:windowBackground">@color/ps_color_transparent</item>
  3818. <item name="android:windowAnimationStyle">@null</item>
  3819. <item name="android:backgroundDimEnabled">false</item>
  3820. <item name="android:backgroundDimAmount">0.4</item>
  3821. </style>
  3822. <style name="Picture.Theme.Dialog" parent="@android:style/Theme.Dialog">
  3823. <!-- 边框 -->
  3824. <item name="android:windowFrame">@android:color/transparent</item>
  3825. <!-- 是否浮现在activity之上 -->
  3826. <item name="android:windowIsFloating">true</item>
  3827. <!-- 半透明 -->
  3828. <item name="android:windowIsTranslucent">false</item>
  3829. <!-- 无标题 -->
  3830. <item name="android:windowNoTitle">true</item>
  3831. <item name="android:windowContentOverlay">@null</item>
  3832. <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
  3833. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  3834. <!-- 自己想要的背景 -->
  3835. <item name="android:windowBackground">@android:color/transparent</item>
  3836. </style>
  3837. <style name="Picture.Theme.Dialog.AudioStyle">
  3838. <item name="android:windowEnterAnimation">@anim/ps_anim_enter</item>
  3839. <item name="android:windowExitAnimation">@anim/ps_anim_exit</item>
  3840. </style>
  3841. <style name="Picture.Theme.Translucent" parent="Base.Theme.NoActionBar">
  3842. <item name="android:windowBackground">@color/ps_color_transparent</item>
  3843. <item name="android:windowNoTitle">true</item>
  3844. <item name="android:windowIsTranslucent">true</item>
  3845. </style>
  3846. <style mce_bogus="1" name="PictureThemeDialogFragmentAnim" parent="android:Animation">
  3847. <item name="android:windowEnterAnimation">@anim/ps_anim_up_in</item>
  3848. <item name="android:windowExitAnimation">@anim/ps_anim_down_out</item>
  3849. </style>
  3850. <style name="PictureThemeDialogWindowStyle">
  3851. <item name="android:windowEnterAnimation">@anim/ps_anim_modal_in</item>
  3852. <item name="android:windowExitAnimation">@anim/ps_anim_modal_out</item>
  3853. </style>
  3854. <style name="PictureThemeWindowStyle">
  3855. <item name="android:windowEnterAnimation">@anim/ps_anim_album_show</item>
  3856. <item name="android:windowExitAnimation">@anim/ps_anim_album_dismiss</item>
  3857. </style>
  3858. <style name="Platform.AppCompat" parent="android:Theme.Holo">
  3859. <item name="android:windowNoTitle">true</item>
  3860. <item name="android:windowActionBar">false</item>
  3861. <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
  3862. <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
  3863. <item name="android:borderlessButtonStyle">?attr/borderlessButtonStyle</item>
  3864. <!-- Window colors -->
  3865. <item name="android:colorForeground">@color/foreground_material_dark</item>
  3866. <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
  3867. <item name="android:colorBackground">@color/background_material_dark</item>
  3868. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
  3869. <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
  3870. <item name="android:backgroundDimAmount">0.6</item>
  3871. <item name="android:windowBackground">@color/background_material_dark</item>
  3872. <!-- Text colors -->
  3873. <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
  3874. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
  3875. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  3876. <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
  3877. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
  3878. <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
  3879. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
  3880. <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
  3881. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
  3882. <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
  3883. <item name="android:textColorHighlightInverse">@color/highlighted_text_material_light</item>
  3884. <item name="android:textColorLink">?attr/colorAccent</item>
  3885. <item name="android:textColorLinkInverse">?attr/colorAccent</item>
  3886. <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
  3887. <!-- Text styles -->
  3888. <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
  3889. <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
  3890. <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
  3891. <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
  3892. <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
  3893. <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  3894. <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
  3895. <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
  3896. <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
  3897. <item name="listChoiceIndicatorSingleAnimated">@drawable/abc_btn_radio_material_anim</item>
  3898. <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
  3899. <item name="listChoiceIndicatorMultipleAnimated">@drawable/abc_btn_check_material_anim</item>
  3900. <!-- List attributes -->
  3901. <item name="android:textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  3902. <item name="android:textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  3903. <!-- textAppearanceListItemSecondary is 21+ only so not safe to apply here-->
  3904. <item name="android:listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  3905. <item name="android:listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  3906. <item name="android:listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  3907. <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  3908. <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  3909. <item name="android:listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  3910. <item name="android:listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  3911. <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
  3912. <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
  3913. <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
  3914. <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
  3915. <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_dark</item>
  3916. <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_dark</item>
  3917. <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_dark</item>
  3918. </style>
  3919. <style name="Platform.AppCompat.Light" parent="android:Theme.Holo.Light">
  3920. <item name="android:windowNoTitle">true</item>
  3921. <item name="android:windowActionBar">false</item>
  3922. <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
  3923. <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
  3924. <item name="android:borderlessButtonStyle">?attr/borderlessButtonStyle</item>
  3925. <!-- Window colors -->
  3926. <item name="android:colorForeground">@color/foreground_material_light</item>
  3927. <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
  3928. <item name="android:colorBackground">@color/background_material_light</item>
  3929. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
  3930. <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
  3931. <item name="android:backgroundDimAmount">0.6</item>
  3932. <item name="android:windowBackground">@color/background_material_light</item>
  3933. <!-- Text colors -->
  3934. <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
  3935. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
  3936. <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
  3937. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
  3938. <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
  3939. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
  3940. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
  3941. <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  3942. <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
  3943. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
  3944. <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
  3945. <item name="android:textColorHighlightInverse">@color/highlighted_text_material_dark</item>
  3946. <item name="android:textColorLink">?attr/colorAccent</item>
  3947. <item name="android:textColorLinkInverse">?attr/colorAccent</item>
  3948. <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
  3949. <!-- Text styles -->
  3950. <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
  3951. <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
  3952. <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
  3953. <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
  3954. <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
  3955. <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  3956. <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
  3957. <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
  3958. <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
  3959. <item name="listChoiceIndicatorSingleAnimated">@drawable/abc_btn_radio_material_anim</item>
  3960. <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
  3961. <item name="listChoiceIndicatorMultipleAnimated">@drawable/abc_btn_check_material_anim</item>
  3962. <!-- List attributes -->
  3963. <item name="android:textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  3964. <item name="android:textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  3965. <!-- textAppearanceListItemSecondary is 21+ only so not safe to apply here-->
  3966. <item name="android:listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  3967. <item name="android:listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  3968. <item name="android:listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  3969. <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  3970. <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  3971. <item name="android:listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  3972. <item name="android:listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  3973. <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
  3974. <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
  3975. <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
  3976. <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
  3977. <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_light</item>
  3978. <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_light</item>
  3979. <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_light</item>
  3980. </style>
  3981. <style name="Platform.MaterialComponents" parent="Theme.AppCompat"/>
  3982. <style name="Platform.MaterialComponents.Dialog" parent="Theme.AppCompat.Dialog"/>
  3983. <style name="Platform.MaterialComponents.Light" parent="Theme.AppCompat.Light"/>
  3984. <style name="Platform.MaterialComponents.Light.Dialog" parent="Theme.AppCompat.Light.Dialog"/>
  3985. <style name="Platform.ThemeOverlay.AppCompat" parent=""/>
  3986. <style name="Platform.ThemeOverlay.AppCompat.Dark">
  3987. <!-- Action Bar styles -->
  3988. <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item>
  3989. <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
  3990. <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
  3991. <!-- SearchView styles -->
  3992. <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  3993. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  3994. </style>
  3995. <style name="Platform.ThemeOverlay.AppCompat.Light">
  3996. <item name="actionBarItemBackground">@drawable/abc_item_background_holo_light</item>
  3997. <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
  3998. <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
  3999. <!-- SearchView attributes -->
  4000. <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>
  4001. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  4002. </style>
  4003. <style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Holo.Spinner"/>
  4004. <style name="PopCenterAnimation" parent="@android:style/Animation.Dialog">
  4005. <item name="android:windowEnterAnimation">@anim/pop_center_in</item>
  4006. <item name="android:windowExitAnimation">@anim/pop_center_out</item>
  4007. </style>
  4008. <style name="PopLeftBottomAnimation" parent="@android:style/Animation.Dialog">
  4009. <item name="android:windowEnterAnimation">@anim/pop_left_bottom_in</item>
  4010. <item name="android:windowExitAnimation">@anim/pop_left_bottom_out</item>
  4011. </style>
  4012. <style name="PopLeftTopAnimation" parent="@android:style/Animation.Dialog">
  4013. <item name="android:windowEnterAnimation">@anim/pop_left_top_in</item>
  4014. <item name="android:windowExitAnimation">@anim/pop_left_top_out</item>
  4015. </style>
  4016. <style name="PopRightBottomAnimation" parent="@android:style/Animation.Dialog">
  4017. <item name="android:windowEnterAnimation">@anim/pop_right_bottom_in</item>
  4018. <item name="android:windowExitAnimation">@anim/pop_right_bottom_out</item>
  4019. </style>
  4020. <style name="PopRightTopAnimation" parent="@android:style/Animation.Dialog">
  4021. <item name="android:windowEnterAnimation">@anim/pop_right_top_in</item>
  4022. <item name="android:windowExitAnimation">@anim/pop_right_top_out</item>
  4023. </style>
  4024. <style name="PopupBgWithoutShadow">
  4025. <item name="android:background">@drawable/popup_bg_without_shadow</item>
  4026. <item name="android:layout_marginLeft">@dimen/Edge_3A</item>
  4027. <item name="android:layout_marginRight">@dimen/Edge_3A</item>
  4028. </style>
  4029. <style name="RightToLeftAnimation" parent="@android:style/Animation.Dialog">
  4030. <item name="android:windowEnterAnimation">@anim/in_from_right</item>
  4031. <item name="android:windowExitAnimation">@anim/out_to_right</item>
  4032. </style>
  4033. <style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
  4034. </style>
  4035. <style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
  4036. <item name="android:layout_gravity">center_vertical|left</item>
  4037. <item name="android:paddingRight">8dp</item>
  4038. </style>
  4039. <style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
  4040. <item name="android:layout_marginRight">8dp</item>
  4041. </style>
  4042. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
  4043. <item name="android:paddingRight">16dp</item>
  4044. </style>
  4045. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
  4046. <item name="android:layout_marginLeft">16dp</item>
  4047. </style>
  4048. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut" parent="android:Widget">
  4049. <item name="android:layout_marginLeft">16dp</item>
  4050. </style>
  4051. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow" parent="android:Widget">
  4052. <item name="android:layout_marginLeft">8dp</item>
  4053. </style>
  4054. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
  4055. <item name="android:layout_alignParentLeft">true</item>
  4056. </style>
  4057. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Title" parent="android:Widget">
  4058. <item name="android:layout_marginLeft">16dp</item>
  4059. </style>
  4060. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
  4061. <item name="android:paddingLeft">@dimen/abc_dropdownitem_text_padding_left</item>
  4062. <item name="android:paddingRight">4dp</item>
  4063. </style>
  4064. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
  4065. <item name="android:layout_alignParentLeft">true</item>
  4066. </style>
  4067. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
  4068. <item name="android:layout_toLeftOf">@id/edit_query</item>
  4069. </style>
  4070. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
  4071. <item name="android:layout_alignParentRight">true</item>
  4072. </style>
  4073. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
  4074. <item name="android:layout_toLeftOf">@android:id/icon2</item>
  4075. <item name="android:layout_toRightOf">@android:id/icon1</item>
  4076. </style>
  4077. <style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
  4078. <item name="android:layout_marginLeft">@dimen/abc_dropdownitem_text_padding_left</item>
  4079. </style>
  4080. <style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
  4081. <item name="android:paddingLeft">12dp</item>
  4082. <item name="android:paddingRight">12dp</item>
  4083. </style>
  4084. <style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
  4085. <item name="android:paddingLeft">@dimen/abc_action_bar_overflow_padding_start_material</item>
  4086. <item name="android:paddingRight">@dimen/abc_action_bar_overflow_padding_end_material</item>
  4087. </style>
  4088. <style name="ScanTipsTv">
  4089. <item name="android:gravity">center_horizontal</item>
  4090. <item name="android:paddingLeft">20dp</item>
  4091. <item name="android:paddingRight">20dp</item>
  4092. <item name="android:textSize">14dp</item>
  4093. <item name="android:textColor">#afafaf</item>
  4094. <item name="android:paddingTop">6dp</item>
  4095. <item name="android:layout_width">wrap_content</item>
  4096. <item name="android:layout_height">wrap_content</item>
  4097. </style>
  4098. <style name="SmallButton">
  4099. <item name="android:layout_width">wrap_content</item>
  4100. <item name="android:layout_height">wrap_content</item>
  4101. <item name="android:minHeight">@dimen/SmallButtonHeight</item>
  4102. <item name="android:minWidth">@dimen/SmallBtnWidth</item>
  4103. <item name="android:gravity">center</item>
  4104. <item name="android:textSize">@dimen/DescTextSize</item>
  4105. <item name="android:textColor">@color/White</item>
  4106. <item name="android:paddingLeft">@dimen/SmallBtnPadding</item>
  4107. <item name="android:paddingRight">@dimen/SmallBtnPadding</item>
  4108. </style>
  4109. <style name="SmallButton_Two">
  4110. <item name="android:layout_width">wrap_content</item>
  4111. <item name="android:layout_height">wrap_content</item>
  4112. <item name="android:minHeight">@dimen/SmallButtonHeight</item>
  4113. <item name="android:minWidth">@dimen/SmallBtnWidth</item>
  4114. <item name="android:gravity">center</item>
  4115. <item name="android:textAppearance">@style/WhiteText</item>
  4116. <item name="android:paddingLeft">@dimen/SmallBtnPadding</item>
  4117. <item name="android:paddingRight">@dimen/SmallBtnPadding</item>
  4118. </style>
  4119. <style name="SnackBar_Button">
  4120. <item name="android:layout_width">wrap_content</item>
  4121. <item name="android:layout_height">wrap_content</item>
  4122. <item name="android:drawablePadding">12dp</item>
  4123. <item name="android:gravity">center</item>
  4124. <item name="android:paddingLeft">24dp</item>
  4125. <item name="android:paddingRight">24dp</item>
  4126. <item name="android:paddingTop">16dp</item>
  4127. <item name="android:paddingBottom">16dp</item>
  4128. <item name="android:textColor">@color/green_text_color</item>
  4129. <item name="android:editable">false</item>
  4130. <item name="android:textSize">14sp</item>
  4131. <item name="android:textAllCaps">true</item>
  4132. <item name="android:layout_gravity">center_vertical</item>
  4133. </style>
  4134. <style name="SnackBar_Container">
  4135. <item name="android:layout_width">fill_parent</item>
  4136. <item name="android:layout_height">wrap_content</item>
  4137. <item name="android:layout_gravity">bottom</item>
  4138. </style>
  4139. <style name="SnackBar_Message">
  4140. <item name="android:layout_width">0dp</item>
  4141. <item name="android:layout_height">wrap_content</item>
  4142. <item name="android:layout_weight">1</item>
  4143. <item name="android:layout_marginLeft">24dp</item>
  4144. <item name="android:layout_marginTop">16dp</item>
  4145. <item name="android:layout_marginBottom">16dp</item>
  4146. <item name="android:textSize">14sp</item>
  4147. <item name="android:layout_gravity">center_vertical</item>
  4148. <item name="android:textColor">#ffffff</item>
  4149. </style>
  4150. <style name="SnackBar_SnackBar">
  4151. <item name="android:layout_width">match_parent</item>
  4152. <item name="android:layout_height">wrap_content</item>
  4153. <item name="android:layout_gravity">bottom</item>
  4154. <item name="android:minHeight">48dp</item>
  4155. <item name="android:maxHeight">80dp</item>
  4156. <item name="android:orientation">horizontal</item>
  4157. <item name="android:background">#323232</item>
  4158. <item name="android:clickable">true</item>
  4159. <item name="android:layout_alignParentBottom">true</item>
  4160. </style>
  4161. <style name="SwipeBackLayout">
  4162. <item name="edge_size">50dip</item>
  4163. <item name="shadow_left">@drawable/shadow_left</item>
  4164. <item name="shadow_right">@drawable/shadow_right</item>
  4165. <item name="shadow_bottom">@drawable/shadow_bottom</item>
  4166. </style>
  4167. <style name="TenpayKeyboardText">
  4168. <item name="android:layout_width">0dp</item>
  4169. <item name="android:layout_height">fill_parent</item>
  4170. <item name="android:layout_weight">1</item>
  4171. <item name="android:textColor">@color/wallet_tenpay_keyboard_text_color</item>
  4172. <item name="android:textSize">28dp</item>
  4173. <item name="android:gravity">center</item>
  4174. </style>
  4175. <style name="TextAppearance.AppCompat" parent="Base.TextAppearance.AppCompat"/>
  4176. <style name="TextAppearance.AppCompat.Body1" parent="Base.TextAppearance.AppCompat.Body1"/>
  4177. <style name="TextAppearance.AppCompat.Body2" parent="Base.TextAppearance.AppCompat.Body2"/>
  4178. <style name="TextAppearance.AppCompat.Button" parent="Base.TextAppearance.AppCompat.Button"/>
  4179. <style name="TextAppearance.AppCompat.Caption" parent="Base.TextAppearance.AppCompat.Caption"/>
  4180. <style name="TextAppearance.AppCompat.Display1" parent="Base.TextAppearance.AppCompat.Display1"/>
  4181. <style name="TextAppearance.AppCompat.Display2" parent="Base.TextAppearance.AppCompat.Display2"/>
  4182. <style name="TextAppearance.AppCompat.Display3" parent="Base.TextAppearance.AppCompat.Display3"/>
  4183. <style name="TextAppearance.AppCompat.Display4" parent="Base.TextAppearance.AppCompat.Display4"/>
  4184. <style name="TextAppearance.AppCompat.Headline" parent="Base.TextAppearance.AppCompat.Headline"/>
  4185. <style name="TextAppearance.AppCompat.Inverse" parent="Base.TextAppearance.AppCompat.Inverse"/>
  4186. <style name="TextAppearance.AppCompat.Large" parent="Base.TextAppearance.AppCompat.Large"/>
  4187. <style name="TextAppearance.AppCompat.Large.Inverse" parent="Base.TextAppearance.AppCompat.Large.Inverse"/>
  4188. <style name="TextAppearance.AppCompat.Light.SearchResult.Subtitle" parent="TextAppearance.AppCompat.SearchResult.Subtitle"/>
  4189. <style name="TextAppearance.AppCompat.Light.SearchResult.Title" parent="TextAppearance.AppCompat.SearchResult.Title"/>
  4190. <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Widget.PopupMenu.Large"/>
  4191. <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Widget.PopupMenu.Small"/>
  4192. <style name="TextAppearance.AppCompat.Medium" parent="Base.TextAppearance.AppCompat.Medium"/>
  4193. <style name="TextAppearance.AppCompat.Medium.Inverse" parent="Base.TextAppearance.AppCompat.Medium.Inverse"/>
  4194. <style name="TextAppearance.AppCompat.Menu" parent="Base.TextAppearance.AppCompat.Menu"/>
  4195. <style name="TextAppearance.AppCompat.SearchResult.Subtitle" parent="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
  4196. </style>
  4197. <style name="TextAppearance.AppCompat.SearchResult.Title" parent="Base.TextAppearance.AppCompat.SearchResult.Title">
  4198. </style>
  4199. <style name="TextAppearance.AppCompat.Small" parent="Base.TextAppearance.AppCompat.Small"/>
  4200. <style name="TextAppearance.AppCompat.Small.Inverse" parent="Base.TextAppearance.AppCompat.Small.Inverse"/>
  4201. <style name="TextAppearance.AppCompat.Subhead" parent="Base.TextAppearance.AppCompat.Subhead"/>
  4202. <style name="TextAppearance.AppCompat.Subhead.Inverse" parent="Base.TextAppearance.AppCompat.Subhead.Inverse"/>
  4203. <style name="TextAppearance.AppCompat.Title" parent="Base.TextAppearance.AppCompat.Title"/>
  4204. <style name="TextAppearance.AppCompat.Title.Inverse" parent="Base.TextAppearance.AppCompat.Title.Inverse"/>
  4205. <style name="TextAppearance.AppCompat.Tooltip" parent="Base.TextAppearance.AppCompat.Tooltip"/>
  4206. <style name="TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu">
  4207. </style>
  4208. <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/>
  4209. <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse">
  4210. </style>
  4211. <style name="TextAppearance.AppCompat.Widget.ActionBar.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title"/>
  4212. <style name="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse">
  4213. </style>
  4214. <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle">
  4215. </style>
  4216. <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Subtitle"/>
  4217. <style name="TextAppearance.AppCompat.Widget.ActionMode.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Title">
  4218. </style>
  4219. <style name="TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Title"/>
  4220. <style name="TextAppearance.AppCompat.Widget.Button" parent="Base.TextAppearance.AppCompat.Widget.Button"/>
  4221. <style name="TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored"/>
  4222. <style name="TextAppearance.AppCompat.Widget.Button.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Colored"/>
  4223. <style name="TextAppearance.AppCompat.Widget.Button.Inverse" parent="Base.TextAppearance.AppCompat.Widget.Button.Inverse"/>
  4224. <style name="TextAppearance.AppCompat.Widget.DropDownItem" parent="Base.TextAppearance.AppCompat.Widget.DropDownItem">
  4225. </style>
  4226. <style name="TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header"/>
  4227. <style name="TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large"/>
  4228. <style name="TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small"/>
  4229. <style name="TextAppearance.AppCompat.Widget.Switch" parent="Base.TextAppearance.AppCompat.Widget.Switch"/>
  4230. <style name="TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem"/>
  4231. <style name="TextAppearance.Compat.Notification" parent="@android:style/TextAppearance.StatusBar.EventContent"/>
  4232. <style name="TextAppearance.Compat.Notification.Info">
  4233. <item name="android:textSize">12sp</item>
  4234. <item name="android:textColor">?android:attr/textColorSecondary</item>
  4235. </style>
  4236. <style name="TextAppearance.Compat.Notification.Line2" parent="TextAppearance.Compat.Notification.Info"/>
  4237. <style name="TextAppearance.Compat.Notification.Time">
  4238. <item name="android:textSize">12sp</item>
  4239. <item name="android:textColor">?android:attr/textColorSecondary</item>
  4240. </style>
  4241. <style name="TextAppearance.Compat.Notification.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/>
  4242. <style name="TextAppearance.Design.CollapsingToolbar.Expanded" parent="TextAppearance.AppCompat.Display1">
  4243. <item name="android:textColor">?android:attr/textColorPrimary</item>
  4244. </style>
  4245. <style name="TextAppearance.Design.Counter" parent="TextAppearance.AppCompat.Caption"/>
  4246. <style name="TextAppearance.Design.Counter.Overflow" parent="TextAppearance.AppCompat.Caption">
  4247. <item name="android:textColor">@color/design_error</item>
  4248. </style>
  4249. <style name="TextAppearance.Design.Error" parent="TextAppearance.AppCompat.Caption">
  4250. <item name="android:textColor">@color/design_error</item>
  4251. </style>
  4252. <style name="TextAppearance.Design.HelperText" parent="TextAppearance.AppCompat.Caption"/>
  4253. <style name="TextAppearance.Design.Hint" parent="TextAppearance.AppCompat.Caption">
  4254. <item name="android:textColor">?attr/colorControlActivated</item>
  4255. </style>
  4256. <style name="TextAppearance.Design.Snackbar.Message" parent="android:TextAppearance">
  4257. <item name="android:textSize">@dimen/design_snackbar_text_size</item>
  4258. <item name="android:textColor">?android:textColorPrimary</item>
  4259. </style>
  4260. <style name="TextAppearance.Design.Tab" parent="TextAppearance.AppCompat.Button">
  4261. <item name="android:textSize">@dimen/design_tab_text_size</item>
  4262. <item name="android:textColor">@color/mtrl_tabs_legacy_text_color_selector</item>
  4263. <item name="textAllCaps">true</item>
  4264. </style>
  4265. <style name="TextAppearance.MaterialComponents.Body1" parent="TextAppearance.AppCompat.Body2">
  4266. <item name="fontFamily">sans-serif</item>
  4267. <item name="android:fontFamily">sans-serif</item>
  4268. <item name="android:textStyle">normal</item>
  4269. <item name="android:textAllCaps">false</item>
  4270. <item name="android:textSize">16sp</item>
  4271. <item name="android:letterSpacing">0.03125</item>
  4272. </style>
  4273. <style name="TextAppearance.MaterialComponents.Body2" parent="TextAppearance.AppCompat.Body1">
  4274. <item name="fontFamily">sans-serif</item>
  4275. <item name="android:fontFamily">sans-serif</item>
  4276. <item name="android:textStyle">normal</item>
  4277. <item name="android:textAllCaps">false</item>
  4278. <item name="android:textSize">14sp</item>
  4279. <item name="android:letterSpacing">0.0178571429</item>
  4280. </style>
  4281. <style name="TextAppearance.MaterialComponents.Button" parent="TextAppearance.AppCompat.Button">
  4282. <!-- Fake Roboto Medium. -->
  4283. <item name="fontFamily">sans-serif-medium</item>
  4284. <item name="android:fontFamily">sans-serif-medium</item>
  4285. <item name="android:textStyle">bold</item>
  4286. <item name="android:textAllCaps">true</item>
  4287. <item name="android:textSize">14sp</item>
  4288. <item name="android:letterSpacing">0.0892857143</item>
  4289. </style>
  4290. <style name="TextAppearance.MaterialComponents.Caption" parent="TextAppearance.AppCompat.Caption">
  4291. <item name="fontFamily">sans-serif</item>
  4292. <item name="android:fontFamily">sans-serif</item>
  4293. <item name="android:textStyle">normal</item>
  4294. <item name="android:textAllCaps">false</item>
  4295. <item name="android:textSize">12sp</item>
  4296. <item name="android:letterSpacing">0.0333333333</item>
  4297. </style>
  4298. <style name="TextAppearance.MaterialComponents.Chip" parent="TextAppearance.AppCompat">
  4299. <item name="android:textColor">@color/mtrl_chip_text_color</item>
  4300. <item name="android:textSize">@dimen/mtrl_chip_text_size</item>
  4301. </style>
  4302. <style name="TextAppearance.MaterialComponents.Headline1" parent="TextAppearance.AppCompat.Display4">
  4303. <item name="fontFamily">sans-serif-light</item>
  4304. <item name="android:fontFamily">sans-serif-light</item>
  4305. <item name="android:textStyle">normal</item>
  4306. <item name="android:textAllCaps">false</item>
  4307. <item name="android:textSize">96sp</item>
  4308. <item name="android:letterSpacing">-0.015625</item>
  4309. </style>
  4310. <style name="TextAppearance.MaterialComponents.Headline2" parent="TextAppearance.AppCompat.Display3">
  4311. <item name="fontFamily">sans-serif-light</item>
  4312. <item name="android:fontFamily">sans-serif-light</item>
  4313. <item name="android:textStyle">normal</item>
  4314. <item name="android:textAllCaps">false</item>
  4315. <item name="android:textSize">60sp</item>
  4316. <item name="android:letterSpacing">-0.00833333333</item>
  4317. </style>
  4318. <style name="TextAppearance.MaterialComponents.Headline3" parent="TextAppearance.AppCompat.Display2">
  4319. <item name="fontFamily">sans-serif</item>
  4320. <item name="android:fontFamily">sans-serif</item>
  4321. <item name="android:textStyle">normal</item>
  4322. <item name="android:textAllCaps">false</item>
  4323. <item name="android:textSize">48sp</item>
  4324. <item name="android:letterSpacing">0</item>
  4325. </style>
  4326. <style name="TextAppearance.MaterialComponents.Headline4" parent="TextAppearance.AppCompat.Display1">
  4327. <item name="fontFamily">sans-serif</item>
  4328. <item name="android:fontFamily">sans-serif</item>
  4329. <item name="android:textStyle">normal</item>
  4330. <item name="android:textAllCaps">false</item>
  4331. <item name="android:textSize">34sp</item>
  4332. <item name="android:letterSpacing">0.00735294118</item>
  4333. </style>
  4334. <style name="TextAppearance.MaterialComponents.Headline5" parent="TextAppearance.AppCompat.Headline">
  4335. <item name="fontFamily">sans-serif</item>
  4336. <item name="android:fontFamily">sans-serif</item>
  4337. <item name="android:textStyle">normal</item>
  4338. <item name="android:textAllCaps">false</item>
  4339. <item name="android:textSize">24sp</item>
  4340. <item name="android:letterSpacing">0</item>
  4341. </style>
  4342. <style name="TextAppearance.MaterialComponents.Headline6" parent="TextAppearance.AppCompat.Title">
  4343. <!-- Fake Roboto Medium. -->
  4344. <item name="fontFamily">sans-serif-medium</item>
  4345. <item name="android:fontFamily">sans-serif-medium</item>
  4346. <item name="android:textStyle">bold</item>
  4347. <item name="android:textAllCaps">false</item>
  4348. <item name="android:textSize">20sp</item>
  4349. <item name="android:letterSpacing">0.0125</item>
  4350. </style>
  4351. <style name="TextAppearance.MaterialComponents.Overline" parent="TextAppearance.AppCompat">
  4352. <!-- Fake Roboto Medium. -->
  4353. <item name="fontFamily">sans-serif-medium</item>
  4354. <item name="android:fontFamily">sans-serif-medium</item>
  4355. <item name="android:textStyle">bold</item>
  4356. <item name="android:textAllCaps">true</item>
  4357. <item name="android:textSize">12sp</item>
  4358. <item name="android:letterSpacing">0.166666667</item>
  4359. </style>
  4360. <style name="TextAppearance.MaterialComponents.Subtitle1" parent="TextAppearance.AppCompat.Subhead">
  4361. <item name="fontFamily">sans-serif</item>
  4362. <item name="android:fontFamily">sans-serif</item>
  4363. <item name="android:textStyle">normal</item>
  4364. <item name="android:textAllCaps">false</item>
  4365. <item name="android:textSize">16sp</item>
  4366. <item name="android:letterSpacing">0.009375</item>
  4367. </style>
  4368. <style name="TextAppearance.MaterialComponents.Subtitle2" parent="TextAppearance.AppCompat.Subhead">
  4369. <!-- Fake Roboto Medium. -->
  4370. <item name="fontFamily">sans-serif-medium</item>
  4371. <item name="android:fontFamily">sans-serif-medium</item>
  4372. <item name="android:textStyle">bold</item>
  4373. <item name="android:textAllCaps">false</item>
  4374. <item name="android:textSize">14sp</item>
  4375. <item name="android:letterSpacing">0.00714285714</item>
  4376. </style>
  4377. <style name="TextAppearance.MaterialComponents.Tab" parent="TextAppearance.Design.Tab">
  4378. <item name="android:textColor">@color/mtrl_tabs_icon_color_selector</item>
  4379. </style>
  4380. <style name="TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item">
  4381. </style>
  4382. <style name="TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle">
  4383. </style>
  4384. <style name="TextAppearance.Widget.AppCompat.Toolbar.Title" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Title">
  4385. </style>
  4386. <style name="TextTextStyle">
  4387. <item name="android:layout_width">wrap_content</item>
  4388. <item name="android:layout_height">wrap_content</item>
  4389. <item name="android:textSize">@dimen/BodyTextSize</item>
  4390. <item name="android:lineSpacingMultiplier">1.6</item>
  4391. <item name="android:textColor">@color/FG_0</item>
  4392. </style>
  4393. <style name="Theme.App.Global" parent="Theme.AppCompat.Light.NoActionBar">
  4394. </style>
  4395. <style name="Theme.AppCompat" parent="Base.Theme.AppCompat"/>
  4396. <style name="Theme.AppCompat.CompactMenu" parent="Base.Theme.AppCompat.CompactMenu"/>
  4397. <style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat.Light"/>
  4398. <style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat.Light.DarkActionBar"/>
  4399. <style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Light.Dialog"/>
  4400. <style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Light.Dialog.Alert"/>
  4401. <style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Light.Dialog.MinWidth"/>
  4402. <style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.Light.DialogWhenLarge"/>
  4403. <style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar"/>
  4404. <style name="Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat.Dialog"/>
  4405. <style name="Theme.AppCompat.Dialog.Alert" parent="Base.Theme.AppCompat.Dialog.Alert"/>
  4406. <style name="Theme.AppCompat.Dialog.MinWidth" parent="Base.Theme.AppCompat.Dialog.MinWidth"/>
  4407. <style name="Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.DialogWhenLarge">
  4408. </style>
  4409. <style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light"/>
  4410. <style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar"/>
  4411. <style name="Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light.Dialog"/>
  4412. <style name="Theme.AppCompat.Light.Dialog.Alert" parent="Base.Theme.AppCompat.Light.Dialog.Alert"/>
  4413. <style name="Theme.AppCompat.Light.Dialog.MinWidth" parent="Base.Theme.AppCompat.Light.Dialog.MinWidth"/>
  4414. <style name="Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.DialogWhenLarge">
  4415. </style>
  4416. <style name="Theme.AppCompat.Light.NoActionBar">
  4417. <item name="windowActionBar">false</item>
  4418. <item name="windowNoTitle">true</item>
  4419. </style>
  4420. <style name="Theme.AppCompat.NoActionBar">
  4421. <item name="windowActionBar">false</item>
  4422. <item name="windowNoTitle">true</item>
  4423. </style>
  4424. <style name="Theme.Design" parent="Theme.AppCompat">
  4425. </style>
  4426. <style name="Theme.Design.BottomSheetDialog" parent="Theme.AppCompat.Dialog">
  4427. <item name="android:windowBackground">@android:color/transparent</item>
  4428. <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item>
  4429. <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item>
  4430. </style>
  4431. <style name="Theme.Design.Light" parent="Theme.AppCompat.Light">
  4432. </style>
  4433. <style name="Theme.Design.Light.BottomSheetDialog" parent="Theme.AppCompat.Light.Dialog">
  4434. <item name="android:windowBackground">@android:color/transparent</item>
  4435. <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item>
  4436. <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item>
  4437. </style>
  4438. <style name="Theme.Design.Light.NoActionBar">
  4439. <item name="windowActionBar">false</item>
  4440. <item name="windowNoTitle">true</item>
  4441. </style>
  4442. <style name="Theme.Design.NoActionBar">
  4443. <item name="windowActionBar">false</item>
  4444. <item name="windowNoTitle">true</item>
  4445. </style>
  4446. <style name="Theme.LuggageApp.Standalone" parent="WeUITheme.LightMode">
  4447. <!-- WeUI preset color reference defined in wechat(Light Mode) -->
  4448. <item name="default_bg_color">#EDEDED</item>
  4449. <item name="FG_0">#E6000000</item>
  4450. <item name="FG_1">#80000000</item>
  4451. <item name="FG_2">#4D000000</item>
  4452. <item name="FG_3">#1A000000</item>
  4453. <item name="BG_0">#EDEDED</item>
  4454. <item name="BG_1">#F7F7F7</item>
  4455. <item name="BG_2">#FFFFFF</item>
  4456. <item name="BG_3">#F7F7F7</item>
  4457. <item name="BG_4">#4C4C4C</item>
  4458. <item name="BG_5">#FFFFFF</item>
  4459. <item name="arrow_color">#B2B2B2</item>
  4460. <item name="Orange">#FA9D3B</item>
  4461. <item name="Yellow">#FFC300</item>
  4462. <item name="LightGreen">#95EC69</item>
  4463. <item name="Indigo">#1485EE</item>
  4464. <item name="Purple">#6467F0</item>
  4465. <item name="Link">#576B95</item>
  4466. <item name="TextGreen">#06AE56</item>
  4467. <item name="conversation_click_color">#EDEDED</item>
  4468. <item name="Alphabet_text_color">#E6000000</item>
  4469. <item name="time_text_color">#33000000</item>
  4470. <item name="list_item_divider">@drawable/list_item_normal</item>
  4471. <item name="list_top_line_selector">@drawable/white_list_top_line_selector</item>
  4472. <item name="item_color_selector">@color/item_color_selector</item>
  4473. <item name="et_clear_selector">@drawable/actionbar_icon_dark_clear</item>
  4474. <!-- WeUI preset color reference defined in wechat(Light Mode) -->
  4475. </style>
  4476. <style name="Theme.LuggageApp.Standalone.WxaSetting"/>
  4477. <style name="Theme.LuggageApp.Standalone.WxaSetting.Activity"/>
  4478. <style name="Theme.LuggageApp.Standalone.WxaSetting.Dialog">
  4479. <item name="android:windowIsTranslucent">true</item>
  4480. <item name="android:windowBackground">@android:color/transparent</item>
  4481. <item name="android:colorBackgroundCacheHint">@null</item>
  4482. <item name="android:windowAnimationStyle">@null</item>
  4483. <item name="android:windowContentOverlay">@null</item>
  4484. <item name="android:windowNoTitle">true</item>
  4485. <item name="windowNoTitle">true</item>
  4486. <item name="android:windowActionBar">false</item>
  4487. <item name="windowActionBar">false</item>
  4488. </style>
  4489. <style name="Theme.MaterialComponents" parent="Base.Theme.MaterialComponents"/>
  4490. <style name="Theme.MaterialComponents.BottomSheetDialog" parent="Theme.MaterialComponents.Dialog">
  4491. <item name="android:windowBackground">@android:color/transparent</item>
  4492. <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item>
  4493. <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item>
  4494. </style>
  4495. <style name="Theme.MaterialComponents.Bridge" parent="Base.Theme.MaterialComponents.Bridge"/>
  4496. <style name="Theme.MaterialComponents.CompactMenu" parent="Base.Theme.MaterialComponents.CompactMenu"/>
  4497. <style name="Theme.MaterialComponents.Dialog" parent="Base.Theme.MaterialComponents.Dialog"/>
  4498. <style name="Theme.MaterialComponents.Dialog.Alert" parent="Base.Theme.MaterialComponents.Dialog.Alert"/>
  4499. <style name="Theme.MaterialComponents.Dialog.MinWidth" parent="Base.Theme.MaterialComponents.Dialog.MinWidth"/>
  4500. <style name="Theme.MaterialComponents.DialogWhenLarge" parent="Base.Theme.MaterialComponents.DialogWhenLarge">
  4501. </style>
  4502. <style name="Theme.MaterialComponents.Light" parent="Base.Theme.MaterialComponents.Light"/>
  4503. <style name="Theme.MaterialComponents.Light.BottomSheetDialog" parent="Theme.MaterialComponents.Light.Dialog">
  4504. <item name="android:windowBackground">@android:color/transparent</item>
  4505. <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item>
  4506. <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item>
  4507. </style>
  4508. <style name="Theme.MaterialComponents.Light.Bridge" parent="Base.Theme.MaterialComponents.Light.Bridge"/>
  4509. <style name="Theme.MaterialComponents.Light.DarkActionBar" parent="Base.Theme.MaterialComponents.Light.DarkActionBar"/>
  4510. <style name="Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge"/>
  4511. <style name="Theme.MaterialComponents.Light.Dialog" parent="Base.Theme.MaterialComponents.Light.Dialog"/>
  4512. <style name="Theme.MaterialComponents.Light.Dialog.Alert" parent="Base.Theme.MaterialComponents.Light.Dialog.Alert"/>
  4513. <style name="Theme.MaterialComponents.Light.Dialog.MinWidth" parent="Base.Theme.MaterialComponents.Light.Dialog.MinWidth"/>
  4514. <style name="Theme.MaterialComponents.Light.DialogWhenLarge" parent="Base.Theme.MaterialComponents.Light.DialogWhenLarge">
  4515. </style>
  4516. <style name="Theme.MaterialComponents.Light.NoActionBar">
  4517. <item name="windowActionBar">false</item>
  4518. <item name="windowNoTitle">true</item>
  4519. </style>
  4520. <style name="Theme.MaterialComponents.Light.NoActionBar.Bridge" parent="Theme.MaterialComponents.Light.Bridge">
  4521. <item name="windowActionBar">false</item>
  4522. <item name="windowNoTitle">true</item>
  4523. </style>
  4524. <style name="Theme.MaterialComponents.NoActionBar">
  4525. <item name="windowActionBar">false</item>
  4526. <item name="windowNoTitle">true</item>
  4527. </style>
  4528. <style name="Theme.MaterialComponents.NoActionBar.Bridge" parent="Theme.MaterialComponents.Bridge">
  4529. <item name="windowActionBar">false</item>
  4530. <item name="windowNoTitle">true</item>
  4531. </style>
  4532. <style name="Theme.Splashscreen" parent="Theme.AppCompat.Light.NoActionBar">
  4533. <item name="android:windowNoTitle">true</item>
  4534. </style>
  4535. <style name="Theme.Translucent" parent="@android:style/Theme.DeviceDefault.Light">
  4536. <item name="android:windowBackground">@null</item>
  4537. <item name="android:windowNoTitle">true</item>
  4538. <item name="android:windowIsTranslucent">true</item>
  4539. </style>
  4540. <style name="ThemeOverlay.AppCompat" parent="Base.ThemeOverlay.AppCompat"/>
  4541. <style name="ThemeOverlay.AppCompat.ActionBar" parent="Base.ThemeOverlay.AppCompat.ActionBar"/>
  4542. <style name="ThemeOverlay.AppCompat.Dark" parent="Base.ThemeOverlay.AppCompat.Dark"/>
  4543. <style name="ThemeOverlay.AppCompat.Dark.ActionBar" parent="Base.ThemeOverlay.AppCompat.Dark.ActionBar"/>
  4544. <style name="ThemeOverlay.AppCompat.DayNight" parent="ThemeOverlay.AppCompat.Light"/>
  4545. <style name="ThemeOverlay.AppCompat.DayNight.ActionBar">
  4546. <item name="colorControlNormal">?android:attr/textColorPrimary</item>
  4547. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
  4548. </style>
  4549. <style name="ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat.Dialog"/>
  4550. <style name="ThemeOverlay.AppCompat.Dialog.Alert" parent="Base.ThemeOverlay.AppCompat.Dialog.Alert"/>
  4551. <style name="ThemeOverlay.AppCompat.Light" parent="Base.ThemeOverlay.AppCompat.Light"/>
  4552. <style name="ThemeOverlay.MaterialComponents" parent="ThemeOverlay.AppCompat"/>
  4553. <style name="ThemeOverlay.MaterialComponents.ActionBar" parent="ThemeOverlay.AppCompat.ActionBar"/>
  4554. <style name="ThemeOverlay.MaterialComponents.Dark" parent="ThemeOverlay.AppCompat.Dark"/>
  4555. <style name="ThemeOverlay.MaterialComponents.Dark.ActionBar" parent="ThemeOverlay.AppCompat.Dark.ActionBar"/>
  4556. <style name="ThemeOverlay.MaterialComponents.Dialog" parent="Base.ThemeOverlay.MaterialComponents.Dialog"/>
  4557. <style name="ThemeOverlay.MaterialComponents.Dialog.Alert" parent="Base.ThemeOverlay.MaterialComponents.Dialog.Alert"/>
  4558. <style name="ThemeOverlay.MaterialComponents.Light" parent="ThemeOverlay.AppCompat.Light"/>
  4559. <style name="ThemeOverlay.MaterialComponents.TextInputEditText" parent=""/>
  4560. <style name="ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox">
  4561. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.FilledBox</item>
  4562. </style>
  4563. <style name="ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense">
  4564. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.FilledBox.Dense
  4565. </item>
  4566. </style>
  4567. <style name="ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox">
  4568. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.OutlinedBox</item>
  4569. </style>
  4570. <style name="ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense">
  4571. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense
  4572. </item>
  4573. </style>
  4574. <style name="TitleTextStyle">
  4575. <item name="android:layout_width">wrap_content</item>
  4576. <item name="android:layout_height">wrap_content</item>
  4577. <item name="android:textSize">@dimen/BodyTextSize</item>
  4578. <item name="android:lineSpacingMultiplier">1.4</item>
  4579. <item name="android:textColor">@color/FG_0</item>
  4580. </style>
  4581. <style name="ToyBrickStyle" parent="MMFullLineItem">
  4582. <item name="android:background">@drawable/settings_line</item>
  4583. <item name="android:paddingLeft">@dimen/EdgePadding</item>
  4584. <item name="android:paddingRight">@dimen/EdgePadding</item>
  4585. <item name="android:minHeight">@dimen/SmallListHeight</item>
  4586. <item name="android:layout_width">match_parent</item>
  4587. <item name="android:layout_height">wrap_content</item>
  4588. <item name="android:gravity">left|center_vertical</item>
  4589. </style>
  4590. <style name="ToyBrickSummaryStyle" parent="MMFontPreferenceSmall">
  4591. <item name="android:layout_marginTop">@dimen/SmallPadding</item>
  4592. <item name="android:layout_marginBottom">@dimen/SmallPadding</item>
  4593. </style>
  4594. <style name="ToyBrickTitleStyle">
  4595. <item name="android:textColor">@color/normal_text_color</item>
  4596. <item name="android:singleLine">true</item>
  4597. <item name="android:ellipsize">end</item>
  4598. <item name="android:gravity">center_vertical</item>
  4599. <item name="android:textSize">@dimen/NormalTextSize</item>
  4600. </style>
  4601. <style name="TransDialog" parent="android:style/Theme.Dialog">
  4602. <item name="android:windowBackground">@android:color/transparent</item>
  4603. <item name="android:windowNoTitle">true</item>
  4604. <item name="android:windowIsFloating">true</item>
  4605. <item name="android:windowContentOverlay">@null</item>
  4606. <item name="android:scrollHorizontally">true</item>
  4607. <item name="android:windowFrame">@null</item>
  4608. <item name="android:windowIsTranslucent">false</item>
  4609. <item name="android:backgroundDimEnabled">true</item>
  4610. </style>
  4611. <style name="TransparentTheme" parent="Theme.AppCompat.NoActionBar">
  4612. <!--不设置activity进入和退出动画样式-->
  4613. <item name="android:windowAnimationStyle">@null</item>
  4614. <!--设置窗口的背景为透明,设置透明背景必须要设置此项-->
  4615. <item name="android:windowBackground">@android:color/transparent</item>
  4616. <!--设置窗口的背景是否为半透明,设置透明背景必须要设置此项-->
  4617. <item name="android:windowIsTranslucent">true</item>
  4618. <!--设置状态栏的背景为半透明-->
  4619. <item name="android:windowTranslucentStatus">true</item>
  4620. </style>
  4621. <style name="UnreadCountTipsStyle">
  4622. <item name="android:layout_height">wrap_content</item>
  4623. <item name="android:layout_width">wrap_content</item>
  4624. <item name="android:textColor">@color/White</item>
  4625. <item name="android:textSize">@dimen/unReadCountTextSize</item>
  4626. <item name="android:gravity">center</item>
  4627. <item name="android:background">@drawable/unread_count_shape</item>
  4628. <item name="android:singleLine">true</item>
  4629. </style>
  4630. <style name="UnreadDotStyle">
  4631. <item name="android:layout_height">10dp</item>
  4632. <item name="android:layout_width">10dp</item>
  4633. <item name="android:textSize">@dimen/SmallerTextSize</item>
  4634. <item name="android:gravity">center</item>
  4635. <item name="android:background">@drawable/unread_dot_shape</item>
  4636. </style>
  4637. <style name="VerticalDividerLine">
  4638. <item name="android:layout_width">@dimen/bottomsheet_dividing_line_height</item>
  4639. <item name="android:layout_height">match_parent</item>
  4640. <item name="android:background">@color/FG_3</item>
  4641. </style>
  4642. <style name="WCTextStyleDesc">
  4643. <item name="android:layout_width">wrap_content</item>
  4644. <item name="android:layout_height">wrap_content</item>
  4645. <item name="android:textColor">@color/desc_text_color</item>
  4646. <item name="android:textSize">@dimen/DescTextSize</item>
  4647. </style>
  4648. <style name="WCTextStyleFootnote">
  4649. <item name="android:layout_width">wrap_content</item>
  4650. <item name="android:layout_height">wrap_content</item>
  4651. <item name="android:textColor">@color/hint_text_color</item>
  4652. <item name="android:textSize">@dimen/FootnoteextSize</item>
  4653. </style>
  4654. <style name="WCTextStyleTitle">
  4655. <item name="android:layout_width">wrap_content</item>
  4656. <item name="android:layout_height">wrap_content</item>
  4657. <item name="android:textColor">@color/normal_text_color</item>
  4658. <item name="android:textSize">@dimen/BodyTextSize</item>
  4659. </style>
  4660. <style name="WeUITheme" parent="@style/AppTheme.WeUI.Png">
  4661. <!-- 配置Android提供的theme -->
  4662. <item name="borderlessButtonStyle">?android:borderlessButtonStyle</item>
  4663. <!-- 配置Weui提供的theme -->
  4664. <item name="actionBarStyle">@style/ActionBar.Solid</item> <!-- Support library compatibility -->
  4665. <item name="android:actionBarStyle">@style/ActionBar.Solid</item>
  4666. <item name="android:editTextBackground">@drawable/edittext_bg_selector</item>
  4667. <item name="android:checkboxStyle">@style/MMCheckBox</item>
  4668. <item name="android:radioButtonStyle">@style/MMRadioBtn</item>
  4669. <item name="android:buttonStyle">@android:style/Widget.Button</item>
  4670. <item name="android:windowBackground">?attr/app_content_bg_color</item>
  4671. <item name="android:textCursorDrawable">@drawable/green_cursor</item>
  4672. <!-- 配置app自己的theme -->
  4673. <item name="app_theme_color">@color/Red</item>
  4674. <item name="app_actionbar_color">@color/normal_actionbar_color</item>
  4675. <item name="app_content_bg_color">@color/normal_bg_color</item>
  4676. </style>
  4677. <style name="WeUITheme.DarkMode" parent="@style/WeUITheme">
  4678. <item name="et_clear_selector">@raw/actionbar_icon_light_clear</item>
  4679. </style>
  4680. <style name="WeUITheme.LightMode" parent="@style/WeUITheme">
  4681. <item name="et_clear_selector">@raw/actionbar_icon_dark_clear</item>
  4682. </style>
  4683. <style name="WeUITheme.NoTitleTranslucent" parent="@style/WeUITheme">
  4684. <item name="android:windowIsTranslucent">true</item>
  4685. <item name="android:windowBackground">@android:color/transparent</item>
  4686. <item name="android:colorBackgroundCacheHint">@null</item>
  4687. <item name="android:windowAnimationStyle">@null</item>
  4688. <item name="android:windowContentOverlay">@null</item>
  4689. <item name="android:windowNoTitle">true</item>
  4690. <item name="windowNoTitle">true</item>
  4691. <item name="android:windowActionBar">false</item>
  4692. <item name="windowActionBar">false</item>
  4693. </style>
  4694. <style name="WeUITheme_Black" parent="@style/WeUITheme">
  4695. <item name="app_theme_color">@color/BW_0</item>
  4696. </style>
  4697. <style name="WeUITheme_Green" parent="@style/WeUITheme">
  4698. <item name="app_theme_color">@color/wechat_green</item>
  4699. </style>
  4700. <style name="WhiteText">
  4701. <item name="android:textSize">@dimen/DescTextSize</item>
  4702. <item name="android:textColor">@color/White</item>
  4703. </style>
  4704. <style name="Widget.AppCompat.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
  4705. </style>
  4706. <style name="Widget.AppCompat.ActionBar.Solid" parent="Base.Widget.AppCompat.ActionBar.Solid">
  4707. </style>
  4708. <style name="Widget.AppCompat.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
  4709. </style>
  4710. <style name="Widget.AppCompat.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
  4711. </style>
  4712. <style name="Widget.AppCompat.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
  4713. </style>
  4714. <style name="Widget.AppCompat.ActionButton" parent="Base.Widget.AppCompat.ActionButton"/>
  4715. <style name="Widget.AppCompat.ActionButton.CloseMode" parent="Base.Widget.AppCompat.ActionButton.CloseMode"/>
  4716. <style name="Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton.Overflow"/>
  4717. <style name="Widget.AppCompat.ActionMode" parent="Base.Widget.AppCompat.ActionMode">
  4718. </style>
  4719. <style name="Widget.AppCompat.ActivityChooserView" parent="Base.Widget.AppCompat.ActivityChooserView">
  4720. </style>
  4721. <style name="Widget.AppCompat.AutoCompleteTextView" parent="Base.Widget.AppCompat.AutoCompleteTextView">
  4722. </style>
  4723. <style name="Widget.AppCompat.Button" parent="Base.Widget.AppCompat.Button"/>
  4724. <style name="Widget.AppCompat.Button.Borderless" parent="Base.Widget.AppCompat.Button.Borderless"/>
  4725. <style name="Widget.AppCompat.Button.Borderless.Colored" parent="Base.Widget.AppCompat.Button.Borderless.Colored"/>
  4726. <style name="Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog"/>
  4727. <style name="Widget.AppCompat.Button.Colored" parent="Base.Widget.AppCompat.Button.Colored"/>
  4728. <style name="Widget.AppCompat.Button.Small" parent="Base.Widget.AppCompat.Button.Small"/>
  4729. <style name="Widget.AppCompat.ButtonBar" parent="Base.Widget.AppCompat.ButtonBar"/>
  4730. <style name="Widget.AppCompat.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.ButtonBar.AlertDialog"/>
  4731. <style name="Widget.AppCompat.CompoundButton.CheckBox" parent="Base.Widget.AppCompat.CompoundButton.CheckBox"/>
  4732. <style name="Widget.AppCompat.CompoundButton.RadioButton" parent="Base.Widget.AppCompat.CompoundButton.RadioButton"/>
  4733. <style name="Widget.AppCompat.CompoundButton.Switch" parent="Base.Widget.AppCompat.CompoundButton.Switch"/>
  4734. <style name="Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle">
  4735. <item name="color">?attr/colorControlNormal</item>
  4736. </style>
  4737. <style name="Widget.AppCompat.DropDownItem.Spinner" parent="RtlOverlay.Widget.AppCompat.Search.DropDown.Text"/>
  4738. <style name="Widget.AppCompat.EditText" parent="Base.Widget.AppCompat.EditText"/>
  4739. <style name="Widget.AppCompat.ImageButton" parent="Base.Widget.AppCompat.ImageButton"/>
  4740. <style name="Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.Light.ActionBar">
  4741. </style>
  4742. <style name="Widget.AppCompat.Light.ActionBar.Solid" parent="Base.Widget.AppCompat.Light.ActionBar.Solid">
  4743. </style>
  4744. <style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse"/>
  4745. <style name="Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.Light.ActionBar.TabBar">
  4746. </style>
  4747. <style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse"/>
  4748. <style name="Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
  4749. </style>
  4750. <style name="Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse">
  4751. </style>
  4752. <style name="Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.Light.ActionBar.TabView">
  4753. </style>
  4754. <style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse"/>
  4755. <style name="Widget.AppCompat.Light.ActionButton" parent="Widget.AppCompat.ActionButton"/>
  4756. <style name="Widget.AppCompat.Light.ActionButton.CloseMode" parent="Widget.AppCompat.ActionButton.CloseMode"/>
  4757. <style name="Widget.AppCompat.Light.ActionButton.Overflow" parent="Widget.AppCompat.ActionButton.Overflow"/>
  4758. <style name="Widget.AppCompat.Light.ActionMode.Inverse" parent="Widget.AppCompat.ActionMode"/>
  4759. <style name="Widget.AppCompat.Light.ActivityChooserView" parent="Widget.AppCompat.ActivityChooserView"/>
  4760. <style name="Widget.AppCompat.Light.AutoCompleteTextView" parent="Widget.AppCompat.AutoCompleteTextView"/>
  4761. <style name="Widget.AppCompat.Light.DropDownItem.Spinner" parent="Widget.AppCompat.DropDownItem.Spinner"/>
  4762. <style name="Widget.AppCompat.Light.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"/>
  4763. <style name="Widget.AppCompat.Light.ListView.DropDown" parent="Widget.AppCompat.ListView.DropDown"/>
  4764. <style name="Widget.AppCompat.Light.PopupMenu" parent="Base.Widget.AppCompat.Light.PopupMenu"/>
  4765. <style name="Widget.AppCompat.Light.PopupMenu.Overflow" parent="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
  4766. </style>
  4767. <style name="Widget.AppCompat.Light.SearchView" parent="Widget.AppCompat.SearchView"/>
  4768. <style name="Widget.AppCompat.Light.Spinner.DropDown.ActionBar" parent="Widget.AppCompat.Spinner.DropDown.ActionBar"/>
  4769. <style name="Widget.AppCompat.ListMenuView" parent="Base.Widget.AppCompat.ListMenuView"/>
  4770. <style name="Widget.AppCompat.ListPopupWindow" parent="Base.Widget.AppCompat.ListPopupWindow">
  4771. </style>
  4772. <style name="Widget.AppCompat.ListView" parent="Base.Widget.AppCompat.ListView"/>
  4773. <style name="Widget.AppCompat.ListView.DropDown" parent="Base.Widget.AppCompat.ListView.DropDown"/>
  4774. <style name="Widget.AppCompat.ListView.Menu" parent="Base.Widget.AppCompat.ListView.Menu"/>
  4775. <style name="Widget.AppCompat.PopupMenu" parent="Base.Widget.AppCompat.PopupMenu"/>
  4776. <style name="Widget.AppCompat.PopupMenu.Overflow" parent="Base.Widget.AppCompat.PopupMenu.Overflow">
  4777. </style>
  4778. <style name="Widget.AppCompat.PopupWindow" parent="Base.Widget.AppCompat.PopupWindow">
  4779. </style>
  4780. <style name="Widget.AppCompat.ProgressBar" parent="Base.Widget.AppCompat.ProgressBar">
  4781. </style>
  4782. <style name="Widget.AppCompat.ProgressBar.Horizontal" parent="Base.Widget.AppCompat.ProgressBar.Horizontal">
  4783. </style>
  4784. <style name="Widget.AppCompat.RatingBar" parent="Base.Widget.AppCompat.RatingBar"/>
  4785. <style name="Widget.AppCompat.RatingBar.Indicator" parent="Base.Widget.AppCompat.RatingBar.Indicator"/>
  4786. <style name="Widget.AppCompat.RatingBar.Small" parent="Base.Widget.AppCompat.RatingBar.Small"/>
  4787. <style name="Widget.AppCompat.SearchView" parent="Base.Widget.AppCompat.SearchView"/>
  4788. <style name="Widget.AppCompat.SearchView.ActionBar" parent="Base.Widget.AppCompat.SearchView.ActionBar"/>
  4789. <style name="Widget.AppCompat.SeekBar" parent="Base.Widget.AppCompat.SeekBar"/>
  4790. <style name="Widget.AppCompat.SeekBar.Discrete" parent="Base.Widget.AppCompat.SeekBar.Discrete"/>
  4791. <style name="Widget.AppCompat.Spinner" parent="Base.Widget.AppCompat.Spinner"/>
  4792. <style name="Widget.AppCompat.Spinner.DropDown"/>
  4793. <style name="Widget.AppCompat.Spinner.DropDown.ActionBar"/>
  4794. <style name="Widget.AppCompat.Spinner.Underlined" parent="Base.Widget.AppCompat.Spinner.Underlined"/>
  4795. <style name="Widget.AppCompat.TextView" parent="Base.Widget.AppCompat.TextView"/>
  4796. <style name="Widget.AppCompat.TextView.SpinnerItem" parent="Base.Widget.AppCompat.TextView.SpinnerItem"/>
  4797. <style name="Widget.AppCompat.Toolbar" parent="Base.Widget.AppCompat.Toolbar"/>
  4798. <style name="Widget.AppCompat.Toolbar.Button.Navigation" parent="Base.Widget.AppCompat.Toolbar.Button.Navigation"/>
  4799. <style name="Widget.Compat.NotificationActionContainer" parent=""/>
  4800. <style name="Widget.Compat.NotificationActionText" parent=""/>
  4801. <style name="Widget.Design.AppBarLayout" parent="android:Widget">
  4802. <item name="android:background">?attr/colorPrimary</item>
  4803. <item name="android:stateListAnimator" ns2:ignore="NewApi">
  4804. @animator/design_appbar_state_list_animator
  4805. </item>
  4806. <item name="android:keyboardNavigationCluster" ns2:ignore="NewApi">true</item>
  4807. <item name="android:touchscreenBlocksFocus" ns2:ignore="NewApi">true</item>
  4808. </style>
  4809. <style name="Widget.Design.BottomNavigationView" parent="">
  4810. <item name="elevation">@dimen/design_bottom_navigation_elevation</item>
  4811. <item name="itemBackground">?attr/selectableItemBackgroundBorderless</item>
  4812. <item name="itemHorizontalTranslationEnabled">true</item>
  4813. <item name="itemIconSize">@dimen/design_bottom_navigation_icon_size</item>
  4814. <item name="labelVisibilityMode">auto</item>
  4815. </style>
  4816. <style name="Widget.Design.BottomSheet.Modal" parent="android:Widget">
  4817. <item name="android:background">?android:attr/colorBackground</item>
  4818. <item name="android:elevation" ns2:ignore="NewApi">
  4819. @dimen/design_bottom_sheet_modal_elevation
  4820. </item>
  4821. <item name="behavior_peekHeight">auto</item>
  4822. <item name="behavior_hideable">true</item>
  4823. <item name="behavior_skipCollapsed">false</item>
  4824. </style>
  4825. <style name="Widget.Design.CollapsingToolbar" parent="android:Widget">
  4826. <item name="expandedTitleMargin">32dp</item>
  4827. <item name="statusBarScrim">?attr/colorPrimaryDark</item>
  4828. </style>
  4829. <style name="Widget.Design.FloatingActionButton" parent="android:Widget">
  4830. <item name="android:background">@drawable/design_fab_background</item>
  4831. <item name="android:clickable">true</item>
  4832. <item name="android:focusable">true</item>
  4833. <item name="backgroundTint">?attr/colorAccent</item>
  4834. <item name="fabSize">auto</item>
  4835. <item name="elevation">@dimen/design_fab_elevation</item>
  4836. <item name="hoveredFocusedTranslationZ">@dimen/design_fab_translation_z_hovered_focused</item>
  4837. <item name="pressedTranslationZ">@dimen/design_fab_translation_z_pressed</item>
  4838. <item name="rippleColor">?attr/colorControlHighlight</item>
  4839. <item name="borderWidth">@dimen/design_fab_border_width</item>
  4840. <item name="maxImageSize">@dimen/design_fab_image_size</item>
  4841. <item name="showMotionSpec">@animator/design_fab_show_motion_spec</item>
  4842. <item name="hideMotionSpec">@animator/design_fab_hide_motion_spec</item>
  4843. </style>
  4844. <style name="Widget.Design.NavigationView" parent="">
  4845. <item name="elevation">@dimen/design_navigation_elevation</item>
  4846. <item name="itemIconPadding">@dimen/design_navigation_item_icon_padding</item>
  4847. <item name="itemHorizontalPadding">@dimen/design_navigation_item_horizontal_padding</item>
  4848. <item name="android:background">?android:attr/windowBackground</item>
  4849. <item name="android:fitsSystemWindows">true</item>
  4850. <item name="android:maxWidth">@dimen/design_navigation_max_width</item>
  4851. </style>
  4852. <style name="Widget.Design.ScrimInsetsFrameLayout" parent="">
  4853. <item name="insetForeground">#4000</item>
  4854. </style>
  4855. <style name="Widget.Design.Snackbar" parent="android:Widget">
  4856. <item name="android:minWidth">@dimen/design_snackbar_min_width</item>
  4857. <item name="android:maxWidth">@dimen/design_snackbar_max_width</item>
  4858. <item name="android:background">@drawable/design_snackbar_background</item>
  4859. <item name="android:paddingLeft">@dimen/design_snackbar_padding_horizontal</item>
  4860. <item name="android:paddingRight">@dimen/design_snackbar_padding_horizontal</item>
  4861. <item name="elevation">@dimen/design_snackbar_elevation</item>
  4862. <item name="maxActionInlineWidth">@dimen/design_snackbar_action_inline_max_width</item>
  4863. </style>
  4864. <style name="Widget.Design.TabLayout" parent="Base.Widget.Design.TabLayout">
  4865. <item name="tabGravity">fill</item>
  4866. <item name="tabMode">fixed</item>
  4867. <item name="tabIndicatorFullWidth">true</item>
  4868. </style>
  4869. <style name="Widget.Design.TextInputLayout" parent="android:Widget">
  4870. <item name="boxBackgroundMode">none</item>
  4871. <item name="hintTextAppearance">@style/TextAppearance.Design.Hint</item>
  4872. <item name="helperTextTextAppearance">@style/TextAppearance.Design.HelperText</item>
  4873. <item name="errorTextAppearance">@style/TextAppearance.Design.Error</item>
  4874. <item name="counterTextAppearance">@style/TextAppearance.Design.Counter</item>
  4875. <item name="counterOverflowTextAppearance">@style/TextAppearance.Design.Counter.Overflow</item>
  4876. <item name="passwordToggleDrawable">@drawable/design_password_eye</item>
  4877. <item name="passwordToggleTint">@color/design_tint_password_toggle</item>
  4878. <item name="passwordToggleContentDescription">@string/password_toggle_content_description</item>
  4879. </style>
  4880. <style name="Widget.MaterialComponents.BottomAppBar" parent="Widget.AppCompat.Toolbar">
  4881. <item name="backgroundTint">@android:color/white</item>
  4882. <item name="fabCradleMargin">@dimen/mtrl_bottomappbar_fab_cradle_margin</item>
  4883. <item name="fabCradleRoundedCornerRadius">
  4884. @dimen/mtrl_bottomappbar_fab_cradle_rounded_corner_radius
  4885. </item>
  4886. <item name="fabCradleVerticalOffset">@dimen/mtrl_bottomappbar_fab_cradle_vertical_offset</item>
  4887. </style>
  4888. <style name="Widget.MaterialComponents.BottomAppBar.Colored" parent="Widget.MaterialComponents.BottomAppBar">
  4889. <item name="backgroundTint">?attr/colorPrimary</item>
  4890. </style>
  4891. <style name="Widget.MaterialComponents.BottomNavigationView" parent="Widget.Design.BottomNavigationView">
  4892. <item name="android:background">@android:color/white</item>
  4893. <item name="enforceTextAppearance">true</item>
  4894. <item name="itemHorizontalTranslationEnabled">false</item>
  4895. <item name="itemIconTint">@color/mtrl_bottom_nav_item_tint</item>
  4896. <item name="itemTextAppearanceInactive">?attr/textAppearanceCaption</item>
  4897. <item name="itemTextAppearanceActive">?attr/textAppearanceCaption</item>
  4898. <item name="itemTextColor">@color/mtrl_bottom_nav_item_tint</item>
  4899. </style>
  4900. <style name="Widget.MaterialComponents.BottomNavigationView.Colored">
  4901. <item name="android:background">?attr/colorPrimary</item>
  4902. <item name="itemIconTint">@color/mtrl_bottom_nav_colored_item_tint</item>
  4903. <item name="itemTextAppearanceInactive">?attr/textAppearanceCaption</item>
  4904. <item name="itemTextAppearanceActive">?attr/textAppearanceCaption</item>
  4905. <item name="itemTextColor">@color/mtrl_bottom_nav_colored_item_tint</item>
  4906. </style>
  4907. <style name="Widget.MaterialComponents.BottomSheet.Modal" parent="Widget.Design.BottomSheet.Modal"/>
  4908. <style name="Widget.MaterialComponents.Button" parent="Widget.AppCompat.Button">
  4909. <item name="enforceTextAppearance">true</item>
  4910. <item name="android:textAppearance">?attr/textAppearanceButton</item>
  4911. <item name="android:textColor">@color/mtrl_btn_text_color_selector</item>
  4912. <item name="android:paddingLeft">@dimen/mtrl_btn_padding_left</item>
  4913. <item name="android:paddingRight">@dimen/mtrl_btn_padding_right</item>
  4914. <item name="android:paddingTop">@dimen/mtrl_btn_padding_top</item>
  4915. <item name="android:paddingBottom">@dimen/mtrl_btn_padding_bottom</item>
  4916. <item name="android:insetLeft">0dp</item>
  4917. <item name="android:insetRight">0dp</item>
  4918. <item name="android:insetTop">@dimen/mtrl_btn_inset</item>
  4919. <item name="android:insetBottom">@dimen/mtrl_btn_inset</item>
  4920. <item name="android:stateListAnimator" ns2:ignore="NewApi">@animator/mtrl_btn_state_list_anim</item>
  4921. <item name="cornerRadius">@dimen/mtrl_btn_corner_radius</item>
  4922. <item name="iconPadding">@dimen/mtrl_btn_icon_padding</item>
  4923. <item name="iconTint">@color/mtrl_btn_text_color_selector</item>
  4924. <item name="rippleColor">@color/mtrl_btn_ripple_color</item>
  4925. <item name="backgroundTint">@color/mtrl_btn_bg_color_selector</item>
  4926. </style>
  4927. <style name="Widget.MaterialComponents.Button.Icon">
  4928. <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item>
  4929. </style>
  4930. <style name="Widget.MaterialComponents.Button.OutlinedButton" parent="Widget.MaterialComponents.Button.TextButton">
  4931. <item name="android:paddingLeft">@dimen/mtrl_btn_padding_left</item>
  4932. <item name="android:paddingRight">@dimen/mtrl_btn_padding_right</item>
  4933. <item name="strokeColor">@color/mtrl_btn_stroke_color_selector</item>
  4934. <item name="strokeWidth">@dimen/mtrl_btn_stroke_size</item>
  4935. </style>
  4936. <style name="Widget.MaterialComponents.Button.OutlinedButton.Icon">
  4937. <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item>
  4938. </style>
  4939. <style name="Widget.MaterialComponents.Button.TextButton" parent="Widget.MaterialComponents.Button.UnelevatedButton">
  4940. <item name="android:textColor">@color/mtrl_text_btn_text_color_selector</item>
  4941. <item name="android:paddingLeft">@dimen/mtrl_btn_text_btn_padding_left</item>
  4942. <item name="android:paddingRight">@dimen/mtrl_btn_text_btn_padding_right</item>
  4943. <item name="iconTint">@color/mtrl_text_btn_text_color_selector</item>
  4944. <item name="iconPadding">@dimen/mtrl_btn_text_btn_icon_padding</item>
  4945. <item name="backgroundTint">@color/mtrl_btn_transparent_bg_color</item>
  4946. <item name="rippleColor">@color/mtrl_btn_text_btn_ripple_color</item>
  4947. </style>
  4948. <style name="Widget.MaterialComponents.Button.TextButton.Dialog">
  4949. <item name="android:minWidth">@dimen/mtrl_btn_dialog_btn_min_width</item>
  4950. </style>
  4951. <style name="Widget.MaterialComponents.Button.TextButton.Dialog.Icon">
  4952. <!-- Icon text button has the same padding as a regular text button -->
  4953. </style>
  4954. <style name="Widget.MaterialComponents.Button.TextButton.Icon">
  4955. <!-- Icon text button has the same padding as a regular text button -->
  4956. </style>
  4957. <style name="Widget.MaterialComponents.Button.UnelevatedButton">
  4958. <item name="android:stateListAnimator" ns2:ignore="NewApi">@animator/mtrl_btn_unelevated_state_list_anim</item>
  4959. </style>
  4960. <style name="Widget.MaterialComponents.Button.UnelevatedButton.Icon">
  4961. <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item>
  4962. </style>
  4963. <style name="Widget.MaterialComponents.CardView" parent="CardView">
  4964. <item name="cardElevation">@dimen/mtrl_card_elevation</item>
  4965. <item name="cardBackgroundColor">?attr/colorBackgroundFloating</item>
  4966. </style>
  4967. <style name="Widget.MaterialComponents.Chip.Action" parent="Base.Widget.MaterialComponents.Chip">
  4968. <item name="closeIconVisible">false</item>
  4969. </style>
  4970. <style name="Widget.MaterialComponents.Chip.Choice" parent="Base.Widget.MaterialComponents.Chip">
  4971. <item name="android:checkable">true</item>
  4972. <item name="chipIconVisible">false</item>
  4973. <item name="checkedIconVisible">false</item>
  4974. <item name="closeIconVisible">false</item>
  4975. <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_black</item>
  4976. </style>
  4977. <style name="Widget.MaterialComponents.Chip.Entry" parent="Base.Widget.MaterialComponents.Chip">
  4978. <item name="android:checkable">true</item>
  4979. </style>
  4980. <style name="Widget.MaterialComponents.Chip.Filter" parent="Base.Widget.MaterialComponents.Chip">
  4981. <item name="android:checkable">true</item>
  4982. <item name="chipIconVisible">false</item>
  4983. <item name="closeIconVisible">false</item>
  4984. <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_black</item>
  4985. </style>
  4986. <style name="Widget.MaterialComponents.ChipGroup" parent="android:Widget">
  4987. <item name="chipSpacing">4dp</item>
  4988. <item name="singleLine">false</item>
  4989. <item name="singleSelection">false</item>
  4990. </style>
  4991. <style name="Widget.MaterialComponents.FloatingActionButton" parent="Widget.Design.FloatingActionButton">
  4992. <item name="elevation">@dimen/mtrl_fab_elevation</item>
  4993. <item name="hoveredFocusedTranslationZ">@dimen/mtrl_fab_translation_z_hovered_focused</item>
  4994. <item name="pressedTranslationZ">@dimen/mtrl_fab_translation_z_pressed</item>
  4995. <item name="rippleColor">@color/mtrl_fab_ripple_color</item>
  4996. <item name="showMotionSpec">@animator/mtrl_fab_show_motion_spec</item>
  4997. <item name="hideMotionSpec">@animator/mtrl_fab_hide_motion_spec</item>
  4998. </style>
  4999. <style name="Widget.MaterialComponents.NavigationView" parent="Widget.Design.NavigationView">
  5000. <item name="elevation">@dimen/mtrl_navigation_elevation</item>
  5001. <item name="itemIconPadding">@dimen/mtrl_navigation_item_icon_padding</item>
  5002. <item name="itemHorizontalPadding">@dimen/mtrl_navigation_item_horizontal_padding</item>
  5003. </style>
  5004. <style name="Widget.MaterialComponents.Snackbar" parent="Widget.Design.Snackbar">
  5005. <item name="android:background">@drawable/mtrl_snackbar_background</item>
  5006. <item name="android:layout_margin">@dimen/mtrl_snackbar_margin</item>
  5007. </style>
  5008. <style name="Widget.MaterialComponents.Snackbar.FullWidth" parent="Widget.Design.Snackbar"/>
  5009. <style name="Widget.MaterialComponents.TabLayout" parent="Widget.Design.TabLayout">
  5010. <item name="enforceTextAppearance">true</item>
  5011. <item name="android:background">@android:color/white</item>
  5012. <item name="tabIconTint">@color/mtrl_tabs_icon_color_selector</item>
  5013. <item name="tabIndicatorAnimationDuration">@integer/mtrl_tab_indicator_anim_duration_ms</item>
  5014. <item name="tabIndicatorColor">?attr/colorAccent</item>
  5015. <item name="tabTextAppearance">?attr/textAppearanceButton</item>
  5016. <item name="tabTextColor">@color/mtrl_tabs_icon_color_selector</item>
  5017. <item name="tabRippleColor">@color/mtrl_tabs_ripple_color</item>
  5018. <item name="tabUnboundedRipple">true</item>
  5019. </style>
  5020. <style name="Widget.MaterialComponents.TabLayout.Colored">
  5021. <item name="android:background">?attr/colorAccent</item>
  5022. <item name="tabIconTint">@color/mtrl_tabs_icon_color_selector_colored</item>
  5023. <item name="tabIndicatorColor">@android:color/white</item>
  5024. <item name="tabTextColor">@color/mtrl_tabs_icon_color_selector_colored</item>
  5025. <item name="tabRippleColor">@color/mtrl_tabs_colored_ripple_color</item>
  5026. </style>
  5027. <style name="Widget.MaterialComponents.TextInputEditText.FilledBox" parent="Base.Widget.MaterialComponents.TextInputEditText">
  5028. <item name="android:paddingTop">20dp</item>
  5029. <item name="android:paddingBottom">16dp</item>
  5030. </style>
  5031. <style name="Widget.MaterialComponents.TextInputEditText.FilledBox.Dense">
  5032. <item name="android:paddingTop">16dp</item>
  5033. <item name="android:paddingBottom">16dp</item>
  5034. </style>
  5035. <style name="Widget.MaterialComponents.TextInputEditText.OutlinedBox" parent="Base.Widget.MaterialComponents.TextInputEditText"/>
  5036. <style name="Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense">
  5037. <item name="android:paddingTop">12dp</item>
  5038. <item name="android:paddingBottom">12dp</item>
  5039. </style>
  5040. <style name="Widget.MaterialComponents.TextInputLayout.FilledBox" parent="Base.Widget.MaterialComponents.TextInputLayout">
  5041. <item name="android:theme">@style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox</item>
  5042. <item name="boxBackgroundMode">filled</item>
  5043. <item name="boxBackgroundColor">@color/mtrl_textinput_filled_box_default_background_color</item>
  5044. <item name="boxCollapsedPaddingTop">12dp</item>
  5045. <item name="boxCornerRadiusBottomStart">@dimen/mtrl_textinput_box_corner_radius_small</item>
  5046. <item name="boxCornerRadiusBottomEnd">@dimen/mtrl_textinput_box_corner_radius_small</item>
  5047. </style>
  5048. <style name="Widget.MaterialComponents.TextInputLayout.FilledBox.Dense">
  5049. <item name="android:theme">@style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense</item>
  5050. <item name="boxCollapsedPaddingTop">8dp</item>
  5051. </style>
  5052. <style name="Widget.MaterialComponents.TextInputLayout.OutlinedBox" parent="Base.Widget.MaterialComponents.TextInputLayout">
  5053. <item name="android:theme">@style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox
  5054. </item>
  5055. <item name="boxCollapsedPaddingTop">0dp</item>
  5056. </style>
  5057. <style name="Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense">
  5058. <item name="android:theme">
  5059. @style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense
  5060. </item>
  5061. </style>
  5062. <style name="Widget.MaterialComponents.Toolbar" parent="Widget.AppCompat.Toolbar">
  5063. <item name="titleTextAppearance">?attr/textAppearanceHeadline6</item>
  5064. <item name="titleTextColor">?android:attr/textColorPrimary</item>
  5065. <item name="subtitleTextAppearance">?attr/textAppearanceSubtitle1</item>
  5066. <item name="subtitleTextColor">?android:attr/textColorSecondary</item>
  5067. <!-- Overrides minimum height in landscape to avoid headline6 and subtitle1
  5068. height concerns. -->
  5069. <item name="android:minHeight">@dimen/mtrl_toolbar_default_height</item>
  5070. </style>
  5071. <style name="Widget.Picker" parent="@android:style/Theme.Holo.Light">
  5072. <item name="android:textSize">@dimen/NormalTextSize</item>
  5073. <item name="android:textColor">@color/black_text_color</item>
  5074. </style>
  5075. <style name="Widget.Support.CoordinatorLayout" parent="android:Widget">
  5076. <item name="statusBarBackground">#000000</item>
  5077. </style>
  5078. <style name="Widget.WMPF" parent="AppTheme"/>
  5079. <style name="Widget.WMPF.QRLogin.Button.Medium" parent="Widget.WMPF.QRLogin.Text">
  5080. <item name="autoSizeTextType">uniform</item>
  5081. <item name="autoSizeMinTextSize">10dp</item>
  5082. <item name="autoSizeMaxTextSize">14dp</item>
  5083. <item name="autoSizeStepGranularity">.5dp</item>
  5084. <item name="android:padding">3dp</item>
  5085. <item name="android:background">@drawable/qrcode_login_alert_button</item>
  5086. </style>
  5087. <style name="Widget.WMPF.QRLogin.Text" parent="Widget.WMPF">
  5088. <item name="android:lineSpacingMultiplier">1</item>
  5089. <item name="android:lineSpacingExtra">0px</item>
  5090. <item name="android:gravity">center</item>
  5091. </style>
  5092. <style name="Widget.WMPF.QRLogin.Text.Large">
  5093. <item name="autoSizeTextType">uniform</item>
  5094. <item name="autoSizeMinTextSize">16dp</item>
  5095. <item name="autoSizeMaxTextSize">22dp</item>
  5096. <item name="autoSizeStepGranularity">.5dp</item>
  5097. </style>
  5098. <style name="Widget.WMPF.QRLogin.Text.Primary">
  5099. <item name="autoSizeTextType">uniform</item>
  5100. <item name="autoSizeMinTextSize">13dp</item>
  5101. <item name="autoSizeMaxTextSize">18dp</item>
  5102. <item name="autoSizeStepGranularity">.5dp</item>
  5103. </style>
  5104. <style name="Widget.WMPF.QRLogin.Text.Secondary">
  5105. <item name="autoSizeTextType">uniform</item>
  5106. <item name="autoSizeMinTextSize">12dp</item>
  5107. <item name="autoSizeMaxTextSize">17dp</item>
  5108. <item name="autoSizeStepGranularity">.5dp</item>
  5109. </style>
  5110. <style name="WxaAppContainerTheme" parent="Theme.LuggageApp.Standalone">
  5111. <item name="android:windowIsTranslucent">false</item>
  5112. <item name="android:windowDisablePreview">true</item>
  5113. <item name="android:windowBackground">@color/transparent</item>
  5114. <item name="android:windowNoTitle">true</item>
  5115. <item name="windowNoTitle">true</item>
  5116. <item name="android:windowActionBar">false</item>
  5117. <item name="windowActionBar">false</item>
  5118. <item name="radio_selector">@drawable/round_selector</item>
  5119. <item name="checkbox_selector">@drawable/wmpf_checkbox_btn</item>
  5120. </style>
  5121. <style name="largeCustomGreenProgressBar" parent="@android:style/Widget.ProgressBar.Large">
  5122. <item name="android:indeterminateDrawable">@drawable/progress_green_large_holo</item>
  5123. </style>
  5124. <style name="largeCustomProgressBar" parent="@android:style/Widget.ProgressBar.Large">
  5125. <item name="android:indeterminateDrawable">@drawable/progress_large_holo</item>
  5126. </style>
  5127. <style name="largeCustomWhiteProgressBar" parent="@android:style/Widget.ProgressBar.Large">
  5128. <item name="android:indeterminateDrawable">@drawable/progress_white_large_holo</item>
  5129. </style>
  5130. <style name="mediumCustomGreenProgressBar" parent="@android:style/Widget.ProgressBar">
  5131. <item name="android:indeterminateDrawable">@drawable/progress_green_medium_holo</item>
  5132. </style>
  5133. <style name="mediumCustomProgressBar" parent="@android:style/Widget.ProgressBar">
  5134. <item name="android:indeterminateDrawable">@drawable/progress_medium_holo</item>
  5135. </style>
  5136. <style name="mediumCustomWhiteProgressBar" parent="@android:style/Widget.ProgressBar">
  5137. <item name="android:indeterminateDrawable">@drawable/progress_white_medium_holo</item>
  5138. </style>
  5139. <style name="mediumSingleWhiteProgressBar" parent="@android:style/Widget.ProgressBar">
  5140. <item name="android:indeterminateDrawable">@drawable/progress_single_white_medium_holo
  5141. </item>
  5142. </style>
  5143. <style name="mmalertdialog" parent="@android:style/Theme.Dialog">
  5144. <item name="android:windowFrame">@null</item>
  5145. <item name="android:windowIsFloating">true</item>
  5146. <item name="android:windowIsTranslucent">true</item>
  5147. <item name="android:windowNoTitle">true</item>
  5148. <item name="android:background">@color/transparent</item>
  5149. <item name="android:windowBackground">@color/transparent</item>
  5150. <item name="android:backgroundDimEnabled">true</item>
  5151. <item name="android:backgroundDimAmount">0.5</item>
  5152. </style>
  5153. <style name="mmcustomdialog" parent="@android:style/Theme.Dialog">
  5154. <item name="android:windowIsFloating">true</item>
  5155. <item name="android:windowNoTitle">true</item>
  5156. <item name="android:windowBackground">@color/transparent</item>
  5157. </style>
  5158. <style name="mmtipsdialog" parent="@android:style/Theme.Dialog">
  5159. <item name="android:windowFrame">@null</item>
  5160. <item name="android:windowIsFloating">true</item>
  5161. <item name="android:windowIsTranslucent">true</item>
  5162. <item name="android:windowNoTitle">true</item>
  5163. <item name="android:background">@color/transparent</item>
  5164. <item name="android:windowBackground">@color/transparent</item>
  5165. <item name="android:backgroundDimEnabled">false</item>
  5166. </style>
  5167. <style mce_bogus="1" name="picker_view_scale_anim" parent="android:Animation">
  5168. <item name="android:windowEnterAnimation">@anim/pickerview_dialog_scale_in</item>
  5169. <item name="android:windowExitAnimation">@anim/pickerview_dialog_scale_out</item>
  5170. </style>
  5171. <style mce_bogus="1" name="picker_view_slide_anim" parent="android:Animation">
  5172. <item name="android:windowEnterAnimation">@anim/pickerview_slide_in_bottom</item>
  5173. <item name="android:windowExitAnimation">@anim/pickerview_slide_out_bottom</item>
  5174. </style>
  5175. <style name="smallCustomGreenProgressBar" parent="@android:style/Widget.ProgressBar.Small">
  5176. <item name="android:indeterminateDrawable">@drawable/progress_green_small_holo</item>
  5177. </style>
  5178. <style name="smallCustomProgressBar" parent="@android:style/Widget.ProgressBar.Small">
  5179. <item name="android:indeterminateDrawable">@drawable/progress_small_holo</item>
  5180. </style>
  5181. <style name="smallCustomWhiteProgressBar" parent="@android:style/Widget.ProgressBar.Small">
  5182. <item name="android:indeterminateDrawable">@drawable/progress_white_small_holo</item>
  5183. </style>
  5184. <style name="smallSingleWhiteProgressBar" parent="@android:style/Widget.ProgressBar.Small">
  5185. <item name="android:indeterminateDrawable">@drawable/progress_single_white_small_holo</item>
  5186. </style>
  5187. <style name="wmpf_round_checkbox_WeUITheme" parent="WeUITheme">
  5188. <item name="radio_selector">@drawable/round_selector</item>
  5189. <item name="checkbox_selector">@drawable/wmpf_checkbox_btn</item>
  5190. </style>
  5191. <declare-styleable name="ActionBar">
  5192. <!-- The type of navigation to use. -->
  5193. <attr name="navigationMode">
  5194. <!-- Normal static title text -->
  5195. <enum name="normal" value="0"/>
  5196. <!-- The action bar will use a selection list for navigation. -->
  5197. <enum name="listMode" value="1"/>
  5198. <!-- The action bar will use a series of horizontal tabs for navigation. -->
  5199. <enum name="tabMode" value="2"/>
  5200. </attr>
  5201. <!-- Options affecting how the action bar is displayed. -->
  5202. <attr name="displayOptions">
  5203. <flag name="none" value="0"/>
  5204. <flag name="useLogo" value="0x1"/>
  5205. <flag name="showHome" value="0x2"/>
  5206. <flag name="homeAsUp" value="0x4"/>
  5207. <flag name="showTitle" value="0x8"/>
  5208. <flag name="showCustom" value="0x10"/>
  5209. <flag name="disableHome" value="0x20"/>
  5210. </attr>
  5211. <!-- Specifies title text used for navigationMode="normal" -->
  5212. <attr name="title"/>
  5213. <!-- Specifies subtitle text used for navigationMode="normal" -->
  5214. <attr format="string" name="subtitle"/>
  5215. <!-- Specifies a style to use for title text. -->
  5216. <attr format="reference" name="titleTextStyle"/>
  5217. <!-- Specifies a style to use for subtitle text. -->
  5218. <attr format="reference" name="subtitleTextStyle"/>
  5219. <!-- Specifies the drawable used for the application icon. -->
  5220. <attr format="reference" name="icon"/>
  5221. <!-- Specifies the drawable used for the application logo. -->
  5222. <attr format="reference" name="logo"/>
  5223. <!-- Specifies the drawable used for item dividers. -->
  5224. <attr format="reference" name="divider"/>
  5225. <!-- Specifies a background drawable for the action bar. -->
  5226. <attr format="reference" name="background"/>
  5227. <!-- Specifies a background drawable for a second stacked row of the action bar. -->
  5228. <attr format="reference|color" name="backgroundStacked"/>
  5229. <!-- Specifies a background drawable for the bottom component of a split action bar. -->
  5230. <attr format="reference|color" name="backgroundSplit"/>
  5231. <!-- Specifies a layout for custom navigation. Overrides navigationMode. -->
  5232. <attr format="reference" name="customNavigationLayout"/>
  5233. <!-- Specifies a fixed height. -->
  5234. <attr name="height"/>
  5235. <!-- Specifies a layout to use for the "home" section of the action bar. -->
  5236. <attr format="reference" name="homeLayout"/>
  5237. <!-- Specifies a style resource to use for an embedded progress bar. -->
  5238. <attr format="reference" name="progressBarStyle"/>
  5239. <!-- Specifies a style resource to use for an indeterminate progress spinner. -->
  5240. <attr format="reference" name="indeterminateProgressStyle"/>
  5241. <!-- Specifies the horizontal padding on either end for an embedded progress bar. -->
  5242. <attr format="dimension" name="progressBarPadding"/>
  5243. <!-- Up navigation glyph -->
  5244. <attr name="homeAsUpIndicator"/>
  5245. <!-- Specifies padding that should be applied to the left and right sides of
  5246. system-provided items in the bar. -->
  5247. <attr format="dimension" name="itemPadding"/>
  5248. <!-- Set true to hide the action bar on a vertical nested scroll of content. -->
  5249. <attr format="boolean" name="hideOnContentScroll"/>
  5250. <!-- Minimum inset for content views within a bar. Navigation buttons and
  5251. menu views are excepted. Only valid for some themes and configurations. -->
  5252. <attr format="dimension" name="contentInsetStart"/>
  5253. <!-- Minimum inset for content views within a bar. Navigation buttons and
  5254. menu views are excepted. Only valid for some themes and configurations. -->
  5255. <attr format="dimension" name="contentInsetEnd"/>
  5256. <!-- Minimum inset for content views within a bar. Navigation buttons and
  5257. menu views are excepted. Only valid for some themes and configurations. -->
  5258. <attr format="dimension" name="contentInsetLeft"/>
  5259. <!-- Minimum inset for content views within a bar. Navigation buttons and
  5260. menu views are excepted. Only valid for some themes and configurations. -->
  5261. <attr format="dimension" name="contentInsetRight"/>
  5262. <!-- Minimum inset for content views within a bar when a navigation button
  5263. is present, such as the Up button. Only valid for some themes and configurations. -->
  5264. <attr format="dimension" name="contentInsetStartWithNavigation"/>
  5265. <!-- Minimum inset for content views within a bar when actions from a menu
  5266. are present. Only valid for some themes and configurations. -->
  5267. <attr format="dimension" name="contentInsetEndWithActions"/>
  5268. <!-- Elevation for the action bar itself -->
  5269. <attr format="dimension" name="elevation"/>
  5270. <!-- Reference to a theme that should be used to inflate popups
  5271. shown by widgets in the action bar. -->
  5272. <attr format="reference" name="popupTheme"/>
  5273. </declare-styleable>
  5274. <declare-styleable name="ActionBarLayout">
  5275. <attr name="android:layout_gravity"/>
  5276. </declare-styleable>
  5277. <declare-styleable name="ActionMenuItemView">
  5278. <attr name="android:minWidth"/>
  5279. </declare-styleable>
  5280. <declare-styleable name="ActionMenuView">
  5281. <!-- Size of padding on either end of a divider. -->
  5282. </declare-styleable>
  5283. <declare-styleable name="ActionMode">
  5284. <!-- Specifies a style to use for title text. -->
  5285. <attr name="titleTextStyle"/>
  5286. <!-- Specifies a style to use for subtitle text. -->
  5287. <attr name="subtitleTextStyle"/>
  5288. <!-- Specifies a background for the action mode bar. -->
  5289. <attr name="background"/>
  5290. <!-- Specifies a background for the split action mode bar. -->
  5291. <attr name="backgroundSplit"/>
  5292. <!-- Specifies a fixed height for the action mode bar. -->
  5293. <attr name="height"/>
  5294. <!-- Specifies a layout to use for the "close" item at the starting edge. -->
  5295. <attr format="reference" name="closeItemLayout"/>
  5296. </declare-styleable>
  5297. <declare-styleable name="ActivityChooserView">
  5298. <!-- The maximal number of items initially shown in the activity list. -->
  5299. <attr format="string" name="initialActivityCount"/>
  5300. <!-- The drawable to show in the button for expanding the activities overflow popup.
  5301. <strong>Note:</strong> Clients would like to set this drawable
  5302. as a clue about the action the chosen activity will perform. For
  5303. example, if share activity is to be chosen the drawable should
  5304. give a clue that sharing is to be performed.
  5305. -->
  5306. <attr format="reference" name="expandActivityOverflowButtonDrawable"/>
  5307. </declare-styleable>
  5308. <declare-styleable name="AlertDialog">
  5309. <attr name="android:layout"/>
  5310. <attr format="reference" name="buttonPanelSideLayout"/>
  5311. <attr format="reference" name="listLayout"/>
  5312. <attr format="reference" name="multiChoiceItemLayout"/>
  5313. <attr format="reference" name="singleChoiceItemLayout"/>
  5314. <attr format="reference" name="listItemLayout"/>
  5315. <attr format="boolean" name="showTitle"/>
  5316. <attr format="dimension" name="buttonIconDimen"/>
  5317. </declare-styleable>
  5318. <declare-styleable name="AnimatedStateListDrawableCompat">
  5319. <!-- Indicates whether the drawable should be initially visible. -->
  5320. <attr name="android:visible"/>
  5321. <!-- If true, allows the drawable's padding to change based on the
  5322. current state that is selected. If false, the padding will
  5323. stay the same (based on the maximum padding of all the states).
  5324. Enabling this feature requires that the owner of the drawable
  5325. deal with performing layout when the state changes, which is
  5326. often not supported. -->
  5327. <attr name="android:variablePadding"/>
  5328. <!-- If true, the drawable's reported internal size will remain
  5329. constant as the state changes; the size is the maximum of all
  5330. of the states. If false, the size will vary based on the
  5331. current state. -->
  5332. <attr name="android:constantSize"/>
  5333. <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
  5334. same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
  5335. an RGB 565 screen). -->
  5336. <attr name="android:dither"/>
  5337. <!-- Amount of time (in milliseconds) to fade in a new state drawable. -->
  5338. <attr name="android:enterFadeDuration"/>
  5339. <!-- Amount of time (in milliseconds) to fade out an old state drawable. -->
  5340. <attr name="android:exitFadeDuration"/>
  5341. <!-- Indicates if the drawable needs to be mirrored when its layout direction is
  5342. RTL (right-to-left). -->
  5343. <!--<attr name="autoMirrored"/>-->
  5344. </declare-styleable>
  5345. <declare-styleable name="AnimatedStateListDrawableItem">
  5346. <!-- Reference to a drawable resource to use for the frame. If not
  5347. given, the drawable must be defined by the first child tag. -->
  5348. <attr name="android:drawable"/>
  5349. <!-- Keyframe identifier for use in specifying transitions. -->
  5350. <attr name="android:id"/>
  5351. </declare-styleable>
  5352. <declare-styleable name="AnimatedStateListDrawableTransition">
  5353. <!-- Keyframe identifier for the starting state. -->
  5354. <attr name="android:fromId"/>
  5355. <!-- Keyframe identifier for the ending state. -->
  5356. <attr name="android:toId"/>
  5357. <!-- Reference to a animation drawable resource to use for the frame. If not
  5358. given, the animation drawable must be defined by the first child tag. -->
  5359. <attr name="android:drawable"/>
  5360. <!-- Whether this transition is reversible. -->
  5361. <attr name="android:reversible"/>
  5362. </declare-styleable>
  5363. <declare-styleable name="AppBarLayout"><attr name="elevation"/><attr name="android:background"/><attr format="boolean" name="expanded"/><attr name="android:keyboardNavigationCluster"/><attr name="android:touchscreenBlocksFocus"/><attr format="boolean" name="liftOnScroll"/></declare-styleable>
  5364. <declare-styleable name="AppBarLayoutStates"><attr format="boolean" name="state_collapsed"/><attr format="boolean" name="state_collapsible"/><attr format="boolean" name="state_lifted"/><attr format="boolean" name="state_liftable"/></declare-styleable>
  5365. <declare-styleable name="AppBarLayout_Layout"><attr name="layout_scrollFlags">
  5366. <flag name="scroll" value="0x1"/>
  5367. <flag name="exitUntilCollapsed" value="0x2"/>
  5368. <flag name="enterAlways" value="0x4"/>
  5369. <flag name="enterAlwaysCollapsed" value="0x8"/>
  5370. <flag name="snap" value="0x10"/>
  5371. <flag name="snapMargins" value="0x20"/>
  5372. </attr><attr format="reference" name="layout_scrollInterpolator"/></declare-styleable>
  5373. <declare-styleable name="AppCompatImageView">
  5374. <attr name="android:src"/>
  5375. <!-- Sets a drawable as the content of this ImageView. Allows the use of vector drawable
  5376. when running on older versions of the platform. -->
  5377. <attr format="reference" name="srcCompat"/>
  5378. <!-- Tint to apply to the image source. -->
  5379. <attr format="color" name="tint"/>
  5380. <!-- Blending mode used to apply the image source tint. -->
  5381. <attr name="tintMode">
  5382. <!-- The tint is drawn on top of the drawable.
  5383. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  5384. <enum name="src_over" value="3"/>
  5385. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  5386. color channels are thrown out. [Sa * Da, Sc * Da] -->
  5387. <enum name="src_in" value="5"/>
  5388. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  5389. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  5390. <enum name="src_atop" value="9"/>
  5391. <!-- Multiplies the color and alpha channels of the drawable with those of
  5392. the tint. [Sa * Da, Sc * Dc] -->
  5393. <enum name="multiply" value="14"/>
  5394. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  5395. <enum name="screen" value="15"/>
  5396. <!-- Combines the tint and icon color and alpha channels, clamping the
  5397. result to valid color values. Saturate(S + D) -->
  5398. <enum name="add" value="16"/>
  5399. </attr>
  5400. </declare-styleable>
  5401. <declare-styleable name="AppCompatSeekBar">
  5402. <attr name="android:thumb"/>
  5403. <!-- Drawable displayed at each progress position on a seekbar. -->
  5404. <attr format="reference" name="tickMark"/>
  5405. <!-- Tint to apply to the tick mark drawable. -->
  5406. <attr format="color" name="tickMarkTint"/>
  5407. <!-- Blending mode used to apply the tick mark tint. -->
  5408. <attr name="tickMarkTintMode">
  5409. <!-- The tint is drawn on top of the drawable.
  5410. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  5411. <enum name="src_over" value="3"/>
  5412. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  5413. color channels are thrown out. [Sa * Da, Sc * Da] -->
  5414. <enum name="src_in" value="5"/>
  5415. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  5416. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  5417. <enum name="src_atop" value="9"/>
  5418. <!-- Multiplies the color and alpha channels of the drawable with those of
  5419. the tint. [Sa * Da, Sc * Dc] -->
  5420. <enum name="multiply" value="14"/>
  5421. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  5422. <enum name="screen" value="15"/>
  5423. <!-- Combines the tint and drawable color and alpha channels, clamping the
  5424. result to valid color values. Saturate(S + D) -->
  5425. <enum name="add" value="16"/>
  5426. </attr>
  5427. </declare-styleable>
  5428. <declare-styleable name="AppCompatTextHelper">
  5429. <attr name="android:drawableLeft"/>
  5430. <attr name="android:drawableTop"/>
  5431. <attr name="android:drawableRight"/>
  5432. <attr name="android:drawableBottom"/>
  5433. <attr name="android:drawableStart"/>
  5434. <attr name="android:drawableEnd"/>
  5435. <attr name="android:textAppearance"/>
  5436. </declare-styleable>
  5437. <declare-styleable name="AppCompatTextView">
  5438. <!-- Present the text in ALL CAPS. This may use a small-caps form when available. -->
  5439. <attr format="reference|boolean" name="textAllCaps"/>
  5440. <!-- Set the textLocale by a comma-separated language tag string,
  5441. for example "ja-JP,zh-CN". This attribute only takes effect on API 21 and above.
  5442. Before API 24, only the first language tag is used. Starting from API 24,
  5443. the string will be converted into a {@link android.os.LocaleList} and then used by
  5444. {@link android.widget.TextView} -->
  5445. <attr format="string" name="textLocale"/>
  5446. <attr name="android:textAppearance"/>
  5447. <!-- Specify the type of auto-size. Note that this feature is not supported by EditText,
  5448. works only for TextView. -->
  5449. <attr format="enum" name="autoSizeTextType">
  5450. <!-- No auto-sizing (default). -->
  5451. <enum name="none" value="0"/>
  5452. <!-- Uniform horizontal and vertical text size scaling to fit within the
  5453. container. -->
  5454. <enum name="uniform" value="1"/>
  5455. </attr>
  5456. <!-- Specify the auto-size step size if <code>autoSizeTextType</code> is set to
  5457. <code>uniform</code>. The default is 1px. Overwrites
  5458. <code>autoSizePresetSizes</code> if set. -->
  5459. <attr format="dimension" name="autoSizeStepGranularity"/>
  5460. <!-- Resource array of dimensions to be used in conjunction with
  5461. <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides
  5462. <code>autoSizeStepGranularity</code> if set. -->
  5463. <attr format="reference" name="autoSizePresetSizes"/>
  5464. <!-- The minimum text size constraint to be used when auto-sizing text. -->
  5465. <attr format="dimension" name="autoSizeMinTextSize"/>
  5466. <!-- The maximum text size constraint to be used when auto-sizing text. -->
  5467. <attr format="dimension" name="autoSizeMaxTextSize"/>
  5468. <!-- The attribute for the font family. -->
  5469. <attr format="string" name="fontFamily"/>
  5470. <!-- Explicit height between lines of text. If set, this will override the values set
  5471. for lineSpacingExtra and lineSpacingMultiplier. -->
  5472. <attr format="dimension" name="lineHeight"/>
  5473. <!-- Distance from the top of the TextView to the first text baseline. If set, this
  5474. overrides the value set for paddingTop. -->
  5475. <attr format="dimension" name="firstBaselineToTopHeight"/>
  5476. <!-- Distance from the bottom of the TextView to the last text baseline. If set, this
  5477. overrides the value set for paddingBottom. -->
  5478. <attr format="dimension" name="lastBaselineToBottomHeight"/>
  5479. <!-- OpenType font variation settings, available after api 26. -->
  5480. <attr format="string" name="fontVariationSettings"/>
  5481. <!-- Compound drawables allowing the use of vector drawable when running on older versions
  5482. of the platform. -->
  5483. <attr format="reference" name="drawableLeftCompat"/>
  5484. <attr format="reference" name="drawableTopCompat"/>
  5485. <attr format="reference" name="drawableRightCompat"/>
  5486. <attr format="reference" name="drawableBottomCompat"/>
  5487. <attr format="reference" name="drawableStartCompat"/>
  5488. <attr format="reference" name="drawableEndCompat"/>
  5489. <!-- Tint to apply to the compound (left, top, etc.) drawables. -->
  5490. <attr format="color" name="drawableTint"/>
  5491. <!-- Blending mode used to apply the compound (left, top, etc.) drawables tint. -->
  5492. <attr name="drawableTintMode">
  5493. <!-- The tint is drawn on top of the drawable.
  5494. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  5495. <enum name="src_over" value="3"/>
  5496. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  5497. color channels are thrown out. [Sa * Da, Sc * Da] -->
  5498. <enum name="src_in" value="5"/>
  5499. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  5500. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  5501. <enum name="src_atop" value="9"/>
  5502. <!-- Multiplies the color and alpha channels of the drawable with those of
  5503. the tint. [Sa * Da, Sc * Dc] -->
  5504. <enum name="multiply" value="14"/>
  5505. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  5506. <enum name="screen" value="15"/>
  5507. <!-- Combines the tint and drawable color and alpha channels, clamping the
  5508. result to valid color values. Saturate(S + D) -->
  5509. <enum name="add" value="16"/>
  5510. </attr>
  5511. </declare-styleable>
  5512. <declare-styleable name="AppCompatTheme">
  5513. <!-- ============= -->
  5514. <!-- Window styles -->
  5515. <!-- ============= -->
  5516. <eat-comment/>
  5517. <!-- Flag indicating whether this window should have an Action Bar
  5518. in place of the usual title bar. -->
  5519. <attr format="boolean" name="windowActionBar"/>
  5520. <!-- Flag indicating whether there should be no title on this window. -->
  5521. <attr format="boolean" name="windowNoTitle"/>
  5522. <!-- Flag indicating whether this window's Action Bar should overlay
  5523. application content. Does nothing if the window would not
  5524. have an Action Bar. -->
  5525. <attr format="boolean" name="windowActionBarOverlay"/>
  5526. <!-- Flag indicating whether action modes should overlay window content
  5527. when there is not reserved space for their UI (such as an Action Bar). -->
  5528. <attr format="boolean" name="windowActionModeOverlay"/>
  5529. <!-- A fixed width for the window along the major axis of the screen,
  5530. that is, when in landscape. Can be either an absolute dimension
  5531. or a fraction of the screen size in that dimension. -->
  5532. <attr format="dimension|fraction" name="windowFixedWidthMajor"/>
  5533. <!-- A fixed height for the window along the minor axis of the screen,
  5534. that is, when in landscape. Can be either an absolute dimension
  5535. or a fraction of the screen size in that dimension. -->
  5536. <attr format="dimension|fraction" name="windowFixedHeightMinor"/>
  5537. <!-- A fixed width for the window along the minor axis of the screen,
  5538. that is, when in portrait. Can be either an absolute dimension
  5539. or a fraction of the screen size in that dimension. -->
  5540. <attr format="dimension|fraction" name="windowFixedWidthMinor"/>
  5541. <!-- A fixed height for the window along the major axis of the screen,
  5542. that is, when in portrait. Can be either an absolute dimension
  5543. or a fraction of the screen size in that dimension. -->
  5544. <attr format="dimension|fraction" name="windowFixedHeightMajor"/>
  5545. <!-- The minimum width the window is allowed to be, along the major
  5546. axis of the screen. That is, when in landscape. Can be either
  5547. an absolute dimension or a fraction of the screen size in that
  5548. dimension. -->
  5549. <attr format="dimension|fraction" name="windowMinWidthMajor"/>
  5550. <!-- The minimum width the window is allowed to be, along the minor
  5551. axis of the screen. That is, when in portrait. Can be either
  5552. an absolute dimension or a fraction of the screen size in that
  5553. dimension. -->
  5554. <attr format="dimension|fraction" name="windowMinWidthMinor"/>
  5555. <attr name="android:windowIsFloating"/>
  5556. <attr name="android:windowAnimationStyle"/>
  5557. <!-- =================== -->
  5558. <!-- Action bar styles -->
  5559. <!-- =================== -->
  5560. <eat-comment/>
  5561. <!-- Default style for tabs within an action bar -->
  5562. <attr format="reference" name="actionBarTabStyle"/>
  5563. <attr format="reference" name="actionBarTabBarStyle"/>
  5564. <attr format="reference" name="actionBarTabTextStyle"/>
  5565. <attr format="reference" name="actionOverflowButtonStyle"/>
  5566. <attr format="reference" name="actionOverflowMenuStyle"/>
  5567. <!-- Reference to a theme that should be used to inflate popups
  5568. shown by widgets in the action bar. -->
  5569. <attr format="reference" name="actionBarPopupTheme"/>
  5570. <!-- Reference to a style for the Action Bar -->
  5571. <attr format="reference" name="actionBarStyle"/>
  5572. <!-- Reference to a style for the split Action Bar. This style
  5573. controls the split component that holds the menu/action
  5574. buttons. actionBarStyle is still used for the primary
  5575. bar. -->
  5576. <attr format="reference" name="actionBarSplitStyle"/>
  5577. <!-- Reference to a theme that should be used to inflate the
  5578. action bar. This will be inherited by any widget inflated
  5579. into the action bar. -->
  5580. <attr format="reference" name="actionBarTheme"/>
  5581. <!-- Reference to a theme that should be used to inflate widgets
  5582. and layouts destined for the action bar. Most of the time
  5583. this will be a reference to the current theme, but when
  5584. the action bar has a significantly different contrast
  5585. profile than the rest of the activity the difference
  5586. can become important. If this is set to @null the current
  5587. theme will be used.-->
  5588. <attr format="reference" name="actionBarWidgetTheme"/>
  5589. <!-- Size of the Action Bar, including the contextual
  5590. bar used to present Action Modes. -->
  5591. <attr format="dimension" name="actionBarSize">
  5592. <enum name="wrap_content" value="0"/>
  5593. </attr>
  5594. <!-- Custom divider drawable to use for elements in the action bar. -->
  5595. <attr format="reference" name="actionBarDivider"/>
  5596. <!-- Custom item state list drawable background for action bar items. -->
  5597. <attr format="reference" name="actionBarItemBackground"/>
  5598. <!-- TextAppearance style that will be applied to text that
  5599. appears within action menu items. -->
  5600. <attr format="reference" name="actionMenuTextAppearance"/>
  5601. <!-- Color for text that appears within action menu items. -->
  5602. <!-- Color for text that appears within action menu items. -->
  5603. <attr format="color|reference" name="actionMenuTextColor"/>
  5604. <!-- =================== -->
  5605. <!-- Action mode styles -->
  5606. <!-- =================== -->
  5607. <eat-comment/>
  5608. <attr format="reference" name="actionModeStyle"/>
  5609. <attr format="reference" name="actionModeCloseButtonStyle"/>
  5610. <!-- Background drawable to use for action mode UI -->
  5611. <attr format="reference" name="actionModeBackground"/>
  5612. <!-- Background drawable to use for action mode UI in the lower split bar -->
  5613. <attr format="reference" name="actionModeSplitBackground"/>
  5614. <!-- Drawable to use for the close action mode button -->
  5615. <attr format="reference" name="actionModeCloseDrawable"/>
  5616. <!-- Drawable to use for the Cut action button in Contextual Action Bar -->
  5617. <attr format="reference" name="actionModeCutDrawable"/>
  5618. <!-- Drawable to use for the Copy action button in Contextual Action Bar -->
  5619. <attr format="reference" name="actionModeCopyDrawable"/>
  5620. <!-- Drawable to use for the Paste action button in Contextual Action Bar -->
  5621. <attr format="reference" name="actionModePasteDrawable"/>
  5622. <!-- Drawable to use for the Select all action button in Contextual Action Bar -->
  5623. <attr format="reference" name="actionModeSelectAllDrawable"/>
  5624. <!-- Drawable to use for the Share action button in WebView selection action modes -->
  5625. <attr format="reference" name="actionModeShareDrawable"/>
  5626. <!-- Drawable to use for the Find action button in WebView selection action modes -->
  5627. <attr format="reference" name="actionModeFindDrawable"/>
  5628. <!-- Drawable to use for the Web Search action button in WebView selection action modes -->
  5629. <attr format="reference" name="actionModeWebSearchDrawable"/>
  5630. <!-- PopupWindow style to use for action modes when showing as a window overlay. -->
  5631. <attr format="reference" name="actionModePopupWindowStyle"/>
  5632. <!-- =================== -->
  5633. <!-- Text styles -->
  5634. <!-- =================== -->
  5635. <eat-comment/>
  5636. <!-- Text color, typeface, size, and style for the text inside of a popup menu. -->
  5637. <attr format="reference" name="textAppearanceLargePopupMenu"/>
  5638. <!-- Text color, typeface, size, and style for small text inside of a popup menu. -->
  5639. <attr format="reference" name="textAppearanceSmallPopupMenu"/>
  5640. <!-- Text color, typeface, size, and style for header text inside of a popup menu. -->
  5641. <attr format="reference" name="textAppearancePopupMenuHeader"/>
  5642. <!-- =================== -->
  5643. <!-- Dialog styles -->
  5644. <!-- =================== -->
  5645. <eat-comment/>
  5646. <!-- Theme to use for dialogs spawned from this theme. -->
  5647. <attr format="reference" name="dialogTheme"/>
  5648. <!-- Preferred padding for dialog content. -->
  5649. <attr format="dimension" name="dialogPreferredPadding"/>
  5650. <!-- The list divider used in alert dialogs. -->
  5651. <attr format="reference" name="listDividerAlertDialog"/>
  5652. <!-- Preferred corner radius of dialogs. -->
  5653. <attr format="dimension" name="dialogCornerRadius"/>
  5654. <!-- =================== -->
  5655. <!-- Other widget styles -->
  5656. <!-- =================== -->
  5657. <eat-comment/>
  5658. <!-- Default ActionBar dropdown style. -->
  5659. <attr format="reference" name="actionDropDownStyle"/>
  5660. <!-- The preferred item height for dropdown lists. -->
  5661. <attr format="dimension" name="dropdownListPreferredItemHeight"/>
  5662. <!-- Default Spinner style. -->
  5663. <attr format="reference" name="spinnerDropDownItemStyle"/>
  5664. <!-- Specifies a drawable to use for the 'home as up' indicator. -->
  5665. <attr format="reference" name="homeAsUpIndicator"/>
  5666. <!-- Default action button style. -->
  5667. <attr format="reference" name="actionButtonStyle"/>
  5668. <!-- Style for button bars -->
  5669. <attr format="reference" name="buttonBarStyle"/>
  5670. <!-- Style for buttons within button bars -->
  5671. <attr format="reference" name="buttonBarButtonStyle"/>
  5672. <!-- A style that may be applied to buttons or other selectable items
  5673. that should react to pressed and focus states, but that do not
  5674. have a clear visual border along the edges. -->
  5675. <attr format="reference" name="selectableItemBackground"/>
  5676. <!-- Background drawable for borderless standalone items that need focus/pressed states. -->
  5677. <attr format="reference" name="selectableItemBackgroundBorderless"/>
  5678. <!-- Style for buttons without an explicit border, often used in groups. -->
  5679. <attr format="reference" name="borderlessButtonStyle"/>
  5680. <!-- A drawable that may be used as a vertical divider between visual elements. -->
  5681. <attr format="reference" name="dividerVertical"/>
  5682. <!-- A drawable that may be used as a horizontal divider between visual elements. -->
  5683. <attr format="reference" name="dividerHorizontal"/>
  5684. <!-- Default ActivityChooserView style. -->
  5685. <attr format="reference" name="activityChooserViewStyle"/>
  5686. <!-- Default Toolbar style. -->
  5687. <attr format="reference" name="toolbarStyle"/>
  5688. <!-- Default Toolar NavigationButtonStyle -->
  5689. <attr format="reference" name="toolbarNavigationButtonStyle"/>
  5690. <!-- Default PopupMenu style. -->
  5691. <attr format="reference" name="popupMenuStyle"/>
  5692. <!-- Default PopupWindow style. -->
  5693. <attr format="reference" name="popupWindowStyle"/>
  5694. <!-- EditText text foreground color. -->
  5695. <attr format="reference|color" name="editTextColor"/>
  5696. <!-- EditText background drawable. -->
  5697. <attr format="reference" name="editTextBackground"/>
  5698. <!-- ImageButton background drawable. -->
  5699. <attr format="reference" name="imageButtonStyle"/>
  5700. <!-- ============================ -->
  5701. <!-- SearchView styles and assets -->
  5702. <!-- ============================ -->
  5703. <eat-comment/>
  5704. <!-- Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. -->
  5705. <attr format="reference" name="textAppearanceSearchResultTitle"/>
  5706. <!-- Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. -->
  5707. <attr format="reference" name="textAppearanceSearchResultSubtitle"/>
  5708. <!-- Text color for urls in search suggestions, used by things like global search -->
  5709. <attr format="reference|color" name="textColorSearchUrl"/>
  5710. <!-- Style for the search query widget. -->
  5711. <attr format="reference" name="searchViewStyle"/>
  5712. <!-- =========== -->
  5713. <!-- List styles -->
  5714. <!-- =========== -->
  5715. <eat-comment/>
  5716. <!-- The preferred list item height. -->
  5717. <attr format="dimension" name="listPreferredItemHeight"/>
  5718. <!-- A smaller, sleeker list item height. -->
  5719. <attr format="dimension" name="listPreferredItemHeightSmall"/>
  5720. <!-- A larger, more robust list item height. -->
  5721. <attr format="dimension" name="listPreferredItemHeightLarge"/>
  5722. <!-- The preferred padding along the left edge of list items. -->
  5723. <attr format="dimension" name="listPreferredItemPaddingLeft"/>
  5724. <!-- The preferred padding along the right edge of list items. -->
  5725. <attr format="dimension" name="listPreferredItemPaddingRight"/>
  5726. <!-- The preferred padding along the start edge of list items. -->
  5727. <attr format="dimension" name="listPreferredItemPaddingStart"/>
  5728. <!-- The preferred padding along the end edge of list items. -->
  5729. <attr format="dimension" name="listPreferredItemPaddingEnd"/>
  5730. <!-- ListPopupWindow compatibility -->
  5731. <attr format="reference" name="dropDownListViewStyle"/>
  5732. <attr format="reference" name="listPopupWindowStyle"/>
  5733. <!-- The preferred TextAppearance for the primary text of list items. -->
  5734. <attr format="reference" name="textAppearanceListItem"/>
  5735. <!-- The preferred TextAppearance for the secondary text of list items. -->
  5736. <attr format="reference" name="textAppearanceListItemSecondary"/>
  5737. <!-- The preferred TextAppearance for the primary text of small list items. -->
  5738. <attr format="reference" name="textAppearanceListItemSmall"/>
  5739. <!-- ============ -->
  5740. <!-- Panel styles -->
  5741. <!-- ============ -->
  5742. <eat-comment/>
  5743. <!-- The background of a panel when it is inset from the left and right edges of the screen. -->
  5744. <attr format="reference" name="panelBackground"/>
  5745. <!-- Default Panel Menu width. -->
  5746. <attr format="dimension" name="panelMenuListWidth"/>
  5747. <!-- Default Panel Menu style. -->
  5748. <attr format="reference" name="panelMenuListTheme"/>
  5749. <!-- Drawable used as a background for selected list items. -->
  5750. <attr format="reference" name="listChoiceBackgroundIndicator"/>
  5751. <!-- ============= -->
  5752. <!-- Color palette -->
  5753. <!-- ============= -->
  5754. <eat-comment/>
  5755. <!-- The primary branding color for the app. By default, this is the color applied to the
  5756. action bar background. -->
  5757. <attr format="color" name="colorPrimary"/>
  5758. <!-- Dark variant of the primary branding color. By default, this is the color applied to
  5759. the status bar (via statusBarColor) and navigation bar (via navigationBarColor). -->
  5760. <attr format="color" name="colorPrimaryDark"/>
  5761. <!-- Bright complement to the primary branding color. By default, this is the color applied
  5762. to framework controls (via colorControlActivated). -->
  5763. <attr format="color" name="colorAccent"/>
  5764. <!-- The color applied to framework controls in their normal state. -->
  5765. <attr format="color" name="colorControlNormal"/>
  5766. <!-- The color applied to framework controls in their activated (ex. checked) state. -->
  5767. <attr format="color" name="colorControlActivated"/>
  5768. <!-- The color applied to framework control highlights (ex. ripples, list selectors). -->
  5769. <attr format="color" name="colorControlHighlight"/>
  5770. <!-- The color applied to framework buttons in their normal state. -->
  5771. <attr format="color" name="colorButtonNormal"/>
  5772. <!-- The color applied to framework switch thumbs in their normal state. -->
  5773. <attr format="color" name="colorSwitchThumbNormal"/>
  5774. <!-- The background used by framework controls. -->
  5775. <attr format="reference" name="controlBackground"/>
  5776. <!-- Default color of background imagery for floating components, ex. dialogs, popups, and cards. -->
  5777. <attr format="color" name="colorBackgroundFloating"/>
  5778. <!-- ============ -->
  5779. <!-- Alert Dialog styles -->
  5780. <!-- ============ -->
  5781. <eat-comment/>
  5782. <attr format="reference" name="alertDialogStyle"/>
  5783. <attr format="reference" name="alertDialogButtonGroupStyle"/>
  5784. <attr format="boolean" name="alertDialogCenterButtons"/>
  5785. <!-- Theme to use for alert dialogs spawned from this theme. -->
  5786. <attr format="reference" name="alertDialogTheme"/>
  5787. <!-- Color of list item text in alert dialogs. -->
  5788. <attr format="reference|color" name="textColorAlertDialogListItem"/>
  5789. <!-- Style for the "positive" buttons within button bars -->
  5790. <attr format="reference" name="buttonBarPositiveButtonStyle"/>
  5791. <!-- Style for the "negative" buttons within button bars -->
  5792. <attr format="reference" name="buttonBarNegativeButtonStyle"/>
  5793. <!-- Style for the "neutral" buttons within button bars -->
  5794. <attr format="reference" name="buttonBarNeutralButtonStyle"/>
  5795. <!-- ===================== -->
  5796. <!-- Default widget styles -->
  5797. <!-- ===================== -->
  5798. <eat-comment/>
  5799. <!-- Default AutoCompleteTextView style. -->
  5800. <attr format="reference" name="autoCompleteTextViewStyle"/>
  5801. <!-- Normal Button style. -->
  5802. <attr format="reference" name="buttonStyle"/>
  5803. <!-- Small Button style. -->
  5804. <attr format="reference" name="buttonStyleSmall"/>
  5805. <!-- Default Checkbox style. -->
  5806. <attr format="reference" name="checkboxStyle"/>
  5807. <!-- Default CheckedTextView style. -->
  5808. <attr format="reference" name="checkedTextViewStyle"/>
  5809. <!-- Default EditText style. -->
  5810. <attr format="reference" name="editTextStyle"/>
  5811. <!-- Default RadioButton style. -->
  5812. <attr format="reference" name="radioButtonStyle"/>
  5813. <!-- Default RatingBar style. -->
  5814. <attr format="reference" name="ratingBarStyle"/>
  5815. <!-- Indicator RatingBar style. -->
  5816. <attr format="reference" name="ratingBarStyleIndicator"/>
  5817. <!-- Small indicator RatingBar style. -->
  5818. <attr format="reference" name="ratingBarStyleSmall"/>
  5819. <!-- Default SeekBar style. -->
  5820. <attr format="reference" name="seekBarStyle"/>
  5821. <!-- Default Spinner style. -->
  5822. <attr format="reference" name="spinnerStyle"/>
  5823. <!-- Default style for the Switch widget. -->
  5824. <attr format="reference" name="switchStyle"/>
  5825. <!-- Default menu-style ListView style. -->
  5826. <attr format="reference" name="listMenuViewStyle"/>
  5827. <!-- ===================== -->
  5828. <!-- Tooltip styles -->
  5829. <!-- ===================== -->
  5830. <eat-comment/>
  5831. <!-- Background to use for tooltips -->
  5832. <attr format="reference" name="tooltipFrameBackground"/>
  5833. <!-- Foreground color to use for tooltips -->
  5834. <attr format="reference|color" name="tooltipForegroundColor"/>
  5835. <!-- Color used for error states and things that need to be drawn to
  5836. the user's attention. -->
  5837. <attr format="reference|color" name="colorError"/>
  5838. <attr format="string" name="viewInflaterClass"/>
  5839. <!-- ===================== -->
  5840. <!-- Animated list choice indicators -->
  5841. <!-- ===================== -->
  5842. <eat-comment/>
  5843. <!-- Animated Drawable to use for single choice indicators. -->
  5844. <attr format="reference" name="listChoiceIndicatorMultipleAnimated"/>
  5845. <!-- Animated Drawable to use for multiple choice indicators. -->
  5846. <attr format="reference" name="listChoiceIndicatorSingleAnimated"/>
  5847. </declare-styleable>
  5848. <declare-styleable name="BottomAppBar"><attr name="backgroundTint"/><attr name="fabAlignmentMode">
  5849. <enum name="center" value="0"/>
  5850. <enum name="end" value="1"/>
  5851. </attr><attr format="dimension" name="fabCradleMargin"/><attr format="dimension" name="fabCradleRoundedCornerRadius"/><attr format="dimension" name="fabCradleVerticalOffset"/><attr format="boolean" name="hideOnScroll"/></declare-styleable>
  5852. <declare-styleable name="BottomNavigationView"><attr name="menu"/><attr name="labelVisibilityMode">
  5853. <enum name="auto" value="-1"/>
  5854. <enum name="selected" value="0"/>
  5855. <enum name="labeled" value="1"/>
  5856. <enum name="unlabeled" value="2"/>
  5857. </attr><attr name="itemBackground"/><attr format="dimension" name="itemIconSize"/><attr name="itemIconTint"/><attr format="reference" name="itemTextAppearanceInactive"/><attr format="reference" name="itemTextAppearanceActive"/><attr name="itemTextColor"/><attr format="boolean" name="itemHorizontalTranslationEnabled"/><attr name="elevation"/></declare-styleable>
  5858. <declare-styleable name="BottomSheetBehavior_Layout"><attr format="dimension" name="behavior_peekHeight">
  5859. <enum name="auto" value="-1"/>
  5860. </attr><attr format="boolean" name="behavior_hideable"/><attr format="boolean" name="behavior_skipCollapsed"/><attr format="boolean" name="behavior_fitToContents"/></declare-styleable>
  5861. <declare-styleable name="ButtonBarContainerTheme">
  5862. <attr format="reference" name="metaButtonBarStyle"/>
  5863. <attr format="reference" name="metaButtonBarButtonStyle"/>
  5864. </declare-styleable>
  5865. <declare-styleable name="ButtonBarLayout">
  5866. <!-- Whether to automatically stack the buttons when there is not
  5867. enough space to lay them out side-by-side. -->
  5868. <attr format="boolean" name="allowStacking"/>
  5869. </declare-styleable>
  5870. <declare-styleable name="ButtonPreference">
  5871. <attr format="color" name="icon_color"/>
  5872. <attr format="reference" name="btn_icon"/>
  5873. <attr format="color" name="title_color"/>
  5874. <attr format="string" name="btn_title"/>
  5875. </declare-styleable>
  5876. <declare-styleable name="CardView">
  5877. <!-- Background color for CardView. -->
  5878. <attr format="color" name="cardBackgroundColor"/>
  5879. <!-- Corner radius for CardView. -->
  5880. <attr format="dimension" name="cardCornerRadius"/>
  5881. <!-- Elevation for CardView. -->
  5882. <attr format="dimension" name="cardElevation"/>
  5883. <!-- Maximum Elevation for CardView. -->
  5884. <attr format="dimension" name="cardMaxElevation"/>
  5885. <!-- Add padding in API v21+ as well to have the same measurements with previous versions. -->
  5886. <attr format="boolean" name="cardUseCompatPadding"/>
  5887. <!-- Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. -->
  5888. <attr format="boolean" name="cardPreventCornerOverlap"/>
  5889. <!-- Inner padding between the edges of the Card and children of the CardView. -->
  5890. <attr format="dimension" name="contentPadding"/>
  5891. <!-- Inner padding between the left edge of the Card and children of the CardView. -->
  5892. <attr format="dimension" name="contentPaddingLeft"/>
  5893. <!-- Inner padding between the right edge of the Card and children of the CardView. -->
  5894. <attr format="dimension" name="contentPaddingRight"/>
  5895. <!-- Inner padding between the top edge of the Card and children of the CardView. -->
  5896. <attr format="dimension" name="contentPaddingTop"/>
  5897. <!-- Inner padding between the bottom edge of the Card and children of the CardView. -->
  5898. <attr format="dimension" name="contentPaddingBottom"/>
  5899. <!-- Workaround to read user defined minimum width -->
  5900. <attr name="android:minWidth"/>
  5901. <!-- Workaround to read user defined minimum height -->
  5902. <attr name="android:minHeight"/>
  5903. </declare-styleable>
  5904. <declare-styleable name="CellTextView">
  5905. <attr name="android:textSize"/>
  5906. <attr name="android:textColor"/>
  5907. <attr name="android:maxLines"/>
  5908. <attr name="android:maxWidth"/>
  5909. <attr name="android:maxHeight"/>
  5910. <attr name="android:gravity"/>
  5911. <attr name="android:minWidth"/>
  5912. <attr name="android:singleLine"/>
  5913. <attr name="android:text"/>
  5914. <attr name="android:background"/>
  5915. <attr name="android:textStyle"/>
  5916. <attr name="android:minHeight"/>
  5917. <attr name="android:fontFamily"/>
  5918. <attr name="android:typeface"/>
  5919. <attr name="android:lineSpacingExtra"/>
  5920. <attr name="android:paddingLeft"/>
  5921. <attr name="android:paddingRight"/>
  5922. <attr name="android:paddingTop"/>
  5923. <attr name="android:paddingBottom"/>
  5924. </declare-styleable>
  5925. <declare-styleable name="Chip"><attr format="color" name="chipBackgroundColor"/><attr format="dimension" name="chipMinHeight"/><attr format="dimension" name="chipCornerRadius"/><attr format="color" name="chipStrokeColor"/><attr format="dimension" name="chipStrokeWidth"/><attr name="rippleColor"/><attr name="android:text"/><attr name="android:textAppearance"/><attr name="android:ellipsize"/><attr name="android:maxWidth"/><attr format="boolean" name="chipIconVisible"/><attr format="boolean" name="chipIconEnabled"/><attr format="reference" name="chipIcon"/><attr format="color" name="chipIconTint"/><attr format="dimension" name="chipIconSize"/><attr format="boolean" name="closeIconVisible"/><attr format="boolean" name="closeIconEnabled"/><attr format="reference" name="closeIcon"/><attr format="color" name="closeIconTint"/><attr format="dimension" name="closeIconSize"/><attr name="android:checkable"/><attr format="boolean" name="checkedIconVisible"/><attr format="boolean" name="checkedIconEnabled"/><attr format="reference" name="checkedIcon"/><attr name="showMotionSpec"/><attr name="hideMotionSpec"/><attr format="dimension" name="chipStartPadding"/><attr format="dimension" name="iconStartPadding"/><attr format="dimension" name="iconEndPadding"/><attr format="dimension" name="textStartPadding"/><attr format="dimension" name="textEndPadding"/><attr format="dimension" name="closeIconStartPadding"/><attr format="dimension" name="closeIconEndPadding"/><attr format="dimension" name="chipEndPadding"/></declare-styleable>
  5926. <declare-styleable name="ChipGroup"><attr format="dimension" name="chipSpacing"/><attr format="dimension" name="chipSpacingHorizontal"/><attr format="dimension" name="chipSpacingVertical"/><attr format="boolean" name="singleLine"/><attr format="boolean" name="singleSelection"/><attr format="reference" name="checkedChip"/></declare-styleable>
  5927. <declare-styleable name="CollapsingToolbarLayout"><attr format="dimension" name="expandedTitleMargin"/><attr format="dimension" name="expandedTitleMarginStart"/><attr format="dimension" name="expandedTitleMarginTop"/><attr format="dimension" name="expandedTitleMarginEnd"/><attr format="dimension" name="expandedTitleMarginBottom"/><attr format="reference" name="expandedTitleTextAppearance"/><attr format="reference" name="collapsedTitleTextAppearance"/><attr format="color" name="contentScrim"/><attr format="color" name="statusBarScrim"/><attr format="reference" name="toolbarId"/><attr format="dimension" name="scrimVisibleHeightTrigger"/><attr format="integer" name="scrimAnimationDuration"/><attr name="collapsedTitleGravity">
  5928. <flag name="top" value="0x30"/>
  5929. <flag name="bottom" value="0x50"/>
  5930. <flag name="left" value="0x03"/>
  5931. <flag name="right" value="0x05"/>
  5932. <flag name="center_vertical" value="0x10"/>
  5933. <flag name="fill_vertical" value="0x70"/>
  5934. <flag name="center_horizontal" value="0x01"/>
  5935. <flag name="center" value="0x11"/>
  5936. <flag name="start" value="0x00800003"/>
  5937. <flag name="end" value="0x00800005"/>
  5938. </attr><attr name="expandedTitleGravity">
  5939. <flag name="top" value="0x30"/>
  5940. <flag name="bottom" value="0x50"/>
  5941. <flag name="left" value="0x03"/>
  5942. <flag name="right" value="0x05"/>
  5943. <flag name="center_vertical" value="0x10"/>
  5944. <flag name="fill_vertical" value="0x70"/>
  5945. <flag name="center_horizontal" value="0x01"/>
  5946. <flag name="center" value="0x11"/>
  5947. <flag name="start" value="0x00800003"/>
  5948. <flag name="end" value="0x00800005"/>
  5949. </attr><attr format="boolean" name="titleEnabled"/><attr name="title"/></declare-styleable>
  5950. <declare-styleable name="CollapsingToolbarLayout_Layout"><attr name="layout_collapseMode">
  5951. <enum name="none" value="0"/>
  5952. <enum name="pin" value="1"/>
  5953. <enum name="parallax" value="2"/>
  5954. </attr><attr format="float" name="layout_collapseParallaxMultiplier"/></declare-styleable>
  5955. <declare-styleable name="ColorStateListItem">
  5956. <!-- Base color for this state. -->
  5957. <attr name="android:color"/>
  5958. <!-- Alpha multiplier applied to the base color. -->
  5959. <attr format="float" name="alpha"/>
  5960. <attr name="android:alpha"/>
  5961. </declare-styleable>
  5962. <declare-styleable name="CompoundButton">
  5963. <attr name="android:button"/>
  5964. <!-- Compat attr to load backported drawable types -->
  5965. <attr format="reference" name="buttonCompat"/>
  5966. <!-- Tint to apply to the button drawable. -->
  5967. <attr format="color" name="buttonTint"/>
  5968. <!-- Blending mode used to apply the button tint. -->
  5969. <attr name="buttonTintMode">
  5970. <!-- The tint is drawn on top of the drawable.
  5971. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  5972. <enum name="src_over" value="3"/>
  5973. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  5974. color channels are thrown out. [Sa * Da, Sc * Da] -->
  5975. <enum name="src_in" value="5"/>
  5976. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  5977. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  5978. <enum name="src_atop" value="9"/>
  5979. <!-- Multiplies the color and alpha channels of the drawable with those of
  5980. the tint. [Sa * Da, Sc * Dc] -->
  5981. <enum name="multiply" value="14"/>
  5982. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  5983. <enum name="screen" value="15"/>
  5984. <!-- Combines the tint and icon color and alpha channels, clamping the
  5985. result to valid color values. Saturate(S + D) -->
  5986. <enum name="add" value="16"/>
  5987. </attr>
  5988. </declare-styleable>
  5989. <declare-styleable name="ConstraintLayout_Layout"><attr name="android:orientation"/><attr name="android:minWidth"/><attr name="android:minHeight"/><attr name="android:maxWidth"/><attr name="android:maxHeight"/><attr name="layout_optimizationLevel"/><attr name="constraintSet"/><attr name="barrierDirection"/><attr name="barrierAllowsGoneWidgets"/><attr name="constraint_referenced_ids"/><attr name="chainUseRtl"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/></declare-styleable>
  5990. <declare-styleable name="ConstraintLayout_placeholder"><attr name="emptyVisibility"/><attr name="content"/></declare-styleable>
  5991. <declare-styleable name="ConstraintSet"><attr name="android:orientation"/><attr name="android:id"/><attr name="android:visibility"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="android:transformPivotX"/><attr name="android:transformPivotY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_marginStart"/><attr name="android:layout_marginBottom"/><attr name="android:layout_marginTop"/><attr name="android:layout_marginEnd"/><attr name="android:layout_marginLeft"/><attr name="android:layout_marginRight"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/><attr name="barrierDirection"/><attr name="constraint_referenced_ids"/><attr name="android:maxHeight"/><attr name="android:maxWidth"/><attr name="android:minHeight"/><attr name="android:minWidth"/><attr name="barrierAllowsGoneWidgets"/><attr name="chainUseRtl"/></declare-styleable>
  5992. <declare-styleable name="CoordinatorLayout">
  5993. <!-- A reference to an array of integers representing the
  5994. locations of horizontal keylines in dp from the starting edge.
  5995. Child views can refer to these keylines for alignment using
  5996. layout_keyline="index" where index is a 0-based index into
  5997. this array. -->
  5998. <attr format="reference" name="keylines"/>
  5999. <!-- Drawable to display behind the status bar when the view is set to draw behind it. -->
  6000. <attr format="color|reference" name="statusBarBackground"/>
  6001. </declare-styleable>
  6002. <declare-styleable name="CoordinatorLayout_Layout">
  6003. <attr name="android:layout_gravity"/>
  6004. <!-- The class name of a Behavior class defining special runtime behavior
  6005. for this child view. -->
  6006. <attr format="string" name="layout_behavior"/>
  6007. <!-- The id of an anchor view that this view should position relative to. -->
  6008. <attr format="reference" name="layout_anchor"/>
  6009. <!-- The index of a keyline this view should position relative to.
  6010. android:layout_gravity will affect how the view aligns to the
  6011. specified keyline. -->
  6012. <attr format="integer" name="layout_keyline"/>
  6013. <!-- Specifies how an object should position relative to an anchor, on both the X and Y axes,
  6014. within its parent's bounds. -->
  6015. <attr name="layout_anchorGravity">
  6016. <!-- Push object to the top of its container, not changing its size. -->
  6017. <flag name="top" value="0x30"/>
  6018. <!-- Push object to the bottom of its container, not changing its size. -->
  6019. <flag name="bottom" value="0x50"/>
  6020. <!-- Push object to the left of its container, not changing its size. -->
  6021. <flag name="left" value="0x03"/>
  6022. <!-- Push object to the right of its container, not changing its size. -->
  6023. <flag name="right" value="0x05"/>
  6024. <!-- Place object in the vertical center of its container, not changing its size. -->
  6025. <flag name="center_vertical" value="0x10"/>
  6026. <!-- Grow the vertical size of the object if needed so it completely fills its container. -->
  6027. <flag name="fill_vertical" value="0x70"/>
  6028. <!-- Place object in the horizontal center of its container, not changing its size. -->
  6029. <flag name="center_horizontal" value="0x01"/>
  6030. <!-- Grow the horizontal size of the object if needed so it completely fills its container. -->
  6031. <flag name="fill_horizontal" value="0x07"/>
  6032. <!-- Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. -->
  6033. <flag name="center" value="0x11"/>
  6034. <!-- Grow the horizontal and vertical size of the object if needed so it completely fills its container. -->
  6035. <flag name="fill" value="0x77"/>
  6036. <!-- Additional option that can be set to have the top and/or bottom edges of
  6037. the child clipped to its container's bounds.
  6038. The clip will be based on the vertical gravity: a top gravity will clip the bottom
  6039. edge, a bottom gravity will clip the top edge, and neither will clip both edges. -->
  6040. <flag name="clip_vertical" value="0x80"/>
  6041. <!-- Additional option that can be set to have the left and/or right edges of
  6042. the child clipped to its container's bounds.
  6043. The clip will be based on the horizontal gravity: a left gravity will clip the right
  6044. edge, a right gravity will clip the left edge, and neither will clip both edges. -->
  6045. <flag name="clip_horizontal" value="0x08"/>
  6046. <!-- Push object to the beginning of its container, not changing its size. -->
  6047. <flag name="start" value="0x00800003"/>
  6048. <!-- Push object to the end of its container, not changing its size. -->
  6049. <flag name="end" value="0x00800005"/>
  6050. </attr>
  6051. <!-- Specifies how this view insets the CoordinatorLayout and make some other views
  6052. dodge it. -->
  6053. <attr format="enum" name="layout_insetEdge">
  6054. <!-- Don't inset. -->
  6055. <enum name="none" value="0x0"/>
  6056. <!-- Inset the top edge. -->
  6057. <enum name="top" value="0x30"/>
  6058. <!-- Inset the bottom edge. -->
  6059. <enum name="bottom" value="0x50"/>
  6060. <!-- Inset the left edge. -->
  6061. <enum name="left" value="0x03"/>
  6062. <!-- Inset the right edge. -->
  6063. <enum name="right" value="0x05"/>
  6064. <!-- Inset the start edge. -->
  6065. <enum name="start" value="0x00800003"/>
  6066. <!-- Inset the end edge. -->
  6067. <enum name="end" value="0x00800005"/>
  6068. </attr>
  6069. <!-- Specifies how this view dodges the inset edges of the CoordinatorLayout. -->
  6070. <attr name="layout_dodgeInsetEdges">
  6071. <!-- Don't dodge any edges -->
  6072. <flag name="none" value="0x0"/>
  6073. <!-- Dodge the top inset edge. -->
  6074. <flag name="top" value="0x30"/>
  6075. <!-- Dodge the bottom inset edge. -->
  6076. <flag name="bottom" value="0x50"/>
  6077. <!-- Dodge the left inset edge. -->
  6078. <flag name="left" value="0x03"/>
  6079. <!-- Dodge the right inset edge. -->
  6080. <flag name="right" value="0x05"/>
  6081. <!-- Dodge the start inset edge. -->
  6082. <flag name="start" value="0x00800003"/>
  6083. <!-- Dodge the end inset edge. -->
  6084. <flag name="end" value="0x00800005"/>
  6085. <!-- Dodge all the inset edges. -->
  6086. <flag name="all" value="0x77"/>
  6087. </attr>
  6088. </declare-styleable>
  6089. <declare-styleable name="DatePicker">
  6090. <!-- The first day of week according to {@link java.util.Calendar}. -->
  6091. <attr format="integer" name="firstDayOfWeek"/>
  6092. <!-- The minimal date shown by this calendar view in mm/dd/yyyy format. -->
  6093. <attr format="string" name="minDate"/>
  6094. <!-- The maximal date shown by this calendar view in mm/dd/yyyy format. -->
  6095. <attr format="string" name="maxDate"/>
  6096. <!-- Whether the spinners are shown. Only valid for "spinner" mode. -->
  6097. <attr format="boolean" name="spinnersShown"/>
  6098. <!-- Whether the calendar view is shown. Only valid for "spinner" mode. -->
  6099. <attr format="boolean" name="calendarViewShown"/>
  6100. <!-- @hide The layout of the date picker. -->
  6101. <attr format="reference" name="internalLayout"/>
  6102. <!-- @hide The layout of the legacy DatePicker. -->
  6103. <attr format="reference" name="legacyLayout"/>
  6104. <!-- The text color for the selected date header text, ex. "2014" or
  6105. "Tue, Mar 18". This should be a color state list where the
  6106. activated state will be used when the year picker or day picker is
  6107. active.-->
  6108. <attr format="color" name="headerTextColor"/>
  6109. <!-- The background for the selected date header. -->
  6110. <attr format="reference" name="fat_aar_excluded_headerBackground"/>
  6111. <!-- The list year's text appearance in the list.
  6112. {@deprecated Use yearListTextColor. }-->
  6113. <attr format="reference" name="yearListItemTextAppearance"/>
  6114. <!-- @hide The list year's text appearance in the list when activated. -->
  6115. <attr format="reference" name="yearListItemActivatedTextAppearance"/>
  6116. <!-- The text color list of the calendar. -->
  6117. <attr format="color" name="calendarTextColor"/>
  6118. <!-- Defines the look of the widget. Prior to the L release, the only choice was
  6119. spinner. As of L, with the Material theme selected, the default layout is calendar,
  6120. but this attribute can be used to force spinner to be used instead. -->
  6121. <attr name="datePickerMode">
  6122. <!-- Date picker with spinner controls to select the date. -->
  6123. <enum name="spinner" value="1"/>
  6124. <!-- Date picker with calendar to select the date. -->
  6125. <enum name="calendar" value="2"/>
  6126. </attr>
  6127. <!-- The first year (inclusive), for example "1940".
  6128. {@deprecated Use minDate instead.} -->
  6129. <attr format="integer" name="startYear"/>
  6130. <!-- The last year (inclusive), for example "2010".
  6131. {@deprecated Use maxDate instead.} -->
  6132. <attr format="integer" name="endYear"/>
  6133. <!-- The text appearance for the month (ex. May) in the selected date header.
  6134. {@deprecated Use headerTextColor instead.} -->
  6135. <attr format="reference" name="headerMonthTextAppearance"/>
  6136. <!-- The text appearance for the day of month (ex. 28) in the selected date header.
  6137. {@deprecated Use headerTextColor instead.} -->
  6138. <attr format="reference" name="headerDayOfMonthTextAppearance"/>
  6139. <!-- The text appearance for the year (ex. 2014) in the selected date header.
  6140. {@deprecated Use headerTextColor instead.} -->
  6141. <attr format="reference" name="headerYearTextAppearance"/>
  6142. <!-- The background color for the header's day of week.
  6143. {@deprecated No longer displayed.} -->
  6144. <attr format="color" name="dayOfWeekBackground"/>
  6145. <!-- The text color for the header's day of week.
  6146. {@deprecated No longer displayed.} -->
  6147. <attr format="reference" name="dayOfWeekTextAppearance"/>
  6148. <!-- The list year's selected circle color in the list.
  6149. {@deprecated No longer displayed.} -->
  6150. <attr format="color" name="yearListSelectorColor"/>
  6151. </declare-styleable>
  6152. <declare-styleable name="DesignTheme"><attr name="bottomSheetDialogTheme"/><attr name="bottomSheetStyle"/></declare-styleable>
  6153. <declare-styleable name="DragSortListView">
  6154. <attr format="dimension" name="collapsed_height"/>
  6155. <attr format="float" name="drag_scroll_start"/>
  6156. <attr format="float" name="max_drag_scroll_speed"/>
  6157. <attr format="color" name="float_background_color"/>
  6158. <attr name="remove_mode">
  6159. <enum name="clickRemove" value="0"/>
  6160. <enum name="flingRemove" value="1"/>
  6161. </attr>
  6162. <attr format="boolean" name="track_drag_sort"/>
  6163. <attr format="float" name="float_alpha"/>
  6164. <attr format="float" name="slide_shuffle_speed"/>
  6165. <attr format="integer" name="remove_animation_duration"/>
  6166. <attr format="integer" name="drop_animation_duration"/>
  6167. <attr format="boolean" name="drag_enabled"/>
  6168. <attr format="boolean" name="sort_enabled"/>
  6169. <attr format="boolean" name="remove_enabled"/>
  6170. <attr name="drag_start_mode">
  6171. <enum name="onDown" value="0"/>
  6172. <enum name="onMove" value="1"/>
  6173. <enum name="onLongPress" value="2"/>
  6174. </attr>
  6175. <attr format="integer" name="drag_handle_id"/>
  6176. <attr format="integer" name="fling_handle_id"/>
  6177. <attr format="integer" name="click_remove_id"/>
  6178. <attr format="boolean" name="use_default_controller"/>
  6179. </declare-styleable>
  6180. <declare-styleable name="DrawerArrowToggle">
  6181. <!-- The drawing color for the bars -->
  6182. <attr format="color" name="color"/>
  6183. <!-- Whether bars should rotate or not during transition -->
  6184. <attr format="boolean" name="spinBars"/>
  6185. <!-- The total size of the drawable -->
  6186. <attr format="dimension" name="drawableSize"/>
  6187. <!-- The max gap between the bars when they are parallel to each other -->
  6188. <attr format="dimension" name="gapBetweenBars"/>
  6189. <!-- The length of the arrow head when formed to make an arrow -->
  6190. <attr format="dimension" name="arrowHeadLength"/>
  6191. <!-- The length of the shaft when formed to make an arrow -->
  6192. <attr format="dimension" name="arrowShaftLength"/>
  6193. <!-- The length of the bars when they are parallel to each other -->
  6194. <attr format="dimension" name="barLength"/>
  6195. <!-- The thickness (stroke size) for the bar paint -->
  6196. <attr format="dimension" name="thickness"/>
  6197. </declare-styleable>
  6198. <declare-styleable name="EllipsizeLayout">
  6199. <attr format="boolean" name="center_ellipsize_textview"/>
  6200. </declare-styleable>
  6201. <declare-styleable name="FloatingActionButton"><attr name="backgroundTint"/><attr name="backgroundTintMode"/><attr name="rippleColor"/><attr name="fabSize">
  6202. <enum name="auto" value="-1"/>
  6203. <enum name="normal" value="0"/>
  6204. <enum name="mini" value="1"/>
  6205. </attr><attr format="dimension" name="fabCustomSize"/><attr name="elevation"/><attr format="dimension" name="hoveredFocusedTranslationZ"/><attr format="dimension" name="pressedTranslationZ"/><attr format="dimension" name="borderWidth"/><attr format="boolean" name="useCompatPadding"/><attr format="dimension" name="maxImageSize"/><attr name="showMotionSpec"/><attr name="hideMotionSpec"/></declare-styleable>
  6206. <declare-styleable name="FloatingActionButton_Behavior_Layout"><attr format="boolean" name="behavior_autoHide"/></declare-styleable>
  6207. <declare-styleable name="FlowLayout"><attr format="dimension" name="itemSpacing"/><attr format="dimension" name="lineSpacing"/></declare-styleable>
  6208. <declare-styleable name="FontFamily">
  6209. <!-- The authority of the Font Provider to be used for the request. -->
  6210. <attr format="string" name="fontProviderAuthority"/>
  6211. <!-- The package for the Font Provider to be used for the request. This is used to verify
  6212. the identity of the provider. -->
  6213. <attr format="string" name="fontProviderPackage"/>
  6214. <!-- The query to be sent over to the provider. Refer to your font provider's documentation
  6215. on the format of this string. -->
  6216. <attr format="string" name="fontProviderQuery"/>
  6217. <!-- The sets of hashes for the certificates the provider should be signed with. This is
  6218. used to verify the identity of the provider, and is only required if the provider is not
  6219. part of the system image. This value may point to one list or a list of lists, where each
  6220. individual list represents one collection of signature hashes. Refer to your font provider's
  6221. documentation for these values. -->
  6222. <attr format="reference" name="fontProviderCerts"/>
  6223. <!-- The strategy to be used when fetching font data from a font provider in XML layouts.
  6224. This attribute is ignored when the resource is loaded from code, as it is equivalent to the
  6225. choice of API between {@link
  6226. androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and
  6227. {@link
  6228. androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)}
  6229. (async). -->
  6230. <attr name="fontProviderFetchStrategy">
  6231. <!-- The blocking font fetch works as follows.
  6232. First, check the local cache, then if the requested font is not cached, request the
  6233. font from the provider and wait until it is finished. You can change the length of
  6234. the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the
  6235. default typeface will be used instead. -->
  6236. <enum name="blocking" value="0"/>
  6237. <!-- The async font fetch works as follows.
  6238. First, check the local cache, then if the requeted font is not cached, trigger a
  6239. request the font and continue with layout inflation. Once the font fetch succeeds, the
  6240. target text view will be refreshed with the downloaded font data. The
  6241. fontProviderFetchTimeout will be ignored if async loading is specified. -->
  6242. <enum name="async" value="1"/>
  6243. </attr>
  6244. <!-- The length of the timeout during fetching. -->
  6245. <attr format="integer" name="fontProviderFetchTimeout">
  6246. <!-- A special value for the timeout. In this case, the blocking font fetching will not
  6247. timeout and wait until a reply is received from the font provider. -->
  6248. <enum name="forever" value="-1"/>
  6249. </attr>
  6250. </declare-styleable>
  6251. <declare-styleable name="FontFamilyFont">
  6252. <!-- The style of the given font file. This will be used when the font is being loaded into
  6253. the font stack and will override any style information in the font's header tables. If
  6254. unspecified, the value in the font's header tables will be used. -->
  6255. <attr name="fontStyle">
  6256. <enum name="normal" value="0"/>
  6257. <enum name="italic" value="1"/>
  6258. </attr>
  6259. <!-- The reference to the font file to be used. This should be a file in the res/font folder
  6260. and should therefore have an R reference value. E.g. @font/myfont -->
  6261. <attr format="reference" name="font"/>
  6262. <!-- The weight of the given font file. This will be used when the font is being loaded into
  6263. the font stack and will override any weight information in the font's header tables. Must
  6264. be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most
  6265. common values are 400 for regular weight and 700 for bold weight. If unspecified, the value
  6266. in the font's header tables will be used. -->
  6267. <attr format="integer" name="fontWeight"/>
  6268. <!-- The variation settings to be applied to the font. The string should be in the following
  6269. format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be
  6270. used, or the font used does not support variation settings, this attribute needs not be
  6271. specified. -->
  6272. <attr format="string" name="fontVariationSettings"/>
  6273. <!-- The index of the font in the tcc font file. If the font file referenced is not in the
  6274. tcc format, this attribute needs not be specified. -->
  6275. <attr format="integer" name="ttcIndex"/>
  6276. <!-- References to the framework attrs -->
  6277. <attr name="android:fontStyle"/>
  6278. <attr name="android:font"/>
  6279. <attr name="android:fontWeight"/>
  6280. <attr name="android:fontVariationSettings"/>
  6281. <attr name="android:ttcIndex"/>
  6282. </declare-styleable>
  6283. <declare-styleable name="ForegroundLinearLayout"><attr name="android:foreground"/><attr name="android:foregroundGravity"/><attr format="boolean" name="foregroundInsidePadding"/></declare-styleable>
  6284. <declare-styleable name="FormItemView">
  6285. <attr format="reference" name="form_layout"/>
  6286. <attr format="string" name="form_title"/>
  6287. <attr format="string" name="form_hint"/>
  6288. <attr format="string" name="form_btn_title"/>
  6289. </declare-styleable>
  6290. <declare-styleable name="Fragment">
  6291. <attr name="android:name"/>
  6292. <attr name="android:id"/>
  6293. <attr name="android:tag"/>
  6294. </declare-styleable>
  6295. <declare-styleable name="FragmentContainerView">
  6296. <attr name="android:name"/>
  6297. <attr name="android:tag"/>
  6298. </declare-styleable>
  6299. <declare-styleable name="GradientColor">
  6300. <!-- Start color of the gradient. -->
  6301. <attr name="android:startColor"/>
  6302. <!-- Optional center color. -->
  6303. <attr name="android:centerColor"/>
  6304. <!-- End color of the gradient. -->
  6305. <attr name="android:endColor"/>
  6306. <!-- Type of gradient. The default type is linear. -->
  6307. <attr name="android:type"/>
  6308. <!-- Only applied to RadialGradient-->
  6309. <!-- Radius of the gradient, used only with radial gradient. -->
  6310. <attr name="android:gradientRadius"/>
  6311. <!-- Only applied to SweepGradient / RadialGradient-->
  6312. <!-- X coordinate of the center of the gradient within the path. -->
  6313. <attr name="android:centerX"/>
  6314. <!-- Y coordinate of the center of the gradient within the path. -->
  6315. <attr name="android:centerY"/>
  6316. <!-- LinearGradient specific -->
  6317. <!-- X coordinate of the start point origin of the gradient.
  6318. Defined in same coordinates as the path itself -->
  6319. <attr name="android:startX"/>
  6320. <!-- Y coordinate of the start point of the gradient within the shape.
  6321. Defined in same coordinates as the path itself -->
  6322. <attr name="android:startY"/>
  6323. <!-- X coordinate of the end point origin of the gradient.
  6324. Defined in same coordinates as the path itself -->
  6325. <attr name="android:endX"/>
  6326. <!-- Y coordinate of the end point of the gradient within the shape.
  6327. Defined in same coordinates as the path itself -->
  6328. <attr name="android:endY"/>
  6329. <!-- Defines the tile mode of the gradient. SweepGradient doesn't support tiling. -->
  6330. <attr name="android:tileMode"/>
  6331. </declare-styleable>
  6332. <declare-styleable name="GradientColorItem">
  6333. <!-- The offset (or ratio) of this current color item inside the gradient.
  6334. The value is only meaningful when it is between 0 and 1. -->
  6335. <attr name="android:offset"/>
  6336. <!-- The current color for the offset inside the gradient. -->
  6337. <attr name="android:color"/>
  6338. </declare-styleable>
  6339. <declare-styleable name="LinearConstraintLayout"><attr name="android:orientation"/></declare-styleable>
  6340. <declare-styleable name="LinearLayoutCompat">
  6341. <!-- Should the layout be a column or a row? Use "horizontal"
  6342. for a row, "vertical" for a column. The default is
  6343. horizontal. -->
  6344. <attr name="android:orientation"/>
  6345. <attr name="android:gravity"/>
  6346. <!-- When set to false, prevents the layout from aligning its children's
  6347. baselines. This attribute is particularly useful when the children
  6348. use different values for gravity. The default value is true. -->
  6349. <attr name="android:baselineAligned"/>
  6350. <!-- When a linear layout is part of another layout that is baseline
  6351. aligned, it can specify which of its children to baseline align to
  6352. (that is, which child TextView).-->
  6353. <attr name="android:baselineAlignedChildIndex"/>
  6354. <!-- Defines the maximum weight sum. If unspecified, the sum is computed
  6355. by adding the layout_weight of all of the children. This can be
  6356. used for instance to give a single child 50% of the total available
  6357. space by giving it a layout_weight of 0.5 and setting the weightSum
  6358. to 1.0. -->
  6359. <attr name="android:weightSum"/>
  6360. <!-- When set to true, all children with a weight will be considered having
  6361. the minimum size of the largest child. If false, all children are
  6362. measured normally. -->
  6363. <attr format="boolean" name="measureWithLargestChild"/>
  6364. <!-- Drawable to use as a vertical divider between buttons. -->
  6365. <attr name="divider"/>
  6366. <!-- Setting for which dividers to show. -->
  6367. <attr name="showDividers">
  6368. <flag name="none" value="0"/>
  6369. <flag name="beginning" value="1"/>
  6370. <flag name="middle" value="2"/>
  6371. <flag name="end" value="4"/>
  6372. </attr>
  6373. <!-- Size of padding on either end of a divider. -->
  6374. <attr format="dimension" name="dividerPadding"/>
  6375. </declare-styleable>
  6376. <declare-styleable name="LinearLayoutCompat_Layout">
  6377. <attr name="android:layout_width"/>
  6378. <attr name="android:layout_height"/>
  6379. <attr name="android:layout_weight"/>
  6380. <attr name="android:layout_gravity"/>
  6381. </declare-styleable>
  6382. <declare-styleable name="ListPopupWindow">
  6383. <!-- Amount of pixels by which the drop down should be offset vertically. -->
  6384. <attr name="android:dropDownVerticalOffset"/>
  6385. <!-- Amount of pixels by which the drop down should be offset horizontally. -->
  6386. <attr name="android:dropDownHorizontalOffset"/>
  6387. </declare-styleable>
  6388. <declare-styleable name="MMAutoAdjustTextView">
  6389. <attr format="boolean" name="auto_change_size"/>
  6390. </declare-styleable>
  6391. <declare-styleable name="MMProgressWheel">
  6392. <attr format="boolean" name="matProg_progressIndeterminate"/>
  6393. <attr format="color" name="matProg_barColor"/>
  6394. <attr format="color" name="matProg_rimColor"/>
  6395. <attr format="dimension" name="matProg_rimWidth"/>
  6396. <attr format="float" name="matProg_spinSpeed"/>
  6397. <attr format="integer" name="matProg_barSpinCycleTime"/>
  6398. <attr format="dimension" name="matProg_circleRadius"/>
  6399. <attr format="boolean" name="matProg_fillRadius"/>
  6400. <attr format="dimension" name="matProg_barWidth"/>
  6401. <attr format="boolean" name="matProg_linearProgress"/>
  6402. </declare-styleable>
  6403. <declare-styleable name="MMSwitchBtn">
  6404. <attr format="color" name="on_color"/>
  6405. <attr format="color" name="off_color"/>
  6406. <attr format="color" name="slide_color"/>
  6407. <attr format="string" name="on_text"/>
  6408. <attr format="string" name="off_text"/>
  6409. </declare-styleable>
  6410. <declare-styleable name="MaterialButton"><attr name="android:insetLeft"/><attr name="android:insetRight"/><attr name="android:insetTop"/><attr name="android:insetBottom"/><attr name="backgroundTint"/><attr name="backgroundTintMode"/><attr format="reference" name="icon"/><attr format="dimension" name="iconSize"/><attr format="dimension" name="iconPadding"/><attr name="iconGravity">
  6411. <flag name="start" value="0x1"/>
  6412. <flag name="textStart" value="0x2"/>
  6413. </attr><attr format="color" name="iconTint"/><attr name="iconTintMode"/><attr name="strokeColor"/><attr name="strokeWidth"/><attr format="dimension" name="cornerRadius"/><attr name="rippleColor"/></declare-styleable>
  6414. <declare-styleable name="MaterialCardView"><attr name="strokeColor"/><attr name="strokeWidth"/></declare-styleable>
  6415. <declare-styleable name="MaterialComponentsTheme"><attr name="colorAccent"/><attr name="colorPrimary"/><attr name="colorPrimaryDark"/><attr name="colorSecondary"/><attr name="scrimBackground"/><attr name="colorBackgroundFloating"/><attr name="bottomSheetDialogTheme"/><attr name="bottomSheetStyle"/><attr name="materialButtonStyle"/><attr name="chipGroupStyle"/><attr name="chipStyle"/><attr name="chipStandaloneStyle"/><attr name="editTextStyle"/><attr name="floatingActionButtonStyle"/><attr name="materialCardViewStyle"/><attr name="navigationViewStyle"/><attr name="tabStyle"/><attr name="textInputStyle"/><attr name="snackbarButtonStyle"/><attr name="textAppearanceHeadline1"/><attr name="textAppearanceHeadline2"/><attr name="textAppearanceHeadline3"/><attr name="textAppearanceHeadline4"/><attr name="textAppearanceHeadline5"/><attr name="textAppearanceHeadline6"/><attr name="textAppearanceSubtitle1"/><attr name="textAppearanceSubtitle2"/><attr name="textAppearanceBody1"/><attr name="textAppearanceBody2"/><attr name="textAppearanceCaption"/><attr name="textAppearanceButton"/><attr name="textAppearanceOverline"/></declare-styleable>
  6416. <declare-styleable name="MenuGroup">
  6417. <!-- The ID of the group. -->
  6418. <attr name="android:id"/>
  6419. <!-- The category applied to all items within this group.
  6420. (This will be or'ed with the orderInCategory attribute.) -->
  6421. <attr name="android:menuCategory"/>
  6422. <!-- The order within the category applied to all items within this group.
  6423. (This will be or'ed with the category attribute.) -->
  6424. <attr name="android:orderInCategory"/>
  6425. <!-- Whether the items are capable of displaying a check mark. -->
  6426. <attr name="android:checkableBehavior"/>
  6427. <!-- Whether the items are shown/visible. -->
  6428. <attr name="android:visible"/>
  6429. <!-- Whether the items are enabled. -->
  6430. <attr name="android:enabled"/>
  6431. </declare-styleable>
  6432. <declare-styleable name="MenuItem">
  6433. <!-- The ID of the item. -->
  6434. <attr name="android:id"/>
  6435. <!-- The category applied to the item.
  6436. (This will be or'ed with the orderInCategory attribute.) -->
  6437. <attr name="android:menuCategory"/>
  6438. <!-- The order within the category applied to the item.
  6439. (This will be or'ed with the category attribute.) -->
  6440. <attr name="android:orderInCategory"/>
  6441. <!-- The title associated with the item. -->
  6442. <attr name="android:title"/>
  6443. <!-- The condensed title associated with the item. This is used in situations where the
  6444. normal title may be too long to be displayed. -->
  6445. <attr name="android:titleCondensed"/>
  6446. <!-- The icon associated with this item. This icon will not always be shown, so
  6447. the title should be sufficient in describing this item. -->
  6448. <attr name="android:icon"/>
  6449. <!-- The alphabetic shortcut key. This is the shortcut when using a keyboard
  6450. with alphabetic keys. -->
  6451. <attr name="android:alphabeticShortcut"/>
  6452. <!-- The alphabetic modifier key. This is the modifier when using a keyboard
  6453. with alphabetic keys. The values should be kept in sync with KeyEvent -->
  6454. <attr name="alphabeticModifiers">
  6455. <flag name="META" value="0x10000"/>
  6456. <flag name="CTRL" value="0x1000"/>
  6457. <flag name="ALT" value="0x02"/>
  6458. <flag name="SHIFT" value="0x1"/>
  6459. <flag name="SYM" value="0x4"/>
  6460. <flag name="FUNCTION" value="0x8"/>
  6461. </attr>
  6462. <!-- The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key)
  6463. keyboard. -->
  6464. <attr name="android:numericShortcut"/>
  6465. <!-- The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key)
  6466. keyboard. The values should be kept in sync with KeyEvent -->
  6467. <attr name="numericModifiers">
  6468. <flag name="META" value="0x10000"/>
  6469. <flag name="CTRL" value="0x1000"/>
  6470. <flag name="ALT" value="0x02"/>
  6471. <flag name="SHIFT" value="0x1"/>
  6472. <flag name="SYM" value="0x4"/>
  6473. <flag name="FUNCTION" value="0x8"/>
  6474. </attr>
  6475. <!-- Whether the item is capable of displaying a check mark. -->
  6476. <attr name="android:checkable"/>
  6477. <!-- Whether the item is checked. Note that you must first have enabled checking with
  6478. the checkable attribute or else the check mark will not appear. -->
  6479. <attr name="android:checked"/>
  6480. <!-- Whether the item is shown/visible. -->
  6481. <attr name="android:visible"/>
  6482. <!-- Whether the item is enabled. -->
  6483. <attr name="android:enabled"/>
  6484. <!-- Name of a method on the Context used to inflate the menu that will be
  6485. called when the item is clicked. -->
  6486. <attr name="android:onClick"/>
  6487. <!-- How this item should display in the Action Bar, if present. -->
  6488. <attr name="showAsAction">
  6489. <!-- Never show this item in an action bar, show it in the overflow menu instead.
  6490. Mutually exclusive with "ifRoom" and "always". -->
  6491. <flag name="never" value="0"/>
  6492. <!-- Show this item in an action bar if there is room for it as determined
  6493. by the system. Favor this option over "always" where possible.
  6494. Mutually exclusive with "never" and "always". -->
  6495. <flag name="ifRoom" value="1"/>
  6496. <!-- Always show this item in an actionbar, even if it would override
  6497. the system's limits of how much stuff to put there. This may make
  6498. your action bar look bad on some screens. In most cases you should
  6499. use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". -->
  6500. <flag name="always" value="2"/>
  6501. <!-- When this item is shown as an action in the action bar, show a text
  6502. label with it even if it has an icon representation. -->
  6503. <flag name="withText" value="4"/>
  6504. <!-- This item's action view collapses to a normal menu
  6505. item. When expanded, the action view takes over a
  6506. larger segment of its container. -->
  6507. <flag name="collapseActionView" value="8"/>
  6508. </attr>
  6509. <!-- An optional layout to be used as an action view.
  6510. See {@link android.view.MenuItem#setActionView(android.view.View)}
  6511. for more info. -->
  6512. <attr format="reference" name="actionLayout"/>
  6513. <!-- The name of an optional View class to instantiate and use as an
  6514. action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
  6515. for more info. -->
  6516. <attr format="string" name="actionViewClass"/>
  6517. <!-- The name of an optional ActionProvider class to instantiate an action view
  6518. and perform operations such as default action for that menu item.
  6519. See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
  6520. for more info. -->
  6521. <attr format="string" name="actionProviderClass"/>
  6522. <!-- The content description associated with the item. -->
  6523. <attr format="string" name="contentDescription"/>
  6524. <!-- The tooltip text associated with the item. -->
  6525. <attr format="string" name="tooltipText"/>
  6526. <!-- Tint to apply to the icon. -->
  6527. <attr format="color" name="iconTint"/>
  6528. <!-- Blending mode used to apply the icon tint. -->
  6529. <attr name="iconTintMode">
  6530. <!-- The tint is drawn on top of the icon.
  6531. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  6532. <enum name="src_over" value="3"/>
  6533. <!-- The tint is masked by the alpha channel of the icon. The icon’s
  6534. color channels are thrown out. [Sa * Da, Sc * Da] -->
  6535. <enum name="src_in" value="5"/>
  6536. <!-- The tint is drawn above the icon, but with the icon’s alpha
  6537. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  6538. <enum name="src_atop" value="9"/>
  6539. <!-- Multiplies the color and alpha channels of the icon with those of
  6540. the tint. [Sa * Da, Sc * Dc] -->
  6541. <enum name="multiply" value="14"/>
  6542. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  6543. <enum name="screen" value="15"/>
  6544. <!-- Combines the tint and icon color and alpha channels, clamping the
  6545. result to valid color values. Saturate(S + D) -->
  6546. <enum name="add" value="16"/>
  6547. </attr>
  6548. </declare-styleable>
  6549. <declare-styleable name="MenuView">
  6550. <!-- Default appearance of menu item text. -->
  6551. <attr name="android:itemTextAppearance"/>
  6552. <!-- Default horizontal divider between rows of menu items. -->
  6553. <attr name="android:horizontalDivider"/>
  6554. <!-- Default vertical divider between menu items. -->
  6555. <attr name="android:verticalDivider"/>
  6556. <!-- Default background for the menu header. -->
  6557. <attr name="android:headerBackground"/>
  6558. <!-- Default background for each menu item. -->
  6559. <attr name="android:itemBackground"/>
  6560. <!-- Default animations for the menu. -->
  6561. <attr name="android:windowAnimationStyle"/>
  6562. <!-- Default disabled icon alpha for each menu item that shows an icon. -->
  6563. <attr name="android:itemIconDisabledAlpha"/>
  6564. <!-- Whether space should be reserved in layout when an icon is missing. -->
  6565. <attr format="boolean" name="preserveIconSpacing"/>
  6566. <!-- Drawable for the arrow icon indicating a particular item is a submenu. -->
  6567. <attr format="reference" name="subMenuArrow"/>
  6568. </declare-styleable>
  6569. <declare-styleable name="NavigationView"><attr name="android:background"/><attr name="android:fitsSystemWindows"/><attr name="android:maxWidth"/><attr name="elevation"/><attr format="reference" name="menu"/><attr format="color" name="itemIconTint"/><attr format="color" name="itemTextColor"/><attr format="reference" name="itemBackground"/><attr format="reference" name="itemTextAppearance"/><attr format="reference" name="headerLayout"/><attr format="dimension" name="itemHorizontalPadding"/><attr format="dimension" name="itemIconPadding"/></declare-styleable>
  6570. <declare-styleable name="NeatTextView"><attr name="android:textSize"/><attr name="android:textColor"/><attr name="android:maxLines"/><attr name="android:lines"/><attr name="android:maxWidth"/><attr name="android:gravity"/><attr name="android:minWidth"/><attr name="android:singleLine"/><attr name="android:text"/><attr name="android:background"/><attr name="android:textStyle"/><attr name="android:minHeight"/><attr name="android:maxHeight"/><attr name="android:fontFamily"/><attr name="android:typeface"/><attr name="android:lineSpacingExtra"/><attr name="android:paddingLeft"/><attr name="android:paddingRight"/><attr name="android:paddingTop"/><attr name="android:paddingBottom"/><attr name="android:width"/><attr name="android:height"/><attr name="android:hint"/><attr name="android:textColorHint"/><attr name="android:textColorLink"/><attr name="android:ellipsize"/><attr format="boolean" name="smartLetter"/></declare-styleable>
  6571. <declare-styleable name="NestedBounceView">
  6572. <attr format="boolean" name="isBounceEnable"/>
  6573. </declare-styleable>
  6574. <declare-styleable name="PictureLongScaleImageView">
  6575. <attr format="reference" name="src"/>
  6576. <attr format="string" name="assetName"/>
  6577. <attr format="boolean" name="panEnabled"/>
  6578. <attr format="boolean" name="zoomEnabled"/>
  6579. <attr format="boolean" name="quickScaleEnabled"/>
  6580. <attr format="color" name="tileBackgroundColor"/>
  6581. </declare-styleable>
  6582. <declare-styleable name="PictureMediumBoldTextView">
  6583. <attr format="float" name="stroke_Width"/>
  6584. </declare-styleable>
  6585. <declare-styleable name="PictureRoundCornerRelativeLayout">
  6586. <attr format="dimension" name="psCorners"/>
  6587. <attr format="boolean" name="psTopNormal"/>
  6588. <attr format="boolean" name="psBottomNormal"/>
  6589. </declare-styleable>
  6590. <declare-styleable name="PopupWindow">
  6591. <!-- Whether the popup window should overlap its anchor view. -->
  6592. <attr format="boolean" name="overlapAnchor"/>
  6593. <attr name="android:popupBackground"/>
  6594. <attr name="android:popupAnimationStyle"/>
  6595. </declare-styleable>
  6596. <declare-styleable name="PopupWindowBackgroundState">
  6597. <!-- State identifier indicating the popup will be above the anchor. -->
  6598. <attr format="boolean" name="state_above_anchor"/>
  6599. </declare-styleable>
  6600. <declare-styleable name="ProgressLoading">
  6601. <!--圆环上的进度颜色-->
  6602. <attr format="color" name="loadProgressColor"/>
  6603. <!--进度值的最大值,一般为100-->
  6604. <attr format="integer" name="loadMax"/>
  6605. <!--开始角度,指定进度初始点的绘制位置-->
  6606. <attr format="integer" name="loadStartAngle"/>
  6607. <attr format="integer" name="loadprogress"/>
  6608. </declare-styleable>
  6609. <declare-styleable name="RecycleListView">
  6610. <!-- Bottom padding to use when no buttons are present. -->
  6611. <attr format="dimension" name="paddingBottomNoButtons"/>
  6612. <!-- Top padding to use when no title is present. -->
  6613. <attr format="dimension" name="paddingTopNoTitle"/>
  6614. </declare-styleable>
  6615. <declare-styleable name="RecyclerView">
  6616. <!-- Class name of the Layout Manager to be used.
  6617. <p/>
  6618. The class must ext androidx.recyclerview.widget.RecyclerViewView$LayoutManager
  6619. and have either a default constructor or constructor with the signature
  6620. (android.content.Context, android.util.AttributeSet, int, int).
  6621. <p/>
  6622. If the name starts with a '.', application package is prefixed.
  6623. Else, if the name contains a '.', the classname is assumed to be a full class name.
  6624. Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. -->
  6625. <attr format="string" name="layoutManager"/>
  6626. <!-- ============================= -->
  6627. <!-- Attributes for Layout Manager -->
  6628. <!-- ============================= -->
  6629. <eat-comment/>
  6630. <attr name="android:orientation"/>
  6631. <attr name="android:descendantFocusability"/>
  6632. <attr name="android:clipToPadding"/>
  6633. <attr format="integer" name="spanCount"/>
  6634. <attr format="boolean" name="reverseLayout"/>
  6635. <attr format="boolean" name="stackFromEnd"/>
  6636. <attr format="boolean" name="fastScrollEnabled"/>
  6637. <attr format="reference" name="fastScrollVerticalThumbDrawable"/>
  6638. <attr format="reference" name="fastScrollVerticalTrackDrawable"/>
  6639. <attr format="reference" name="fastScrollHorizontalThumbDrawable"/>
  6640. <attr format="reference" name="fastScrollHorizontalTrackDrawable"/>
  6641. </declare-styleable>
  6642. <declare-styleable name="RoundProgressBtn">
  6643. <!--圆环颜色-->
  6644. <attr format="color" name="roundColor"/>
  6645. <!--圆环的宽度-->
  6646. <attr format="dimension" name="roundwidth"/>
  6647. <!--圆环上的进度颜色-->
  6648. <attr format="color" name="progressColor"/>
  6649. <!--圆环上的进度宽度-->
  6650. <attr format="dimension" name="progressWidth"/>
  6651. <!--进度值的最大值,一般为100-->
  6652. <attr format="integer" name="max"/>
  6653. <!--开始角度,指定进度初始点的绘制位置-->
  6654. <attr format="integer" name="fat_aar_excluded_startAngle"/>
  6655. <attr format="integer" name="progress"/>
  6656. <attr format="boolean" name="hasPause"/>
  6657. </declare-styleable>
  6658. <declare-styleable name="RoundedImageView"><attr format="dimension" name="riv_corner_radius"/><attr format="dimension" name="riv_corner_radius_top_left"/><attr format="dimension" name="riv_corner_radius_top_right"/><attr format="dimension" name="riv_corner_radius_bottom_left"/><attr format="dimension" name="riv_corner_radius_bottom_right"/><attr format="dimension" name="riv_border_width"/><attr format="color" name="riv_border_color"/><attr format="boolean" name="riv_mutate_background"/><attr format="boolean" name="riv_oval"/><attr name="android:scaleType"/><attr name="riv_tile_mode">
  6659. <enum name="clamp" value="0"/>
  6660. <enum name="repeat" value="1"/>
  6661. <enum name="mirror" value="2"/>
  6662. </attr><attr name="riv_tile_mode_x">
  6663. <enum name="clamp" value="0"/>
  6664. <enum name="repeat" value="1"/>
  6665. <enum name="mirror" value="2"/>
  6666. </attr><attr name="riv_tile_mode_y">
  6667. <enum name="clamp" value="0"/>
  6668. <enum name="repeat" value="1"/>
  6669. <enum name="mirror" value="2"/>
  6670. </attr></declare-styleable>
  6671. <declare-styleable name="ScrimInsetsFrameLayout"><attr format="color|reference" name="insetForeground"/></declare-styleable>
  6672. <declare-styleable name="ScrollingViewBehavior_Layout"><attr format="dimension" name="behavior_overlapTop"/></declare-styleable>
  6673. <declare-styleable name="SearchView">
  6674. <!-- The layout to use for the search view. -->
  6675. <attr format="reference" name="layout"/>
  6676. <!-- The default state of the SearchView. If true, it will be iconified when not in
  6677. use and expanded when clicked. -->
  6678. <attr format="boolean" name="iconifiedByDefault"/>
  6679. <!-- An optional maximum width of the SearchView. -->
  6680. <attr name="android:maxWidth"/>
  6681. <!-- An optional user-defined query hint string to be displayed in the empty query field. -->
  6682. <attr format="string" name="queryHint"/>
  6683. <!-- Default query hint used when {@code queryHint} is undefined and
  6684. the search view's {@code SearchableInfo} does not provide a hint. -->
  6685. <attr format="string" name="defaultQueryHint"/>
  6686. <!-- The IME options to set on the query text field. -->
  6687. <attr name="android:imeOptions"/>
  6688. <!-- The input type to set on the query text field. -->
  6689. <attr name="android:inputType"/>
  6690. <!-- Close button icon -->
  6691. <attr format="reference" name="closeIcon"/>
  6692. <!-- Go button icon -->
  6693. <attr format="reference" name="goIcon"/>
  6694. <!-- Search icon -->
  6695. <attr format="reference" name="searchIcon"/>
  6696. <!-- Search icon displayed as a text field hint -->
  6697. <attr format="reference" name="searchHintIcon"/>
  6698. <!-- Voice button icon -->
  6699. <attr format="reference" name="voiceIcon"/>
  6700. <!-- Commit icon shown in the query suggestion row -->
  6701. <attr format="reference" name="commitIcon"/>
  6702. <!-- Layout for query suggestion rows -->
  6703. <attr format="reference" name="suggestionRowLayout"/>
  6704. <!-- Background for the section containing the search query -->
  6705. <attr format="reference" name="queryBackground"/>
  6706. <!-- Background for the section containing the action (e.g. voice search) -->
  6707. <attr format="reference" name="submitBackground"/>
  6708. <attr name="android:focusable"/>
  6709. </declare-styleable>
  6710. <declare-styleable name="Snackbar"><attr format="reference" name="snackbarStyle"/><attr format="reference" name="snackbarButtonStyle"/></declare-styleable>
  6711. <declare-styleable name="SnackbarLayout"><attr name="android:maxWidth"/><attr name="elevation"/><attr format="dimension" name="maxActionInlineWidth"/></declare-styleable>
  6712. <declare-styleable name="Spinner">
  6713. <!-- The prompt to display when the spinner's dialog is shown. -->
  6714. <attr name="android:prompt"/>
  6715. <!-- Theme to use for the drop-down or dialog popup window. -->
  6716. <attr name="popupTheme"/>
  6717. <!-- Background drawable to use for the dropdown in spinnerMode="dropdown". -->
  6718. <attr name="android:popupBackground"/>
  6719. <!-- Width of the dropdown in spinnerMode="dropdown". -->
  6720. <attr name="android:dropDownWidth"/>
  6721. <!-- Reference to an array resource that will populate the Spinner. -->
  6722. <attr name="android:entries"/>
  6723. </declare-styleable>
  6724. <declare-styleable name="StateListDrawable">
  6725. <!-- Indicates whether the drawable should be initially visible. -->
  6726. <attr name="android:visible"/>
  6727. <!-- If true, allows the drawable's padding to change based on the
  6728. current state that is selected. If false, the padding will
  6729. stay the same (based on the maximum padding of all the states).
  6730. Enabling this feature requires that the owner of the drawable
  6731. deal with performing layout when the state changes, which is
  6732. often not supported. -->
  6733. <attr name="android:variablePadding"/>
  6734. <!-- If true, the drawable's reported internal size will remain
  6735. constant as the state changes; the size is the maximum of all
  6736. of the states. If false, the size will vary based on the
  6737. current state. -->
  6738. <attr name="android:constantSize"/>
  6739. <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
  6740. same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
  6741. an RGB 565 screen). -->
  6742. <attr name="android:dither"/>
  6743. <!-- Amount of time (in milliseconds) to fade in a new state drawable. -->
  6744. <attr name="android:enterFadeDuration"/>
  6745. <!-- Amount of time (in milliseconds) to fade out an old state drawable. -->
  6746. <attr name="android:exitFadeDuration"/>
  6747. <!-- Indicates if the drawable needs to be mirrored when its layout direction is
  6748. RTL (right-to-left). -->
  6749. <!--<attr name="autoMirrored"/>-->
  6750. </declare-styleable>
  6751. <declare-styleable name="StateListDrawableItem">
  6752. <!-- Reference to a drawable resource to use for the state. If not
  6753. given, the drawable must be defined by the first child tag. -->
  6754. <attr name="android:drawable"/>
  6755. </declare-styleable>
  6756. <declare-styleable name="SwipeBackLayout"><attr format="dimension" name="edge_size"/><attr name="edge_flag">
  6757. <enum name="left" value="0"/>
  6758. <enum name="right" value="1"/>
  6759. <enum name="bottom" value="2"/>
  6760. <enum name="all" value="3"/>
  6761. </attr><attr format="reference" name="shadow_left"/><attr format="reference" name="shadow_right"/><attr format="reference" name="shadow_bottom"/></declare-styleable>
  6762. <declare-styleable name="SwitchCompat">
  6763. <!-- Drawable to use as the "thumb" that switches back and forth. -->
  6764. <attr name="android:thumb"/>
  6765. <!-- Tint to apply to the thumb drawable. -->
  6766. <attr format="color" name="thumbTint"/>
  6767. <!-- Blending mode used to apply the thumb tint. -->
  6768. <attr name="thumbTintMode">
  6769. <!-- The tint is drawn on top of the drawable.
  6770. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  6771. <enum name="src_over" value="3"/>
  6772. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  6773. color channels are thrown out. [Sa * Da, Sc * Da] -->
  6774. <enum name="src_in" value="5"/>
  6775. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  6776. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  6777. <enum name="src_atop" value="9"/>
  6778. <!-- Multiplies the color and alpha channels of the drawable with those of
  6779. the tint. [Sa * Da, Sc * Dc] -->
  6780. <enum name="multiply" value="14"/>
  6781. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  6782. <enum name="screen" value="15"/>
  6783. <!-- Combines the tint and drawable color and alpha channels, clamping the
  6784. result to valid color values. Saturate(S + D) -->
  6785. <enum name="add" value="16"/>
  6786. </attr>
  6787. <!-- Drawable to use as the "track" that the switch thumb slides within. -->
  6788. <attr format="reference" name="track"/>
  6789. <!-- Tint to apply to the track. -->
  6790. <attr format="color" name="trackTint"/>
  6791. <!-- Blending mode used to apply the track tint. -->
  6792. <attr name="trackTintMode">
  6793. <!-- The tint is drawn on top of the drawable.
  6794. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  6795. <enum name="src_over" value="3"/>
  6796. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  6797. color channels are thrown out. [Sa * Da, Sc * Da] -->
  6798. <enum name="src_in" value="5"/>
  6799. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  6800. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  6801. <enum name="src_atop" value="9"/>
  6802. <!-- Multiplies the color and alpha channels of the drawable with those of
  6803. the tint. [Sa * Da, Sc * Dc] -->
  6804. <enum name="multiply" value="14"/>
  6805. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  6806. <enum name="screen" value="15"/>
  6807. <!-- Combines the tint and drawable color and alpha channels, clamping the
  6808. result to valid color values. Saturate(S + D) -->
  6809. <enum name="add" value="16"/>
  6810. </attr>
  6811. <!-- Text to use when the switch is in the checked/"on" state. -->
  6812. <attr name="android:textOn"/>
  6813. <!-- Text to use when the switch is in the unchecked/"off" state. -->
  6814. <attr name="android:textOff"/>
  6815. <!-- Amount of padding on either side of text within the switch thumb. -->
  6816. <attr format="dimension" name="thumbTextPadding"/>
  6817. <!-- TextAppearance style for text displayed on the switch thumb. -->
  6818. <attr format="reference" name="switchTextAppearance"/>
  6819. <!-- Minimum width for the switch component -->
  6820. <attr format="dimension" name="switchMinWidth"/>
  6821. <!-- Minimum space between the switch and caption text -->
  6822. <attr format="dimension" name="switchPadding"/>
  6823. <!-- Whether to split the track and leave a gap for the thumb drawable. -->
  6824. <attr format="boolean" name="splitTrack"/>
  6825. <!-- Whether to draw on/off text. -->
  6826. <attr format="boolean" name="showText"/>
  6827. </declare-styleable>
  6828. <declare-styleable name="TabItem"><attr name="android:text"/><attr name="android:icon"/><attr name="android:layout"/></declare-styleable>
  6829. <declare-styleable name="TabLayout"><attr format="color" name="tabIndicatorColor"/><attr format="dimension" name="tabIndicatorHeight"/><attr format="dimension" name="tabContentStart"/><attr format="reference" name="tabBackground"/><attr format="reference" name="tabIndicator"/><attr name="tabIndicatorGravity">
  6830. <enum name="bottom" value="0"/>
  6831. <enum name="center" value="1"/>
  6832. <enum name="top" value="2"/>
  6833. <enum name="stretch" value="3"/>
  6834. </attr><attr format="integer" name="tabIndicatorAnimationDuration"/><attr format="boolean" name="tabIndicatorFullWidth"/><attr name="tabMode">
  6835. <enum name="scrollable" value="0"/>
  6836. <enum name="fixed" value="1"/>
  6837. </attr><attr name="tabGravity">
  6838. <enum name="fill" value="0"/>
  6839. <enum name="center" value="1"/>
  6840. </attr><attr format="boolean" name="tabInlineLabel"/><attr format="dimension" name="tabMinWidth"/><attr format="dimension" name="tabMaxWidth"/><attr format="reference" name="tabTextAppearance"/><attr format="color" name="tabTextColor"/><attr format="color" name="tabSelectedTextColor"/><attr format="dimension" name="tabPaddingStart"/><attr format="dimension" name="tabPaddingTop"/><attr format="dimension" name="tabPaddingEnd"/><attr format="dimension" name="tabPaddingBottom"/><attr format="dimension" name="tabPadding"/><attr format="color" name="tabIconTint"/><attr name="tabIconTintMode">
  6841. <enum name="src_over" value="3"/>
  6842. <enum name="src_in" value="5"/>
  6843. <enum name="src_atop" value="9"/>
  6844. <enum name="multiply" value="14"/>
  6845. <enum name="screen" value="15"/>
  6846. <enum name="add" value="16"/>
  6847. </attr><attr format="color" name="tabRippleColor"/><attr format="boolean" name="tabUnboundedRipple"/></declare-styleable>
  6848. <declare-styleable name="TenPayRelativeLayout">
  6849. <attr format="string" name="TenPayAccessibilityClassName"/>
  6850. </declare-styleable>
  6851. <declare-styleable name="TextAppearance">
  6852. <attr name="android:textSize"/>
  6853. <attr name="android:textColor"/>
  6854. <attr name="android:textColorHint"/>
  6855. <attr name="android:textColorLink"/>
  6856. <attr name="android:textStyle"/>
  6857. <attr name="android:textFontWeight"/>
  6858. <attr name="android:typeface"/>
  6859. <attr name="android:fontFamily"/>
  6860. <attr name="fontFamily"/>
  6861. <attr name="textAllCaps"/>
  6862. <!-- Set the textLocale by a comma-separated language tag string,
  6863. for example "ja-JP,zh-CN". This attribute only takes effect on API 21 and above.
  6864. Before API 24, only the first language tag is used. Starting from API 24,
  6865. the string will be converted into a {@link android.os.LocaleList} and then used by
  6866. {@link android.widget.TextView} -->
  6867. <attr name="textLocale"/>
  6868. <attr name="android:shadowColor"/>
  6869. <attr name="android:shadowDy"/>
  6870. <attr name="android:shadowDx"/>
  6871. <attr name="android:shadowRadius"/>
  6872. <!-- OpenType font variation settings, available aftear api 26. -->
  6873. <attr name="fontVariationSettings"/>
  6874. </declare-styleable>
  6875. <declare-styleable name="TextInputLayout"><attr name="android:textColorHint"/><attr name="android:hint"/><attr format="boolean" name="hintEnabled"/><attr format="boolean" name="hintAnimationEnabled"/><attr format="reference" name="hintTextAppearance"/><attr format="string" name="helperText"/><attr format="boolean" name="helperTextEnabled"/><attr format="reference" name="helperTextTextAppearance"/><attr format="boolean" name="errorEnabled"/><attr format="reference" name="errorTextAppearance"/><attr format="boolean" name="counterEnabled"/><attr format="integer" name="counterMaxLength"/><attr format="reference" name="counterTextAppearance"/><attr format="reference" name="counterOverflowTextAppearance"/><attr format="boolean" name="passwordToggleEnabled"/><attr format="reference" name="passwordToggleDrawable"/><attr format="string" name="passwordToggleContentDescription"/><attr format="color" name="passwordToggleTint"/><attr name="passwordToggleTintMode">
  6876. <enum name="src_over" value="3"/>
  6877. <enum name="src_in" value="5"/>
  6878. <enum name="src_atop" value="9"/>
  6879. <enum name="multiply" value="14"/>
  6880. <enum name="screen" value="15"/>
  6881. </attr><attr name="boxBackgroundMode">
  6882. <enum name="none" value="0"/>
  6883. <enum name="filled" value="1"/>
  6884. <enum name="outline" value="2"/>
  6885. </attr><attr format="dimension" name="boxCollapsedPaddingTop"/><attr format="dimension" name="boxCornerRadiusTopStart"/><attr format="dimension" name="boxCornerRadiusTopEnd"/><attr format="dimension" name="boxCornerRadiusBottomStart"/><attr format="dimension" name="boxCornerRadiusBottomEnd"/><attr format="color" name="boxStrokeColor"/><attr format="color" name="boxBackgroundColor"/><attr format="dimension" name="boxStrokeWidth"/></declare-styleable>
  6886. <declare-styleable name="ThemeEnforcement"><attr format="boolean" name="enforceMaterialTheme"/><attr format="boolean" name="enforceTextAppearance"/><attr name="android:textAppearance"/></declare-styleable>
  6887. <declare-styleable name="ThreeDotsLoadingView">
  6888. <attr format="color" name="dotColor"/>
  6889. </declare-styleable>
  6890. <declare-styleable name="Toolbar">
  6891. <attr format="reference" name="titleTextAppearance"/>
  6892. <attr format="reference" name="subtitleTextAppearance"/>
  6893. <attr name="title"/>
  6894. <attr name="subtitle"/>
  6895. <attr name="android:gravity"/>
  6896. <!-- Specifies extra space on the left, start, right and end sides
  6897. of the toolbar's title. Margin values should be positive. -->
  6898. <attr format="dimension" name="titleMargin"/>
  6899. <!-- Specifies extra space on the start side of the toolbar's title.
  6900. If both this attribute and titleMargin are specified, then this
  6901. attribute takes precedence. Margin values should be positive. -->
  6902. <attr format="dimension" name="titleMarginStart"/>
  6903. <!-- Specifies extra space on the end side of the toolbar's title.
  6904. If both this attribute and titleMargin are specified, then this
  6905. attribute takes precedence. Margin values should be positive. -->
  6906. <attr format="dimension" name="titleMarginEnd"/>
  6907. <!-- Specifies extra space on the top side of the toolbar's title.
  6908. If both this attribute and titleMargin are specified, then this
  6909. attribute takes precedence. Margin values should be positive. -->
  6910. <attr format="dimension" name="titleMarginTop"/>
  6911. <!-- Specifies extra space on the bottom side of the toolbar's title.
  6912. If both this attribute and titleMargin are specified, then this
  6913. attribute takes precedence. Margin values should be positive. -->
  6914. <attr format="dimension" name="titleMarginBottom"/>
  6915. <!-- {@deprecated Use titleMargin} -->
  6916. <attr format="dimension" name="titleMargins"/>
  6917. <attr name="contentInsetStart"/>
  6918. <attr name="contentInsetEnd"/>
  6919. <attr name="contentInsetLeft"/>
  6920. <attr name="contentInsetRight"/>
  6921. <attr name="contentInsetStartWithNavigation"/>
  6922. <attr name="contentInsetEndWithActions"/>
  6923. <attr format="dimension" name="maxButtonHeight"/>
  6924. <attr name="buttonGravity">
  6925. <!-- Place object in the vertical center of its container, not changing its size. -->
  6926. <flag name="center_vertical" value="0x10"/>
  6927. <!-- Push object to the top of its container, not changing its size. -->
  6928. <flag name="top" value="0x30"/>
  6929. <!-- Push object to the bottom of its container, not changing its size. -->
  6930. <flag name="bottom" value="0x50"/>
  6931. </attr>
  6932. <!-- Icon drawable to use for the collapse button. -->
  6933. <attr format="reference" name="collapseIcon"/>
  6934. <!-- Text to set as the content description for the collapse button. -->
  6935. <attr format="string" name="collapseContentDescription"/>
  6936. <!-- Reference to a theme that should be used to inflate popups
  6937. shown by widgets in the toolbar. -->
  6938. <attr name="popupTheme"/>
  6939. <!-- Icon drawable to use for the navigation button located at
  6940. the start of the toolbar. -->
  6941. <attr format="reference" name="navigationIcon"/>
  6942. <!-- Text to set as the content description for the navigation button
  6943. located at the start of the toolbar. -->
  6944. <attr format="string" name="navigationContentDescription"/>
  6945. <!-- Drawable to set as the logo that appears at the starting side of
  6946. the Toolbar, just after the navigation button. -->
  6947. <attr name="logo"/>
  6948. <!-- A content description string to describe the appearance of the
  6949. associated logo image. -->
  6950. <attr format="string" name="logoDescription"/>
  6951. <!-- A color to apply to the title string. -->
  6952. <attr format="color" name="titleTextColor"/>
  6953. <!-- A color to apply to the subtitle string. -->
  6954. <attr format="color" name="subtitleTextColor"/>
  6955. <attr name="android:minHeight"/>
  6956. <!-- Menu resource to inflate to be shown in the toolbar -->
  6957. <attr format="reference" name="menu"/>
  6958. </declare-styleable>
  6959. <declare-styleable name="View">
  6960. <!-- Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. -->
  6961. <attr format="dimension" name="paddingStart"/>
  6962. <!-- Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. -->
  6963. <attr format="dimension" name="paddingEnd"/>
  6964. <!-- Boolean that controls whether a view can take focus. By default the user can not
  6965. move focus to a view; by setting this attribute to true the view is
  6966. allowed to take focus. This value does not impact the behavior of
  6967. directly calling {@link android.view.View#requestFocus}, which will
  6968. always request focus regardless of this view. It only impacts where
  6969. focus navigation will try to move focus. -->
  6970. <attr name="android:focusable"/>
  6971. <!-- Deprecated. -->
  6972. <attr format="reference" name="theme"/>
  6973. <!-- Specifies a theme override for a view. When a theme override is set, the
  6974. view will be inflated using a {@link android.content.Context} themed with
  6975. the specified resource. -->
  6976. <attr name="android:theme"/>
  6977. </declare-styleable>
  6978. <declare-styleable name="ViewBackgroundHelper">
  6979. <attr name="android:background"/>
  6980. <!-- Tint to apply to the background. -->
  6981. <attr format="color" name="backgroundTint"/>
  6982. <!-- Blending mode used to apply the background tint. -->
  6983. <attr name="backgroundTintMode">
  6984. <!-- The tint is drawn on top of the drawable.
  6985. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  6986. <enum name="src_over" value="3"/>
  6987. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  6988. color channels are thrown out. [Sa * Da, Sc * Da] -->
  6989. <enum name="src_in" value="5"/>
  6990. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  6991. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  6992. <enum name="src_atop" value="9"/>
  6993. <!-- Multiplies the color and alpha channels of the drawable with those of
  6994. the tint. [Sa * Da, Sc * Dc] -->
  6995. <enum name="multiply" value="14"/>
  6996. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  6997. <enum name="screen" value="15"/>
  6998. <!-- Combines the tint and icon color and alpha channels, clamping the
  6999. result to valid color values. Saturate(S + D) -->
  7000. <enum name="add" value="16"/>
  7001. </attr>
  7002. </declare-styleable>
  7003. <declare-styleable name="ViewPager2">
  7004. <attr name="android:orientation"/>
  7005. </declare-styleable>
  7006. <declare-styleable name="ViewStubCompat">
  7007. <!-- Supply an identifier for the layout resource to inflate when the ViewStub
  7008. becomes visible or when forced to do so. The layout resource must be a
  7009. valid reference to a layout. -->
  7010. <attr name="android:layout"/>
  7011. <!-- Overrides the id of the inflated View with this value. -->
  7012. <attr name="android:inflatedId"/>
  7013. <attr name="android:id"/>
  7014. </declare-styleable>
  7015. <declare-styleable name="ViewfinderView">
  7016. <attr format="dimension" name="inner_width"/>
  7017. <attr format="dimension" name="inner_height"/>
  7018. <attr format="dimension" name="inner_margintop"/>
  7019. <attr format="color" name="inner_corner_color"/>
  7020. <attr format="dimension" name="inner_corner_length"/>
  7021. <attr format="dimension" name="inner_corner_width"/>
  7022. <attr format="reference" name="inner_scan_bitmap"/>
  7023. <attr format="integer" name="inner_scan_speed"/>
  7024. <attr format="boolean" name="inner_scan_iscircle"/>
  7025. </declare-styleable>
  7026. <declare-styleable name="WeImageBtn">
  7027. <attr format="color" name="btnIconColor"/>
  7028. <attr format="float" name="btnIconAlpha"/>
  7029. </declare-styleable>
  7030. <declare-styleable name="WeImageView">
  7031. <attr format="color" name="iconColor"/>
  7032. <attr format="float" name="iconAlpha"/>
  7033. </declare-styleable>
  7034. <declare-styleable name="WheelView">
  7035. <attr name="fat_aar_excluded_wheelview_gravity">
  7036. <enum name="center" value="17"/>
  7037. <enum name="left" value="3"/>
  7038. <enum name="right" value="5"/>
  7039. </attr>
  7040. <attr format="dimension" name="wheelview_textSize"/>
  7041. <attr format="color" name="wheelview_textColorOut"/>
  7042. <attr format="color" name="wheelview_textColorCenter"/>
  7043. <attr format="color" name="wheelview_dividerColor"/>
  7044. <attr format="float" name="wheelview_lineSpacingMultiplier"/>
  7045. </declare-styleable>
  7046. <declare-styleable name="toyBrick">
  7047. <attr format="string" name="identity"/>
  7048. <attr format="string" name="title"/>
  7049. <attr format="string" name="rightDesc"/>
  7050. <attr format="string" name="summary"/>
  7051. <attr format="dimension" name="fat_aar_excluded_space"/>
  7052. <attr format="boolean" name="checked"/>
  7053. <attr format="boolean" name="isVisible"/>
  7054. <attr format="boolean" name="rightArrowEnable"/>
  7055. <attr format="reference" name="icon"/>
  7056. <attr format="reference" name="rightIcon"/>
  7057. <attr format="integer" name="prospectNum"/>
  7058. <attr format="reference" name="prospectStyle">
  7059. <enum name="NONE" value="0"/>
  7060. <enum name="RED_NEW" value="1"/>
  7061. <enum name="RED_DOT" value="2"/>
  7062. <enum name="RED_NUM" value="3"/>
  7063. </attr>
  7064. </declare-styleable>
  7065. </resources>