values.xml 252 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
  3. <attr format="reference" name="animate_relativeTo"/>
  4. <attr format="enum" name="arcMode">
  5. <enum name="startVertical" value="0"/>
  6. <enum name="startHorizontal" value="1"/>
  7. <enum name="flip" value="2"/>
  8. </attr>
  9. <attr format="boolean" name="barrierAllowsGoneWidgets"/>
  10. <attr format="enum" name="barrierDirection">
  11. <enum name="left" value="0"/>
  12. <enum name="right" value="1"/>
  13. <enum name="top" value="2"/>
  14. <enum name="bottom" value="3"/>
  15. <enum name="start" value="5"/>
  16. <enum name="end" value="6"/>
  17. </attr>
  18. <attr format="dimension" name="barrierMargin"/>
  19. <attr format="boolean" name="chainUseRtl"/>
  20. <attr format="dimension" name="circleRadius"/>
  21. <attr format="reference" name="constraintSet"/>
  22. <attr format="string" name="constraint_referenced_ids"/>
  23. <attr format="reference" name="content"/>
  24. <attr format="reference" name="coordinatorLayoutStyle"/>
  25. <attr format="enum" name="curveFit">
  26. <enum name="spline" value="0"/>
  27. <enum name="linear" value="1"/>
  28. </attr>
  29. <attr format="integer" name="defaultDuration"/>
  30. <attr format="float" name="deltaPolarAngle"/>
  31. <attr format="float" name="deltaPolarRadius"/>
  32. <attr format="enum" name="dragDirection">
  33. <enum name="dragUp" value="0"/>
  34. <enum name="dragDown" value="1"/>
  35. <enum name="dragLeft" value="2"/>
  36. <enum name="dragRight" value="3"/>
  37. <enum name="dragStart" value="4"/>
  38. <enum name="dragEnd" value="5"/>
  39. </attr>
  40. <attr format="enum" name="drawPath">
  41. <enum name="none" value="0"/>
  42. <enum name="path" value="1"/>
  43. <enum name="pathRelative" value="2"/>
  44. <enum name="deltaRelative" value="3"/>
  45. <enum name="asConfigured" value="4"/>
  46. <enum name="rectangles" value="5"/>
  47. </attr>
  48. <attr format="reference" name="drawerArrowStyle"/>
  49. <attr format="integer" name="duration"/>
  50. <attr format="float" name="flow_firstHorizontalBias"/>
  51. <attr format="enum" name="flow_firstHorizontalStyle">
  52. <enum name="spread" value="0"/>
  53. <enum name="spread_inside" value="1"/>
  54. <enum name="packed" value="2"/>
  55. </attr>
  56. <attr format="float" name="flow_firstVerticalBias"/>
  57. <attr format="enum" name="flow_firstVerticalStyle">
  58. <enum name="spread" value="0"/>
  59. <enum name="spread_inside" value="1"/>
  60. <enum name="packed" value="2"/>
  61. </attr>
  62. <attr format="float" name="flow_horizontalAlign">
  63. <enum name="start" value="0"/>
  64. <enum name="end" value="1"/>
  65. <enum name="center" value="2"/>
  66. </attr>
  67. <attr format="float" name="flow_horizontalBias"/>
  68. <attr format="dimension" name="flow_horizontalGap"/>
  69. <attr format="enum" name="flow_horizontalStyle">
  70. <enum name="spread" value="0"/>
  71. <enum name="spread_inside" value="1"/>
  72. <enum name="packed" value="2"/>
  73. </attr>
  74. <attr format="float" name="flow_lastHorizontalBias"/>
  75. <attr format="enum" name="flow_lastHorizontalStyle">
  76. <enum name="spread" value="0"/>
  77. <enum name="spread_inside" value="1"/>
  78. <enum name="packed" value="2"/>
  79. </attr>
  80. <attr format="float" name="flow_lastVerticalBias"/>
  81. <attr format="enum" name="flow_lastVerticalStyle">
  82. <enum name="spread" value="0"/>
  83. <enum name="spread_inside" value="1"/>
  84. <enum name="packed" value="2"/>
  85. </attr>
  86. <attr format="integer" name="flow_maxElementsWrap"/>
  87. <attr format="dimension" name="flow_padding"/>
  88. <attr format="enum" name="flow_verticalAlign">
  89. <enum name="top" value="0"/>
  90. <enum name="bottom" value="1"/>
  91. <enum name="center" value="2"/>
  92. <enum name="baseline" value="3"/>
  93. </attr>
  94. <attr format="float" name="flow_verticalBias"/>
  95. <attr format="dimension" name="flow_verticalGap"/>
  96. <attr format="enum" name="flow_verticalStyle">
  97. <enum name="spread" value="0"/>
  98. <enum name="spread_inside" value="1"/>
  99. <enum name="packed" value="2"/>
  100. </attr>
  101. <attr format="enum" name="flow_wrapMode">
  102. <enum name="none" value="0"/>
  103. <enum name="chain" value="1"/>
  104. <enum name="aligned" value="2"/>
  105. </attr>
  106. <attr format="integer" name="framePosition"/>
  107. <attr format="dimension" name="height"/>
  108. <attr format="boolean" name="isLightTheme"/>
  109. <attr format="reference" name="layoutDescription"/>
  110. <attr format="enum" name="layoutDuringTransition">
  111. <enum name="ignoreRequest" value="0"/>
  112. <enum name="honorRequest" value="1"/>
  113. </attr>
  114. <attr format="boolean" name="layout_constrainedHeight"/>
  115. <attr format="boolean" name="layout_constrainedWidth"/>
  116. <attr format="integer" name="layout_constraintBaseline_creator"/>
  117. <attr format="reference|enum" name="layout_constraintBaseline_toBaselineOf">
  118. <enum name="parent" value="0"/>
  119. </attr>
  120. <attr format="integer" name="layout_constraintBottom_creator"/>
  121. <attr format="reference|enum" name="layout_constraintBottom_toBottomOf">
  122. <enum name="parent" value="0"/>
  123. </attr>
  124. <attr format="reference|enum" name="layout_constraintBottom_toTopOf">
  125. <enum name="parent" value="0"/>
  126. </attr>
  127. <attr format="reference" name="layout_constraintCircle"/>
  128. <attr format="integer" name="layout_constraintCircleAngle"/>
  129. <attr format="dimension" name="layout_constraintCircleRadius"/>
  130. <attr format="string" name="layout_constraintDimensionRatio"/>
  131. <attr format="reference|enum" name="layout_constraintEnd_toEndOf">
  132. <enum name="parent" value="0"/>
  133. </attr>
  134. <attr format="reference|enum" name="layout_constraintEnd_toStartOf">
  135. <enum name="parent" value="0"/>
  136. </attr>
  137. <attr format="dimension" name="layout_constraintGuide_begin"/>
  138. <attr format="dimension" name="layout_constraintGuide_end"/>
  139. <attr format="float" name="layout_constraintGuide_percent"/>
  140. <attr name="layout_constraintHeight_default">
  141. <enum name="spread" value="0"/>
  142. <enum name="wrap" value="1"/>
  143. <enum name="percent" value="2"/>
  144. </attr>
  145. <attr format="dimension|enum" name="layout_constraintHeight_max">
  146. <enum name="wrap" value="-2"/>
  147. </attr>
  148. <attr format="dimension|enum" name="layout_constraintHeight_min">
  149. <enum name="wrap" value="-2"/>
  150. </attr>
  151. <attr format="float" name="layout_constraintHeight_percent"/>
  152. <attr format="float" name="layout_constraintHorizontal_bias"/>
  153. <attr format="enum" name="layout_constraintHorizontal_chainStyle">
  154. <enum name="spread" value="0"/>
  155. <enum name="spread_inside" value="1"/>
  156. <enum name="packed" value="2"/>
  157. </attr>
  158. <attr format="float" name="layout_constraintHorizontal_weight"/>
  159. <attr format="integer" name="layout_constraintLeft_creator"/>
  160. <attr format="reference|enum" name="layout_constraintLeft_toLeftOf">
  161. <enum name="parent" value="0"/>
  162. </attr>
  163. <attr format="reference|enum" name="layout_constraintLeft_toRightOf">
  164. <enum name="parent" value="0"/>
  165. </attr>
  166. <attr format="integer" name="layout_constraintRight_creator"/>
  167. <attr format="reference|enum" name="layout_constraintRight_toLeftOf">
  168. <enum name="parent" value="0"/>
  169. </attr>
  170. <attr format="reference|enum" name="layout_constraintRight_toRightOf">
  171. <enum name="parent" value="0"/>
  172. </attr>
  173. <attr format="reference|enum" name="layout_constraintStart_toEndOf">
  174. <enum name="parent" value="0"/>
  175. </attr>
  176. <attr format="reference|enum" name="layout_constraintStart_toStartOf">
  177. <enum name="parent" value="0"/>
  178. </attr>
  179. <attr format="string" name="layout_constraintTag"/>
  180. <attr format="integer" name="layout_constraintTop_creator"/>
  181. <attr format="reference|enum" name="layout_constraintTop_toBottomOf">
  182. <enum name="parent" value="0"/>
  183. </attr>
  184. <attr format="reference|enum" name="layout_constraintTop_toTopOf">
  185. <enum name="parent" value="0"/>
  186. </attr>
  187. <attr format="float" name="layout_constraintVertical_bias"/>
  188. <attr format="enum" name="layout_constraintVertical_chainStyle">
  189. <enum name="spread" value="0"/>
  190. <enum name="spread_inside" value="1"/>
  191. <enum name="packed" value="2"/>
  192. </attr>
  193. <attr format="float" name="layout_constraintVertical_weight"/>
  194. <attr name="layout_constraintWidth_default">
  195. <enum name="spread" value="0"/>
  196. <enum name="wrap" value="1"/>
  197. <enum name="percent" value="2"/>
  198. </attr>
  199. <attr format="dimension|enum" name="layout_constraintWidth_max">
  200. <enum name="wrap" value="-2"/>
  201. </attr>
  202. <attr format="dimension|enum" name="layout_constraintWidth_min">
  203. <enum name="wrap" value="-2"/>
  204. </attr>
  205. <attr format="float" name="layout_constraintWidth_percent"/>
  206. <attr format="dimension" name="layout_editor_absoluteX"/>
  207. <attr format="dimension" name="layout_editor_absoluteY"/>
  208. <attr format="dimension" name="layout_goneMarginBottom"/>
  209. <attr format="dimension" name="layout_goneMarginEnd"/>
  210. <attr format="dimension" name="layout_goneMarginLeft"/>
  211. <attr format="dimension" name="layout_goneMarginRight"/>
  212. <attr format="dimension" name="layout_goneMarginStart"/>
  213. <attr format="dimension" name="layout_goneMarginTop"/>
  214. <attr name="layout_optimizationLevel">
  215. <flag name="none" value="0"/>
  216. <flag name="standard" value="7"/> <!-- direct, barriers, chains -->
  217. <flag name="direct" value="1"/>
  218. <flag name="barrier" value="2"/>
  219. <flag name="chains" value="4"/>
  220. <flag name="dimensions" value="8"/>
  221. <flag name="ratio" value="16"/>
  222. <flag name="groups" value="32"/>
  223. <flag name="graph" value="64"/>
  224. <flag name="graph_wrap" value="128"/>
  225. </attr>
  226. <attr format="float" name="motionPathRotate"/>
  227. <attr format="float" name="motionProgress"/>
  228. <attr format="float" name="motionStagger"/>
  229. <attr format="reference|string" name="motionTarget"/>
  230. <attr format="enum" name="pathMotionArc">
  231. <enum name="none" value="0"/>
  232. <enum name="startVertical" value="1"/>
  233. <enum name="startHorizontal" value="2"/>
  234. <enum name="flip" value="3"/>
  235. </attr>
  236. <attr format="float" name="path_percent"/>
  237. <attr format="float" name="perpendicularPath_percent"/>
  238. <attr format="reference|enum" name="pivotAnchor">
  239. <enum name="parent" value="0"/>
  240. </attr>
  241. <attr name="placeholder_emptyVisibility">
  242. <enum name="visible" value="0"/>
  243. <enum name="invisible" value="4"/>
  244. <enum name="gone" value="8"/>
  245. </attr>
  246. <attr format="float" name="sizePercent"/>
  247. <attr format="reference" name="targetId"/>
  248. <attr format="string" name="title"/>
  249. <attr format="reference" name="touchAnchorId"/>
  250. <attr format="enum" name="touchAnchorSide">
  251. <enum name="top" value="0"/>
  252. <enum name="left" value="1"/>
  253. <enum name="right" value="2"/>
  254. <enum name="bottom" value="3"/>
  255. <enum name="middle" value="4"/>
  256. <enum name="start" value="5"/>
  257. <enum name="end" value="6"/>
  258. </attr>
  259. <attr format="string|enum" name="transitionEasing">
  260. <enum name="standard" value="0"/>
  261. <enum name="accelerate" value="1"/>
  262. <enum name="decelerate" value="2"/>
  263. <enum name="linear" value="3"/>
  264. </attr>
  265. <attr format="float" name="transitionPathRotate"/>
  266. <attr format="enum" name="visibilityMode">
  267. <enum name="normal" value="0"/>
  268. <enum name="ignore" value="1"/>
  269. </attr>
  270. <attr format="integer" name="waveDecay"/>
  271. <attr format="float|dimension" name="waveOffset"/>
  272. <attr format="float" name="wavePeriod"/>
  273. <attr format="enum" name="waveShape">
  274. <enum name="sin" value="0"/>
  275. <enum name="square" value="1"/>
  276. <enum name="triangle" value="2"/>
  277. <enum name="sawtooth" value="3"/>
  278. <enum name="reverseSawtooth" value="4"/>
  279. <enum name="cos" value="5"/>
  280. <enum name="bounce" value="6"/>
  281. </attr>
  282. <attr format="enum" name="waveVariesBy">
  283. <enum name="position" value="0"/>
  284. <enum name="path" value="1"/>
  285. </attr>
  286. <bool name="abc_action_bar_embed_tabs">true</bool>
  287. <bool name="abc_allow_stacked_button_bar">false</bool>
  288. <bool name="abc_config_actionMenuItemAllCaps">true</bool>
  289. <color name="abc_input_method_navigation_guard">@android:color/black</color>
  290. <color name="abc_search_url_text_normal">#7fa87f</color>
  291. <color name="abc_search_url_text_pressed">@android:color/black</color>
  292. <color name="abc_search_url_text_selected">@android:color/black</color>
  293. <color name="accent_material_dark">@color/material_deep_teal_200</color>
  294. <color name="accent_material_light">@color/material_deep_teal_500</color>
  295. <color name="background_floating_material_dark">@color/material_grey_800</color>
  296. <color name="background_floating_material_light">@android:color/white</color>
  297. <color name="background_material_dark">@color/material_grey_850</color>
  298. <color name="background_material_light">@color/material_grey_50</color>
  299. <color name="bright_foreground_disabled_material_dark">#80ffffff</color>
  300. <color name="bright_foreground_disabled_material_light">#80000000</color>
  301. <color name="bright_foreground_inverse_material_dark">@color/bright_foreground_material_light</color>
  302. <color name="bright_foreground_inverse_material_light">@color/bright_foreground_material_dark</color>
  303. <color name="bright_foreground_material_dark">@android:color/white</color>
  304. <color name="bright_foreground_material_light">@android:color/black</color>
  305. <color name="button_material_dark">#ff5a595b</color>
  306. <color name="button_material_light">#ffd6d7d7</color>
  307. <color name="dadada">#DADADA</color>
  308. <color name="dim_foreground_disabled_material_dark">#80bebebe</color>
  309. <color name="dim_foreground_disabled_material_light">#80323232</color>
  310. <color name="dim_foreground_material_dark">#ffbebebe</color>
  311. <color name="dim_foreground_material_light">#ff323232</color>
  312. <color name="e4e4e4">#E4E4E4</color>
  313. <color name="error_color_material_dark">#ff7043</color>
  314. <color name="error_color_material_light">#ff5722</color>
  315. <color name="ffffff">#FFFFFF</color>
  316. <color name="foreground_material_dark">@android:color/white</color>
  317. <color name="foreground_material_light">@android:color/black</color>
  318. <color name="highlighted_text_material_dark">#6680cbc4</color>
  319. <color name="highlighted_text_material_light">#66009688</color>
  320. <color name="image_pick_title_btn_normal">#00000000</color>
  321. <color name="image_pick_title_btn_pressed">#f4f4f4</color>
  322. <color name="ime_background">#cccccc</color>
  323. <color name="material_blue_grey_800">#ff37474f</color>
  324. <color name="material_blue_grey_900">#ff263238</color>
  325. <color name="material_blue_grey_950">#ff21272b</color>
  326. <color name="material_deep_teal_200">#ff80cbc4</color>
  327. <color name="material_deep_teal_500">#ff009688</color>
  328. <color name="material_grey_100">#fff5f5f5</color>
  329. <color name="material_grey_300">#ffe0e0e0</color>
  330. <color name="material_grey_50">#fffafafa</color>
  331. <color name="material_grey_600">#ff757575</color>
  332. <color name="material_grey_800">#ff424242</color>
  333. <color name="material_grey_850">#ff303030</color>
  334. <color name="material_grey_900">#ff212121</color>
  335. <color name="notification_action_color_filter">#ffffffff</color>
  336. <color name="notification_icon_bg_color">#ff9e9e9e</color>
  337. <color name="notification_material_background_media_default_color">#ff424242</color>
  338. <color name="primary_dark_material_dark">@android:color/black</color>
  339. <color name="primary_dark_material_light">@color/material_grey_600</color>
  340. <color name="primary_material_dark">@color/material_grey_900</color>
  341. <color name="primary_material_light">@color/material_grey_100</color>
  342. <color name="primary_text_default_material_dark">#ffffffff</color>
  343. <color name="primary_text_default_material_light">#de000000</color>
  344. <color name="primary_text_disabled_material_dark">#4Dffffff</color>
  345. <color name="primary_text_disabled_material_light">#39000000</color>
  346. <color name="ripple_material_dark">#33ffffff</color>
  347. <color name="ripple_material_light">#1f000000</color>
  348. <color name="secondary_text_default_material_dark">#b3ffffff</color>
  349. <color name="secondary_text_default_material_light">#8a000000</color>
  350. <color name="secondary_text_disabled_material_dark">#36ffffff</color>
  351. <color name="secondary_text_disabled_material_light">#24000000</color>
  352. <color name="switch_thumb_disabled_material_dark">#ff616161</color>
  353. <color name="switch_thumb_disabled_material_light">#ffbdbdbd</color>
  354. <color name="switch_thumb_normal_material_dark">#ffbdbdbd</color>
  355. <color name="switch_thumb_normal_material_light">#fff1f1f1</color>
  356. <color name="tooltip_background_dark">#e6616161</color>
  357. <color name="tooltip_background_light">#e6FFFFFF</color>
  358. <dimen name="abc_action_bar_content_inset_material">16dp</dimen>
  359. <dimen name="abc_action_bar_content_inset_with_nav">72dp</dimen>
  360. <dimen name="abc_action_bar_default_height_material">56dp</dimen>
  361. <dimen name="abc_action_bar_default_padding_end_material">0dp</dimen>
  362. <dimen name="abc_action_bar_default_padding_start_material">0dp</dimen>
  363. <dimen name="abc_action_bar_elevation_material">4dp</dimen>
  364. <dimen name="abc_action_bar_icon_vertical_padding_material">16dp</dimen>
  365. <dimen name="abc_action_bar_overflow_padding_end_material">10dp</dimen>
  366. <dimen name="abc_action_bar_overflow_padding_start_material">6dp</dimen>
  367. <dimen name="abc_action_bar_stacked_max_height">48dp</dimen>
  368. <dimen name="abc_action_bar_stacked_tab_max_width">180dp</dimen>
  369. <dimen name="abc_action_bar_subtitle_bottom_margin_material">5dp</dimen>
  370. <dimen name="abc_action_bar_subtitle_top_margin_material">-3dp</dimen>
  371. <dimen name="abc_action_button_min_height_material">48dp</dimen>
  372. <dimen name="abc_action_button_min_width_material">48dp</dimen>
  373. <dimen name="abc_action_button_min_width_overflow_material">36dp</dimen>
  374. <dimen name="abc_alert_dialog_button_bar_height">48dp</dimen>
  375. <dimen name="abc_alert_dialog_button_dimen">48dp</dimen>
  376. <dimen name="abc_button_inset_horizontal_material">@dimen/abc_control_inset_material</dimen>
  377. <dimen name="abc_button_inset_vertical_material">6dp</dimen>
  378. <dimen name="abc_button_padding_horizontal_material">8dp</dimen>
  379. <dimen name="abc_button_padding_vertical_material">@dimen/abc_control_padding_material</dimen>
  380. <dimen name="abc_cascading_menus_min_smallest_width">720dp</dimen>
  381. <dimen name="abc_config_prefDialogWidth">320dp</dimen>
  382. <dimen name="abc_control_corner_material">2dp</dimen>
  383. <dimen name="abc_control_inset_material">4dp</dimen>
  384. <dimen name="abc_control_padding_material">4dp</dimen>
  385. <dimen name="abc_dialog_corner_radius_material">2dp</dimen>
  386. <item name="abc_dialog_fixed_height_major" type="dimen">80%</item>
  387. <item name="abc_dialog_fixed_height_minor" type="dimen">100%</item>
  388. <item name="abc_dialog_fixed_width_major" type="dimen">320dp</item>
  389. <item name="abc_dialog_fixed_width_minor" type="dimen">320dp</item>
  390. <dimen name="abc_dialog_list_padding_bottom_no_buttons">8dp</dimen>
  391. <dimen name="abc_dialog_list_padding_top_no_title">8dp</dimen>
  392. <item name="abc_dialog_min_width_major" type="dimen">65%</item>
  393. <item name="abc_dialog_min_width_minor" type="dimen">95%</item>
  394. <dimen name="abc_dialog_padding_material">24dp</dimen>
  395. <dimen name="abc_dialog_padding_top_material">18dp</dimen>
  396. <dimen name="abc_dialog_title_divider_material">8dp</dimen>
  397. <item format="float" name="abc_disabled_alpha_material_dark" type="dimen">0.30</item>
  398. <item format="float" name="abc_disabled_alpha_material_light" type="dimen">0.26</item>
  399. <dimen name="abc_dropdownitem_icon_width">32dip</dimen>
  400. <dimen name="abc_dropdownitem_text_padding_left">8dip</dimen>
  401. <dimen name="abc_dropdownitem_text_padding_right">8dip</dimen>
  402. <dimen name="abc_edit_text_inset_bottom_material">7dp</dimen>
  403. <dimen name="abc_edit_text_inset_horizontal_material">4dp</dimen>
  404. <dimen name="abc_edit_text_inset_top_material">10dp</dimen>
  405. <dimen name="abc_floating_window_z">16dp</dimen>
  406. <dimen name="abc_list_item_padding_horizontal_material">@dimen/abc_action_bar_content_inset_material</dimen>
  407. <dimen name="abc_panel_menu_list_width">296dp</dimen>
  408. <dimen name="abc_progress_bar_height_material">4dp</dimen>
  409. <dimen name="abc_search_view_preferred_height">48dip</dimen>
  410. <dimen name="abc_search_view_preferred_width">320dip</dimen>
  411. <dimen name="abc_seekbar_track_background_height_material">2dp</dimen>
  412. <dimen name="abc_seekbar_track_progress_height_material">2dp</dimen>
  413. <dimen name="abc_select_dialog_padding_start_material">20dp</dimen>
  414. <dimen name="abc_switch_padding">3dp</dimen>
  415. <dimen name="abc_text_size_body_1_material">14sp</dimen>
  416. <dimen name="abc_text_size_body_2_material">14sp</dimen>
  417. <dimen name="abc_text_size_button_material">14sp</dimen>
  418. <dimen name="abc_text_size_caption_material">12sp</dimen>
  419. <dimen name="abc_text_size_display_1_material">34sp</dimen>
  420. <dimen name="abc_text_size_display_2_material">45sp</dimen>
  421. <dimen name="abc_text_size_display_3_material">56sp</dimen>
  422. <dimen name="abc_text_size_display_4_material">112sp</dimen>
  423. <dimen name="abc_text_size_headline_material">24sp</dimen>
  424. <dimen name="abc_text_size_large_material">22sp</dimen>
  425. <dimen name="abc_text_size_medium_material">18sp</dimen>
  426. <dimen name="abc_text_size_menu_header_material">14sp</dimen>
  427. <dimen name="abc_text_size_menu_material">16sp</dimen>
  428. <dimen name="abc_text_size_small_material">14sp</dimen>
  429. <dimen name="abc_text_size_subhead_material">16sp</dimen>
  430. <dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen>
  431. <dimen name="abc_text_size_title_material">20sp</dimen>
  432. <dimen name="abc_text_size_title_material_toolbar">20dp</dimen>
  433. <dimen name="compat_button_inset_horizontal_material">4dp</dimen>
  434. <dimen name="compat_button_inset_vertical_material">6dp</dimen>
  435. <dimen name="compat_button_padding_horizontal_material">8dp</dimen>
  436. <dimen name="compat_button_padding_vertical_material">4dp</dimen>
  437. <dimen name="compat_control_corner_material">2dp</dimen>
  438. <dimen name="compat_notification_large_icon_max_height">320dp</dimen>
  439. <dimen name="compat_notification_large_icon_max_width">320dp</dimen>
  440. <dimen name="dcloud_wel_base_content_space">30dp</dimen>
  441. <dimen name="dcloud_wel_base_content_space_2">60dp</dimen>
  442. <dimen name="dcloud_wel_base_content_text_min_size">15sp</dimen>
  443. <item format="float" name="disabled_alpha_material_dark" type="dimen">0.30</item>
  444. <item format="float" name="disabled_alpha_material_light" type="dimen">0.26</item>
  445. <dimen name="fastscroll_default_thickness">8dp</dimen>
  446. <dimen name="fastscroll_margin">0dp</dimen>
  447. <dimen name="fastscroll_minimum_range">50dp</dimen>
  448. <item format="float" name="highlight_alpha_material_colored" type="dimen">0.26</item>
  449. <item format="float" name="highlight_alpha_material_dark" type="dimen">0.20</item>
  450. <item format="float" name="highlight_alpha_material_light" type="dimen">0.12</item>
  451. <item format="float" name="hint_alpha_material_dark" type="dimen">0.50</item>
  452. <item format="float" name="hint_alpha_material_light" type="dimen">0.38</item>
  453. <item format="float" name="hint_pressed_alpha_material_dark" type="dimen">0.70</item>
  454. <item format="float" name="hint_pressed_alpha_material_light" type="dimen">0.54</item>
  455. <dimen name="item_touch_helper_max_drag_scroll_per_frame">20dp</dimen>
  456. <dimen name="item_touch_helper_swipe_escape_max_velocity">800dp</dimen>
  457. <dimen name="item_touch_helper_swipe_escape_velocity">120dp</dimen>
  458. <dimen name="notification_action_icon_size">32dp</dimen>
  459. <dimen name="notification_action_text_size">13sp</dimen>
  460. <dimen name="notification_big_circle_margin">12dp</dimen>
  461. <dimen name="notification_content_margin_start">8dp</dimen>
  462. <dimen name="notification_large_icon_height">64dp</dimen>
  463. <dimen name="notification_large_icon_width">64dp</dimen>
  464. <dimen name="notification_main_column_padding_top">10dp</dimen>
  465. <dimen name="notification_media_narrow_margin">@dimen/notification_content_margin_start</dimen>
  466. <dimen name="notification_right_icon_size">16dp</dimen>
  467. <dimen name="notification_right_side_padding_top">2dp</dimen>
  468. <dimen name="notification_small_icon_background_padding">3dp</dimen>
  469. <dimen name="notification_small_icon_size_as_large">24dp</dimen>
  470. <dimen name="notification_subtext_size">13sp</dimen>
  471. <dimen name="notification_top_pad">10dp</dimen>
  472. <dimen name="notification_top_pad_large_text">5dp</dimen>
  473. <dimen name="subtitle_corner_radius">2dp</dimen>
  474. <dimen name="subtitle_outline_width">2dp</dimen>
  475. <dimen name="subtitle_shadow_offset">2dp</dimen>
  476. <dimen name="subtitle_shadow_radius">2dp</dimen>
  477. <dimen name="tooltip_corner_radius">2dp</dimen>
  478. <dimen name="tooltip_horizontal_padding">16dp</dimen>
  479. <dimen name="tooltip_margin">8dp</dimen>
  480. <dimen name="tooltip_precise_anchor_extra_offset">8dp</dimen>
  481. <dimen name="tooltip_precise_anchor_threshold">96dp</dimen>
  482. <dimen name="tooltip_vertical_padding">6.5dp</dimen>
  483. <dimen name="tooltip_y_offset_non_touch">0dp</dimen>
  484. <dimen name="tooltip_y_offset_touch">16dp</dimen>
  485. <drawable name="notification_template_icon_bg">#3333B5E5</drawable>
  486. <drawable name="notification_template_icon_low_bg">#0cffffff</drawable>
  487. <item name="action_bar_activity_content" type="id"/>
  488. <item name="action_bar_spinner" type="id"/>
  489. <item name="action_menu_divider" type="id"/>
  490. <item name="action_menu_presenter" type="id"/>
  491. <item name="glide_custom_view_target_tag" type="id"/>
  492. <item name="home" type="id"/>
  493. <item name="item_touch_helper_previous_elevation" type="id"/>
  494. <item name="line1" type="id"/>
  495. <item name="line3" type="id"/>
  496. <item name="motion_base" type="id"/>
  497. <item name="progress_circular" type="id"/>
  498. <item name="progress_horizontal" type="id"/>
  499. <item name="split_action_bar" type="id"/>
  500. <item name="tag_transition_group" type="id"/>
  501. <item name="tag_unhandled_key_event_manager" type="id"/>
  502. <item name="tag_unhandled_key_listeners" type="id"/>
  503. <item name="text" type="id"/>
  504. <item name="text2" type="id"/>
  505. <item name="title" type="id"/>
  506. <item name="up" type="id"/>
  507. <integer name="abc_config_activityDefaultDur">220</integer>
  508. <integer name="abc_config_activityShortDur">150</integer>
  509. <integer name="cancel_button_image_alpha">127</integer>
  510. <integer name="config_tooltipAnimTime">150</integer>
  511. <integer name="status_bar_notification_info_maxnum">999</integer>
  512. <string name="abc_action_bar_home_description">Navigate home</string>
  513. <string name="abc_action_bar_up_description">Navigate up</string>
  514. <string name="abc_action_menu_overflow_description">More options</string>
  515. <string name="abc_action_mode_done">Done</string>
  516. <string name="abc_activity_chooser_view_see_all">See all</string>
  517. <string name="abc_activitychooserview_choose_application">Choose an app</string>
  518. <string name="abc_capital_off">OFF</string>
  519. <string name="abc_capital_on">ON</string>
  520. <string name="abc_font_family_body_1_material">sans-serif</string>
  521. <string name="abc_font_family_body_2_material">sans-serif-medium</string>
  522. <string name="abc_font_family_button_material">sans-serif-medium</string>
  523. <string name="abc_font_family_caption_material">sans-serif</string>
  524. <string name="abc_font_family_display_1_material">sans-serif</string>
  525. <string name="abc_font_family_display_2_material">sans-serif</string>
  526. <string name="abc_font_family_display_3_material">sans-serif</string>
  527. <string name="abc_font_family_display_4_material">sans-serif-light</string>
  528. <string name="abc_font_family_headline_material">sans-serif</string>
  529. <string name="abc_font_family_menu_material">sans-serif</string>
  530. <string name="abc_font_family_subhead_material">sans-serif</string>
  531. <string name="abc_font_family_title_material">sans-serif-medium</string>
  532. <string name="abc_menu_alt_shortcut_label">Alt+</string>
  533. <string name="abc_menu_ctrl_shortcut_label">Ctrl+</string>
  534. <string name="abc_menu_delete_shortcut_label">delete</string>
  535. <string name="abc_menu_enter_shortcut_label">enter</string>
  536. <string name="abc_menu_function_shortcut_label">Function+</string>
  537. <string name="abc_menu_meta_shortcut_label">Meta+</string>
  538. <string name="abc_menu_shift_shortcut_label">Shift+</string>
  539. <string name="abc_menu_space_shortcut_label">space</string>
  540. <string name="abc_menu_sym_shortcut_label">Sym+</string>
  541. <string name="abc_prepend_shortcut_label">Menu+</string>
  542. <string name="abc_search_hint">Search…</string>
  543. <string name="abc_searchview_description_clear">Clear query</string>
  544. <string name="abc_searchview_description_query">Search query</string>
  545. <string name="abc_searchview_description_search">Search</string>
  546. <string name="abc_searchview_description_submit">Submit query</string>
  547. <string name="abc_searchview_description_voice">Voice search</string>
  548. <string name="abc_shareactionprovider_share_with">Share with</string>
  549. <string name="abc_shareactionprovider_share_with_application">Share with <ns1:g example="Mail" id="application_name">%s</ns1:g></string>
  550. <string name="abc_toolbar_collapse_description">Collapse</string>
  551. <string name="app_name">宁夏新能源智能监盘app系统</string>
  552. <string name="dcloud_choose_an_action">选择操作</string>
  553. <string name="dcloud_gallery_app_name">@string/app_name</string>
  554. <string name="dcloud_package_name_base_application">io.dcloud.HBuilder</string>
  555. <string name="dcloud_permission_read_phone_state_message">为保证您正常、安全地使用,需要获取设备识别码(部分手机提示为获取手机号码)使用权限,请允许。</string>
  556. <string name="dcloud_permission_write_external_storage_message">应用保存运行状态等信息,需要获取读写手机存储(系统提示为访问设备上的照片、媒体内容和文件)权限,请允许。</string>
  557. <string name="dcloud_privacy_prompt_accept_button_text">我知道了</string>
  558. <string name="dcloud_privacy_prompt_message"><Data><![CDATA[请你务必审慎阅读、充分理解“服务协议”和“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。<br />
  559. 你可阅读<a href="">《服务协议》</a>和<a href="">《隐私政策》</a>了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。]]></Data></string>
  560. <string name="dcloud_privacy_prompt_title">服务协议和隐私政策</string>
  561. <string name="dcloud_sync_debug_message">当前应用运行在自定义调试基座中,发布正式版请打包时不要勾选自定义调试基座。</string>
  562. <string name="in_package">apk</string>
  563. <string name="search_menu_title">Search</string>
  564. <string name="status_bar_notification_info_overflow">999+</string>
  565. <string name="stream_my">最近流应用</string>
  566. <style name="ActionSheetStyleIOS6">
  567. <item name="actionSheetBackground">@drawable/dcloud_as_bg_ios6</item>
  568. <item name="cancelButtonBackground">@drawable/dcloud_as_cancel_bt_bg</item>
  569. <item name="otherButtonTopBackground">@drawable/dcloud_as_other_bt_bg</item>
  570. <item name="otherButtonMiddleBackground">@drawable/dcloud_as_other_bt_bg</item>
  571. <item name="otherButtonBottomBackground">@drawable/dcloud_as_other_bt_bg</item>
  572. <item name="otherButtonSingleBackground">@drawable/dcloud_as_other_bt_bg</item>
  573. <item name="cancelButtonTextColor">@android:color/white</item>
  574. <item name="otherButtonTextColor">@android:color/black</item>
  575. <item name="actionSheetPadding">20dp</item>
  576. <item name="otherButtonSpacing">5dp</item>
  577. <item name="cancelButtonMarginTop">20dp</item>
  578. <item name="actionSheetTextSize">16sp</item>
  579. </style>
  580. <style name="ActionSheetStyleIOS7">
  581. <item name="actionSheetBackground">@android:color/transparent</item>
  582. <item name="cancelButtonBackground">@drawable/dcloud_slt_as_ios7_cancel_bt</item>
  583. <item name="otherButtonTopBackground">@drawable/dcloud_slt_as_ios7_other_bt_top</item>
  584. <item name="otherButtonTitleBackground">@drawable/dcloud_slt_as_ios7_other_bt_title</item>
  585. <item name="otherButtonMiddleBackground">@drawable/dcloud_slt_as_ios7_other_bt_middle</item>
  586. <item name="otherButtonBottomBackground">@drawable/dcloud_slt_as_ios7_other_bt_bottom</item>
  587. <item name="otherButtonSingleBackground">@drawable/dcloud_slt_as_ios7_other_bt_single</item>
  588. <item name="cancelButtonTextColor">#000000</item>
  589. <item name="otherButtonTextColor">#000000</item>
  590. <item name="destructiveButtonTextColor">#E8484A</item>
  591. <item name="titleButtonTextColor">#8C8C8C</item>
  592. <item name="actionSheetPadding">10dp</item>
  593. <item name="otherButtonSpacing">0dp</item>
  594. <item name="cancelButtonMarginTop">10dp</item>
  595. <item name="actionSheetTextSize">16sp</item>
  596. </style>
  597. <style name="AlertDialog.AppCompat" parent="Base.AlertDialog.AppCompat"/>
  598. <style name="AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat.Light"/>
  599. <style name="Animation.AppCompat.Dialog" parent="Base.Animation.AppCompat.Dialog"/>
  600. <style name="Animation.AppCompat.DropDownUp" parent="Base.Animation.AppCompat.DropDownUp"/>
  601. <style name="Animation.AppCompat.Tooltip" parent="Base.Animation.AppCompat.Tooltip"/>
  602. <style name="Base.AlertDialog.AppCompat" parent="android:Widget">
  603. <item name="android:layout">@layout/abc_alert_dialog_material</item>
  604. <item name="listLayout">@layout/abc_select_dialog_material</item>
  605. <item name="listItemLayout">@layout/select_dialog_item_material</item>
  606. <item name="multiChoiceItemLayout">@layout/select_dialog_multichoice_material</item>
  607. <item name="singleChoiceItemLayout">@layout/select_dialog_singlechoice_material</item>
  608. <item name="buttonIconDimen">@dimen/abc_alert_dialog_button_dimen</item>
  609. </style>
  610. <style name="Base.AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat"/>
  611. <style name="Base.Animation.AppCompat.Dialog" parent="android:Animation">
  612. <item name="android:windowEnterAnimation">@anim/abc_popup_enter</item>
  613. <item name="android:windowExitAnimation">@anim/abc_popup_exit</item>
  614. </style>
  615. <style name="Base.Animation.AppCompat.DropDownUp" parent="android:Animation">
  616. <item name="android:windowEnterAnimation">@anim/abc_grow_fade_in_from_bottom</item>
  617. <item name="android:windowExitAnimation">@anim/abc_shrink_fade_out_from_bottom</item>
  618. </style>
  619. <style name="Base.Animation.AppCompat.Tooltip" parent="android:Animation">
  620. <item name="android:windowEnterAnimation">@anim/abc_tooltip_enter</item>
  621. <item name="android:windowExitAnimation">@anim/abc_tooltip_exit</item>
  622. </style>
  623. <style name="Base.DialogWindowTitle.AppCompat" parent="android:Widget">
  624. <item name="android:maxLines">1</item>
  625. <item name="android:scrollHorizontally">true</item>
  626. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Title</item>
  627. </style>
  628. <style name="Base.DialogWindowTitleBackground.AppCompat" parent="android:Widget">
  629. <item name="android:background">@null</item>
  630. <item name="android:paddingLeft">?attr/dialogPreferredPadding</item>
  631. <item name="android:paddingRight">?attr/dialogPreferredPadding</item>
  632. <item name="android:paddingTop">@dimen/abc_dialog_padding_top_material</item>
  633. </style>
  634. <style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance">
  635. <item name="android:textColor">?android:textColorPrimary</item>
  636. <item name="android:textColorHint">?android:textColorHint</item>
  637. <item name="android:textColorHighlight">?android:textColorHighlight</item>
  638. <item name="android:textColorLink">?android:textColorLink</item>
  639. <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
  640. </style>
  641. <style name="Base.TextAppearance.AppCompat.Body1">
  642. <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
  643. <item name="android:textColor">?android:textColorPrimary</item>
  644. </style>
  645. <style name="Base.TextAppearance.AppCompat.Body2">
  646. <item name="android:textSize">@dimen/abc_text_size_body_2_material</item>
  647. <item name="android:textColor">?android:textColorPrimary</item>
  648. </style>
  649. <style name="Base.TextAppearance.AppCompat.Button">
  650. <item name="android:textSize">@dimen/abc_text_size_button_material</item>
  651. <item name="android:textAllCaps">true</item>
  652. <item name="android:textColor">?android:textColorPrimary</item>
  653. </style>
  654. <style name="Base.TextAppearance.AppCompat.Caption">
  655. <item name="android:textSize">@dimen/abc_text_size_caption_material</item>
  656. <item name="android:textColor">?android:textColorSecondary</item>
  657. </style>
  658. <style name="Base.TextAppearance.AppCompat.Display1">
  659. <item name="android:textSize">@dimen/abc_text_size_display_1_material</item>
  660. <item name="android:textColor">?android:textColorSecondary</item>
  661. </style>
  662. <style name="Base.TextAppearance.AppCompat.Display2">
  663. <item name="android:textSize">@dimen/abc_text_size_display_2_material</item>
  664. <item name="android:textColor">?android:textColorSecondary</item>
  665. </style>
  666. <style name="Base.TextAppearance.AppCompat.Display3">
  667. <item name="android:textSize">@dimen/abc_text_size_display_3_material</item>
  668. <item name="android:textColor">?android:textColorSecondary</item>
  669. </style>
  670. <style name="Base.TextAppearance.AppCompat.Display4">
  671. <item name="android:textSize">@dimen/abc_text_size_display_4_material</item>
  672. <item name="android:textColor">?android:textColorSecondary</item>
  673. </style>
  674. <style name="Base.TextAppearance.AppCompat.Headline">
  675. <item name="android:textSize">@dimen/abc_text_size_headline_material</item>
  676. <item name="android:textColor">?android:textColorPrimary</item>
  677. </style>
  678. <style name="Base.TextAppearance.AppCompat.Inverse">
  679. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  680. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  681. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  682. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  683. </style>
  684. <style name="Base.TextAppearance.AppCompat.Large">
  685. <item name="android:textSize">@dimen/abc_text_size_large_material</item>
  686. <item name="android:textColor">?android:attr/textColorPrimary</item>
  687. </style>
  688. <style name="Base.TextAppearance.AppCompat.Large.Inverse">
  689. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  690. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  691. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  692. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  693. </style>
  694. <style name="Base.TextAppearance.AppCompat.Medium">
  695. <item name="android:textSize">@dimen/abc_text_size_medium_material</item>
  696. <item name="android:textColor">?android:attr/textColorSecondary</item>
  697. </style>
  698. <style name="Base.TextAppearance.AppCompat.Medium.Inverse">
  699. <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
  700. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  701. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  702. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  703. </style>
  704. <style name="Base.TextAppearance.AppCompat.Menu">
  705. <item name="android:textSize">@dimen/abc_text_size_menu_material</item>
  706. <item name="android:textColor">?android:textColorPrimary</item>
  707. </style>
  708. <style name="Base.TextAppearance.AppCompat.SearchResult" parent="">
  709. <item name="android:textStyle">normal</item>
  710. <item name="android:textColor">?android:textColorPrimary</item>
  711. <item name="android:textColorHint">?android:textColorHint</item>
  712. </style>
  713. <style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
  714. <item name="android:textSize">14sp</item>
  715. <item name="android:textColor">?android:textColorSecondary</item>
  716. </style>
  717. <style name="Base.TextAppearance.AppCompat.SearchResult.Title">
  718. <item name="android:textSize">18sp</item>
  719. </style>
  720. <style name="Base.TextAppearance.AppCompat.Small">
  721. <item name="android:textSize">@dimen/abc_text_size_small_material</item>
  722. <item name="android:textColor">?android:attr/textColorTertiary</item>
  723. </style>
  724. <style name="Base.TextAppearance.AppCompat.Small.Inverse">
  725. <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
  726. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  727. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  728. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  729. </style>
  730. <style name="Base.TextAppearance.AppCompat.Subhead">
  731. <item name="android:textSize">@dimen/abc_text_size_subhead_material</item>
  732. <item name="android:textColor">?android:textColorPrimary</item>
  733. </style>
  734. <style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
  735. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  736. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  737. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  738. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  739. </style>
  740. <style name="Base.TextAppearance.AppCompat.Title">
  741. <item name="android:textSize">@dimen/abc_text_size_title_material</item>
  742. <item name="android:textColor">?android:textColorPrimary</item>
  743. </style>
  744. <style name="Base.TextAppearance.AppCompat.Title.Inverse">
  745. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  746. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  747. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  748. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  749. </style>
  750. <style name="Base.TextAppearance.AppCompat.Tooltip">
  751. <item name="android:textSize">14sp</item>
  752. </style>
  753. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="TextAppearance.AppCompat.Button">
  754. <item name="android:textColor">?attr/actionMenuTextColor</item>
  755. <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
  756. </style>
  757. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="TextAppearance.AppCompat.Subhead">
  758. <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
  759. <item name="android:textColor">?android:attr/textColorSecondary</item>
  760. </style>
  761. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="TextAppearance.AppCompat.Subhead.Inverse">
  762. <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
  763. <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
  764. </style>
  765. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="TextAppearance.AppCompat.Title">
  766. <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
  767. <item name="android:textColor">?android:attr/textColorPrimary</item>
  768. </style>
  769. <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="TextAppearance.AppCompat.Title.Inverse">
  770. <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
  771. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  772. </style>
  773. <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/>
  774. <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title"/>
  775. <style name="Base.TextAppearance.AppCompat.Widget.Button" parent="TextAppearance.AppCompat.Button"/>
  776. <style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button">
  777. <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
  778. </style>
  779. <style name="Base.TextAppearance.AppCompat.Widget.Button.Colored">
  780. <item name="android:textColor">@color/abc_btn_colored_text_material</item>
  781. </style>
  782. <style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="TextAppearance.AppCompat.Button">
  783. <item name="android:textColor">?android:textColorPrimaryInverse</item>
  784. </style>
  785. <style name="Base.TextAppearance.AppCompat.Widget.DropDownItem" parent="android:TextAppearance.Small">
  786. <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
  787. </style>
  788. <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
  789. <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
  790. <item name="android:textColor">?attr/colorAccent</item>
  791. </style>
  792. <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu"/>
  793. <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu"/>
  794. <style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="TextAppearance.AppCompat.Button"/>
  795. <style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="TextAppearance.AppCompat.Menu"/>
  796. <style name="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="android:TextAppearance.Medium">
  797. <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
  798. </style>
  799. <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle">
  800. </style>
  801. <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
  802. </style>
  803. <style name="Base.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
  804. </style>
  805. <style name="Base.Theme.AppCompat.CompactMenu" parent="">
  806. <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
  807. <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
  808. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
  809. </style>
  810. <style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog"/>
  811. <style name="Base.Theme.AppCompat.Dialog.Alert">
  812. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  813. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  814. </style>
  815. <style name="Base.Theme.AppCompat.Dialog.FixedSize">
  816. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  817. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  818. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  819. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  820. </style>
  821. <style name="Base.Theme.AppCompat.Dialog.MinWidth">
  822. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  823. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  824. </style>
  825. <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Theme.AppCompat"/>
  826. <style name="Base.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
  827. </style>
  828. <style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light">
  829. <item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item>
  830. <item name="actionBarWidgetTheme">@null</item>
  831. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
  832. <!-- Panel attributes -->
  833. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
  834. <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
  835. <item name="colorPrimary">@color/primary_material_dark</item>
  836. </style>
  837. <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog"/>
  838. <style name="Base.Theme.AppCompat.Light.Dialog.Alert">
  839. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  840. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  841. </style>
  842. <style name="Base.Theme.AppCompat.Light.Dialog.FixedSize">
  843. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  844. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  845. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  846. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  847. </style>
  848. <style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
  849. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  850. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  851. </style>
  852. <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Theme.AppCompat.Light"/>
  853. <style name="Base.ThemeOverlay.AppCompat" parent="Platform.ThemeOverlay.AppCompat"/>
  854. <style name="Base.ThemeOverlay.AppCompat.ActionBar">
  855. <item name="colorControlNormal">?android:attr/textColorPrimary</item>
  856. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
  857. </style>
  858. <style name="Base.ThemeOverlay.AppCompat.Dark" parent="Platform.ThemeOverlay.AppCompat.Dark">
  859. <item name="android:windowBackground">@color/background_material_dark</item>
  860. <item name="android:colorForeground">@color/foreground_material_dark</item>
  861. <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
  862. <item name="android:colorBackground">@color/background_material_dark</item>
  863. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
  864. <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
  865. <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
  866. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
  867. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  868. <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
  869. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
  870. <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
  871. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
  872. <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
  873. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
  874. <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
  875. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  876. <item name="colorControlHighlight">@color/ripple_material_dark</item>
  877. <item name="colorButtonNormal">@color/button_material_dark</item>
  878. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
  879. <!-- Used by MediaRouter -->
  880. <item name="isLightTheme">false</item>
  881. </style>
  882. <style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar">
  883. <item name="colorControlNormal">?android:attr/textColorPrimary</item>
  884. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
  885. </style>
  886. <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog"/>
  887. <style name="Base.ThemeOverlay.AppCompat.Dialog.Alert">
  888. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  889. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  890. </style>
  891. <style name="Base.ThemeOverlay.AppCompat.Light" parent="Platform.ThemeOverlay.AppCompat.Light">
  892. <item name="android:windowBackground">@color/background_material_light</item>
  893. <item name="android:colorForeground">@color/foreground_material_light</item>
  894. <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
  895. <item name="android:colorBackground">@color/background_material_light</item>
  896. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
  897. <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
  898. <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
  899. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
  900. <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
  901. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
  902. <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
  903. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
  904. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
  905. <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  906. <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
  907. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
  908. <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
  909. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  910. <item name="colorControlHighlight">@color/ripple_material_light</item>
  911. <item name="colorButtonNormal">@color/button_material_light</item>
  912. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
  913. <!-- Used by MediaRouter -->
  914. <item name="isLightTheme">true</item>
  915. </style>
  916. <style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">
  917. <item name="viewInflaterClass">android.support.v7.app.AppCompatViewInflater</item>
  918. <item name="windowNoTitle">false</item>
  919. <item name="windowActionBar">true</item>
  920. <item name="windowActionBarOverlay">false</item>
  921. <item name="windowActionModeOverlay">false</item>
  922. <item name="actionBarPopupTheme">@null</item>
  923. <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
  924. <!-- Used by MediaRouter -->
  925. <item name="isLightTheme">false</item>
  926. <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
  927. <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
  928. <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  929. <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
  930. <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
  931. <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
  932. <!-- Action Bar Styles -->
  933. <item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item>
  934. <item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item>
  935. <item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item>
  936. <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
  937. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
  938. <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.PopupMenu.Overflow</item>
  939. <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item>
  940. <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
  941. <item name="actionBarWidgetTheme">@null</item>
  942. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
  943. <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
  944. <item name="actionBarDivider">?attr/dividerVertical</item>
  945. <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
  946. <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
  947. <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
  948. <!-- Dropdown Spinner Attributes -->
  949. <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
  950. <!-- Action Mode -->
  951. <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
  952. <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
  953. <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
  954. <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
  955. <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
  956. <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
  957. <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
  958. <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
  959. <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
  960. <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
  961. <!-- Panel attributes -->
  962. <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
  963. <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
  964. <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
  965. <item name="android:panelBackground">@android:color/transparent</item>
  966. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
  967. <!-- List attributes -->
  968. <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  969. <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  970. <item name="textAppearanceListItemSecondary">@style/TextAppearance.AppCompat.Body1</item>
  971. <item name="listPreferredItemHeight">64dp</item>
  972. <item name="listPreferredItemHeightSmall">48dp</item>
  973. <item name="listPreferredItemHeightLarge">80dp</item>
  974. <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  975. <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  976. <!-- Spinner styles -->
  977. <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
  978. <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
  979. <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
  980. <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
  981. <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  982. <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
  983. <!-- Popup Menu styles -->
  984. <item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item>
  985. <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>
  986. <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>
  987. <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
  988. <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
  989. <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
  990. <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
  991. <!-- SearchView attributes -->
  992. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView</item>
  993. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  994. <item name="textColorSearchUrl">@color/abc_search_url_text</item>
  995. <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
  996. <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
  997. <!-- ShareActionProvider attributes -->
  998. <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
  999. <!-- Toolbar styles -->
  1000. <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
  1001. <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
  1002. <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
  1003. <item name="editTextBackground">@drawable/abc_edit_text_material</item>
  1004. <item name="editTextColor">?android:attr/textColorPrimary</item>
  1005. <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  1006. <!-- Color palette -->
  1007. <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
  1008. <item name="colorPrimary">@color/primary_material_dark</item>
  1009. <item name="colorAccent">@color/accent_material_dark</item>
  1010. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  1011. <item name="colorControlActivated">?attr/colorAccent</item>
  1012. <item name="colorControlHighlight">@color/ripple_material_dark</item>
  1013. <item name="colorButtonNormal">@color/button_material_dark</item>
  1014. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
  1015. <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
  1016. <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
  1017. <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
  1018. <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
  1019. <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
  1020. <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
  1021. <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
  1022. <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
  1023. <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
  1024. <!-- Button styles -->
  1025. <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
  1026. <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
  1027. <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
  1028. <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
  1029. <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
  1030. <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
  1031. <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
  1032. <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
  1033. <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
  1034. <!-- Dialog attributes -->
  1035. <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
  1036. <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
  1037. <item name="dialogCornerRadius">@dimen/abc_dialog_corner_radius_material</item>
  1038. <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
  1039. <item name="alertDialogStyle">@style/AlertDialog.AppCompat</item>
  1040. <item name="alertDialogCenterButtons">false</item>
  1041. <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
  1042. <item name="listDividerAlertDialog">@null</item>
  1043. <!-- Define these here; ContextThemeWrappers around themes that define them should
  1044. always clear these values. -->
  1045. <item name="windowFixedWidthMajor">@null</item>
  1046. <item name="windowFixedWidthMinor">@null</item>
  1047. <item name="windowFixedHeightMajor">@null</item>
  1048. <item name="windowFixedHeightMinor">@null</item>
  1049. <!-- Tooltip attributes -->
  1050. <item name="tooltipFrameBackground">@drawable/tooltip_frame_light</item>
  1051. <item name="tooltipForegroundColor">@color/foreground_material_light</item>
  1052. <item name="colorError">@color/error_color_material_dark</item>
  1053. </style>
  1054. <style name="Base.V7.Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat">
  1055. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  1056. <item name="android:colorBackgroundCacheHint">@null</item>
  1057. <item name="android:windowFrame">@null</item>
  1058. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  1059. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  1060. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  1061. <item name="android:windowIsFloating">true</item>
  1062. <item name="android:backgroundDimEnabled">true</item>
  1063. <item name="android:windowContentOverlay">@null</item>
  1064. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  1065. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  1066. <item name="windowActionBar">false</item>
  1067. <item name="windowActionModeOverlay">true</item>
  1068. <item name="listPreferredItemPaddingLeft">24dip</item>
  1069. <item name="listPreferredItemPaddingRight">24dip</item>
  1070. <item name="android:listDivider">@null</item>
  1071. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  1072. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  1073. <item name="android:windowCloseOnTouchOutside">true</item>
  1074. </style>
  1075. <style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light">
  1076. <item name="viewInflaterClass">android.support.v7.app.AppCompatViewInflater</item>
  1077. <item name="windowNoTitle">false</item>
  1078. <item name="windowActionBar">true</item>
  1079. <item name="windowActionBarOverlay">false</item>
  1080. <item name="windowActionModeOverlay">false</item>
  1081. <item name="actionBarPopupTheme">@null</item>
  1082. <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
  1083. <!-- Used by MediaRouter -->
  1084. <item name="isLightTheme">true</item>
  1085. <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
  1086. <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
  1087. <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  1088. <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
  1089. <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
  1090. <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
  1091. <!-- Action Bar Styles -->
  1092. <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item>
  1093. <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>
  1094. <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item>
  1095. <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
  1096. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
  1097. <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>
  1098. <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item>
  1099. <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
  1100. <item name="actionBarWidgetTheme">@null</item>
  1101. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
  1102. <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
  1103. <item name="actionBarDivider">?attr/dividerVertical</item>
  1104. <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
  1105. <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
  1106. <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
  1107. <!-- Action Mode -->
  1108. <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
  1109. <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
  1110. <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
  1111. <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
  1112. <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
  1113. <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
  1114. <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
  1115. <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
  1116. <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
  1117. <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
  1118. <!-- Dropdown Spinner Attributes -->
  1119. <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
  1120. <!-- Panel attributes -->
  1121. <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
  1122. <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
  1123. <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
  1124. <item name="android:panelBackground">@android:color/transparent</item>
  1125. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>
  1126. <!-- List attributes -->
  1127. <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  1128. <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  1129. <item name="textAppearanceListItemSecondary">@style/TextAppearance.AppCompat.Body1</item>
  1130. <item name="listPreferredItemHeight">64dp</item>
  1131. <item name="listPreferredItemHeightSmall">48dp</item>
  1132. <item name="listPreferredItemHeightLarge">80dp</item>
  1133. <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  1134. <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  1135. <!-- Spinner styles -->
  1136. <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
  1137. <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
  1138. <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
  1139. <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
  1140. <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  1141. <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
  1142. <!-- Popup Menu styles -->
  1143. <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item>
  1144. <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>
  1145. <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>
  1146. <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
  1147. <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
  1148. <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
  1149. <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
  1150. <!-- SearchView attributes -->
  1151. <item name="searchViewStyle">@style/Widget.AppCompat.Light.SearchView</item>
  1152. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  1153. <item name="textColorSearchUrl">@color/abc_search_url_text</item>
  1154. <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
  1155. <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
  1156. <!-- ShareActionProvider attributes -->
  1157. <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
  1158. <!-- Toolbar styles -->
  1159. <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
  1160. <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
  1161. <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
  1162. <item name="editTextBackground">@drawable/abc_edit_text_material</item>
  1163. <item name="editTextColor">?android:attr/textColorPrimary</item>
  1164. <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  1165. <!-- Color palette -->
  1166. <item name="colorPrimaryDark">@color/primary_dark_material_light</item>
  1167. <item name="colorPrimary">@color/primary_material_light</item>
  1168. <item name="colorAccent">@color/accent_material_light</item>
  1169. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  1170. <item name="colorControlActivated">?attr/colorAccent</item>
  1171. <item name="colorControlHighlight">@color/ripple_material_light</item>
  1172. <item name="colorButtonNormal">@color/button_material_light</item>
  1173. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
  1174. <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
  1175. <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
  1176. <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
  1177. <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
  1178. <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
  1179. <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
  1180. <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
  1181. <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
  1182. <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
  1183. <!-- Button styles -->
  1184. <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
  1185. <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
  1186. <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
  1187. <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
  1188. <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
  1189. <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
  1190. <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
  1191. <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
  1192. <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
  1193. <!-- Dialog attributes -->
  1194. <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
  1195. <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
  1196. <item name="dialogCornerRadius">@dimen/abc_dialog_corner_radius_material</item>
  1197. <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
  1198. <item name="alertDialogStyle">@style/AlertDialog.AppCompat.Light</item>
  1199. <item name="alertDialogCenterButtons">false</item>
  1200. <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
  1201. <item name="listDividerAlertDialog">@null</item>
  1202. <!-- Define these here; ContextThemeWrappers around themes that define them should
  1203. always clear these values. -->
  1204. <item name="windowFixedWidthMajor">@null</item>
  1205. <item name="windowFixedWidthMinor">@null</item>
  1206. <item name="windowFixedHeightMajor">@null</item>
  1207. <item name="windowFixedHeightMinor">@null</item>
  1208. <!-- Tooltip attributes -->
  1209. <item name="tooltipFrameBackground">@drawable/tooltip_frame_dark</item>
  1210. <item name="tooltipForegroundColor">@color/foreground_material_dark</item>
  1211. <item name="colorError">@color/error_color_material_light</item>
  1212. </style>
  1213. <style name="Base.V7.Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light">
  1214. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  1215. <item name="android:colorBackgroundCacheHint">@null</item>
  1216. <item name="android:windowFrame">@null</item>
  1217. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  1218. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  1219. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  1220. <item name="android:windowIsFloating">true</item>
  1221. <item name="android:backgroundDimEnabled">true</item>
  1222. <item name="android:windowContentOverlay">@null</item>
  1223. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  1224. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  1225. <item name="windowActionBar">false</item>
  1226. <item name="windowActionModeOverlay">true</item>
  1227. <item name="listPreferredItemPaddingLeft">24dip</item>
  1228. <item name="listPreferredItemPaddingRight">24dip</item>
  1229. <item name="android:listDivider">@null</item>
  1230. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  1231. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  1232. <item name="android:windowCloseOnTouchOutside">true</item>
  1233. </style>
  1234. <style name="Base.V7.ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat">
  1235. <item name="android:colorBackgroundCacheHint">@null</item>
  1236. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  1237. <item name="android:windowFrame">@null</item>
  1238. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  1239. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  1240. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  1241. <item name="android:windowIsFloating">true</item>
  1242. <item name="android:backgroundDimEnabled">true</item>
  1243. <item name="android:windowContentOverlay">@null</item>
  1244. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  1245. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  1246. <item name="windowActionBar">false</item>
  1247. <item name="windowActionModeOverlay">true</item>
  1248. <item name="listPreferredItemPaddingLeft">24dip</item>
  1249. <item name="listPreferredItemPaddingRight">24dip</item>
  1250. <item name="android:listDivider">@null</item>
  1251. <item name="windowFixedWidthMajor">@null</item>
  1252. <item name="windowFixedWidthMinor">@null</item>
  1253. <item name="windowFixedHeightMajor">@null</item>
  1254. <item name="windowFixedHeightMinor">@null</item>
  1255. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  1256. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  1257. <item name="android:windowCloseOnTouchOutside">true</item>
  1258. </style>
  1259. <style name="Base.V7.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.AutoCompleteTextView">
  1260. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  1261. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  1262. <item name="android:background">?attr/editTextBackground</item>
  1263. <item name="android:textColor">?attr/editTextColor</item>
  1264. <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
  1265. <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
  1266. </style>
  1267. <style name="Base.V7.Widget.AppCompat.EditText" parent="android:Widget.EditText">
  1268. <item name="android:background">?attr/editTextBackground</item>
  1269. <item name="android:textColor">?attr/editTextColor</item>
  1270. <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
  1271. <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
  1272. </style>
  1273. <style name="Base.V7.Widget.AppCompat.Toolbar" parent="android:Widget">
  1274. <item name="titleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item>
  1275. <item name="subtitleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item>
  1276. <item name="android:minHeight">?attr/actionBarSize</item>
  1277. <item name="titleMargin">4dp</item>
  1278. <item name="maxButtonHeight">@dimen/abc_action_bar_default_height_material</item>
  1279. <item name="buttonGravity">top</item>
  1280. <item name="collapseIcon">?attr/homeAsUpIndicator</item>
  1281. <item name="collapseContentDescription">@string/abc_toolbar_collapse_description</item>
  1282. <item name="contentInsetStart">16dp</item>
  1283. <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
  1284. <item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item>
  1285. <item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item>
  1286. </style>
  1287. <style name="Base.Widget.AppCompat.ActionBar" parent="">
  1288. <item name="displayOptions">showTitle</item>
  1289. <item name="divider">?attr/dividerVertical</item>
  1290. <item name="height">?attr/actionBarSize</item>
  1291. <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>
  1292. <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item>
  1293. <item name="background">@null</item>
  1294. <item name="backgroundStacked">@null</item>
  1295. <item name="backgroundSplit">@null</item>
  1296. <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
  1297. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
  1298. <item name="android:gravity">center_vertical</item>
  1299. <item name="contentInsetStart">@dimen/abc_action_bar_content_inset_material</item>
  1300. <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
  1301. <item name="contentInsetEnd">@dimen/abc_action_bar_content_inset_material</item>
  1302. <item name="elevation">@dimen/abc_action_bar_elevation_material</item>
  1303. <item name="popupTheme">?attr/actionBarPopupTheme</item>
  1304. </style>
  1305. <style name="Base.Widget.AppCompat.ActionBar.Solid">
  1306. <item name="background">?attr/colorPrimary</item>
  1307. <item name="backgroundStacked">?attr/colorPrimary</item>
  1308. <item name="backgroundSplit">?attr/colorPrimary</item>
  1309. </style>
  1310. <style name="Base.Widget.AppCompat.ActionBar.TabBar" parent="">
  1311. <item name="divider">?attr/actionBarDivider</item>
  1312. <item name="showDividers">middle</item>
  1313. <item name="dividerPadding">8dip</item>
  1314. </style>
  1315. <style name="Base.Widget.AppCompat.ActionBar.TabText" parent="">
  1316. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium</item>
  1317. <item name="android:textColor">?android:attr/textColorPrimary</item>
  1318. <item name="android:textSize">12sp</item>
  1319. <item name="android:textStyle">bold</item>
  1320. <item name="android:ellipsize">marquee</item>
  1321. <item name="android:maxLines">2</item>
  1322. <item name="android:maxWidth">180dp</item>
  1323. <item name="textAllCaps">true</item>
  1324. </style>
  1325. <style name="Base.Widget.AppCompat.ActionBar.TabView" parent="">
  1326. <item name="android:background">@drawable/abc_tab_indicator_material</item>
  1327. <item name="android:gravity">center_horizontal</item>
  1328. <item name="android:paddingLeft">16dip</item>
  1329. <item name="android:paddingRight">16dip</item>
  1330. <item name="android:layout_width">0dip</item>
  1331. <item name="android:layout_weight">1</item>
  1332. <item name="android:minWidth">80dip</item>
  1333. </style>
  1334. <style name="Base.Widget.AppCompat.ActionButton" parent="RtlUnderlay.Widget.AppCompat.ActionButton">
  1335. <item name="android:background">?attr/actionBarItemBackground</item>
  1336. <item name="android:minWidth">@dimen/abc_action_button_min_width_material</item>
  1337. <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
  1338. <item name="android:scaleType">center</item>
  1339. <item name="android:gravity">center</item>
  1340. <item name="android:maxLines">2</item>
  1341. <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
  1342. </style>
  1343. <style name="Base.Widget.AppCompat.ActionButton.CloseMode">
  1344. <item name="android:background">?attr/controlBackground</item>
  1345. <item name="android:minWidth">56dp</item>
  1346. </style>
  1347. <style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow">
  1348. <item name="srcCompat">@drawable/abc_ic_menu_overflow_material</item>
  1349. <item name="android:background">?attr/actionBarItemBackground</item>
  1350. <item name="android:contentDescription">@string/abc_action_menu_overflow_description</item>
  1351. <item name="android:minWidth">@dimen/abc_action_button_min_width_overflow_material</item>
  1352. <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
  1353. </style>
  1354. <style name="Base.Widget.AppCompat.ActionMode" parent="">
  1355. <item name="background">?attr/actionModeBackground</item>
  1356. <item name="backgroundSplit">?attr/actionModeSplitBackground</item>
  1357. <item name="height">?attr/actionBarSize</item>
  1358. <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>
  1359. <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item>
  1360. <item name="closeItemLayout">@layout/abc_action_mode_close_item_material</item>
  1361. </style>
  1362. <style name="Base.Widget.AppCompat.ActivityChooserView" parent="">
  1363. <item name="android:gravity">center</item>
  1364. <item name="android:background">@drawable/abc_ab_share_pack_mtrl_alpha</item>
  1365. <item name="divider">?attr/dividerVertical</item>
  1366. <item name="showDividers">middle</item>
  1367. <item name="dividerPadding">6dip</item>
  1368. </style>
  1369. <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView"/>
  1370. <style name="Base.Widget.AppCompat.Button" parent="android:Widget">
  1371. <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
  1372. <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
  1373. <item name="android:minHeight">48dip</item>
  1374. <item name="android:minWidth">88dip</item>
  1375. <item name="android:focusable">true</item>
  1376. <item name="android:clickable">true</item>
  1377. <item name="android:gravity">center_vertical|center_horizontal</item>
  1378. </style>
  1379. <style name="Base.Widget.AppCompat.Button.Borderless">
  1380. <item name="android:background">@drawable/abc_btn_borderless_material</item>
  1381. </style>
  1382. <style name="Base.Widget.AppCompat.Button.Borderless.Colored">
  1383. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored</item>
  1384. </style>
  1385. <style name="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Widget.AppCompat.Button.Borderless.Colored">
  1386. <item name="android:minWidth">64dp</item>
  1387. <item name="android:minHeight">@dimen/abc_alert_dialog_button_bar_height</item>
  1388. </style>
  1389. <style name="Base.Widget.AppCompat.Button.Colored">
  1390. <item name="android:background">@drawable/abc_btn_colored_material</item>
  1391. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Colored</item>
  1392. </style>
  1393. <style name="Base.Widget.AppCompat.Button.Small">
  1394. <item name="android:minHeight">48dip</item>
  1395. <item name="android:minWidth">48dip</item>
  1396. </style>
  1397. <style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget">
  1398. <item name="android:background">@null</item>
  1399. </style>
  1400. <style name="Base.Widget.AppCompat.ButtonBar.AlertDialog"/>
  1401. <style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.CompoundButton.CheckBox">
  1402. <item name="android:button">?android:attr/listChoiceIndicatorMultiple</item>
  1403. <item name="android:background">?attr/controlBackground</item>
  1404. </style>
  1405. <style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.CompoundButton.RadioButton">
  1406. <item name="android:button">?android:attr/listChoiceIndicatorSingle</item>
  1407. <item name="android:background">?attr/controlBackground</item>
  1408. </style>
  1409. <style name="Base.Widget.AppCompat.CompoundButton.Switch" parent="android:Widget.CompoundButton">
  1410. <item name="track">@drawable/abc_switch_track_mtrl_alpha</item>
  1411. <item name="android:thumb">@drawable/abc_switch_thumb_material</item>
  1412. <item name="switchTextAppearance">@style/TextAppearance.AppCompat.Widget.Switch</item>
  1413. <item name="android:background">?attr/controlBackground</item>
  1414. <item name="showText">false</item>
  1415. <item name="switchPadding">@dimen/abc_switch_padding</item>
  1416. <item name="android:textOn">@string/abc_capital_on</item>
  1417. <item name="android:textOff">@string/abc_capital_off</item>
  1418. </style>
  1419. <style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
  1420. <item name="barLength">18dp</item>
  1421. <item name="gapBetweenBars">3dp</item>
  1422. <item name="drawableSize">24dp</item>
  1423. </style>
  1424. <style name="Base.Widget.AppCompat.DrawerArrowToggle.Common" parent="">
  1425. <item name="color">?android:attr/textColorSecondary</item>
  1426. <item name="spinBars">true</item>
  1427. <item name="thickness">2dp</item>
  1428. <item name="arrowShaftLength">16dp</item>
  1429. <item name="arrowHeadLength">8dp</item>
  1430. </style>
  1431. <style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="">
  1432. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.DropDownItem</item>
  1433. <item name="android:paddingLeft">8dp</item>
  1434. <item name="android:paddingRight">8dp</item>
  1435. <item name="android:gravity">center_vertical</item>
  1436. </style>
  1437. <style name="Base.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText"/>
  1438. <style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.ImageButton">
  1439. <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
  1440. </style>
  1441. <style name="Base.Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
  1442. <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
  1443. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
  1444. </style>
  1445. <style name="Base.Widget.AppCompat.Light.ActionBar.Solid">
  1446. <item name="background">?attr/colorPrimary</item>
  1447. <item name="backgroundStacked">?attr/colorPrimary</item>
  1448. <item name="backgroundSplit">?attr/colorPrimary</item>
  1449. </style>
  1450. <style name="Base.Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
  1451. </style>
  1452. <style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
  1453. </style>
  1454. <style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
  1455. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  1456. </style>
  1457. <style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
  1458. <item name="android:background">@drawable/abc_tab_indicator_material</item>
  1459. </style>
  1460. <style name="Base.Widget.AppCompat.Light.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
  1461. </style>
  1462. <style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
  1463. <item name="overlapAnchor">true</item>
  1464. <item name="android:dropDownHorizontalOffset">-4dip</item>
  1465. </style>
  1466. <style name="Base.Widget.AppCompat.ListMenuView" parent="android:Widget">
  1467. <item name="subMenuArrow">@drawable/abc_ic_arrow_drop_right_black_24dp</item>
  1468. </style>
  1469. <style name="Base.Widget.AppCompat.ListPopupWindow" parent="">
  1470. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  1471. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  1472. <item name="android:dropDownVerticalOffset">0dip</item>
  1473. <item name="android:dropDownHorizontalOffset">0dip</item>
  1474. <item name="android:dropDownWidth">wrap_content</item>
  1475. </style>
  1476. <style name="Base.Widget.AppCompat.ListView" parent="android:Widget.ListView">
  1477. <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
  1478. </style>
  1479. <style name="Base.Widget.AppCompat.ListView.DropDown">
  1480. <item name="android:divider">@null</item>
  1481. </style>
  1482. <style name="Base.Widget.AppCompat.ListView.Menu" parent="android:Widget.ListView.Menu">
  1483. <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
  1484. <item name="android:divider">?attr/dividerHorizontal</item>
  1485. </style>
  1486. <style name="Base.Widget.AppCompat.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
  1487. </style>
  1488. <style name="Base.Widget.AppCompat.PopupMenu.Overflow">
  1489. <item name="overlapAnchor">true</item>
  1490. <item name="android:dropDownHorizontalOffset">-4dip</item>
  1491. </style>
  1492. <style name="Base.Widget.AppCompat.PopupWindow" parent="android:Widget.PopupWindow">
  1493. </style>
  1494. <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Holo.ProgressBar">
  1495. </style>
  1496. <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Holo.ProgressBar.Horizontal">
  1497. </style>
  1498. <style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.RatingBar">
  1499. <item name="android:progressDrawable">@drawable/abc_ratingbar_material</item>
  1500. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_material</item>
  1501. </style>
  1502. <style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.RatingBar">
  1503. <item name="android:progressDrawable">@drawable/abc_ratingbar_indicator_material</item>
  1504. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_indicator_material</item>
  1505. <item name="android:minHeight">36dp</item>
  1506. <item name="android:maxHeight">36dp</item>
  1507. <item name="android:isIndicator">true</item>
  1508. <item name="android:thumb">@null</item>
  1509. </style>
  1510. <style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.RatingBar">
  1511. <item name="android:progressDrawable">@drawable/abc_ratingbar_small_material</item>
  1512. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_small_material</item>
  1513. <item name="android:minHeight">16dp</item>
  1514. <item name="android:maxHeight">16dp</item>
  1515. <item name="android:isIndicator">true</item>
  1516. <item name="android:thumb">@null</item>
  1517. </style>
  1518. <style name="Base.Widget.AppCompat.SearchView" parent="android:Widget">
  1519. <item name="layout">@layout/abc_search_view</item>
  1520. <item name="queryBackground">@drawable/abc_textfield_search_material</item>
  1521. <item name="submitBackground">@drawable/abc_textfield_search_material</item>
  1522. <item name="closeIcon">@drawable/abc_ic_clear_material</item>
  1523. <item name="searchIcon">@drawable/abc_ic_search_api_material</item>
  1524. <item name="searchHintIcon">@drawable/abc_ic_search_api_material</item>
  1525. <item name="goIcon">@drawable/abc_ic_go_search_api_material</item>
  1526. <item name="voiceIcon">@drawable/abc_ic_voice_search_api_material</item>
  1527. <item name="commitIcon">@drawable/abc_ic_commit_search_api_mtrl_alpha</item>
  1528. <item name="suggestionRowLayout">@layout/abc_search_dropdown_item_icons_2line</item>
  1529. </style>
  1530. <style name="Base.Widget.AppCompat.SearchView.ActionBar">
  1531. <item name="queryBackground">@null</item>
  1532. <item name="submitBackground">@null</item>
  1533. <item name="searchHintIcon">@null</item>
  1534. <item name="defaultQueryHint">@string/abc_search_hint</item>
  1535. </style>
  1536. <style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget">
  1537. <item name="android:indeterminateOnly">false</item>
  1538. <item name="android:progressDrawable">@drawable/abc_seekbar_track_material</item>
  1539. <item name="android:indeterminateDrawable">@drawable/abc_seekbar_track_material</item>
  1540. <item name="android:thumb">@drawable/abc_seekbar_thumb_material</item>
  1541. <item name="android:focusable">true</item>
  1542. <item name="android:paddingLeft">16dip</item>
  1543. <item name="android:paddingRight">16dip</item>
  1544. </style>
  1545. <style name="Base.Widget.AppCompat.SeekBar.Discrete">
  1546. <item name="tickMark">@drawable/abc_seekbar_tick_mark_material</item>
  1547. </style>
  1548. <style name="Base.Widget.AppCompat.Spinner" parent="Platform.Widget.AppCompat.Spinner">
  1549. <item name="android:background">@drawable/abc_spinner_mtrl_am_alpha</item>
  1550. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  1551. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  1552. <item name="android:dropDownVerticalOffset">0dip</item>
  1553. <item name="android:dropDownHorizontalOffset">0dip</item>
  1554. <item name="android:dropDownWidth">wrap_content</item>
  1555. <item name="android:clickable">true</item>
  1556. <item name="android:gravity">left|start|center_vertical</item>
  1557. <item name="overlapAnchor">true</item>
  1558. </style>
  1559. <style name="Base.Widget.AppCompat.Spinner.Underlined">
  1560. <item name="android:background">@drawable/abc_spinner_textfield_background_material</item>
  1561. </style>
  1562. <style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.TextView.SpinnerItem">
  1563. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item>
  1564. <item name="android:paddingLeft">8dp</item>
  1565. <item name="android:paddingRight">8dp</item>
  1566. </style>
  1567. <style name="Base.Widget.AppCompat.Toolbar" parent="Base.V7.Widget.AppCompat.Toolbar"/>
  1568. <style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget">
  1569. <item name="android:background">?attr/controlBackground</item>
  1570. <item name="android:minWidth">56dp</item>
  1571. <item name="android:scaleType">center</item>
  1572. </style>
  1573. <style name="CustomDialog">
  1574. <item name="android:windowFrame">@null</item><!--边框-->
  1575. <item name="android:windowIsFloating">true</item><!--是否浮现在activity之上-->
  1576. <item name="android:windowIsTranslucent">false</item><!--半透明-->
  1577. <item name="android:windowNoTitle">true</item><!--无标题-->
  1578. <item name="android:windowBackground">@android:color/transparent</item><!--背景透明-->
  1579. <item name="android:backgroundDimEnabled">false</item><!--模糊-->
  1580. <item name="android:backgroundDimAmount">0.6</item>
  1581. </style>
  1582. <style name="DCloudTheme" parent="@style/DeviceDefault.Light">
  1583. <item name="android:windowNoTitle">true</item>
  1584. <item name="android:colorEdgeEffect">#333333</item>
  1585. <!--<item name="android:windowIsTranslucent">true</item>-->
  1586. </style>
  1587. <style name="DeviceDefault" parent="@android:style/Theme.DeviceDefault">
  1588. <item name="android:windowNoTitle">true</item>
  1589. <item name="android:windowIsTranslucent">true</item>
  1590. <item name="android:colorEdgeEffect">#333333</item>
  1591. <item name="android:windowBackground">@color/ime_background</item>
  1592. </style>
  1593. <style name="DeviceDefault.Light" parent="@android:style/Theme.DeviceDefault.Light">
  1594. <item name="android:windowNoTitle">true</item>
  1595. <item name="android:colorEdgeEffect">#333333</item>
  1596. <item name="android:windowBackground">@color/ime_background</item>
  1597. </style>
  1598. <style name="NotificationText" parent="android:TextAppearance.StatusBar.EventContent">
  1599. <item name="android:textColor">#bb000000</item>
  1600. <item name="android:textSize">13dp</item>
  1601. </style>
  1602. <style name="NotificationText_Dark" parent="android:TextAppearance.StatusBar.EventContent">
  1603. <item name="android:textColor">#C0C0C0</item>
  1604. <item name="android:textSize">13dp</item>
  1605. </style>
  1606. <style name="NotificationTitle" parent="android:TextAppearance.StatusBar.EventContent.Title">
  1607. <item name="android:textColor">#bb000000</item>
  1608. </style>
  1609. <style name="NotificationTitle_Dark" parent="android:TextAppearance.StatusBar.EventContent.Title">
  1610. <item name="android:textColor">#ffffff</item>
  1611. </style>
  1612. <style name="OpenStreamAppTransferActivityTheme">
  1613. <item name="android:windowNoTitle">true</item>
  1614. <item name="android:windowIsTranslucent">true</item>
  1615. <item name="android:windowBackground">@null</item>
  1616. <item name="android:windowAnimationStyle">@null</item>
  1617. </style>
  1618. <style name="Platform.AppCompat" parent="android:Theme.Holo">
  1619. <item name="android:windowNoTitle">true</item>
  1620. <item name="android:windowActionBar">false</item>
  1621. <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
  1622. <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
  1623. <item name="android:borderlessButtonStyle">?attr/borderlessButtonStyle</item>
  1624. <!-- Window colors -->
  1625. <item name="android:colorForeground">@color/foreground_material_dark</item>
  1626. <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
  1627. <item name="android:colorBackground">@color/background_material_dark</item>
  1628. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
  1629. <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
  1630. <item name="android:backgroundDimAmount">0.6</item>
  1631. <item name="android:windowBackground">@color/background_material_dark</item>
  1632. <!-- Text colors -->
  1633. <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
  1634. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
  1635. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  1636. <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
  1637. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
  1638. <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
  1639. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
  1640. <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
  1641. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
  1642. <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
  1643. <item name="android:textColorHighlightInverse">@color/highlighted_text_material_light</item>
  1644. <item name="android:textColorLink">?attr/colorAccent</item>
  1645. <item name="android:textColorLinkInverse">?attr/colorAccent</item>
  1646. <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
  1647. <!-- Text styles -->
  1648. <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
  1649. <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
  1650. <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
  1651. <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
  1652. <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
  1653. <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  1654. <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
  1655. <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
  1656. <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
  1657. <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
  1658. <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  1659. <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  1660. <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
  1661. <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
  1662. <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
  1663. <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
  1664. <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_dark</item>
  1665. <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_dark</item>
  1666. <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_dark</item>
  1667. </style>
  1668. <style name="Platform.AppCompat.Light" parent="android:Theme.Holo.Light">
  1669. <item name="android:windowNoTitle">true</item>
  1670. <item name="android:windowActionBar">false</item>
  1671. <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
  1672. <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
  1673. <item name="android:borderlessButtonStyle">?attr/borderlessButtonStyle</item>
  1674. <!-- Window colors -->
  1675. <item name="android:colorForeground">@color/foreground_material_light</item>
  1676. <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
  1677. <item name="android:colorBackground">@color/background_material_light</item>
  1678. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
  1679. <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
  1680. <item name="android:backgroundDimAmount">0.6</item>
  1681. <item name="android:windowBackground">@color/background_material_light</item>
  1682. <!-- Text colors -->
  1683. <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
  1684. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
  1685. <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
  1686. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
  1687. <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
  1688. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
  1689. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
  1690. <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  1691. <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
  1692. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
  1693. <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
  1694. <item name="android:textColorHighlightInverse">@color/highlighted_text_material_dark</item>
  1695. <item name="android:textColorLink">?attr/colorAccent</item>
  1696. <item name="android:textColorLinkInverse">?attr/colorAccent</item>
  1697. <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
  1698. <!-- Text styles -->
  1699. <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
  1700. <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
  1701. <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
  1702. <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
  1703. <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
  1704. <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  1705. <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
  1706. <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
  1707. <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
  1708. <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
  1709. <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  1710. <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  1711. <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
  1712. <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
  1713. <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
  1714. <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
  1715. <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_light</item>
  1716. <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_light</item>
  1717. <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_light</item>
  1718. </style>
  1719. <style name="Platform.ThemeOverlay.AppCompat" parent=""/>
  1720. <style name="Platform.ThemeOverlay.AppCompat.Dark">
  1721. <!-- Action Bar styles -->
  1722. <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item>
  1723. <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
  1724. <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
  1725. <!-- SearchView styles -->
  1726. <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  1727. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  1728. </style>
  1729. <style name="Platform.ThemeOverlay.AppCompat.Light">
  1730. <item name="actionBarItemBackground">@drawable/abc_item_background_holo_light</item>
  1731. <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
  1732. <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
  1733. <!-- SearchView attributes -->
  1734. <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>
  1735. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  1736. </style>
  1737. <style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Holo.Spinner"/>
  1738. <style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
  1739. </style>
  1740. <style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
  1741. <item name="android:layout_gravity">center_vertical|left</item>
  1742. <item name="android:paddingRight">8dp</item>
  1743. </style>
  1744. <style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
  1745. <item name="android:layout_marginRight">8dp</item>
  1746. </style>
  1747. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
  1748. <item name="android:paddingRight">16dp</item>
  1749. </style>
  1750. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
  1751. <item name="android:layout_marginLeft">16dp</item>
  1752. </style>
  1753. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut" parent="android:Widget">
  1754. <item name="android:layout_marginLeft">16dp</item>
  1755. </style>
  1756. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow" parent="android:Widget">
  1757. <item name="android:layout_marginLeft">8dp</item>
  1758. </style>
  1759. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
  1760. <item name="android:layout_alignParentLeft">true</item>
  1761. </style>
  1762. <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Title" parent="android:Widget">
  1763. <item name="android:layout_marginLeft">16dp</item>
  1764. </style>
  1765. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
  1766. <item name="android:paddingLeft">@dimen/abc_dropdownitem_text_padding_left</item>
  1767. <item name="android:paddingRight">4dp</item>
  1768. </style>
  1769. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
  1770. <item name="android:layout_alignParentLeft">true</item>
  1771. </style>
  1772. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
  1773. <item name="android:layout_toLeftOf">@id/edit_query</item>
  1774. </style>
  1775. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
  1776. <item name="android:layout_alignParentRight">true</item>
  1777. </style>
  1778. <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
  1779. <item name="android:layout_toLeftOf">@android:id/icon2</item>
  1780. <item name="android:layout_toRightOf">@android:id/icon1</item>
  1781. </style>
  1782. <style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
  1783. <item name="android:layout_marginLeft">@dimen/abc_dropdownitem_text_padding_left</item>
  1784. </style>
  1785. <style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
  1786. <item name="android:paddingLeft">12dp</item>
  1787. <item name="android:paddingRight">12dp</item>
  1788. </style>
  1789. <style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
  1790. <item name="android:paddingLeft">@dimen/abc_action_bar_overflow_padding_start_material</item>
  1791. <item name="android:paddingRight">@dimen/abc_action_bar_overflow_padding_end_material</item>
  1792. </style>
  1793. <style name="SplashTheme" parent="Theme.AppCompat.Light.NoActionBar">
  1794. <item name="android:windowBackground">@mipmap/login_background</item>
  1795. <item name="android:windowFullscreen">true</item>
  1796. </style>
  1797. <style name="TextAppearance.AppCompat" parent="Base.TextAppearance.AppCompat"/>
  1798. <style name="TextAppearance.AppCompat.Body1" parent="Base.TextAppearance.AppCompat.Body1"/>
  1799. <style name="TextAppearance.AppCompat.Body2" parent="Base.TextAppearance.AppCompat.Body2"/>
  1800. <style name="TextAppearance.AppCompat.Button" parent="Base.TextAppearance.AppCompat.Button"/>
  1801. <style name="TextAppearance.AppCompat.Caption" parent="Base.TextAppearance.AppCompat.Caption"/>
  1802. <style name="TextAppearance.AppCompat.Display1" parent="Base.TextAppearance.AppCompat.Display1"/>
  1803. <style name="TextAppearance.AppCompat.Display2" parent="Base.TextAppearance.AppCompat.Display2"/>
  1804. <style name="TextAppearance.AppCompat.Display3" parent="Base.TextAppearance.AppCompat.Display3"/>
  1805. <style name="TextAppearance.AppCompat.Display4" parent="Base.TextAppearance.AppCompat.Display4"/>
  1806. <style name="TextAppearance.AppCompat.Headline" parent="Base.TextAppearance.AppCompat.Headline"/>
  1807. <style name="TextAppearance.AppCompat.Inverse" parent="Base.TextAppearance.AppCompat.Inverse"/>
  1808. <style name="TextAppearance.AppCompat.Large" parent="Base.TextAppearance.AppCompat.Large"/>
  1809. <style name="TextAppearance.AppCompat.Large.Inverse" parent="Base.TextAppearance.AppCompat.Large.Inverse"/>
  1810. <style name="TextAppearance.AppCompat.Light.SearchResult.Subtitle" parent="TextAppearance.AppCompat.SearchResult.Subtitle"/>
  1811. <style name="TextAppearance.AppCompat.Light.SearchResult.Title" parent="TextAppearance.AppCompat.SearchResult.Title"/>
  1812. <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Widget.PopupMenu.Large"/>
  1813. <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Widget.PopupMenu.Small"/>
  1814. <style name="TextAppearance.AppCompat.Medium" parent="Base.TextAppearance.AppCompat.Medium"/>
  1815. <style name="TextAppearance.AppCompat.Medium.Inverse" parent="Base.TextAppearance.AppCompat.Medium.Inverse"/>
  1816. <style name="TextAppearance.AppCompat.Menu" parent="Base.TextAppearance.AppCompat.Menu"/>
  1817. <style name="TextAppearance.AppCompat.SearchResult.Subtitle" parent="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
  1818. </style>
  1819. <style name="TextAppearance.AppCompat.SearchResult.Title" parent="Base.TextAppearance.AppCompat.SearchResult.Title">
  1820. </style>
  1821. <style name="TextAppearance.AppCompat.Small" parent="Base.TextAppearance.AppCompat.Small"/>
  1822. <style name="TextAppearance.AppCompat.Small.Inverse" parent="Base.TextAppearance.AppCompat.Small.Inverse"/>
  1823. <style name="TextAppearance.AppCompat.Subhead" parent="Base.TextAppearance.AppCompat.Subhead"/>
  1824. <style name="TextAppearance.AppCompat.Subhead.Inverse" parent="Base.TextAppearance.AppCompat.Subhead.Inverse"/>
  1825. <style name="TextAppearance.AppCompat.Title" parent="Base.TextAppearance.AppCompat.Title"/>
  1826. <style name="TextAppearance.AppCompat.Title.Inverse" parent="Base.TextAppearance.AppCompat.Title.Inverse"/>
  1827. <style name="TextAppearance.AppCompat.Tooltip" parent="Base.TextAppearance.AppCompat.Tooltip"/>
  1828. <style name="TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu">
  1829. </style>
  1830. <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/>
  1831. <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse">
  1832. </style>
  1833. <style name="TextAppearance.AppCompat.Widget.ActionBar.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title"/>
  1834. <style name="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse">
  1835. </style>
  1836. <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle">
  1837. </style>
  1838. <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Subtitle"/>
  1839. <style name="TextAppearance.AppCompat.Widget.ActionMode.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Title">
  1840. </style>
  1841. <style name="TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Title"/>
  1842. <style name="TextAppearance.AppCompat.Widget.Button" parent="Base.TextAppearance.AppCompat.Widget.Button"/>
  1843. <style name="TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored"/>
  1844. <style name="TextAppearance.AppCompat.Widget.Button.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Colored"/>
  1845. <style name="TextAppearance.AppCompat.Widget.Button.Inverse" parent="Base.TextAppearance.AppCompat.Widget.Button.Inverse"/>
  1846. <style name="TextAppearance.AppCompat.Widget.DropDownItem" parent="Base.TextAppearance.AppCompat.Widget.DropDownItem">
  1847. </style>
  1848. <style name="TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header"/>
  1849. <style name="TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large"/>
  1850. <style name="TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small"/>
  1851. <style name="TextAppearance.AppCompat.Widget.Switch" parent="Base.TextAppearance.AppCompat.Widget.Switch"/>
  1852. <style name="TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem"/>
  1853. <style name="TextAppearance.Compat.Notification" parent="@android:style/TextAppearance.StatusBar.EventContent"/>
  1854. <style name="TextAppearance.Compat.Notification.Info">
  1855. <item name="android:textSize">12sp</item>
  1856. <item name="android:textColor">?android:attr/textColorSecondary</item>
  1857. </style>
  1858. <style name="TextAppearance.Compat.Notification.Info.Media"/>
  1859. <style name="TextAppearance.Compat.Notification.Line2" parent="TextAppearance.Compat.Notification.Info"/>
  1860. <style name="TextAppearance.Compat.Notification.Line2.Media" parent="TextAppearance.Compat.Notification.Info.Media"/>
  1861. <style name="TextAppearance.Compat.Notification.Media"/>
  1862. <style name="TextAppearance.Compat.Notification.Time">
  1863. <item name="android:textSize">12sp</item>
  1864. <item name="android:textColor">?android:attr/textColorSecondary</item>
  1865. </style>
  1866. <style name="TextAppearance.Compat.Notification.Time.Media"/>
  1867. <style name="TextAppearance.Compat.Notification.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/>
  1868. <style name="TextAppearance.Compat.Notification.Title.Media"/>
  1869. <style name="TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item">
  1870. </style>
  1871. <style name="TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle">
  1872. </style>
  1873. <style name="TextAppearance.Widget.AppCompat.Toolbar.Title" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Title">
  1874. </style>
  1875. <style name="Theme.AppCompat" parent="Base.Theme.AppCompat"/>
  1876. <style name="Theme.AppCompat.CompactMenu" parent="Base.Theme.AppCompat.CompactMenu"/>
  1877. <style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat.Light"/>
  1878. <style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat.Light.DarkActionBar"/>
  1879. <style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Light.Dialog"/>
  1880. <style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Light.Dialog.Alert"/>
  1881. <style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Light.Dialog.MinWidth"/>
  1882. <style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.Light.DialogWhenLarge"/>
  1883. <style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar"/>
  1884. <style name="Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat.Dialog"/>
  1885. <style name="Theme.AppCompat.Dialog.Alert" parent="Base.Theme.AppCompat.Dialog.Alert"/>
  1886. <style name="Theme.AppCompat.Dialog.MinWidth" parent="Base.Theme.AppCompat.Dialog.MinWidth"/>
  1887. <style name="Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.DialogWhenLarge">
  1888. </style>
  1889. <style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light"/>
  1890. <style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar"/>
  1891. <style name="Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light.Dialog"/>
  1892. <style name="Theme.AppCompat.Light.Dialog.Alert" parent="Base.Theme.AppCompat.Light.Dialog.Alert"/>
  1893. <style name="Theme.AppCompat.Light.Dialog.MinWidth" parent="Base.Theme.AppCompat.Light.Dialog.MinWidth"/>
  1894. <style name="Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.DialogWhenLarge">
  1895. </style>
  1896. <style name="Theme.AppCompat.Light.NoActionBar">
  1897. <item name="windowActionBar">false</item>
  1898. <item name="windowNoTitle">true</item>
  1899. </style>
  1900. <style name="Theme.AppCompat.NoActionBar">
  1901. <item name="windowActionBar">false</item>
  1902. <item name="windowNoTitle">true</item>
  1903. </style>
  1904. <style name="ThemeNoTitleBar" parent="@android:style/Theme.DeviceDefault.Light">
  1905. <item name="android:windowFullscreen">false</item>
  1906. <item name="android:windowNoTitle">true</item>
  1907. <item name="android:windowActionBar">false</item>
  1908. <item name="android:windowIsTranslucent">false</item>
  1909. </style>
  1910. <style name="ThemeOverlay.AppCompat" parent="Base.ThemeOverlay.AppCompat"/>
  1911. <style name="ThemeOverlay.AppCompat.ActionBar" parent="Base.ThemeOverlay.AppCompat.ActionBar"/>
  1912. <style name="ThemeOverlay.AppCompat.Dark" parent="Base.ThemeOverlay.AppCompat.Dark"/>
  1913. <style name="ThemeOverlay.AppCompat.Dark.ActionBar" parent="Base.ThemeOverlay.AppCompat.Dark.ActionBar"/>
  1914. <style name="ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat.Dialog"/>
  1915. <style name="ThemeOverlay.AppCompat.Dialog.Alert" parent="Base.ThemeOverlay.AppCompat.Dialog.Alert"/>
  1916. <style name="ThemeOverlay.AppCompat.Light" parent="Base.ThemeOverlay.AppCompat.Light"/>
  1917. <style name="TranslucentTheme" parent="@android:style/Theme.DeviceDefault.Light">
  1918. <item name="android:windowNoTitle">true</item>
  1919. <item name="android:windowIsTranslucent">true</item>
  1920. <item name="android:colorEdgeEffect">#333333</item>
  1921. <item name="android:windowBackground">@null</item>
  1922. </style>
  1923. <style name="Widget.AppCompat.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
  1924. </style>
  1925. <style name="Widget.AppCompat.ActionBar.Solid" parent="Base.Widget.AppCompat.ActionBar.Solid">
  1926. </style>
  1927. <style name="Widget.AppCompat.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
  1928. </style>
  1929. <style name="Widget.AppCompat.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
  1930. </style>
  1931. <style name="Widget.AppCompat.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
  1932. </style>
  1933. <style name="Widget.AppCompat.ActionButton" parent="Base.Widget.AppCompat.ActionButton"/>
  1934. <style name="Widget.AppCompat.ActionButton.CloseMode" parent="Base.Widget.AppCompat.ActionButton.CloseMode"/>
  1935. <style name="Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton.Overflow"/>
  1936. <style name="Widget.AppCompat.ActionMode" parent="Base.Widget.AppCompat.ActionMode">
  1937. </style>
  1938. <style name="Widget.AppCompat.ActivityChooserView" parent="Base.Widget.AppCompat.ActivityChooserView">
  1939. </style>
  1940. <style name="Widget.AppCompat.AutoCompleteTextView" parent="Base.Widget.AppCompat.AutoCompleteTextView">
  1941. </style>
  1942. <style name="Widget.AppCompat.Button" parent="Base.Widget.AppCompat.Button"/>
  1943. <style name="Widget.AppCompat.Button.Borderless" parent="Base.Widget.AppCompat.Button.Borderless"/>
  1944. <style name="Widget.AppCompat.Button.Borderless.Colored" parent="Base.Widget.AppCompat.Button.Borderless.Colored"/>
  1945. <style name="Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog"/>
  1946. <style name="Widget.AppCompat.Button.Colored" parent="Base.Widget.AppCompat.Button.Colored"/>
  1947. <style name="Widget.AppCompat.Button.Small" parent="Base.Widget.AppCompat.Button.Small"/>
  1948. <style name="Widget.AppCompat.ButtonBar" parent="Base.Widget.AppCompat.ButtonBar"/>
  1949. <style name="Widget.AppCompat.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.ButtonBar.AlertDialog"/>
  1950. <style name="Widget.AppCompat.CompoundButton.CheckBox" parent="Base.Widget.AppCompat.CompoundButton.CheckBox"/>
  1951. <style name="Widget.AppCompat.CompoundButton.RadioButton" parent="Base.Widget.AppCompat.CompoundButton.RadioButton"/>
  1952. <style name="Widget.AppCompat.CompoundButton.Switch" parent="Base.Widget.AppCompat.CompoundButton.Switch"/>
  1953. <style name="Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle">
  1954. <item name="color">?attr/colorControlNormal</item>
  1955. </style>
  1956. <style name="Widget.AppCompat.DropDownItem.Spinner" parent="RtlOverlay.Widget.AppCompat.Search.DropDown.Text"/>
  1957. <style name="Widget.AppCompat.EditText" parent="Base.Widget.AppCompat.EditText"/>
  1958. <style name="Widget.AppCompat.ImageButton" parent="Base.Widget.AppCompat.ImageButton"/>
  1959. <style name="Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.Light.ActionBar">
  1960. </style>
  1961. <style name="Widget.AppCompat.Light.ActionBar.Solid" parent="Base.Widget.AppCompat.Light.ActionBar.Solid">
  1962. </style>
  1963. <style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse"/>
  1964. <style name="Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.Light.ActionBar.TabBar">
  1965. </style>
  1966. <style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse"/>
  1967. <style name="Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
  1968. </style>
  1969. <style name="Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse">
  1970. </style>
  1971. <style name="Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.Light.ActionBar.TabView">
  1972. </style>
  1973. <style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse"/>
  1974. <style name="Widget.AppCompat.Light.ActionButton" parent="Widget.AppCompat.ActionButton"/>
  1975. <style name="Widget.AppCompat.Light.ActionButton.CloseMode" parent="Widget.AppCompat.ActionButton.CloseMode"/>
  1976. <style name="Widget.AppCompat.Light.ActionButton.Overflow" parent="Widget.AppCompat.ActionButton.Overflow"/>
  1977. <style name="Widget.AppCompat.Light.ActionMode.Inverse" parent="Widget.AppCompat.ActionMode"/>
  1978. <style name="Widget.AppCompat.Light.ActivityChooserView" parent="Widget.AppCompat.ActivityChooserView"/>
  1979. <style name="Widget.AppCompat.Light.AutoCompleteTextView" parent="Widget.AppCompat.AutoCompleteTextView"/>
  1980. <style name="Widget.AppCompat.Light.DropDownItem.Spinner" parent="Widget.AppCompat.DropDownItem.Spinner"/>
  1981. <style name="Widget.AppCompat.Light.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"/>
  1982. <style name="Widget.AppCompat.Light.ListView.DropDown" parent="Widget.AppCompat.ListView.DropDown"/>
  1983. <style name="Widget.AppCompat.Light.PopupMenu" parent="Base.Widget.AppCompat.Light.PopupMenu"/>
  1984. <style name="Widget.AppCompat.Light.PopupMenu.Overflow" parent="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
  1985. </style>
  1986. <style name="Widget.AppCompat.Light.SearchView" parent="Widget.AppCompat.SearchView"/>
  1987. <style name="Widget.AppCompat.Light.Spinner.DropDown.ActionBar" parent="Widget.AppCompat.Spinner.DropDown.ActionBar"/>
  1988. <style name="Widget.AppCompat.ListMenuView" parent="Base.Widget.AppCompat.ListMenuView"/>
  1989. <style name="Widget.AppCompat.ListPopupWindow" parent="Base.Widget.AppCompat.ListPopupWindow">
  1990. </style>
  1991. <style name="Widget.AppCompat.ListView" parent="Base.Widget.AppCompat.ListView"/>
  1992. <style name="Widget.AppCompat.ListView.DropDown" parent="Base.Widget.AppCompat.ListView.DropDown"/>
  1993. <style name="Widget.AppCompat.ListView.Menu" parent="Base.Widget.AppCompat.ListView.Menu"/>
  1994. <style name="Widget.AppCompat.PopupMenu" parent="Base.Widget.AppCompat.PopupMenu"/>
  1995. <style name="Widget.AppCompat.PopupMenu.Overflow" parent="Base.Widget.AppCompat.PopupMenu.Overflow">
  1996. </style>
  1997. <style name="Widget.AppCompat.PopupWindow" parent="Base.Widget.AppCompat.PopupWindow">
  1998. </style>
  1999. <style name="Widget.AppCompat.ProgressBar" parent="Base.Widget.AppCompat.ProgressBar">
  2000. </style>
  2001. <style name="Widget.AppCompat.ProgressBar.Horizontal" parent="Base.Widget.AppCompat.ProgressBar.Horizontal">
  2002. </style>
  2003. <style name="Widget.AppCompat.RatingBar" parent="Base.Widget.AppCompat.RatingBar"/>
  2004. <style name="Widget.AppCompat.RatingBar.Indicator" parent="Base.Widget.AppCompat.RatingBar.Indicator"/>
  2005. <style name="Widget.AppCompat.RatingBar.Small" parent="Base.Widget.AppCompat.RatingBar.Small"/>
  2006. <style name="Widget.AppCompat.SearchView" parent="Base.Widget.AppCompat.SearchView"/>
  2007. <style name="Widget.AppCompat.SearchView.ActionBar" parent="Base.Widget.AppCompat.SearchView.ActionBar"/>
  2008. <style name="Widget.AppCompat.SeekBar" parent="Base.Widget.AppCompat.SeekBar"/>
  2009. <style name="Widget.AppCompat.SeekBar.Discrete" parent="Base.Widget.AppCompat.SeekBar.Discrete"/>
  2010. <style name="Widget.AppCompat.Spinner" parent="Base.Widget.AppCompat.Spinner"/>
  2011. <style name="Widget.AppCompat.Spinner.DropDown"/>
  2012. <style name="Widget.AppCompat.Spinner.DropDown.ActionBar"/>
  2013. <style name="Widget.AppCompat.Spinner.Underlined" parent="Base.Widget.AppCompat.Spinner.Underlined"/>
  2014. <style name="Widget.AppCompat.TextView.SpinnerItem" parent="Base.Widget.AppCompat.TextView.SpinnerItem"/>
  2015. <style name="Widget.AppCompat.Toolbar" parent="Base.Widget.AppCompat.Toolbar"/>
  2016. <style name="Widget.AppCompat.Toolbar.Button.Navigation" parent="Base.Widget.AppCompat.Toolbar.Button.Navigation"/>
  2017. <style name="Widget.Compat.NotificationActionContainer" parent=""/>
  2018. <style name="Widget.Compat.NotificationActionText" parent=""/>
  2019. <style name="Widget.Support.CoordinatorLayout" parent="android:Widget">
  2020. <item name="statusBarBackground">#000000</item>
  2021. </style>
  2022. <style mce_bogus="1" name="dcloud_anim_dialog_window_in_out" parent="android:Animation">
  2023. <item name="android:windowEnterAnimation">@anim/dcloud_slide_in_from_top</item>
  2024. <item name="android:windowExitAnimation">@anim/dcloud_slide_out_to_top</item>
  2025. </style>
  2026. <style name="dcloud_defalut_dialog">
  2027. <item name="android:windowBackground">@color/image_pick_title_btn_normal</item>
  2028. <item name="android:backgroundDimEnabled">false</item>
  2029. <item name="android:layout_gravity">top</item>
  2030. <item name="android:windowIsFloating">true</item>
  2031. <item name="android:layout_width">match_parent</item>
  2032. </style>
  2033. <style name="featureLossDialog" parent="@android:style/Theme.Holo.Dialog">
  2034. <item name="android:windowBackground">@color/image_pick_title_btn_normal</item>
  2035. <item name="android:backgroundDimEnabled">false</item>
  2036. <item name="android:windowIsFloating">true</item>
  2037. <item name="android:layout_width">match_parent</item>
  2038. </style>
  2039. <style name="streamDelete19Dialog" parent="@android:style/Theme.DeviceDefault.Light.Dialog">
  2040. <item name="android:windowBackground">@android:color/transparent</item>
  2041. <item name="android:backgroundDimEnabled">true</item>
  2042. <item name="android:windowIsFloating">true</item>
  2043. </style>
  2044. <style name="textAppearance" parent="android:style/TextAppearance">
  2045. <item name="android:textColorLink">#0000ff</item>
  2046. <item name="android:textColor">#0000ff</item>
  2047. <item name="android:textColorHint">#0000ff</item>
  2048. <item name="android:textColorHighlight">#0000ff</item>
  2049. </style>
  2050. <declare-styleable name="ActionBar">
  2051. <!-- The type of navigation to use. -->
  2052. <attr name="navigationMode">
  2053. <!-- Normal static title text -->
  2054. <enum name="normal" value="0"/>
  2055. <!-- The action bar will use a selection list for navigation. -->
  2056. <enum name="listMode" value="1"/>
  2057. <!-- The action bar will use a series of horizontal tabs for navigation. -->
  2058. <enum name="tabMode" value="2"/>
  2059. </attr>
  2060. <!-- Options affecting how the action bar is displayed. -->
  2061. <attr name="displayOptions">
  2062. <flag name="none" value="0"/>
  2063. <flag name="useLogo" value="0x1"/>
  2064. <flag name="showHome" value="0x2"/>
  2065. <flag name="homeAsUp" value="0x4"/>
  2066. <flag name="showTitle" value="0x8"/>
  2067. <flag name="showCustom" value="0x10"/>
  2068. <flag name="disableHome" value="0x20"/>
  2069. </attr>
  2070. <!-- Specifies title text used for navigationMode="normal" -->
  2071. <attr name="title"/>
  2072. <!-- Specifies subtitle text used for navigationMode="normal" -->
  2073. <attr format="string" name="subtitle"/>
  2074. <!-- Specifies a style to use for title text. -->
  2075. <attr format="reference" name="titleTextStyle"/>
  2076. <!-- Specifies a style to use for subtitle text. -->
  2077. <attr format="reference" name="subtitleTextStyle"/>
  2078. <!-- Specifies the drawable used for the application icon. -->
  2079. <attr format="reference" name="icon"/>
  2080. <!-- Specifies the drawable used for the application logo. -->
  2081. <attr format="reference" name="logo"/>
  2082. <!-- Specifies the drawable used for item dividers. -->
  2083. <attr format="reference" name="divider"/>
  2084. <!-- Specifies a background drawable for the action bar. -->
  2085. <attr format="reference" name="background"/>
  2086. <!-- Specifies a background drawable for a second stacked row of the action bar. -->
  2087. <attr format="reference|color" name="backgroundStacked"/>
  2088. <!-- Specifies a background drawable for the bottom component of a split action bar. -->
  2089. <attr format="reference|color" name="backgroundSplit"/>
  2090. <!-- Specifies a layout for custom navigation. Overrides navigationMode. -->
  2091. <attr format="reference" name="customNavigationLayout"/>
  2092. <!-- Specifies a fixed height. -->
  2093. <attr name="height"/>
  2094. <!-- Specifies a layout to use for the "home" section of the action bar. -->
  2095. <attr format="reference" name="homeLayout"/>
  2096. <!-- Specifies a style resource to use for an embedded progress bar. -->
  2097. <attr format="reference" name="progressBarStyle"/>
  2098. <!-- Specifies a style resource to use for an indeterminate progress spinner. -->
  2099. <attr format="reference" name="indeterminateProgressStyle"/>
  2100. <!-- Specifies the horizontal padding on either end for an embedded progress bar. -->
  2101. <attr format="dimension" name="progressBarPadding"/>
  2102. <!-- Up navigation glyph -->
  2103. <attr name="homeAsUpIndicator"/>
  2104. <!-- Specifies padding that should be applied to the left and right sides of
  2105. system-provided items in the bar. -->
  2106. <attr format="dimension" name="itemPadding"/>
  2107. <!-- Set true to hide the action bar on a vertical nested scroll of content. -->
  2108. <attr format="boolean" name="hideOnContentScroll"/>
  2109. <!-- Minimum inset for content views within a bar. Navigation buttons and
  2110. menu views are excepted. Only valid for some themes and configurations. -->
  2111. <attr format="dimension" name="contentInsetStart"/>
  2112. <!-- Minimum inset for content views within a bar. Navigation buttons and
  2113. menu views are excepted. Only valid for some themes and configurations. -->
  2114. <attr format="dimension" name="contentInsetEnd"/>
  2115. <!-- Minimum inset for content views within a bar. Navigation buttons and
  2116. menu views are excepted. Only valid for some themes and configurations. -->
  2117. <attr format="dimension" name="contentInsetLeft"/>
  2118. <!-- Minimum inset for content views within a bar. Navigation buttons and
  2119. menu views are excepted. Only valid for some themes and configurations. -->
  2120. <attr format="dimension" name="contentInsetRight"/>
  2121. <!-- Minimum inset for content views within a bar when a navigation button
  2122. is present, such as the Up button. Only valid for some themes and configurations. -->
  2123. <attr format="dimension" name="contentInsetStartWithNavigation"/>
  2124. <!-- Minimum inset for content views within a bar when actions from a menu
  2125. are present. Only valid for some themes and configurations. -->
  2126. <attr format="dimension" name="contentInsetEndWithActions"/>
  2127. <!-- Elevation for the action bar itself -->
  2128. <attr format="dimension" name="elevation"/>
  2129. <!-- Reference to a theme that should be used to inflate popups
  2130. shown by widgets in the action bar. -->
  2131. <attr format="reference" name="popupTheme"/>
  2132. </declare-styleable>
  2133. <declare-styleable name="ActionBarLayout">
  2134. <attr name="android:layout_gravity"/>
  2135. </declare-styleable>
  2136. <declare-styleable name="ActionMenuItemView">
  2137. <attr name="android:minWidth"/>
  2138. </declare-styleable>
  2139. <declare-styleable name="ActionMenuView">
  2140. <!-- Size of padding on either end of a divider. -->
  2141. </declare-styleable>
  2142. <declare-styleable name="ActionMode">
  2143. <!-- Specifies a style to use for title text. -->
  2144. <attr name="titleTextStyle"/>
  2145. <!-- Specifies a style to use for subtitle text. -->
  2146. <attr name="subtitleTextStyle"/>
  2147. <!-- Specifies a background for the action mode bar. -->
  2148. <attr name="background"/>
  2149. <!-- Specifies a background for the split action mode bar. -->
  2150. <attr name="backgroundSplit"/>
  2151. <!-- Specifies a fixed height for the action mode bar. -->
  2152. <attr name="height"/>
  2153. <!-- Specifies a layout to use for the "close" item at the starting edge. -->
  2154. <attr format="reference" name="closeItemLayout"/>
  2155. </declare-styleable>
  2156. <declare-styleable name="ActionSheet">
  2157. <attr format="color|reference" name="actionSheetBackground"/>
  2158. <attr format="color|reference" name="cancelButtonBackground"/>
  2159. <attr format="color|reference" name="otherButtonTopBackground"/>
  2160. <attr format="color|reference" name="otherButtonTitleBackground"/>
  2161. <attr format="color|reference" name="otherButtonMiddleBackground"/>
  2162. <attr format="color|reference" name="otherButtonBottomBackground"/>
  2163. <attr format="color|reference" name="otherButtonSingleBackground"/>
  2164. <attr format="color|reference" name="cancelButtonTextColor"/>
  2165. <attr format="color|reference" name="otherButtonTextColor"/>
  2166. <attr format="color|reference" name="destructiveButtonTextColor"/>
  2167. <attr format="color|reference" name="titleButtonTextColor"/>
  2168. <attr format="dimension|reference" name="actionSheetPadding"/>
  2169. <attr format="dimension|reference" name="otherButtonSpacing"/>
  2170. <attr format="dimension|reference" name="cancelButtonMarginTop"/>
  2171. <attr format="dimension|reference" name="actionSheetTextSize"/>
  2172. </declare-styleable>
  2173. <declare-styleable name="ActionSheets">
  2174. <attr format="reference" name="actionSheetStyle"/>
  2175. </declare-styleable>
  2176. <declare-styleable name="ActivityChooserView">
  2177. <!-- The maximal number of items initially shown in the activity list. -->
  2178. <attr format="string" name="initialActivityCount"/>
  2179. <!-- The drawable to show in the button for expanding the activities overflow popup.
  2180. <strong>Note:</strong> Clients would like to set this drawable
  2181. as a clue about the action the chosen activity will perform. For
  2182. example, if share activity is to be chosen the drawable should
  2183. give a clue that sharing is to be performed.
  2184. -->
  2185. <attr format="reference" name="expandActivityOverflowButtonDrawable"/>
  2186. </declare-styleable>
  2187. <declare-styleable name="AlertDialog">
  2188. <attr name="android:layout"/>
  2189. <attr format="reference" name="buttonPanelSideLayout"/>
  2190. <attr format="reference" name="listLayout"/>
  2191. <attr format="reference" name="multiChoiceItemLayout"/>
  2192. <attr format="reference" name="singleChoiceItemLayout"/>
  2193. <attr format="reference" name="listItemLayout"/>
  2194. <attr format="boolean" name="showTitle"/>
  2195. <attr format="dimension" name="buttonIconDimen"/>
  2196. </declare-styleable>
  2197. <declare-styleable name="AnimatedStateListDrawableCompat">
  2198. <!-- Indicates whether the drawable should be initially visible. -->
  2199. <attr name="android:visible"/>
  2200. <!-- If true, allows the drawable's padding to change based on the
  2201. current state that is selected. If false, the padding will
  2202. stay the same (based on the maximum padding of all the states).
  2203. Enabling this feature requires that the owner of the drawable
  2204. deal with performing layout when the state changes, which is
  2205. often not supported. -->
  2206. <attr name="android:variablePadding"/>
  2207. <!-- If true, the drawable's reported internal size will remain
  2208. constant as the state changes; the size is the maximum of all
  2209. of the states. If false, the size will vary based on the
  2210. current state. -->
  2211. <attr name="android:constantSize"/>
  2212. <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
  2213. same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
  2214. an RGB 565 screen). -->
  2215. <attr name="android:dither"/>
  2216. <!-- Amount of time (in milliseconds) to fade in a new state drawable. -->
  2217. <attr name="android:enterFadeDuration"/>
  2218. <!-- Amount of time (in milliseconds) to fade out an old state drawable. -->
  2219. <attr name="android:exitFadeDuration"/>
  2220. <!-- Indicates if the drawable needs to be mirrored when its layout direction is
  2221. RTL (right-to-left). -->
  2222. <!--<attr name="autoMirrored"/>-->
  2223. </declare-styleable>
  2224. <declare-styleable name="AnimatedStateListDrawableItem">
  2225. <!-- Reference to a drawable resource to use for the frame. If not
  2226. given, the drawable must be defined by the first child tag. -->
  2227. <attr name="android:drawable"/>
  2228. <!-- Keyframe identifier for use in specifying transitions. -->
  2229. <attr name="android:id"/>
  2230. </declare-styleable>
  2231. <declare-styleable name="AnimatedStateListDrawableTransition">
  2232. <!-- Keyframe identifier for the starting state. -->
  2233. <attr name="android:fromId"/>
  2234. <!-- Keyframe identifier for the ending state. -->
  2235. <attr name="android:toId"/>
  2236. <!-- Reference to a animation drawable resource to use for the frame. If not
  2237. given, the animation drawable must be defined by the first child tag. -->
  2238. <attr name="android:drawable"/>
  2239. <!-- Whether this transition is reversible. -->
  2240. <attr name="android:reversible"/>
  2241. </declare-styleable>
  2242. <declare-styleable name="AppCompatImageView">
  2243. <attr name="android:src"/>
  2244. <!-- Sets a drawable as the content of this ImageView. Allows the use of vector drawable
  2245. when running on older versions of the platform. -->
  2246. <attr format="reference" name="srcCompat"/>
  2247. <!-- Tint to apply to the image source. -->
  2248. <attr format="color" name="tint"/>
  2249. <!-- Blending mode used to apply the image source tint. -->
  2250. <attr name="tintMode">
  2251. <!-- The tint is drawn on top of the drawable.
  2252. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  2253. <enum name="src_over" value="3"/>
  2254. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  2255. color channels are thrown out. [Sa * Da, Sc * Da] -->
  2256. <enum name="src_in" value="5"/>
  2257. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  2258. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  2259. <enum name="src_atop" value="9"/>
  2260. <!-- Multiplies the color and alpha channels of the drawable with those of
  2261. the tint. [Sa * Da, Sc * Dc] -->
  2262. <enum name="multiply" value="14"/>
  2263. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  2264. <enum name="screen" value="15"/>
  2265. <!-- Combines the tint and icon color and alpha channels, clamping the
  2266. result to valid color values. Saturate(S + D) -->
  2267. <enum name="add" value="16"/>
  2268. </attr>
  2269. </declare-styleable>
  2270. <declare-styleable name="AppCompatSeekBar">
  2271. <attr name="android:thumb"/>
  2272. <!-- Drawable displayed at each progress position on a seekbar. -->
  2273. <attr format="reference" name="tickMark"/>
  2274. <!-- Tint to apply to the tick mark drawable. -->
  2275. <attr format="color" name="tickMarkTint"/>
  2276. <!-- Blending mode used to apply the tick mark tint. -->
  2277. <attr name="tickMarkTintMode">
  2278. <!-- The tint is drawn on top of the drawable.
  2279. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  2280. <enum name="src_over" value="3"/>
  2281. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  2282. color channels are thrown out. [Sa * Da, Sc * Da] -->
  2283. <enum name="src_in" value="5"/>
  2284. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  2285. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  2286. <enum name="src_atop" value="9"/>
  2287. <!-- Multiplies the color and alpha channels of the drawable with those of
  2288. the tint. [Sa * Da, Sc * Dc] -->
  2289. <enum name="multiply" value="14"/>
  2290. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  2291. <enum name="screen" value="15"/>
  2292. <!-- Combines the tint and drawable color and alpha channels, clamping the
  2293. result to valid color values. Saturate(S + D) -->
  2294. <enum name="add" value="16"/>
  2295. </attr>
  2296. </declare-styleable>
  2297. <declare-styleable name="AppCompatTextHelper">
  2298. <attr name="android:drawableLeft"/>
  2299. <attr name="android:drawableTop"/>
  2300. <attr name="android:drawableRight"/>
  2301. <attr name="android:drawableBottom"/>
  2302. <attr name="android:drawableStart"/>
  2303. <attr name="android:drawableEnd"/>
  2304. <attr name="android:textAppearance"/>
  2305. </declare-styleable>
  2306. <declare-styleable name="AppCompatTextView">
  2307. <!-- Present the text in ALL CAPS. This may use a small-caps form when available. -->
  2308. <attr format="reference|boolean" name="textAllCaps"/>
  2309. <attr name="android:textAppearance"/>
  2310. <!-- Specify the type of auto-size. Note that this feature is not supported by EditText,
  2311. works only for TextView. -->
  2312. <attr format="enum" name="autoSizeTextType">
  2313. <!-- No auto-sizing (default). -->
  2314. <enum name="none" value="0"/>
  2315. <!-- Uniform horizontal and vertical text size scaling to fit within the
  2316. container. -->
  2317. <enum name="uniform" value="1"/>
  2318. </attr>
  2319. <!-- Specify the auto-size step size if <code>autoSizeTextType</code> is set to
  2320. <code>uniform</code>. The default is 1px. Overwrites
  2321. <code>autoSizePresetSizes</code> if set. -->
  2322. <attr format="dimension" name="autoSizeStepGranularity"/>
  2323. <!-- Resource array of dimensions to be used in conjunction with
  2324. <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides
  2325. <code>autoSizeStepGranularity</code> if set. -->
  2326. <attr format="reference" name="autoSizePresetSizes"/>
  2327. <!-- The minimum text size constraint to be used when auto-sizing text. -->
  2328. <attr format="dimension" name="autoSizeMinTextSize"/>
  2329. <!-- The maximum text size constraint to be used when auto-sizing text. -->
  2330. <attr format="dimension" name="autoSizeMaxTextSize"/>
  2331. <!-- The attribute for the font family. -->
  2332. <attr format="string" name="fontFamily"/>
  2333. <!-- Explicit height between lines of text. If set, this will override the values set
  2334. for lineSpacingExtra and lineSpacingMultiplier. -->
  2335. <attr format="dimension" name="lineHeight"/>
  2336. <!-- Distance from the top of the TextView to the first text baseline. If set, this
  2337. overrides the value set for paddingTop. -->
  2338. <attr format="dimension" name="firstBaselineToTopHeight"/>
  2339. <!-- Distance from the bottom of the TextView to the last text baseline. If set, this
  2340. overrides the value set for paddingBottom. -->
  2341. <attr format="dimension" name="lastBaselineToBottomHeight"/>
  2342. </declare-styleable>
  2343. <declare-styleable name="AppCompatTheme">
  2344. <!-- ============= -->
  2345. <!-- Window styles -->
  2346. <!-- ============= -->
  2347. <eat-comment/>
  2348. <!-- Flag indicating whether this window should have an Action Bar
  2349. in place of the usual title bar. -->
  2350. <attr format="boolean" name="windowActionBar"/>
  2351. <!-- Flag indicating whether there should be no title on this window. -->
  2352. <attr format="boolean" name="windowNoTitle"/>
  2353. <!-- Flag indicating whether this window's Action Bar should overlay
  2354. application content. Does nothing if the window would not
  2355. have an Action Bar. -->
  2356. <attr format="boolean" name="windowActionBarOverlay"/>
  2357. <!-- Flag indicating whether action modes should overlay window content
  2358. when there is not reserved space for their UI (such as an Action Bar). -->
  2359. <attr format="boolean" name="windowActionModeOverlay"/>
  2360. <!-- A fixed width for the window along the major axis of the screen,
  2361. that is, when in landscape. Can be either an absolute dimension
  2362. or a fraction of the screen size in that dimension. -->
  2363. <attr format="dimension|fraction" name="windowFixedWidthMajor"/>
  2364. <!-- A fixed height for the window along the minor axis of the screen,
  2365. that is, when in landscape. Can be either an absolute dimension
  2366. or a fraction of the screen size in that dimension. -->
  2367. <attr format="dimension|fraction" name="windowFixedHeightMinor"/>
  2368. <!-- A fixed width for the window along the minor axis of the screen,
  2369. that is, when in portrait. Can be either an absolute dimension
  2370. or a fraction of the screen size in that dimension. -->
  2371. <attr format="dimension|fraction" name="windowFixedWidthMinor"/>
  2372. <!-- A fixed height for the window along the major axis of the screen,
  2373. that is, when in portrait. Can be either an absolute dimension
  2374. or a fraction of the screen size in that dimension. -->
  2375. <attr format="dimension|fraction" name="windowFixedHeightMajor"/>
  2376. <!-- The minimum width the window is allowed to be, along the major
  2377. axis of the screen. That is, when in landscape. Can be either
  2378. an absolute dimension or a fraction of the screen size in that
  2379. dimension. -->
  2380. <attr format="dimension|fraction" name="windowMinWidthMajor"/>
  2381. <!-- The minimum width the window is allowed to be, along the minor
  2382. axis of the screen. That is, when in portrait. Can be either
  2383. an absolute dimension or a fraction of the screen size in that
  2384. dimension. -->
  2385. <attr format="dimension|fraction" name="windowMinWidthMinor"/>
  2386. <attr name="android:windowIsFloating"/>
  2387. <attr name="android:windowAnimationStyle"/>
  2388. <!-- =================== -->
  2389. <!-- Action bar styles -->
  2390. <!-- =================== -->
  2391. <eat-comment/>
  2392. <!-- Default style for tabs within an action bar -->
  2393. <attr format="reference" name="actionBarTabStyle"/>
  2394. <attr format="reference" name="actionBarTabBarStyle"/>
  2395. <attr format="reference" name="actionBarTabTextStyle"/>
  2396. <attr format="reference" name="actionOverflowButtonStyle"/>
  2397. <attr format="reference" name="actionOverflowMenuStyle"/>
  2398. <!-- Reference to a theme that should be used to inflate popups
  2399. shown by widgets in the action bar. -->
  2400. <attr format="reference" name="actionBarPopupTheme"/>
  2401. <!-- Reference to a style for the Action Bar -->
  2402. <attr format="reference" name="actionBarStyle"/>
  2403. <!-- Reference to a style for the split Action Bar. This style
  2404. controls the split component that holds the menu/action
  2405. buttons. actionBarStyle is still used for the primary
  2406. bar. -->
  2407. <attr format="reference" name="actionBarSplitStyle"/>
  2408. <!-- Reference to a theme that should be used to inflate the
  2409. action bar. This will be inherited by any widget inflated
  2410. into the action bar. -->
  2411. <attr format="reference" name="actionBarTheme"/>
  2412. <!-- Reference to a theme that should be used to inflate widgets
  2413. and layouts destined for the action bar. Most of the time
  2414. this will be a reference to the current theme, but when
  2415. the action bar has a significantly different contrast
  2416. profile than the rest of the activity the difference
  2417. can become important. If this is set to @null the current
  2418. theme will be used.-->
  2419. <attr format="reference" name="actionBarWidgetTheme"/>
  2420. <!-- Size of the Action Bar, including the contextual
  2421. bar used to present Action Modes. -->
  2422. <attr format="dimension" name="actionBarSize">
  2423. <enum name="wrap_content" value="0"/>
  2424. </attr>
  2425. <!-- Custom divider drawable to use for elements in the action bar. -->
  2426. <attr format="reference" name="actionBarDivider"/>
  2427. <!-- Custom item state list drawable background for action bar items. -->
  2428. <attr format="reference" name="actionBarItemBackground"/>
  2429. <!-- TextAppearance style that will be applied to text that
  2430. appears within action menu items. -->
  2431. <attr format="reference" name="actionMenuTextAppearance"/>
  2432. <!-- Color for text that appears within action menu items. -->
  2433. <!-- Color for text that appears within action menu items. -->
  2434. <attr format="color|reference" name="actionMenuTextColor"/>
  2435. <!-- =================== -->
  2436. <!-- Action mode styles -->
  2437. <!-- =================== -->
  2438. <eat-comment/>
  2439. <attr format="reference" name="actionModeStyle"/>
  2440. <attr format="reference" name="actionModeCloseButtonStyle"/>
  2441. <!-- Background drawable to use for action mode UI -->
  2442. <attr format="reference" name="actionModeBackground"/>
  2443. <!-- Background drawable to use for action mode UI in the lower split bar -->
  2444. <attr format="reference" name="actionModeSplitBackground"/>
  2445. <!-- Drawable to use for the close action mode button -->
  2446. <attr format="reference" name="actionModeCloseDrawable"/>
  2447. <!-- Drawable to use for the Cut action button in Contextual Action Bar -->
  2448. <attr format="reference" name="actionModeCutDrawable"/>
  2449. <!-- Drawable to use for the Copy action button in Contextual Action Bar -->
  2450. <attr format="reference" name="actionModeCopyDrawable"/>
  2451. <!-- Drawable to use for the Paste action button in Contextual Action Bar -->
  2452. <attr format="reference" name="actionModePasteDrawable"/>
  2453. <!-- Drawable to use for the Select all action button in Contextual Action Bar -->
  2454. <attr format="reference" name="actionModeSelectAllDrawable"/>
  2455. <!-- Drawable to use for the Share action button in WebView selection action modes -->
  2456. <attr format="reference" name="actionModeShareDrawable"/>
  2457. <!-- Drawable to use for the Find action button in WebView selection action modes -->
  2458. <attr format="reference" name="actionModeFindDrawable"/>
  2459. <!-- Drawable to use for the Web Search action button in WebView selection action modes -->
  2460. <attr format="reference" name="actionModeWebSearchDrawable"/>
  2461. <!-- PopupWindow style to use for action modes when showing as a window overlay. -->
  2462. <attr format="reference" name="actionModePopupWindowStyle"/>
  2463. <!-- =================== -->
  2464. <!-- Text styles -->
  2465. <!-- =================== -->
  2466. <eat-comment/>
  2467. <!-- Text color, typeface, size, and style for the text inside of a popup menu. -->
  2468. <attr format="reference" name="textAppearanceLargePopupMenu"/>
  2469. <!-- Text color, typeface, size, and style for small text inside of a popup menu. -->
  2470. <attr format="reference" name="textAppearanceSmallPopupMenu"/>
  2471. <!-- Text color, typeface, size, and style for header text inside of a popup menu. -->
  2472. <attr format="reference" name="textAppearancePopupMenuHeader"/>
  2473. <!-- =================== -->
  2474. <!-- Dialog styles -->
  2475. <!-- =================== -->
  2476. <eat-comment/>
  2477. <!-- Theme to use for dialogs spawned from this theme. -->
  2478. <attr format="reference" name="dialogTheme"/>
  2479. <!-- Preferred padding for dialog content. -->
  2480. <attr format="dimension" name="dialogPreferredPadding"/>
  2481. <!-- The list divider used in alert dialogs. -->
  2482. <attr format="reference" name="listDividerAlertDialog"/>
  2483. <!-- Preferred corner radius of dialogs. -->
  2484. <attr format="dimension" name="dialogCornerRadius"/>
  2485. <!-- =================== -->
  2486. <!-- Other widget styles -->
  2487. <!-- =================== -->
  2488. <eat-comment/>
  2489. <!-- Default ActionBar dropdown style. -->
  2490. <attr format="reference" name="actionDropDownStyle"/>
  2491. <!-- The preferred item height for dropdown lists. -->
  2492. <attr format="dimension" name="dropdownListPreferredItemHeight"/>
  2493. <!-- Default Spinner style. -->
  2494. <attr format="reference" name="spinnerDropDownItemStyle"/>
  2495. <!-- Specifies a drawable to use for the 'home as up' indicator. -->
  2496. <attr format="reference" name="homeAsUpIndicator"/>
  2497. <!-- Default action button style. -->
  2498. <attr format="reference" name="actionButtonStyle"/>
  2499. <!-- Style for button bars -->
  2500. <attr format="reference" name="buttonBarStyle"/>
  2501. <!-- Style for buttons within button bars -->
  2502. <attr format="reference" name="buttonBarButtonStyle"/>
  2503. <!-- A style that may be applied to buttons or other selectable items
  2504. that should react to pressed and focus states, but that do not
  2505. have a clear visual border along the edges. -->
  2506. <attr format="reference" name="selectableItemBackground"/>
  2507. <!-- Background drawable for borderless standalone items that need focus/pressed states. -->
  2508. <attr format="reference" name="selectableItemBackgroundBorderless"/>
  2509. <!-- Style for buttons without an explicit border, often used in groups. -->
  2510. <attr format="reference" name="borderlessButtonStyle"/>
  2511. <!-- A drawable that may be used as a vertical divider between visual elements. -->
  2512. <attr format="reference" name="dividerVertical"/>
  2513. <!-- A drawable that may be used as a horizontal divider between visual elements. -->
  2514. <attr format="reference" name="dividerHorizontal"/>
  2515. <!-- Default ActivityChooserView style. -->
  2516. <attr format="reference" name="activityChooserViewStyle"/>
  2517. <!-- Default Toolbar style. -->
  2518. <attr format="reference" name="toolbarStyle"/>
  2519. <!-- Default Toolar NavigationButtonStyle -->
  2520. <attr format="reference" name="toolbarNavigationButtonStyle"/>
  2521. <!-- Default PopupMenu style. -->
  2522. <attr format="reference" name="popupMenuStyle"/>
  2523. <!-- Default PopupWindow style. -->
  2524. <attr format="reference" name="popupWindowStyle"/>
  2525. <!-- EditText text foreground color. -->
  2526. <attr format="reference|color" name="editTextColor"/>
  2527. <!-- EditText background drawable. -->
  2528. <attr format="reference" name="editTextBackground"/>
  2529. <!-- ImageButton background drawable. -->
  2530. <attr format="reference" name="imageButtonStyle"/>
  2531. <!-- ============================ -->
  2532. <!-- SearchView styles and assets -->
  2533. <!-- ============================ -->
  2534. <eat-comment/>
  2535. <!-- Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. -->
  2536. <attr format="reference" name="textAppearanceSearchResultTitle"/>
  2537. <!-- Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. -->
  2538. <attr format="reference" name="textAppearanceSearchResultSubtitle"/>
  2539. <!-- Text color for urls in search suggestions, used by things like global search -->
  2540. <attr format="reference|color" name="textColorSearchUrl"/>
  2541. <!-- Style for the search query widget. -->
  2542. <attr format="reference" name="searchViewStyle"/>
  2543. <!-- =========== -->
  2544. <!-- List styles -->
  2545. <!-- =========== -->
  2546. <eat-comment/>
  2547. <!-- The preferred list item height. -->
  2548. <attr format="dimension" name="listPreferredItemHeight"/>
  2549. <!-- A smaller, sleeker list item height. -->
  2550. <attr format="dimension" name="listPreferredItemHeightSmall"/>
  2551. <!-- A larger, more robust list item height. -->
  2552. <attr format="dimension" name="listPreferredItemHeightLarge"/>
  2553. <!-- The preferred padding along the left edge of list items. -->
  2554. <attr format="dimension" name="listPreferredItemPaddingLeft"/>
  2555. <!-- The preferred padding along the right edge of list items. -->
  2556. <attr format="dimension" name="listPreferredItemPaddingRight"/>
  2557. <!-- ListPopupWindow compatibility -->
  2558. <attr format="reference" name="dropDownListViewStyle"/>
  2559. <attr format="reference" name="listPopupWindowStyle"/>
  2560. <!-- The preferred TextAppearance for the primary text of list items. -->
  2561. <attr format="reference" name="textAppearanceListItem"/>
  2562. <!-- The preferred TextAppearance for the secondary text of list items. -->
  2563. <attr format="reference" name="textAppearanceListItemSecondary"/>
  2564. <!-- The preferred TextAppearance for the primary text of small list items. -->
  2565. <attr format="reference" name="textAppearanceListItemSmall"/>
  2566. <!-- ============ -->
  2567. <!-- Panel styles -->
  2568. <!-- ============ -->
  2569. <eat-comment/>
  2570. <!-- The background of a panel when it is inset from the left and right edges of the screen. -->
  2571. <attr format="reference" name="panelBackground"/>
  2572. <!-- Default Panel Menu width. -->
  2573. <attr format="dimension" name="panelMenuListWidth"/>
  2574. <!-- Default Panel Menu style. -->
  2575. <attr format="reference" name="panelMenuListTheme"/>
  2576. <!-- Drawable used as a background for selected list items. -->
  2577. <attr format="reference" name="listChoiceBackgroundIndicator"/>
  2578. <!-- ============= -->
  2579. <!-- Color palette -->
  2580. <!-- ============= -->
  2581. <eat-comment/>
  2582. <!-- The primary branding color for the app. By default, this is the color applied to the
  2583. action bar background. -->
  2584. <attr format="color" name="colorPrimary"/>
  2585. <!-- Dark variant of the primary branding color. By default, this is the color applied to
  2586. the status bar (via statusBarColor) and navigation bar (via navigationBarColor). -->
  2587. <attr format="color" name="colorPrimaryDark"/>
  2588. <!-- Bright complement to the primary branding color. By default, this is the color applied
  2589. to framework controls (via colorControlActivated). -->
  2590. <attr format="color" name="colorAccent"/>
  2591. <!-- The color applied to framework controls in their normal state. -->
  2592. <attr format="color" name="colorControlNormal"/>
  2593. <!-- The color applied to framework controls in their activated (ex. checked) state. -->
  2594. <attr format="color" name="colorControlActivated"/>
  2595. <!-- The color applied to framework control highlights (ex. ripples, list selectors). -->
  2596. <attr format="color" name="colorControlHighlight"/>
  2597. <!-- The color applied to framework buttons in their normal state. -->
  2598. <attr format="color" name="colorButtonNormal"/>
  2599. <!-- The color applied to framework switch thumbs in their normal state. -->
  2600. <attr format="color" name="colorSwitchThumbNormal"/>
  2601. <!-- The background used by framework controls. -->
  2602. <attr format="reference" name="controlBackground"/>
  2603. <!-- Default color of background imagery for floating components, ex. dialogs, popups, and cards. -->
  2604. <attr format="color" name="colorBackgroundFloating"/>
  2605. <!-- ============ -->
  2606. <!-- Alert Dialog styles -->
  2607. <!-- ============ -->
  2608. <eat-comment/>
  2609. <attr format="reference" name="alertDialogStyle"/>
  2610. <attr format="reference" name="alertDialogButtonGroupStyle"/>
  2611. <attr format="boolean" name="alertDialogCenterButtons"/>
  2612. <!-- Theme to use for alert dialogs spawned from this theme. -->
  2613. <attr format="reference" name="alertDialogTheme"/>
  2614. <!-- Color of list item text in alert dialogs. -->
  2615. <attr format="reference|color" name="textColorAlertDialogListItem"/>
  2616. <!-- Style for the "positive" buttons within button bars -->
  2617. <attr format="reference" name="buttonBarPositiveButtonStyle"/>
  2618. <!-- Style for the "negative" buttons within button bars -->
  2619. <attr format="reference" name="buttonBarNegativeButtonStyle"/>
  2620. <!-- Style for the "neutral" buttons within button bars -->
  2621. <attr format="reference" name="buttonBarNeutralButtonStyle"/>
  2622. <!-- ===================== -->
  2623. <!-- Default widget styles -->
  2624. <!-- ===================== -->
  2625. <eat-comment/>
  2626. <!-- Default AutoCompleteTextView style. -->
  2627. <attr format="reference" name="autoCompleteTextViewStyle"/>
  2628. <!-- Normal Button style. -->
  2629. <attr format="reference" name="buttonStyle"/>
  2630. <!-- Small Button style. -->
  2631. <attr format="reference" name="buttonStyleSmall"/>
  2632. <!-- Default Checkbox style. -->
  2633. <attr format="reference" name="checkboxStyle"/>
  2634. <!-- Default CheckedTextView style. -->
  2635. <attr format="reference" name="checkedTextViewStyle"/>
  2636. <!-- Default EditText style. -->
  2637. <attr format="reference" name="editTextStyle"/>
  2638. <!-- Default RadioButton style. -->
  2639. <attr format="reference" name="radioButtonStyle"/>
  2640. <!-- Default RatingBar style. -->
  2641. <attr format="reference" name="ratingBarStyle"/>
  2642. <!-- Indicator RatingBar style. -->
  2643. <attr format="reference" name="ratingBarStyleIndicator"/>
  2644. <!-- Small indicator RatingBar style. -->
  2645. <attr format="reference" name="ratingBarStyleSmall"/>
  2646. <!-- Default SeekBar style. -->
  2647. <attr format="reference" name="seekBarStyle"/>
  2648. <!-- Default Spinner style. -->
  2649. <attr format="reference" name="spinnerStyle"/>
  2650. <!-- Default style for the Switch widget. -->
  2651. <attr format="reference" name="switchStyle"/>
  2652. <!-- Default menu-style ListView style. -->
  2653. <attr format="reference" name="listMenuViewStyle"/>
  2654. <!-- ===================== -->
  2655. <!-- Tooltip styles -->
  2656. <!-- ===================== -->
  2657. <eat-comment/>
  2658. <!-- Background to use for tooltips -->
  2659. <attr format="reference" name="tooltipFrameBackground"/>
  2660. <!-- Foreground color to use for tooltips -->
  2661. <attr format="reference|color" name="tooltipForegroundColor"/>
  2662. <!-- Color used for error states and things that need to be drawn to
  2663. the user's attention. -->
  2664. <attr format="reference|color" name="colorError"/>
  2665. <attr format="string" name="viewInflaterClass"/>
  2666. </declare-styleable>
  2667. <declare-styleable name="ButtonBarLayout">
  2668. <!-- Whether to automatically stack the buttons when there is not
  2669. enough space to lay them out side-by-side. -->
  2670. <attr format="boolean" name="allowStacking"/>
  2671. </declare-styleable>
  2672. <declare-styleable name="ColorStateListItem">
  2673. <!-- Base color for this state. -->
  2674. <attr name="android:color"/>
  2675. <!-- Alpha multiplier applied to the base color. -->
  2676. <attr format="float" name="alpha"/>
  2677. <attr name="android:alpha"/>
  2678. </declare-styleable>
  2679. <declare-styleable name="CompoundButton">
  2680. <attr name="android:button"/>
  2681. <!-- Tint to apply to the button drawable. -->
  2682. <attr format="color" name="buttonTint"/>
  2683. <!-- Blending mode used to apply the button tint. -->
  2684. <attr name="buttonTintMode">
  2685. <!-- The tint is drawn on top of the drawable.
  2686. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  2687. <enum name="src_over" value="3"/>
  2688. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  2689. color channels are thrown out. [Sa * Da, Sc * Da] -->
  2690. <enum name="src_in" value="5"/>
  2691. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  2692. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  2693. <enum name="src_atop" value="9"/>
  2694. <!-- Multiplies the color and alpha channels of the drawable with those of
  2695. the tint. [Sa * Da, Sc * Dc] -->
  2696. <enum name="multiply" value="14"/>
  2697. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  2698. <enum name="screen" value="15"/>
  2699. <!-- Combines the tint and icon color and alpha channels, clamping the
  2700. result to valid color values. Saturate(S + D) -->
  2701. <enum name="add" value="16"/>
  2702. </attr>
  2703. </declare-styleable>
  2704. <declare-styleable name="Constraint"><attr name="android:orientation"/><attr name="android:id"/><attr name="android:visibility"/><attr name="visibilityMode"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="pivotAnchor"/><attr name="android:transformPivotX"/><attr name="android:transformPivotY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_marginStart"/><attr name="android:layout_marginBottom"/><attr name="android:layout_marginTop"/><attr name="android:layout_marginEnd"/><attr name="android:layout_marginLeft"/><attr name="android:layout_marginRight"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/><attr name="barrierDirection"/><attr name="barrierMargin"/><attr name="constraint_referenced_ids"/><attr name="android:maxHeight"/><attr name="android:maxWidth"/><attr name="android:minHeight"/><attr name="android:minWidth"/><attr name="barrierAllowsGoneWidgets"/><attr name="chainUseRtl"/><attr name="flow_horizontalStyle"/><attr name="flow_verticalStyle"/><attr name="flow_verticalAlign"/><attr name="flow_horizontalAlign"/><attr name="flow_verticalBias"/><attr name="flow_horizontalBias"/><attr name="flow_wrapMode"/><attr name="flow_maxElementsWrap"/><attr name="flow_horizontalGap"/><attr name="flow_verticalGap"/><attr name="flow_firstHorizontalStyle"/><attr name="flow_firstVerticalStyle"/><attr name="flow_firstHorizontalBias"/><attr name="flow_firstVerticalBias"/><attr name="flow_lastHorizontalStyle"/><attr name="flow_lastVerticalStyle"/><attr name="flow_lastHorizontalBias"/><attr name="flow_lastVerticalBias"/><attr name="animate_relativeTo"/><attr name="transitionEasing"/><attr name="pathMotionArc"/><attr name="transitionPathRotate"/><attr name="drawPath"/><attr name="motionProgress"/><attr name="layout_constraintTag"/><attr name="motionStagger"/></declare-styleable>
  2705. <declare-styleable name="ConstraintLayout_Layout"><attr name="android:orientation"/><attr name="android:minWidth"/><attr name="android:minHeight"/><attr name="android:maxWidth"/><attr name="android:maxHeight"/><attr name="android:visibility"/><attr name="android:elevation"/><attr name="layout_optimizationLevel"/><attr name="layoutDescription"/><attr name="constraintSet"/><attr name="barrierDirection"/><attr name="barrierAllowsGoneWidgets"/><attr name="barrierMargin"/><attr name="constraint_referenced_ids"/><attr name="chainUseRtl"/><attr name="flow_horizontalStyle"/><attr name="flow_verticalStyle"/><attr name="flow_wrapMode"/><attr name="flow_maxElementsWrap"/><attr name="flow_horizontalGap"/><attr name="flow_verticalGap"/><attr name="android:padding"/><attr name="android:paddingTop"/><attr name="android:paddingBottom"/><attr name="android:paddingLeft"/><attr name="android:paddingRight"/><attr name="android:paddingStart"/><attr name="android:paddingEnd"/><attr name="flow_verticalAlign"/><attr name="flow_horizontalAlign"/><attr name="flow_verticalBias"/><attr name="flow_horizontalBias"/><attr name="flow_firstHorizontalStyle"/><attr name="flow_firstVerticalStyle"/><attr name="flow_firstHorizontalBias"/><attr name="flow_firstVerticalBias"/><attr name="flow_lastHorizontalStyle"/><attr name="flow_lastVerticalStyle"/><attr name="flow_lastHorizontalBias"/><attr name="flow_lastVerticalBias"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/><attr name="layout_constraintTag"/></declare-styleable>
  2706. <declare-styleable name="ConstraintLayout_placeholder"><attr name="placeholder_emptyVisibility"/><attr name="content"/></declare-styleable>
  2707. <declare-styleable name="ConstraintSet"><attr format="reference" name="deriveConstraintsFrom"/><attr name="android:orientation"/><attr name="android:id"/><attr name="android:visibility"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="pivotAnchor"/><attr name="android:pivotX"/><attr name="android:pivotY"/><attr name="android:transformPivotX"/><attr name="android:transformPivotY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_marginStart"/><attr name="android:layout_marginBottom"/><attr name="android:layout_marginTop"/><attr name="android:layout_marginEnd"/><attr name="android:layout_marginLeft"/><attr name="android:layout_marginRight"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/><attr name="barrierDirection"/><attr name="constraint_referenced_ids"/><attr name="barrierMargin"/><attr name="android:maxHeight"/><attr name="android:maxWidth"/><attr name="android:minHeight"/><attr name="android:minWidth"/><attr name="barrierAllowsGoneWidgets"/><attr name="chainUseRtl"/><attr name="flow_horizontalStyle"/><attr name="flow_verticalStyle"/><attr name="flow_verticalAlign"/><attr name="flow_horizontalAlign"/><attr name="flow_verticalBias"/><attr name="flow_horizontalBias"/><attr name="flow_wrapMode"/><attr name="flow_maxElementsWrap"/><attr name="flow_horizontalGap"/><attr name="flow_verticalGap"/><attr name="flow_firstHorizontalStyle"/><attr name="flow_firstVerticalStyle"/><attr name="flow_firstHorizontalBias"/><attr name="flow_firstVerticalBias"/><attr name="flow_lastHorizontalStyle"/><attr name="flow_lastVerticalStyle"/><attr name="flow_lastHorizontalBias"/><attr name="flow_lastVerticalBias"/><attr name="animate_relativeTo"/><attr name="transitionEasing"/><attr name="pathMotionArc"/><attr name="transitionPathRotate"/><attr name="motionStagger"/><attr name="drawPath"/><attr name="motionProgress"/><attr name="layout_constraintTag"/></declare-styleable>
  2708. <declare-styleable name="CoordinatorLayout">
  2709. <!-- A reference to an array of integers representing the
  2710. locations of horizontal keylines in dp from the starting edge.
  2711. Child views can refer to these keylines for alignment using
  2712. layout_keyline="index" where index is a 0-based index into
  2713. this array. -->
  2714. <attr format="reference" name="keylines"/>
  2715. <!-- Drawable to display behind the status bar when the view is set to draw behind it. -->
  2716. <attr format="color|reference" name="statusBarBackground"/>
  2717. </declare-styleable>
  2718. <declare-styleable name="CoordinatorLayout_Layout">
  2719. <attr name="android:layout_gravity"/>
  2720. <!-- The class name of a Behavior class defining special runtime behavior
  2721. for this child view. -->
  2722. <attr format="string" name="layout_behavior"/>
  2723. <!-- The id of an anchor view that this view should position relative to. -->
  2724. <attr format="reference" name="layout_anchor"/>
  2725. <!-- The index of a keyline this view should position relative to.
  2726. android:layout_gravity will affect how the view aligns to the
  2727. specified keyline. -->
  2728. <attr format="integer" name="layout_keyline"/>
  2729. <!-- Specifies how an object should position relative to an anchor, on both the X and Y axes,
  2730. within its parent's bounds. -->
  2731. <attr name="layout_anchorGravity">
  2732. <!-- Push object to the top of its container, not changing its size. -->
  2733. <flag name="top" value="0x30"/>
  2734. <!-- Push object to the bottom of its container, not changing its size. -->
  2735. <flag name="bottom" value="0x50"/>
  2736. <!-- Push object to the left of its container, not changing its size. -->
  2737. <flag name="left" value="0x03"/>
  2738. <!-- Push object to the right of its container, not changing its size. -->
  2739. <flag name="right" value="0x05"/>
  2740. <!-- Place object in the vertical center of its container, not changing its size. -->
  2741. <flag name="center_vertical" value="0x10"/>
  2742. <!-- Grow the vertical size of the object if needed so it completely fills its container. -->
  2743. <flag name="fill_vertical" value="0x70"/>
  2744. <!-- Place object in the horizontal center of its container, not changing its size. -->
  2745. <flag name="center_horizontal" value="0x01"/>
  2746. <!-- Grow the horizontal size of the object if needed so it completely fills its container. -->
  2747. <flag name="fill_horizontal" value="0x07"/>
  2748. <!-- Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. -->
  2749. <flag name="center" value="0x11"/>
  2750. <!-- Grow the horizontal and vertical size of the object if needed so it completely fills its container. -->
  2751. <flag name="fill" value="0x77"/>
  2752. <!-- Additional option that can be set to have the top and/or bottom edges of
  2753. the child clipped to its container's bounds.
  2754. The clip will be based on the vertical gravity: a top gravity will clip the bottom
  2755. edge, a bottom gravity will clip the top edge, and neither will clip both edges. -->
  2756. <flag name="clip_vertical" value="0x80"/>
  2757. <!-- Additional option that can be set to have the left and/or right edges of
  2758. the child clipped to its container's bounds.
  2759. The clip will be based on the horizontal gravity: a left gravity will clip the right
  2760. edge, a right gravity will clip the left edge, and neither will clip both edges. -->
  2761. <flag name="clip_horizontal" value="0x08"/>
  2762. <!-- Push object to the beginning of its container, not changing its size. -->
  2763. <flag name="start" value="0x00800003"/>
  2764. <!-- Push object to the end of its container, not changing its size. -->
  2765. <flag name="end" value="0x00800005"/>
  2766. </attr>
  2767. <!-- Specifies how this view insets the CoordinatorLayout and make some other views
  2768. dodge it. -->
  2769. <attr format="enum" name="layout_insetEdge">
  2770. <!-- Don't inset. -->
  2771. <enum name="none" value="0x0"/>
  2772. <!-- Inset the top edge. -->
  2773. <enum name="top" value="0x30"/>
  2774. <!-- Inset the bottom edge. -->
  2775. <enum name="bottom" value="0x50"/>
  2776. <!-- Inset the left edge. -->
  2777. <enum name="left" value="0x03"/>
  2778. <!-- Inset the right edge. -->
  2779. <enum name="right" value="0x05"/>
  2780. <!-- Inset the start edge. -->
  2781. <enum name="start" value="0x00800003"/>
  2782. <!-- Inset the end edge. -->
  2783. <enum name="end" value="0x00800005"/>
  2784. </attr>
  2785. <!-- Specifies how this view dodges the inset edges of the CoordinatorLayout. -->
  2786. <attr name="layout_dodgeInsetEdges">
  2787. <!-- Don't dodge any edges -->
  2788. <flag name="none" value="0x0"/>
  2789. <!-- Dodge the top inset edge. -->
  2790. <flag name="top" value="0x30"/>
  2791. <!-- Dodge the bottom inset edge. -->
  2792. <flag name="bottom" value="0x50"/>
  2793. <!-- Dodge the left inset edge. -->
  2794. <flag name="left" value="0x03"/>
  2795. <!-- Dodge the right inset edge. -->
  2796. <flag name="right" value="0x05"/>
  2797. <!-- Dodge the start inset edge. -->
  2798. <flag name="start" value="0x00800003"/>
  2799. <!-- Dodge the end inset edge. -->
  2800. <flag name="end" value="0x00800005"/>
  2801. <!-- Dodge all the inset edges. -->
  2802. <flag name="all" value="0x77"/>
  2803. </attr>
  2804. </declare-styleable>
  2805. <declare-styleable name="CustomAttribute"><attr format="string" name="attributeName"/><attr format="color" name="customColorValue"/><attr format="color" name="customColorDrawableValue"/><attr format="integer" name="customIntegerValue"/><attr format="float" name="customFloatValue"/><attr format="string" name="customStringValue"/><attr format="dimension" name="customDimension"/><attr format="dimension" name="customPixelDimension"/><attr format="boolean" name="customBoolean"/></declare-styleable>
  2806. <declare-styleable name="DrawerArrowToggle">
  2807. <!-- The drawing color for the bars -->
  2808. <attr format="color" name="color"/>
  2809. <!-- Whether bars should rotate or not during transition -->
  2810. <attr format="boolean" name="spinBars"/>
  2811. <!-- The total size of the drawable -->
  2812. <attr format="dimension" name="drawableSize"/>
  2813. <!-- The max gap between the bars when they are parallel to each other -->
  2814. <attr format="dimension" name="gapBetweenBars"/>
  2815. <!-- The length of the arrow head when formed to make an arrow -->
  2816. <attr format="dimension" name="arrowHeadLength"/>
  2817. <!-- The length of the shaft when formed to make an arrow -->
  2818. <attr format="dimension" name="arrowShaftLength"/>
  2819. <!-- The length of the bars when they are parallel to each other -->
  2820. <attr format="dimension" name="barLength"/>
  2821. <!-- The thickness (stroke size) for the bar paint -->
  2822. <attr format="dimension" name="thickness"/>
  2823. </declare-styleable>
  2824. <declare-styleable name="FontFamily">
  2825. <!-- The authority of the Font Provider to be used for the request. -->
  2826. <attr format="string" name="fontProviderAuthority"/>
  2827. <!-- The package for the Font Provider to be used for the request. This is used to verify
  2828. the identity of the provider. -->
  2829. <attr format="string" name="fontProviderPackage"/>
  2830. <!-- The query to be sent over to the provider. Refer to your font provider's documentation
  2831. on the format of this string. -->
  2832. <attr format="string" name="fontProviderQuery"/>
  2833. <!-- The sets of hashes for the certificates the provider should be signed with. This is
  2834. used to verify the identity of the provider, and is only required if the provider is not
  2835. part of the system image. This value may point to one list or a list of lists, where each
  2836. individual list represents one collection of signature hashes. Refer to your font provider's
  2837. documentation for these values. -->
  2838. <attr format="reference" name="fontProviderCerts"/>
  2839. <!-- The strategy to be used when fetching font data from a font provider in XML layouts.
  2840. This attribute is ignored when the resource is loaded from code, as it is equivalent to the
  2841. choice of API between {@link
  2842. androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and
  2843. {@link
  2844. androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)}
  2845. (async). -->
  2846. <attr name="fontProviderFetchStrategy">
  2847. <!-- The blocking font fetch works as follows.
  2848. First, check the local cache, then if the requested font is not cached, request the
  2849. font from the provider and wait until it is finished. You can change the length of
  2850. the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the
  2851. default typeface will be used instead. -->
  2852. <enum name="blocking" value="0"/>
  2853. <!-- The async font fetch works as follows.
  2854. First, check the local cache, then if the requeted font is not cached, trigger a
  2855. request the font and continue with layout inflation. Once the font fetch succeeds, the
  2856. target text view will be refreshed with the downloaded font data. The
  2857. fontProviderFetchTimeout will be ignored if async loading is specified. -->
  2858. <enum name="async" value="1"/>
  2859. </attr>
  2860. <!-- The length of the timeout during fetching. -->
  2861. <attr format="integer" name="fontProviderFetchTimeout">
  2862. <!-- A special value for the timeout. In this case, the blocking font fetching will not
  2863. timeout and wait until a reply is received from the font provider. -->
  2864. <enum name="forever" value="-1"/>
  2865. </attr>
  2866. </declare-styleable>
  2867. <declare-styleable name="FontFamilyFont">
  2868. <!-- The style of the given font file. This will be used when the font is being loaded into
  2869. the font stack and will override any style information in the font's header tables. If
  2870. unspecified, the value in the font's header tables will be used. -->
  2871. <attr name="fontStyle">
  2872. <enum name="normal" value="0"/>
  2873. <enum name="italic" value="1"/>
  2874. </attr>
  2875. <!-- The reference to the font file to be used. This should be a file in the res/font folder
  2876. and should therefore have an R reference value. E.g. @font/myfont -->
  2877. <attr format="reference" name="font"/>
  2878. <!-- The weight of the given font file. This will be used when the font is being loaded into
  2879. the font stack and will override any weight information in the font's header tables. Must
  2880. be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most
  2881. common values are 400 for regular weight and 700 for bold weight. If unspecified, the value
  2882. in the font's header tables will be used. -->
  2883. <attr format="integer" name="fontWeight"/>
  2884. <!-- The variation settings to be applied to the font. The string should be in the following
  2885. format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be
  2886. used, or the font used does not support variation settings, this attribute needs not be
  2887. specified. -->
  2888. <attr format="string" name="fontVariationSettings"/>
  2889. <!-- The index of the font in the tcc font file. If the font file referenced is not in the
  2890. tcc format, this attribute needs not be specified. -->
  2891. <attr format="integer" name="ttcIndex"/>
  2892. <!-- References to the framework attrs -->
  2893. <attr name="android:fontStyle"/>
  2894. <attr name="android:font"/>
  2895. <attr name="android:fontWeight"/>
  2896. <attr name="android:fontVariationSettings"/>
  2897. <attr name="android:ttcIndex"/>
  2898. </declare-styleable>
  2899. <declare-styleable name="GIFVIEW">
  2900. <!--gif文件引用-->
  2901. <attr format="reference" name="gifSrc"/>
  2902. <!--是否加载完自动播放-->
  2903. <attr format="boolean" name="authPlay"/>
  2904. <!--播放次放,默认永远播放-->
  2905. <attr format="integer" name="playCount"/>
  2906. </declare-styleable>
  2907. <declare-styleable name="GenericDraweeHierarchy">
  2908. <!-- NOTE: If adding a new attr here, also add to SimpleDraweeView below -->
  2909. <eat-comment/>
  2910. <!-- Fade duration in milliseconds. -->
  2911. <attr format="integer" name="fadeDuration"/>
  2912. <!-- Aspect ratio (width / height) of the view, not necessarily of the images. -->
  2913. <attr format="float" name="viewAspectRatio"/>
  2914. <!-- Image branches -
  2915. Scale-type values must match those in GenericDraweeHierarchyInflater.getScaleTypeFromXml.
  2916. (GenericDraweeHierarchyInflater.java).
  2917. For drawables that should not be scaled, such as those with the android:tileMode
  2918. attribute set, use the value 'none'. -->
  2919. <!-- A drawable or color to be be used as a placeholder. -->
  2920. <attr format="reference" name="placeholderImage"/>
  2921. <!-- Scale type of the placeholder image. Ignored if placeholderImage is not specified. -->
  2922. <attr name="placeholderImageScaleType">
  2923. <enum name="none" value="-1"/>
  2924. <enum name="fitXY" value="0"/>
  2925. <enum name="fitStart" value="1"/>
  2926. <enum name="fitCenter" value="2"/>
  2927. <enum name="fitEnd" value="3"/>
  2928. <enum name="center" value="4"/>
  2929. <enum name="centerInside" value="5"/>
  2930. <enum name="centerCrop" value="6"/>
  2931. <enum name="focusCrop" value="7"/>
  2932. <enum name="fitBottomStart" value="8"/>
  2933. </attr>
  2934. <!-- A drawable to be be used as a retry image. -->
  2935. <attr format="reference" name="retryImage"/>
  2936. <!-- Scale type of the retry image. Ignored if retryImage is not specified. -->
  2937. <attr name="retryImageScaleType">
  2938. <enum name="none" value="-1"/>
  2939. <enum name="fitXY" value="0"/>
  2940. <enum name="fitStart" value="1"/>
  2941. <enum name="fitCenter" value="2"/>
  2942. <enum name="fitEnd" value="3"/>
  2943. <enum name="center" value="4"/>
  2944. <enum name="centerInside" value="5"/>
  2945. <enum name="centerCrop" value="6"/>
  2946. <enum name="focusCrop" value="7"/>
  2947. <enum name="fitBottomStart" value="8"/>
  2948. </attr>
  2949. <!-- A drawable to be be used as a failure image. -->
  2950. <attr format="reference" name="failureImage"/>
  2951. <!-- Scale type of the failure image. Ignored if failureImage is not specified. -->
  2952. <attr name="failureImageScaleType">
  2953. <enum name="none" value="-1"/>
  2954. <enum name="fitXY" value="0"/>
  2955. <enum name="fitStart" value="1"/>
  2956. <enum name="fitCenter" value="2"/>
  2957. <enum name="fitEnd" value="3"/>
  2958. <enum name="center" value="4"/>
  2959. <enum name="centerInside" value="5"/>
  2960. <enum name="centerCrop" value="6"/>
  2961. <enum name="focusCrop" value="7"/>
  2962. <enum name="fitBottomStart" value="8"/>
  2963. </attr>
  2964. <!-- A drawable to be be used as a progress bar. -->
  2965. <attr format="reference" name="progressBarImage"/>
  2966. <!-- Scale type of the progress bar. Ignored if progressBarImage is not specified. -->
  2967. <attr name="progressBarImageScaleType">
  2968. <enum name="none" value="-1"/>
  2969. <enum name="fitXY" value="0"/>
  2970. <enum name="fitStart" value="1"/>
  2971. <enum name="fitCenter" value="2"/>
  2972. <enum name="fitEnd" value="3"/>
  2973. <enum name="center" value="4"/>
  2974. <enum name="centerInside" value="5"/>
  2975. <enum name="centerCrop" value="6"/>
  2976. <enum name="focusCrop" value="7"/>
  2977. <enum name="fitBottomStart" value="8"/>
  2978. </attr>
  2979. <!-- Progress bar Auto Rotate interval in milliseconds -->
  2980. <attr format="integer" name="progressBarAutoRotateInterval"/>
  2981. <!-- Scale type of the actual image. -->
  2982. <attr name="actualImageScaleType">
  2983. <enum name="none" value="-1"/>
  2984. <enum name="fitXY" value="0"/>
  2985. <enum name="fitStart" value="1"/>
  2986. <enum name="fitCenter" value="2"/>
  2987. <enum name="fitEnd" value="3"/>
  2988. <enum name="center" value="4"/>
  2989. <enum name="centerInside" value="5"/>
  2990. <enum name="centerCrop" value="6"/>
  2991. <enum name="focusCrop" value="7"/>
  2992. <enum name="fitBottomStart" value="8"/>
  2993. </attr>
  2994. <!-- A drawable or color to be used as a background. -->
  2995. <attr format="reference" name="backgroundImage"/>
  2996. <!-- A drawable or color to be used as an overlay. -->
  2997. <attr format="reference" name="overlayImage"/>
  2998. <!-- A drawable or color to be used as a pressed-state-overlay -->
  2999. <attr format="reference" name="pressedStateOverlayImage"/>
  3000. <!-- Rounding params -
  3001. Declares attributes for rounding shape, mode and border. -->
  3002. <!-- Round as circle. -->
  3003. <attr format="boolean" name="roundAsCircle"/>
  3004. <!-- Rounded corner radius. Ignored if roundAsCircle is used. -->
  3005. <attr format="dimension" name="roundedCornerRadius"/>
  3006. <!-- Round the top-left corner. Ignored if roundAsCircle is used. -->
  3007. <attr format="boolean" name="roundTopLeft"/>
  3008. <!-- Round the top-right corner. Ignored if roundAsCircle is used. -->
  3009. <attr format="boolean" name="roundTopRight"/>
  3010. <!-- Round the bottom-right corner. Ignored if roundAsCircle is used. -->
  3011. <attr format="boolean" name="roundBottomRight"/>
  3012. <!-- Round the bottom-left corner. Ignored if roundAsCircle is used. -->
  3013. <attr format="boolean" name="roundBottomLeft"/>
  3014. <!-- Round the top-start edge. Ignored if roundAsCircle is used. -->
  3015. <attr format="boolean" name="roundTopStart"/>
  3016. <!-- Round the top-end edge. Ignored if roundAsCircle is used. -->
  3017. <attr format="boolean" name="roundTopEnd"/>
  3018. <!-- Round the bottom-start edge. Ignored if roundAsCircle is used. -->
  3019. <attr format="boolean" name="roundBottomStart"/>
  3020. <!-- Round the bottom-end edge. Ignored if roundAsCircle is used. -->
  3021. <attr format="boolean" name="roundBottomEnd"/>
  3022. <!-- Round by overlying color. -->
  3023. <attr format="color" name="roundWithOverlayColor"/>
  3024. <!-- Rounding border width-->
  3025. <attr format="dimension" name="roundingBorderWidth"/>
  3026. <!-- Rounding border color -->
  3027. <attr format="color" name="roundingBorderColor"/>
  3028. <!-- Rounding border padding -->
  3029. <attr format="dimension" name="roundingBorderPadding"/>
  3030. </declare-styleable>
  3031. <declare-styleable name="GifTextureView">
  3032. <attr format="reference|string" name="gifSource"/>
  3033. <attr format="boolean" name="isOpaque"/>
  3034. </declare-styleable>
  3035. <declare-styleable name="GifView">
  3036. <attr format="boolean" name="freezesAnimation"/>
  3037. <attr format="integer" name="loopCount"/>
  3038. </declare-styleable>
  3039. <declare-styleable name="GradientColor">
  3040. <!-- Start color of the gradient. -->
  3041. <attr name="android:startColor"/>
  3042. <!-- Optional center color. -->
  3043. <attr name="android:centerColor"/>
  3044. <!-- End color of the gradient. -->
  3045. <attr name="android:endColor"/>
  3046. <!-- Type of gradient. The default type is linear. -->
  3047. <attr name="android:type"/>
  3048. <!-- Only applied to RadialGradient-->
  3049. <!-- Radius of the gradient, used only with radial gradient. -->
  3050. <attr name="android:gradientRadius"/>
  3051. <!-- Only applied to SweepGradient / RadialGradient-->
  3052. <!-- X coordinate of the center of the gradient within the path. -->
  3053. <attr name="android:centerX"/>
  3054. <!-- Y coordinate of the center of the gradient within the path. -->
  3055. <attr name="android:centerY"/>
  3056. <!-- LinearGradient specific -->
  3057. <!-- X coordinate of the start point origin of the gradient.
  3058. Defined in same coordinates as the path itself -->
  3059. <attr name="android:startX"/>
  3060. <!-- Y coordinate of the start point of the gradient within the shape.
  3061. Defined in same coordinates as the path itself -->
  3062. <attr name="android:startY"/>
  3063. <!-- X coordinate of the end point origin of the gradient.
  3064. Defined in same coordinates as the path itself -->
  3065. <attr name="android:endX"/>
  3066. <!-- Y coordinate of the end point of the gradient within the shape.
  3067. Defined in same coordinates as the path itself -->
  3068. <attr name="android:endY"/>
  3069. <!-- Defines the tile mode of the gradient. SweepGradient doesn't support tiling. -->
  3070. <attr name="android:tileMode"/>
  3071. </declare-styleable>
  3072. <declare-styleable name="GradientColorItem">
  3073. <!-- The offset (or ratio) of this current color item inside the gradient.
  3074. The value is only meaningful when it is between 0 and 1. -->
  3075. <attr name="android:offset"/>
  3076. <!-- The current color for the offset inside the gradient. -->
  3077. <attr name="android:color"/>
  3078. </declare-styleable>
  3079. <declare-styleable name="ImageFilterView"><attr format="reference" name="altSrc"/><attr format="float" name="saturation"/><attr format="float" name="brightness"/><attr format="float" name="warmth"/><attr format="float" name="contrast"/><attr format="float" name="crossfade"/><attr format="dimension" name="round"/><attr format="boolean" name="overlay"/><attr format="float" name="roundPercent"/></declare-styleable>
  3080. <declare-styleable name="KeyAttribute"><attr name="framePosition"/><attr name="motionTarget"/><attr name="transitionEasing"/><attr name="curveFit"/><attr name="motionProgress"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:transformPivotX"/><attr name="android:transformPivotY"/><attr name="transitionPathRotate"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/></declare-styleable>
  3081. <declare-styleable name="KeyCycle"><attr name="motionTarget"/><attr name="curveFit"/><attr name="framePosition"/><attr name="transitionEasing"/><attr name="motionProgress"/><attr name="waveShape"/><attr name="wavePeriod"/><attr name="waveOffset"/><attr name="waveVariesBy"/><attr name="transitionPathRotate"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/></declare-styleable>
  3082. <declare-styleable name="KeyFrame"/>
  3083. <declare-styleable name="KeyFramesAcceleration"/>
  3084. <declare-styleable name="KeyFramesVelocity"/>
  3085. <declare-styleable name="KeyPosition"><attr format="enum" name="keyPositionType">
  3086. <enum name="deltaRelative" value="0"/>
  3087. <enum name="pathRelative" value="1"/>
  3088. <enum name="parentRelative" value="2"/>
  3089. </attr><attr format="float" name="percentX"/><attr format="float" name="percentY"/><attr format="float" name="percentWidth"/><attr format="float" name="percentHeight"/><attr name="framePosition"/><attr name="motionTarget"/><attr name="transitionEasing"/><attr name="pathMotionArc"/><attr name="curveFit"/><attr name="drawPath"/><attr name="sizePercent"/></declare-styleable>
  3090. <declare-styleable name="KeyTimeCycle"><attr name="framePosition"/><attr name="motionTarget"/><attr name="transitionEasing"/><attr name="curveFit"/><attr name="waveShape"/><attr name="wavePeriod"/><attr name="motionProgress"/><attr name="waveOffset"/><attr name="waveDecay"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="transitionPathRotate"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/></declare-styleable>
  3091. <declare-styleable name="KeyTrigger"><attr name="framePosition"/><attr name="motionTarget"/><attr format="reference" name="triggerReceiver"/><attr format="string" name="onNegativeCross"/><attr format="string" name="onPositiveCross"/><attr format="string" name="onCross"/><attr format="float" name="triggerSlack"/><attr format="reference" name="triggerId"/><attr format="boolean" name="motion_postLayoutCollision"/><attr format="reference" name="motion_triggerOnCollision"/></declare-styleable>
  3092. <declare-styleable name="Layout"><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_marginStart"/><attr name="android:layout_marginBottom"/><attr name="android:layout_marginTop"/><attr name="android:layout_marginEnd"/><attr name="android:layout_marginLeft"/><attr name="android:layout_marginRight"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="android:orientation"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/><attr name="barrierDirection"/><attr name="barrierMargin"/><attr name="constraint_referenced_ids"/><attr format="dimension" name="maxHeight"/><attr format="dimension" name="maxWidth"/><attr format="dimension" name="minHeight"/><attr format="dimension" name="minWidth"/><attr name="barrierAllowsGoneWidgets"/><attr name="chainUseRtl"/></declare-styleable>
  3093. <declare-styleable name="LinearLayoutCompat">
  3094. <!-- Should the layout be a column or a row? Use "horizontal"
  3095. for a row, "vertical" for a column. The default is
  3096. horizontal. -->
  3097. <attr name="android:orientation"/>
  3098. <attr name="android:gravity"/>
  3099. <!-- When set to false, prevents the layout from aligning its children's
  3100. baselines. This attribute is particularly useful when the children
  3101. use different values for gravity. The default value is true. -->
  3102. <attr name="android:baselineAligned"/>
  3103. <!-- When a linear layout is part of another layout that is baseline
  3104. aligned, it can specify which of its children to baseline align to
  3105. (that is, which child TextView).-->
  3106. <attr name="android:baselineAlignedChildIndex"/>
  3107. <!-- Defines the maximum weight sum. If unspecified, the sum is computed
  3108. by adding the layout_weight of all of the children. This can be
  3109. used for instance to give a single child 50% of the total available
  3110. space by giving it a layout_weight of 0.5 and setting the weightSum
  3111. to 1.0. -->
  3112. <attr name="android:weightSum"/>
  3113. <!-- When set to true, all children with a weight will be considered having
  3114. the minimum size of the largest child. If false, all children are
  3115. measured normally. -->
  3116. <attr format="boolean" name="measureWithLargestChild"/>
  3117. <!-- Drawable to use as a vertical divider between buttons. -->
  3118. <attr name="divider"/>
  3119. <!-- Setting for which dividers to show. -->
  3120. <attr name="showDividers">
  3121. <flag name="none" value="0"/>
  3122. <flag name="beginning" value="1"/>
  3123. <flag name="middle" value="2"/>
  3124. <flag name="end" value="4"/>
  3125. </attr>
  3126. <!-- Size of padding on either end of a divider. -->
  3127. <attr format="dimension" name="dividerPadding"/>
  3128. </declare-styleable>
  3129. <declare-styleable name="LinearLayoutCompat_Layout">
  3130. <attr name="android:layout_width"/>
  3131. <attr name="android:layout_height"/>
  3132. <attr name="android:layout_weight"/>
  3133. <attr name="android:layout_gravity"/>
  3134. </declare-styleable>
  3135. <declare-styleable name="ListPopupWindow">
  3136. <!-- Amount of pixels by which the drop down should be offset vertically. -->
  3137. <attr name="android:dropDownVerticalOffset"/>
  3138. <!-- Amount of pixels by which the drop down should be offset horizontally. -->
  3139. <attr name="android:dropDownHorizontalOffset"/>
  3140. </declare-styleable>
  3141. <declare-styleable name="MenuGroup">
  3142. <!-- The ID of the group. -->
  3143. <attr name="android:id"/>
  3144. <!-- The category applied to all items within this group.
  3145. (This will be or'ed with the orderInCategory attribute.) -->
  3146. <attr name="android:menuCategory"/>
  3147. <!-- The order within the category applied to all items within this group.
  3148. (This will be or'ed with the category attribute.) -->
  3149. <attr name="android:orderInCategory"/>
  3150. <!-- Whether the items are capable of displaying a check mark. -->
  3151. <attr name="android:checkableBehavior"/>
  3152. <!-- Whether the items are shown/visible. -->
  3153. <attr name="android:visible"/>
  3154. <!-- Whether the items are enabled. -->
  3155. <attr name="android:enabled"/>
  3156. </declare-styleable>
  3157. <declare-styleable name="MenuItem">
  3158. <!-- The ID of the item. -->
  3159. <attr name="android:id"/>
  3160. <!-- The category applied to the item.
  3161. (This will be or'ed with the orderInCategory attribute.) -->
  3162. <attr name="android:menuCategory"/>
  3163. <!-- The order within the category applied to the item.
  3164. (This will be or'ed with the category attribute.) -->
  3165. <attr name="android:orderInCategory"/>
  3166. <!-- The title associated with the item. -->
  3167. <attr name="android:title"/>
  3168. <!-- The condensed title associated with the item. This is used in situations where the
  3169. normal title may be too long to be displayed. -->
  3170. <attr name="android:titleCondensed"/>
  3171. <!-- The icon associated with this item. This icon will not always be shown, so
  3172. the title should be sufficient in describing this item. -->
  3173. <attr name="android:icon"/>
  3174. <!-- The alphabetic shortcut key. This is the shortcut when using a keyboard
  3175. with alphabetic keys. -->
  3176. <attr name="android:alphabeticShortcut"/>
  3177. <!-- The alphabetic modifier key. This is the modifier when using a keyboard
  3178. with alphabetic keys. The values should be kept in sync with KeyEvent -->
  3179. <attr name="alphabeticModifiers">
  3180. <flag name="META" value="0x10000"/>
  3181. <flag name="CTRL" value="0x1000"/>
  3182. <flag name="ALT" value="0x02"/>
  3183. <flag name="SHIFT" value="0x1"/>
  3184. <flag name="SYM" value="0x4"/>
  3185. <flag name="FUNCTION" value="0x8"/>
  3186. </attr>
  3187. <!-- The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key)
  3188. keyboard. -->
  3189. <attr name="android:numericShortcut"/>
  3190. <!-- The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key)
  3191. keyboard. The values should be kept in sync with KeyEvent -->
  3192. <attr name="numericModifiers">
  3193. <flag name="META" value="0x10000"/>
  3194. <flag name="CTRL" value="0x1000"/>
  3195. <flag name="ALT" value="0x02"/>
  3196. <flag name="SHIFT" value="0x1"/>
  3197. <flag name="SYM" value="0x4"/>
  3198. <flag name="FUNCTION" value="0x8"/>
  3199. </attr>
  3200. <!-- Whether the item is capable of displaying a check mark. -->
  3201. <attr name="android:checkable"/>
  3202. <!-- Whether the item is checked. Note that you must first have enabled checking with
  3203. the checkable attribute or else the check mark will not appear. -->
  3204. <attr name="android:checked"/>
  3205. <!-- Whether the item is shown/visible. -->
  3206. <attr name="android:visible"/>
  3207. <!-- Whether the item is enabled. -->
  3208. <attr name="android:enabled"/>
  3209. <!-- Name of a method on the Context used to inflate the menu that will be
  3210. called when the item is clicked. -->
  3211. <attr name="android:onClick"/>
  3212. <!-- How this item should display in the Action Bar, if present. -->
  3213. <attr name="showAsAction">
  3214. <!-- Never show this item in an action bar, show it in the overflow menu instead.
  3215. Mutually exclusive with "ifRoom" and "always". -->
  3216. <flag name="never" value="0"/>
  3217. <!-- Show this item in an action bar if there is room for it as determined
  3218. by the system. Favor this option over "always" where possible.
  3219. Mutually exclusive with "never" and "always". -->
  3220. <flag name="ifRoom" value="1"/>
  3221. <!-- Always show this item in an actionbar, even if it would override
  3222. the system's limits of how much stuff to put there. This may make
  3223. your action bar look bad on some screens. In most cases you should
  3224. use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". -->
  3225. <flag name="always" value="2"/>
  3226. <!-- When this item is shown as an action in the action bar, show a text
  3227. label with it even if it has an icon representation. -->
  3228. <flag name="withText" value="4"/>
  3229. <!-- This item's action view collapses to a normal menu
  3230. item. When expanded, the action view takes over a
  3231. larger segment of its container. -->
  3232. <flag name="collapseActionView" value="8"/>
  3233. </attr>
  3234. <!-- An optional layout to be used as an action view.
  3235. See {@link android.view.MenuItem#setActionView(android.view.View)}
  3236. for more info. -->
  3237. <attr format="reference" name="actionLayout"/>
  3238. <!-- The name of an optional View class to instantiate and use as an
  3239. action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
  3240. for more info. -->
  3241. <attr format="string" name="actionViewClass"/>
  3242. <!-- The name of an optional ActionProvider class to instantiate an action view
  3243. and perform operations such as default action for that menu item.
  3244. See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
  3245. for more info. -->
  3246. <attr format="string" name="actionProviderClass"/>
  3247. <!-- The content description associated with the item. -->
  3248. <attr format="string" name="contentDescription"/>
  3249. <!-- The tooltip text associated with the item. -->
  3250. <attr format="string" name="tooltipText"/>
  3251. <!-- Tint to apply to the icon. -->
  3252. <attr format="color" name="iconTint"/>
  3253. <!-- Blending mode used to apply the icon tint. -->
  3254. <attr name="iconTintMode">
  3255. <!-- The tint is drawn on top of the icon.
  3256. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  3257. <enum name="src_over" value="3"/>
  3258. <!-- The tint is masked by the alpha channel of the icon. The icon’s
  3259. color channels are thrown out. [Sa * Da, Sc * Da] -->
  3260. <enum name="src_in" value="5"/>
  3261. <!-- The tint is drawn above the icon, but with the icon’s alpha
  3262. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  3263. <enum name="src_atop" value="9"/>
  3264. <!-- Multiplies the color and alpha channels of the icon with those of
  3265. the tint. [Sa * Da, Sc * Dc] -->
  3266. <enum name="multiply" value="14"/>
  3267. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  3268. <enum name="screen" value="15"/>
  3269. <!-- Combines the tint and icon color and alpha channels, clamping the
  3270. result to valid color values. Saturate(S + D) -->
  3271. <enum name="add" value="16"/>
  3272. </attr>
  3273. </declare-styleable>
  3274. <declare-styleable name="MenuView">
  3275. <!-- Default appearance of menu item text. -->
  3276. <attr name="android:itemTextAppearance"/>
  3277. <!-- Default horizontal divider between rows of menu items. -->
  3278. <attr name="android:horizontalDivider"/>
  3279. <!-- Default vertical divider between menu items. -->
  3280. <attr name="android:verticalDivider"/>
  3281. <!-- Default background for the menu header. -->
  3282. <attr name="android:headerBackground"/>
  3283. <!-- Default background for each menu item. -->
  3284. <attr name="android:itemBackground"/>
  3285. <!-- Default animations for the menu. -->
  3286. <attr name="android:windowAnimationStyle"/>
  3287. <!-- Default disabled icon alpha for each menu item that shows an icon. -->
  3288. <attr name="android:itemIconDisabledAlpha"/>
  3289. <!-- Whether space should be reserved in layout when an icon is missing. -->
  3290. <attr format="boolean" name="preserveIconSpacing"/>
  3291. <!-- Drawable for the arrow icon indicating a particular item is a submenu. -->
  3292. <attr format="reference" name="subMenuArrow"/>
  3293. </declare-styleable>
  3294. <declare-styleable name="MockView"><attr format="string" name="mock_label"/><attr format="color" name="mock_labelColor"/><attr format="color" name="mock_labelBackgroundColor"/><attr format="color" name="mock_diagonalsColor"/><attr format="boolean" name="mock_showDiagonals"/><attr format="boolean" name="mock_showLabel"/></declare-styleable>
  3295. <declare-styleable name="Motion"><attr name="animate_relativeTo"/><attr name="transitionEasing"/><attr name="pathMotionArc"/><attr name="motionPathRotate"/><attr name="motionStagger"/><attr name="drawPath"/></declare-styleable>
  3296. <declare-styleable name="MotionHelper"><attr format="boolean" name="onShow"/><attr format="boolean" name="onHide"/></declare-styleable>
  3297. <declare-styleable name="MotionLayout"><attr name="layoutDescription"/><attr format="reference" name="currentState"/><attr name="motionProgress"/><attr format="boolean" name="applyMotionScene"/><attr format="boolean" name="showPaths"/><attr format="enum" name="motionDebug">
  3298. <enum name="NO_DEBUG" value="0"/>
  3299. <enum name="SHOW_PROGRESS" value="1"/>
  3300. <enum name="SHOW_PATH" value="2"/>
  3301. <enum name="SHOW_ALL" value="3"/>
  3302. </attr></declare-styleable>
  3303. <declare-styleable name="MotionScene"><attr name="defaultDuration"/><attr name="layoutDuringTransition"/></declare-styleable>
  3304. <declare-styleable name="MotionTelltales"><attr format="enum" name="telltales_velocityMode">
  3305. <enum name="layout" value="0"/>
  3306. <enum name="postLayout" value="1"/>
  3307. <enum name="staticPostLayout" value="2"/>
  3308. <enum name="staticLayout" value="3"/>
  3309. </attr><attr format="color" name="telltales_tailColor"/><attr format="float" name="telltales_tailScale"/></declare-styleable>
  3310. <declare-styleable name="OnClick"><attr name="targetId"/><attr name="clickAction">
  3311. <flag name="toggle" value="0x0011"/>
  3312. <flag name="transitionToEnd" value="0x0001"/>
  3313. <flag name="transitionToStart" value="0x0010"/>
  3314. <flag name="jumpToEnd" value="0x100"/>
  3315. <flag name="jumpToStart" value="0x1000"/>
  3316. </attr></declare-styleable>
  3317. <declare-styleable name="OnSwipe"><attr format="float" name="dragScale"/><attr format="float" name="dragThreshold"/><attr format="float" name="maxVelocity"/><attr format="float" name="maxAcceleration"/><attr name="dragDirection"/><attr name="touchAnchorId"/><attr name="touchAnchorSide"/><attr format="reference" name="touchRegionId"/><attr format="reference" name="limitBoundsTo"/><attr format="flags" name="nestedScrollFlags">
  3318. <flag name="none" value="0"/>
  3319. <flag name="disablePostScroll" value="1"/>
  3320. <flag name="disableScroll" value="2"/>
  3321. </attr><attr format="boolean" name="moveWhenScrollAtTop"/><attr format="enum" name="onTouchUp">
  3322. <enum name="autoComplete" value="0"/>
  3323. <enum name="autoCompleteToStart" value="1"/>
  3324. <enum name="autoCompleteToEnd" value="2"/>
  3325. <enum name="stop" value="3"/>
  3326. <enum name="decelerate" value="4"/>
  3327. <enum name="decelerateAndComplete" value="5"/>
  3328. </attr></declare-styleable>
  3329. <declare-styleable name="PopupWindow">
  3330. <!-- Whether the popup window should overlap its anchor view. -->
  3331. <attr format="boolean" name="overlapAnchor"/>
  3332. <attr name="android:popupBackground"/>
  3333. <attr name="android:popupAnimationStyle"/>
  3334. </declare-styleable>
  3335. <declare-styleable name="PopupWindowBackgroundState">
  3336. <!-- State identifier indicating the popup will be above the anchor. -->
  3337. <attr format="boolean" name="state_above_anchor"/>
  3338. </declare-styleable>
  3339. <declare-styleable name="PropertySet"><attr name="android:visibility"/><attr name="visibilityMode"/><attr format="float" name="android:alpha"/><attr name="motionProgress"/><attr name="layout_constraintTag"/></declare-styleable>
  3340. <declare-styleable name="RecycleListView">
  3341. <!-- Bottom padding to use when no buttons are present. -->
  3342. <attr format="dimension" name="paddingBottomNoButtons"/>
  3343. <!-- Top padding to use when no title is present. -->
  3344. <attr format="dimension" name="paddingTopNoTitle"/>
  3345. </declare-styleable>
  3346. <declare-styleable name="RecyclerView">
  3347. <!-- Class name of the Layout Manager to be used.
  3348. <p/>
  3349. The class must extandroidx.recyclerview.widget.RecyclerViewView$LayoutManager
  3350. and have either a default constructor or constructor with the signature
  3351. (android.content.Context, android.util.AttributeSet, int, int).
  3352. <p/>
  3353. If the name starts with a '.', application package is prefixed.
  3354. Else, if the name contains a '.', the classname is assumed to be a full class name.
  3355. Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. -->
  3356. <attr format="string" name="layoutManager"/>
  3357. <!-- ============================= -->
  3358. <!-- Attributes for Layout Manager -->
  3359. <!-- ============================= -->
  3360. <eat-comment/>
  3361. <attr name="android:orientation"/>
  3362. <attr name="android:descendantFocusability"/>
  3363. <attr format="integer" name="spanCount"/>
  3364. <attr format="boolean" name="reverseLayout"/>
  3365. <attr format="boolean" name="stackFromEnd"/>
  3366. <attr format="boolean" name="fastScrollEnabled"/>
  3367. <attr format="reference" name="fastScrollVerticalThumbDrawable"/>
  3368. <attr format="reference" name="fastScrollVerticalTrackDrawable"/>
  3369. <attr format="reference" name="fastScrollHorizontalThumbDrawable"/>
  3370. <attr format="reference" name="fastScrollHorizontalTrackDrawable"/>
  3371. </declare-styleable>
  3372. <declare-styleable name="SearchView">
  3373. <!-- The layout to use for the search view. -->
  3374. <attr format="reference" name="layout"/>
  3375. <!-- The default state of the SearchView. If true, it will be iconified when not in
  3376. use and expanded when clicked. -->
  3377. <attr format="boolean" name="iconifiedByDefault"/>
  3378. <!-- An optional maximum width of the SearchView. -->
  3379. <attr name="android:maxWidth"/>
  3380. <!-- An optional user-defined query hint string to be displayed in the empty query field. -->
  3381. <attr format="string" name="queryHint"/>
  3382. <!-- Default query hint used when {@code queryHint} is undefined and
  3383. the search view's {@code SearchableInfo} does not provide a hint. -->
  3384. <attr format="string" name="defaultQueryHint"/>
  3385. <!-- The IME options to set on the query text field. -->
  3386. <attr name="android:imeOptions"/>
  3387. <!-- The input type to set on the query text field. -->
  3388. <attr name="android:inputType"/>
  3389. <!-- Close button icon -->
  3390. <attr format="reference" name="closeIcon"/>
  3391. <!-- Go button icon -->
  3392. <attr format="reference" name="goIcon"/>
  3393. <!-- Search icon -->
  3394. <attr format="reference" name="searchIcon"/>
  3395. <!-- Search icon displayed as a text field hint -->
  3396. <attr format="reference" name="searchHintIcon"/>
  3397. <!-- Voice button icon -->
  3398. <attr format="reference" name="voiceIcon"/>
  3399. <!-- Commit icon shown in the query suggestion row -->
  3400. <attr format="reference" name="commitIcon"/>
  3401. <!-- Layout for query suggestion rows -->
  3402. <attr format="reference" name="suggestionRowLayout"/>
  3403. <!-- Background for the section containing the search query -->
  3404. <attr format="reference" name="queryBackground"/>
  3405. <!-- Background for the section containing the action (e.g. voice search) -->
  3406. <attr format="reference" name="submitBackground"/>
  3407. <attr name="android:focusable"/>
  3408. </declare-styleable>
  3409. <declare-styleable name="SimpleDraweeView" parent="GenericDraweeHierarchy">
  3410. <!-- An image uri . -->
  3411. <attr format="string" name="actualImageUri"/>
  3412. <!-- An image reference -->
  3413. <attr format="reference" name="actualImageResource"/>
  3414. <!-- Attributes inherited from GenericDraweeHierarchy -->
  3415. <eat-comment/>
  3416. <!-- Fade duration in milliseconds. -->
  3417. <attr name="fadeDuration"/>
  3418. <!-- Aspect ratio (width / height) of the view, not necessarily of the images. -->
  3419. <attr name="viewAspectRatio"/>
  3420. <!-- Image branches -
  3421. Scale-type values must match those in GenericDraweeHierarchyInflater.getScaleTypeFromXml.
  3422. (GenericDraweeHierarchyInflater.java).
  3423. For drawables that should not be scaled, such as those with the android:tileMode
  3424. attribute set, use the value 'none'. -->
  3425. <!-- A drawable or color to be be used as a placeholder. -->
  3426. <attr name="placeholderImage"/>
  3427. <!-- Scale type of the placeholder image. Ignored if placeholderImage is not specified. -->
  3428. <attr name="placeholderImageScaleType"/>
  3429. <!-- A drawable to be be used as a retry image. -->
  3430. <attr name="retryImage"/>
  3431. <!-- Scale type of the retry image. Ignored if retryImage is not specified. -->
  3432. <attr name="retryImageScaleType"/>
  3433. <!-- A drawable to be be used as a failure image. -->
  3434. <attr name="failureImage"/>
  3435. <!-- Scale type of the failure image. Ignored if failureImage is not specified. -->
  3436. <attr name="failureImageScaleType"/>
  3437. <!-- A drawable to be be used as a progress bar. -->
  3438. <attr name="progressBarImage"/>
  3439. <!-- Scale type of the progress bar. Ignored if progressBarImage is not specified. -->
  3440. <attr name="progressBarImageScaleType"/>
  3441. <!-- Progress bar Auto Rotate interval in milliseconds -->
  3442. <attr name="progressBarAutoRotateInterval"/>
  3443. <!-- Scale type of the actual image. -->
  3444. <attr name="actualImageScaleType"/>
  3445. <!-- A drawable or color to be used as a background. -->
  3446. <attr name="backgroundImage"/>
  3447. <!-- A drawable or color to be used as an overlay. -->
  3448. <attr name="overlayImage"/>
  3449. <!-- A drawable or color to be used as a pressed-state-overlay -->
  3450. <attr name="pressedStateOverlayImage"/>
  3451. <!-- Rounding params -
  3452. Declares attributes for rounding shape, mode and border. -->
  3453. <!-- Round as circle. -->
  3454. <attr name="roundAsCircle"/>
  3455. <!-- Rounded corner radius. Ignored if roundAsCircle is used. -->
  3456. <attr name="roundedCornerRadius"/>
  3457. <!-- Round the top-left corner. Ignored if roundAsCircle is used. -->
  3458. <attr name="roundTopLeft"/>
  3459. <!-- Round the top-right corner. Ignored if roundAsCircle is used. -->
  3460. <attr name="roundTopRight"/>
  3461. <!-- Round the bottom-right corner. Ignored if roundAsCircle is used. -->
  3462. <attr name="roundBottomRight"/>
  3463. <!-- Round the bottom-left corner. Ignored if roundAsCircle is used. -->
  3464. <attr name="roundBottomLeft"/>
  3465. <!-- Round the top-start edge. Ignored if roundAsCircle is used. -->
  3466. <attr name="roundTopStart"/>
  3467. <!-- Round the top-end edge. Ignored if roundAsCircle is used. -->
  3468. <attr name="roundTopEnd"/>
  3469. <!-- Round the bottom-start edge. Ignored if roundAsCircle is used. -->
  3470. <attr name="roundBottomStart"/>
  3471. <!-- Round the bottom-end edge. Ignored if roundAsCircle is used. -->
  3472. <attr name="roundBottomEnd"/>
  3473. <!-- Round by overlying color. -->
  3474. <attr name="roundWithOverlayColor"/>
  3475. <!-- Rounding border width-->
  3476. <attr name="roundingBorderWidth"/>
  3477. <!-- Rounding border color -->
  3478. <attr name="roundingBorderColor"/>
  3479. <!-- Rounding border padding -->
  3480. <attr name="roundingBorderPadding"/>
  3481. </declare-styleable>
  3482. <declare-styleable name="Spinner">
  3483. <!-- The prompt to display when the spinner's dialog is shown. -->
  3484. <attr name="android:prompt"/>
  3485. <!-- Theme to use for the drop-down or dialog popup window. -->
  3486. <attr name="popupTheme"/>
  3487. <!-- Background drawable to use for the dropdown in spinnerMode="dropdown". -->
  3488. <attr name="android:popupBackground"/>
  3489. <!-- Width of the dropdown in spinnerMode="dropdown". -->
  3490. <attr name="android:dropDownWidth"/>
  3491. <!-- Reference to an array resource that will populate the Spinner. -->
  3492. <attr name="android:entries"/>
  3493. </declare-styleable>
  3494. <declare-styleable name="State"><attr name="android:id"/><attr format="reference" name="constraints"/></declare-styleable>
  3495. <declare-styleable name="StateListDrawable">
  3496. <!-- Indicates whether the drawable should be initially visible. -->
  3497. <attr name="android:visible"/>
  3498. <!-- If true, allows the drawable's padding to change based on the
  3499. current state that is selected. If false, the padding will
  3500. stay the same (based on the maximum padding of all the states).
  3501. Enabling this feature requires that the owner of the drawable
  3502. deal with performing layout when the state changes, which is
  3503. often not supported. -->
  3504. <attr name="android:variablePadding"/>
  3505. <!-- If true, the drawable's reported internal size will remain
  3506. constant as the state changes; the size is the maximum of all
  3507. of the states. If false, the size will vary based on the
  3508. current state. -->
  3509. <attr name="android:constantSize"/>
  3510. <!-- Enables or disables dithering of the bitmap if the bitmap does not have the
  3511. same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
  3512. an RGB 565 screen). -->
  3513. <attr name="android:dither"/>
  3514. <!-- Amount of time (in milliseconds) to fade in a new state drawable. -->
  3515. <attr name="android:enterFadeDuration"/>
  3516. <!-- Amount of time (in milliseconds) to fade out an old state drawable. -->
  3517. <attr name="android:exitFadeDuration"/>
  3518. <!-- Indicates if the drawable needs to be mirrored when its layout direction is
  3519. RTL (right-to-left). -->
  3520. <!--<attr name="autoMirrored"/>-->
  3521. </declare-styleable>
  3522. <declare-styleable name="StateListDrawableItem">
  3523. <!-- Reference to a drawable resource to use for the state. If not
  3524. given, the drawable must be defined by the first child tag. -->
  3525. <attr name="android:drawable"/>
  3526. </declare-styleable>
  3527. <declare-styleable name="StateSet"><attr format="reference" name="defaultState"/></declare-styleable>
  3528. <declare-styleable name="SwitchButton">
  3529. <attr format="reference|dimension" name="sb_shadow_radius"/>
  3530. <attr format="reference|dimension" name="sb_shadow_offset"/>
  3531. <attr format="reference|color" name="sb_shadow_color"/>
  3532. <attr format="reference|color" name="sb_uncheck_color"/>
  3533. <attr format="reference|color" name="sb_checked_color"/>
  3534. <attr format="reference|dimension" name="sb_border_width"/>
  3535. <attr format="reference|color" name="sb_checkline_color"/>
  3536. <attr format="reference|dimension" name="sb_checkline_width"/>
  3537. <attr format="reference|color" name="sb_uncheckcircle_color"/>
  3538. <attr format="reference|dimension" name="sb_uncheckcircle_width"/>
  3539. <attr format="reference|dimension" name="sb_uncheckcircle_radius"/>
  3540. <attr format="reference|boolean" name="sb_checked"/>
  3541. <attr format="reference|boolean" name="sb_shadow_effect"/>
  3542. <attr format="reference|integer" name="sb_effect_duration"/>
  3543. <attr format="reference|color" name="sb_button_color"/>
  3544. <attr format="reference|boolean" name="sb_show_indicator"/>
  3545. <attr format="reference|color" name="sb_background"/>
  3546. <attr format="reference|boolean" name="sb_enable_effect"/>
  3547. </declare-styleable>
  3548. <declare-styleable name="SwitchCompat">
  3549. <!-- Drawable to use as the "thumb" that switches back and forth. -->
  3550. <attr name="android:thumb"/>
  3551. <!-- Tint to apply to the thumb drawable. -->
  3552. <attr format="color" name="thumbTint"/>
  3553. <!-- Blending mode used to apply the thumb tint. -->
  3554. <attr name="thumbTintMode">
  3555. <!-- The tint is drawn on top of the drawable.
  3556. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  3557. <enum name="src_over" value="3"/>
  3558. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  3559. color channels are thrown out. [Sa * Da, Sc * Da] -->
  3560. <enum name="src_in" value="5"/>
  3561. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  3562. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  3563. <enum name="src_atop" value="9"/>
  3564. <!-- Multiplies the color and alpha channels of the drawable with those of
  3565. the tint. [Sa * Da, Sc * Dc] -->
  3566. <enum name="multiply" value="14"/>
  3567. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  3568. <enum name="screen" value="15"/>
  3569. <!-- Combines the tint and drawable color and alpha channels, clamping the
  3570. result to valid color values. Saturate(S + D) -->
  3571. <enum name="add" value="16"/>
  3572. </attr>
  3573. <!-- Drawable to use as the "track" that the switch thumb slides within. -->
  3574. <attr format="reference" name="track"/>
  3575. <!-- Tint to apply to the track. -->
  3576. <attr format="color" name="trackTint"/>
  3577. <!-- Blending mode used to apply the track tint. -->
  3578. <attr name="trackTintMode">
  3579. <!-- The tint is drawn on top of the drawable.
  3580. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  3581. <enum name="src_over" value="3"/>
  3582. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  3583. color channels are thrown out. [Sa * Da, Sc * Da] -->
  3584. <enum name="src_in" value="5"/>
  3585. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  3586. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  3587. <enum name="src_atop" value="9"/>
  3588. <!-- Multiplies the color and alpha channels of the drawable with those of
  3589. the tint. [Sa * Da, Sc * Dc] -->
  3590. <enum name="multiply" value="14"/>
  3591. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  3592. <enum name="screen" value="15"/>
  3593. <!-- Combines the tint and drawable color and alpha channels, clamping the
  3594. result to valid color values. Saturate(S + D) -->
  3595. <enum name="add" value="16"/>
  3596. </attr>
  3597. <!-- Text to use when the switch is in the checked/"on" state. -->
  3598. <attr name="android:textOn"/>
  3599. <!-- Text to use when the switch is in the unchecked/"off" state. -->
  3600. <attr name="android:textOff"/>
  3601. <!-- Amount of padding on either side of text within the switch thumb. -->
  3602. <attr format="dimension" name="thumbTextPadding"/>
  3603. <!-- TextAppearance style for text displayed on the switch thumb. -->
  3604. <attr format="reference" name="switchTextAppearance"/>
  3605. <!-- Minimum width for the switch component -->
  3606. <attr format="dimension" name="switchMinWidth"/>
  3607. <!-- Minimum space between the switch and caption text -->
  3608. <attr format="dimension" name="switchPadding"/>
  3609. <!-- Whether to split the track and leave a gap for the thumb drawable. -->
  3610. <attr format="boolean" name="splitTrack"/>
  3611. <!-- Whether to draw on/off text. -->
  3612. <attr format="boolean" name="showText"/>
  3613. </declare-styleable>
  3614. <declare-styleable name="TextAppearance">
  3615. <attr name="android:textSize"/>
  3616. <attr name="android:textColor"/>
  3617. <attr name="android:textColorHint"/>
  3618. <attr name="android:textColorLink"/>
  3619. <attr name="android:textStyle"/>
  3620. <attr name="android:typeface"/>
  3621. <attr name="android:fontFamily"/>
  3622. <attr name="fontFamily"/>
  3623. <attr name="textAllCaps"/>
  3624. <attr name="android:shadowColor"/>
  3625. <attr name="android:shadowDy"/>
  3626. <attr name="android:shadowDx"/>
  3627. <attr name="android:shadowRadius"/>
  3628. </declare-styleable>
  3629. <declare-styleable name="Toolbar">
  3630. <attr format="reference" name="titleTextAppearance"/>
  3631. <attr format="reference" name="subtitleTextAppearance"/>
  3632. <attr name="title"/>
  3633. <attr name="subtitle"/>
  3634. <attr name="android:gravity"/>
  3635. <!-- Specifies extra space on the left, start, right and end sides
  3636. of the toolbar's title. Margin values should be positive. -->
  3637. <attr format="dimension" name="titleMargin"/>
  3638. <!-- Specifies extra space on the start side of the toolbar's title.
  3639. If both this attribute and titleMargin are specified, then this
  3640. attribute takes precedence. Margin values should be positive. -->
  3641. <attr format="dimension" name="titleMarginStart"/>
  3642. <!-- Specifies extra space on the end side of the toolbar's title.
  3643. If both this attribute and titleMargin are specified, then this
  3644. attribute takes precedence. Margin values should be positive. -->
  3645. <attr format="dimension" name="titleMarginEnd"/>
  3646. <!-- Specifies extra space on the top side of the toolbar's title.
  3647. If both this attribute and titleMargin are specified, then this
  3648. attribute takes precedence. Margin values should be positive. -->
  3649. <attr format="dimension" name="titleMarginTop"/>
  3650. <!-- Specifies extra space on the bottom side of the toolbar's title.
  3651. If both this attribute and titleMargin are specified, then this
  3652. attribute takes precedence. Margin values should be positive. -->
  3653. <attr format="dimension" name="titleMarginBottom"/>
  3654. <!-- {@deprecated Use titleMargin} -->
  3655. <attr format="dimension" name="titleMargins"/>
  3656. <attr name="contentInsetStart"/>
  3657. <attr name="contentInsetEnd"/>
  3658. <attr name="contentInsetLeft"/>
  3659. <attr name="contentInsetRight"/>
  3660. <attr name="contentInsetStartWithNavigation"/>
  3661. <attr name="contentInsetEndWithActions"/>
  3662. <attr format="dimension" name="maxButtonHeight"/>
  3663. <attr name="buttonGravity">
  3664. <!-- Push object to the top of its container, not changing its size. -->
  3665. <flag name="top" value="0x30"/>
  3666. <!-- Push object to the bottom of its container, not changing its size. -->
  3667. <flag name="bottom" value="0x50"/>
  3668. </attr>
  3669. <!-- Icon drawable to use for the collapse button. -->
  3670. <attr format="reference" name="collapseIcon"/>
  3671. <!-- Text to set as the content description for the collapse button. -->
  3672. <attr format="string" name="collapseContentDescription"/>
  3673. <!-- Reference to a theme that should be used to inflate popups
  3674. shown by widgets in the toolbar. -->
  3675. <attr name="popupTheme"/>
  3676. <!-- Icon drawable to use for the navigation button located at
  3677. the start of the toolbar. -->
  3678. <attr format="reference" name="navigationIcon"/>
  3679. <!-- Text to set as the content description for the navigation button
  3680. located at the start of the toolbar. -->
  3681. <attr format="string" name="navigationContentDescription"/>
  3682. <!-- Drawable to set as the logo that appears at the starting side of
  3683. the Toolbar, just after the navigation button. -->
  3684. <attr name="logo"/>
  3685. <!-- A content description string to describe the appearance of the
  3686. associated logo image. -->
  3687. <attr format="string" name="logoDescription"/>
  3688. <!-- A color to apply to the title string. -->
  3689. <attr format="color" name="titleTextColor"/>
  3690. <!-- A color to apply to the subtitle string. -->
  3691. <attr format="color" name="subtitleTextColor"/>
  3692. <attr name="android:minHeight"/>
  3693. </declare-styleable>
  3694. <declare-styleable name="Transform"><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="android:transformPivotX"/><attr name="android:transformPivotY"/><attr format="dimension" name="android:translationX"/><attr format="dimension" name="android:translationY"/><attr format="dimension" name="android:translationZ"/></declare-styleable>
  3695. <declare-styleable name="Transition"><attr name="android:id"/><attr format="reference" name="constraintSetStart"/><attr format="reference" name="constraintSetEnd"/><attr format="boolean" name="transitionDisable"/><attr name="layoutDuringTransition"/><attr name="pathMotionArc"/><attr format="enum" name="autoTransition">
  3696. <enum name="none" value="0"/>
  3697. <enum name="jumpToStart" value="1"/>
  3698. <enum name="jumpToEnd" value="2"/>
  3699. <enum name="animateToStart" value="3"/>
  3700. <enum name="animateToEnd" value="4"/>
  3701. </attr><attr format="string|reference|enum" name="motionInterpolator">
  3702. <enum name="easeInOut" value="0"/>
  3703. <enum name="easeIn" value="1"/>
  3704. <enum name="easeOut" value="2"/>
  3705. <enum name="linear" value="3"/>
  3706. <enum name="bounce" value="5"/>
  3707. </attr><attr name="duration"/><attr format="float" name="staggered"/><attr name="transitionFlags">
  3708. <flag name="none" value="0"/>
  3709. <flag name="beginOnFirstDraw" value="1"/>
  3710. />
  3711. </attr></declare-styleable>
  3712. <declare-styleable name="Variant"><attr format="dimension" name="region_widthLessThan"/><attr format="dimension" name="region_widthMoreThan"/><attr format="dimension" name="region_heightLessThan"/><attr format="dimension" name="region_heightMoreThan"/><attr name="constraints"/></declare-styleable>
  3713. <declare-styleable name="View">
  3714. <!-- Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. -->
  3715. <attr format="dimension" name="paddingStart"/>
  3716. <!-- Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. -->
  3717. <attr format="dimension" name="paddingEnd"/>
  3718. <!-- Boolean that controls whether a view can take focus. By default the user can not
  3719. move focus to a view; by setting this attribute to true the view is
  3720. allowed to take focus. This value does not impact the behavior of
  3721. directly calling {@link android.view.View#requestFocus}, which will
  3722. always request focus regardless of this view. It only impacts where
  3723. focus navigation will try to move focus. -->
  3724. <attr name="android:focusable"/>
  3725. <!-- Deprecated. -->
  3726. <attr format="reference" name="theme"/>
  3727. <!-- Specifies a theme override for a view. When a theme override is set, the
  3728. view will be inflated using a {@link android.content.Context} themed with
  3729. the specified resource. -->
  3730. <attr name="android:theme"/>
  3731. </declare-styleable>
  3732. <declare-styleable name="ViewBackgroundHelper">
  3733. <attr name="android:background"/>
  3734. <!-- Tint to apply to the background. -->
  3735. <attr format="color" name="backgroundTint"/>
  3736. <!-- Blending mode used to apply the background tint. -->
  3737. <attr name="backgroundTintMode">
  3738. <!-- The tint is drawn on top of the drawable.
  3739. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
  3740. <enum name="src_over" value="3"/>
  3741. <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
  3742. color channels are thrown out. [Sa * Da, Sc * Da] -->
  3743. <enum name="src_in" value="5"/>
  3744. <!-- The tint is drawn above the drawable, but with the drawable’s alpha
  3745. channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
  3746. <enum name="src_atop" value="9"/>
  3747. <!-- Multiplies the color and alpha channels of the drawable with those of
  3748. the tint. [Sa * Da, Sc * Dc] -->
  3749. <enum name="multiply" value="14"/>
  3750. <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
  3751. <enum name="screen" value="15"/>
  3752. <!-- Combines the tint and icon color and alpha channels, clamping the
  3753. result to valid color values. Saturate(S + D) -->
  3754. <enum name="add" value="16"/>
  3755. </attr>
  3756. </declare-styleable>
  3757. <declare-styleable name="ViewStubCompat">
  3758. <!-- Supply an identifier for the layout resource to inflate when the ViewStub
  3759. becomes visible or when forced to do so. The layout resource must be a
  3760. valid reference to a layout. -->
  3761. <attr name="android:layout"/>
  3762. <!-- Overrides the id of the inflated View with this value. -->
  3763. <attr name="android:inflatedId"/>
  3764. <attr name="android:id"/>
  3765. </declare-styleable>
  3766. </resources>