将 MvvmCross.Binding.Droid.Views.MvxSpinner 与数据绑定时出现问题。
Spinner下拉列表显示完全正常的字符串但旋转标题仅显示对象引用。
微调
<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" />
Templete
<?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>
答案 0 :(得分:1)
您未提供MvxDropDownItemTemplate
:
local:MvxDropDownItemTemplate="@layout/template"
也不是MvxItemTemplate
:
local:MvxItemTemplate="@layout/template"
这两者之间的区别在于,下拉项目模板是微调器展开时显示的内容。而项目模板将是折叠时显示的第一个项目。如果您不希望使用仅在绑定到项目的ViewModel上调用ToString()
的默认模板,则可能需要同时提供它们。