我试过 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改变颜色所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)