如果我有以下 MvxListView 定义的视图:
<Mvx.MvxListView
android:layout_marginTop="10px"
android:textFilterEnabled="true"
android:choiceMode="singleChoice"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textSize="20dp"
local:MvxBind="ItemsSource Data; ItemClick LaunchCapabilityViewCmd"
local:MvxItemTemplate="@layout/itemtemplate1" />
不是将 MvxItemTemplate 硬编码为 itemtemplate1,而是可以根据我要在此视图中显示的数据类型动态设置它?我正在寻找与 WPF 的 DateTemplateSelector 类似的功能。
TIA。