是否可以在MvxExpandableListView中自定义组点击事件?我试图通过提供命令但没有运气来使用GroupClick。如果没有可用的孩子,我想使用GroupClick事件。
答案 0 :(得分:1)
最后,我能够使它发挥作用。
不是在代码中设置GroupClick属性,而是在xml中绑定此属性并提供相应的命令来绑定它。
<Mvx.MvxExpandableListView
android:id="@+id/toclist"
android:layout_width="match_parent"
android:layout_height="match_parent"
local:MvxBind="ItemsSource SegmentTasks; ItemClick SelectTicketItemCommand; GroupClick SelectTicketParentCommand"
local:MvxItemTemplate="@layout/ticketlistchildview"
local:GroupItemTemplate="@layout/listticketitem"
android:background="@android:color/white"
android:groupIndicator="@null"
android:childDivider="#00000000"/>