Advertisement

Android 黑白模式切换后 文字颜色设置

阅读量:

values 包中
属性配置文件.xml

复制代码
    <?xml version="1.0" encoding="utf-8"?>
    <resources>
       + <attr name="cancle_search" format="color" />
    </resources>
    
    
    

themes.xml

复制代码
      <style name="Theme.Testdelete" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
    	...
        <!-- Customize your theme here. -->
      +  <item name="cancle_search">@color/text_search_color</item>
    </style>
    
    

colos.xml

复制代码
      <color name="text_search_color">#FF000000</color>
    
    

values-night目录中
themes.xml文件

复制代码
     <!-- Base application theme. -->

全部评论 (0)

还没有任何评论哟~