MvvmCross android 绑定到片段
MvvmCross android binding to fragment
有什么方法可以将布局直接绑定到自定义片段吗?
即:
<fragment android:id="@+id/AwesomeFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
local:MvxBind="CustomTarget PropertyInVM;" class="My.Awesome.Fragment" />
CustomTarget 是 CustomTargetBinding
那么如何做到这一点:
- 使用您需要的属性创建自定义控件
- 创建目标绑定
- 将自定义控件而不是您的片段放入布局中
- 从布局绑定
有什么方法可以将布局直接绑定到自定义片段吗? 即:
<fragment android:id="@+id/AwesomeFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
local:MvxBind="CustomTarget PropertyInVM;" class="My.Awesome.Fragment" />
CustomTarget 是 CustomTargetBinding
那么如何做到这一点:
- 使用您需要的属性创建自定义控件
- 创建目标绑定
- 将自定义控件而不是您的片段放入布局中
- 从布局绑定