Kotlin:如何更改切换按钮的背景颜色?

时间:2020-03-25 07:09:35

标签: kotlin togglebutton

我希望更改“切换按钮”的背景。 我想有两种方式,在xml和代码中。.

我已经成功地使用xml这样的XML;

<ToggleButton
            android:id="@+id/downloadButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textOff="Download"
            android:textOn="Downloaded"
            android:background="@drawable/toggle_bg_sector"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

toggle_bg_sector.xml

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

toggle_download.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/blue" />
</shape>

toggle_downloaded.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/gray" />
</shape>

效果很好。 但是,我想知道以编程方式进行此操作。

我在onCreate里面做的。

downloadButton.setOnCheckedChangeListener { _: CompoundButton?, isChecked ->
            if (isChecked)
                downloadButton.setBackground(R.drawable.toggle_download)
            else
                downloadButton.setBackground(R.drawable.toggle_downloaded)
        }

但是,我在R.drawable.toggle_download上收到了错误消息。

enter image description here

有人可以解释吗?

1 个答案:

答案 0 :(得分:0)

您还可以像这样在MainActivity中更改颜色

downloadButton.setOnCheckedChangeListener { _: CompoundButton?, isChecked ->
        if (isChecked)
            downloadButton.setBackground(R.drawable.red)
        else
             downloadButton.setBackground(R.drawable.blue)
    }

通过这种方式,您可以轻松更改切换按钮的背景颜色