gpt4 book ai didi

android - SwitchCompat 改变颜色

转载 作者:太空宇宙 更新时间:2023-11-03 11:39:25 24 4
gpt4 key购买 nike

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

<android.support.v7.widget.SwitchCompat
android:id="@+id/sc_push"
style="@style/switchStyle"
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>

问题是什么?

此外,我无法更改 Activity 的颜色或基本应用程序的颜色。我必须为这个单一 View 更改颜色。

最佳答案

试试这段代码。

 <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 改变颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32327920/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com