0

我想制作一个自定义切换按钮,例如,当我单击按钮时,星星会亮起,当我再次单击时,星星会熄灭。我尝试了一些代码,但他们将按钮更改为图像,当我单击它时,图像会更改。我的意思是,没有按钮,它只是一个图像。

我希望图像在按钮内,就像默认的切换按钮一样,我只需要更改其中的图像。

我该怎么做?

谢谢

4

1 回答 1

6

在 res/drawable 中创建 toggle_selector.xml

<?xml version="1.0" encoding="utf-8"?> 
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:drawable="@drawable/toggle_on" android:state_checked="true"/>
  <item android:drawable="@drawable/toggle_off" android:state_checked="false"/>
</selector>

将选择器应用于切换按钮

<ToggleButton
            android:id="@+id/chkState"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/toggle_selector"
            android:textOff=""
            android:textOn=""/>

注意:为了删除我在上面的代码中使用的文本

textOff=""
textOn=""

参考https://stackoverflow.com/a/20300753/712960

于 2014-06-22T13:23:57.277 回答