更新MvvmCross后,我开始出错:
MvxBind:错误:1679,46视图绑定期间抛出异常MvxException:未知的序列化描述。
此错误仅在此绑定中发生。如果我绑定
ObservableCollection<Class A>
一切正常。
我有一个MVXListView的模板:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<include
layout="@layout/PageCommon_Titlebar" />
<Mvx.MvxListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal"
android:paddingLeft="12dp"
local:MvxItemTemplate="@layout/listitem_sentences"
local:MvxBind="ItemsSource Sentences, Mode=OneWay; ItemClick SelectSentenceCommand" />
</LinearLayout>
和列表行的模板:
<?xml version="1.0" encoding="utf-8" ?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/SentenceTextView"
android:layout_width="fill_parent"
android:layout_height="70dp"
android:padding="10dp"
android:textSize="24dp"
local:MvxBind="Text "
/>
</LinearLayout>
这现在不正确吗? 对于WP8,我们可以这样做:
<TextBlock Grid.Row="0"
Margin="10,10,10, 3" HorizontalAlignment="Stretch"
Style="{StaticResource PhoneTextTitle2Style}"
Text="{Binding}"/>
提前感谢您的帮助
答案 0 :(得分:4)
看起来必须在默认(整个对象)绑定的某处进行回归。
作为一种解决方法,我知道我今天早上使用的应用程序使用了绑定:
local:MvxBind="Text ."
我会将回归记录为一个问题(除非你打败我)