私のViewModelにカスタムオブジェクトがあります。MVVMCrossデータバインディングが機能しません
public MyObject PropertyName
{
get { return _propertyName; }
set
{
_propertyName = value;
RaisePropertyChanged(() => PropertyName);
}
}
私のドロイドビューでTextviewにそのメンバーの1つだけをバインドしたいと思います。このリンクを見つけた: Bind data of custom object to TextView in MvvmCross そして私はこれとまったく同じようにやっています。ローカル:MvxBind =「テキストMyobject.ItsMember」
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="LabelCaption" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:textColor="@android:color/white"
local:MvxBind="Text Myobject.ItsMember" />
</RelativeLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
は、ケーシングなどをチェックしかし、結合が動作していないと私は、デバッグウィンドウでそれを印刷することができますが、私は、画面に表示される文字列の値を見ることはできません。 私が間違っているかもしれない手掛かりはありますか?
このビューはどこで膨らませますか? – Cheesebaron
[アクティビティー(LABEL = "MYVIEW")] パブリッククラスMYVIEW:MvxActivity {保護オーバーライドボイドOnViewModelSet() \t \t { SetContentView(Resource.Layout.MyView)。 \t \t } – Vivek
そして、「Myobject」はViewModelのプロパティの名前ですか? – Cheesebaron