android–SwitchCompat改变颜色

android–SwitchCompat改变颜色,第1张

概述我需要更改SwitchCompat的轨道颜色.我试过this,但它对我没用.这是我的XML文件的代码<android.support.v7.widget.SwitchCompatandroid:id="@+id/sc_push"style="@style/switchStyle"android:layout_width="wrap_content"android:layout_height=&qu

我需要更改SwitchCompat的轨道颜色.
我试过this,但它对我没用.
这是我的XML文件的代码

<androID.support.v7.Widget.SwitchCompat    androID:ID="@+ID/sc_push"        androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content"    androID:layout_alignParentRight="true"    androID:layout_centerVertical="true"    androID:theme="@style/switchStyle"    app:theme="@style/switchStyle" />

这是我的style.xml文件

<style name="switchStyle">    <item name="colorControlActivated">@color/red</item>    <item name="androID:colorForeground">@color/gray</item></style>

看来问题是什么?

另外,我无法更改活动的颜色或基本应用程序的颜色.我必须改变这个单一视图的颜色.

解决方法:

试试这个代码.

 <style name="Apptheme" parent="theme.AppCompat.light.NoActionbar">       ...       <!-- Active thumb color & Active track color(30% transparency) -->       <item name="colorControlActivated">@color/theme</item>       <!-- Inactive thumb color -->       <item name="colorSwitchThumbnormal">@color/grey300</item>       <!-- Inactive track color(30% transparency) -->       <item name="androID:colorForeground">@color/grey600</item>       ...    </style>
总结

以上是内存溢出为你收集整理的android – SwitchCompat改变颜色全部内容,希望文章能够帮你解决android – SwitchCompat改变颜色所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1116462.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存