Android的Material Components中的切换按钮

时间:2018-09-09 18:41:19

标签: android material-design togglebutton

材料设计指南建议根据此链接使用切换按钮:

https://material.io/design/components/buttons.html#toggle-button

在哪里可以找到适用于Android的组件。我只能找到MaterialButton。它有切换行为吗?还是我还缺少其他组件?

https://material.io/develop/android/components/material-button/

1 个答案:

答案 0 :(得分:0)

您可以使用MaterialButtonToggleGroup组件。

        <com.google.android.material.button.MaterialButtonToggleGroup
            android:id="@+id/toggleButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
            
            <Button
                android:id="@+id/button1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Button"
                style="?attr/materialButtonOutlinedStyle"
                />

           <!-- ....  -->

        </com.google.android.material.button.MaterialButtonToggleGroup>

enter image description here