gpt4 book ai didi

java - 如何设置 ToggleButton 的样式以使背景颜色为白色?

转载 作者:行者123 更新时间:2023-11-29 20:55:47 31 4
gpt4 key购买 nike

我试过以下方法

View view = (View) findViewById (id);
view.setBackgroundColor (Color.WHITE);

以上破坏了 ToggleButton 的属性。我无法再确定它是 TextView 还是 ToggleButton。单击按钮会产生 onClick,但显示所选栏的 UI 更改不存在。

ToggleButton btn = (ToggleButton) findViewById (id);
btn.setBackgroundColor (Color.WHITE);

这也会产生同样的错误。使用 XML 样式也会导致同样的错误。我正在使用 Android Studio v1.0.2,目标是 Lollipop 模拟器。我在 4.4.4 移动版中尝试了同样的事情。我看到了相同的行为。

我不想使用图像。请不要向我建议。我已经浏览了 stackoverflow 中可用的线程 - 对我没有任何用处。

谁能帮帮我?

最佳答案

这将是像这样的可绘制对象中的 xml 文件,您希望它作为切换按钮的背景。您需要将各种颜色添加到 res/values 中的颜色文件。请参阅:https://developer.android.com/samples/MediaRouter/res/values/colors.html

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

<item android:state_checked="true" android:state_pressed="true">
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:top="2dp">
<shape android:shape="rectangle">
<solid android:color="@color/toggle_button_pressed" />
</shape>
</item>
<item android:top="2dp" android:left="10dp" android:right="10dp">
<shape android:shape="rectangle">
<solid android:color="@color/toggle_button_checked" />
</shape>
</item>
<item android:top="2dp" android:bottom="2dp" android:left="10dp" android:right="10dp">
<shape android:shape="rectangle">
<solid android:color="@color/toggle_button_pressed" />
</shape>
</item>
</layer-list>
</item>

<item android:state_pressed="true">
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:top="2dp">
<shape android:shape="rectangle">
<solid android:color="@color/toggle_button_pressed" />
</shape>
</item>
<item android:top="2dp" android:left="10dp" android:right="10dp">
<shape android:shape="rectangle">
<solid android:color="@color/toggle_button_unchecked" />
</shape>
</item>
<item android:top="2dp" android:bottom="2dp" android:left="10dp" android:right="10dp">
<shape android:shape="rectangle">
<solid android:color="@color/toggle_button_pressed" />
</shape>
</item>
</layer-list>
</item>

<item android:state_checked="true">
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape android:shape="rectangle">
<solid android:color="@color/toggle_button_shadow" />
</shape>
</item>
<item android:bottom="2dp">
<shape android:shape="rectangle">
<solid android:color="@color/toggle_button_unpressed" />
</shape>
</item>
<item android:bottom="2dp" android:left="10dp" android:right="10dp">
<shape android:shape="rectangle">
<solid android:color="@color/toggle_button_checked" />
</shape>
</item>
<item android:bottom="4dp" android:left="10dp" android:right="10dp">
<shape android:shape="rectangle">
<solid android:color="@color/toggle_button_unpressed" />
</shape>
</item>
</layer-list>
</item>

<item>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape android:shape="rectangle">
<solid android:color="@color/toggle_button_shadow" />
</shape>
</item>
<item android:bottom="2dp">
<shape android:shape="rectangle">
<solid android:color="@color/toggle_button_unpressed" />
</shape>
</item>
<item android:bottom="2dp" android:left="10dp" android:right="10dp">
<shape android:shape="rectangle">
<solid android:color="@color/toggle_button_unchecked" />
</shape>
</item>
<item android:bottom="4dp" android:left="10dp" android:right="10dp">
<shape android:shape="rectangle">
<solid android:color="@color/toggle_button_unpressed" />
</shape>
</item>
</layer-list>
</item>

</selector>

我还没有检查过,所以我不知道它是否有效。如果我犯了任何错误,请告诉我。

关于java - 如何设置 ToggleButton 的样式以使背景颜色为白色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27798429/

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