带有图像的单一材质切换按钮

时间:2020-09-28 08:04:45

标签: android material-design android-button material-components-android

我在我的应用程序中使用Google Material Design库,但感到惊讶的是它没有Toggle按钮。有toggle button group,但是如果我需要一个按钮来打开和关闭该怎么办。我的用例是在打开时显示一个图像,在关闭时显示另一个图像。我尝试使用开关来做到这一点,但必须进行许多复杂的自定义。有什么方法可以将简单的“材质按钮”用作切换按钮?

1 个答案:

答案 0 :(得分:1)

您可以使用类似的内容:

<com.google.android.material.button.MaterialButton
    android:id="@+id/toogleButtton"
    style="@style/ToggleButton"
    android:checkable="true"
    android:layout_width="48dp"
    android:layout_height="48dp"
    app:icon="@drawable/ic_add_24px"/>

   toogleButtton.setIcon(createHeaderToggleDrawable(this))
   toogleButtton.isChecked = true

    // Create StateListDrawable programmatically
    private fun createHeaderToggleDrawable(context: Context): Drawable {
        val toggleDrawable = StateListDrawable()
        toggleDrawable.addState(
            intArrayOf(android.R.attr.state_checked),
            AppCompatResources.getDrawable(context, R.drawable.xxx)
        )
        toggleDrawable.addState(
            intArrayOf(),
            AppCompatResources.getDrawable(context, R.drawable.xxxx)
        )
        return toggleDrawable
    }

根据样式自定义颜色:

<style name="ToggleButton" parent="Widget.MaterialComponents.Button.TextButton">
    <item name="iconTint">?attr/colorPrimary</item>
    <item name="android:insetTop">0dp</item>
    <item name="android:insetBottom">0dp</item>
    <item name="android:padding">12dp</item>
    <item name="rippleColor">@color/mtrl_btn_ripple_color</item>
</style>

enter image description here