【发布时间】:2021-03-13 23:15:30
【问题描述】:
我在MaterialButtonToggleGroup 中使用MaterialButton:
<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" />
...
arrtribute android:checked 不起作用,我可以在Activity 或Fragment 中使用setCheck(),但要使用DataBniding,我必须使用XML 属性。有什么帮助吗?
【问题讨论】:
-
能不能换成
app:checked看看 -
@Zain 它无法编译。
标签: android android-xml android-databinding android-binding-adapter materialbutton