MVVMCross Spinner 显示 Object 参考

MVVMCross Spinner Showing Object Reference

绑定 MvvmCross.Binding.Droid.Views.MvxSpinner 与数据时出现问题。

微调器下拉菜单显示的字符串非常好,但微调器标题显示 object 仅供参考。

旋转器

<MvvmCross.Binding.Droid.Views.MvxSpinner
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                local:MvxDropDownItemTemplate="@layout/spinner_item"
                android:layout_marginLeft="5dp"
                android:dropDownWidth="257dp"
                android:dropDownSelector="@drawable/list_item_selector"
                local:MvxBind="ItemsSource Cities" />

神庙

<?xml version="1.0" encoding="utf-8"?>
<MvvmCross.Binding.Droid.Views.MvxLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:local="http://schemas.android.com/apk/res-auto"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#fafafa"
    android:orientation="horizontal">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="32dp"
        android:textSize="15sp"
        android:textColor="#de000000"
        android:lineSpacingExtra="5sp"
        android:text="Shortness of breath"
        android:layout_marginTop="6dp"
        android:layout_marginBottom="6dp"
        android:layout_marginLeft="24dp"
        local:MvxBind="Text Name; Typeface StringToFont('Effra_Rg')" />
</MvvmCross.Binding.Droid.Views.MvxLinearLayout>

Please go through the link for snapshot

您没有提供 MvxDropDownItemTemplate:

local:MvxDropDownItemTemplate="@layout/template"

也不是 MvxItemTemplate:

local:MvxItemTemplate="@layout/template"

这两者之间的区别在于,下拉项模板是展开微调器时显示的内容。而项目模板将是折叠时显示的第一个项目。如果您不想使用仅在绑定到该项目的 ViewModel 上调用 ToString() 的默认模板,您可能需要同时提供它们。