android-如何制作自定义切换按钮

时间:2014-06-22 13:00:01

标签: android android-button android-togglebutton

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

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

我该怎么办?

谢谢

1 个答案:

答案 0 :(得分: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