我在MaterialButton
内部使用MaterialButtonToggleGroup
:
<com.google.android.material.button.MaterialButtonToggleGroup
android:id="@+id/majors_toggleGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp">
<com.google.android.material.button.MaterialButton
android:id="@+id/cs_button"
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true" //doesn't work
android:text="CS" />
...
该 arrtributeandroid:checked
不起作用,我可以使用setCheck()
in Activity
or Fragment
,但要使用 DataBniding 我必须使用 XML 属性。有什么帮助吗?