我有这样的布局:
<layout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
>
<data>
<variable
name="viewModel"
type="com.myPackage.MyViewModel" />
</data>
<android.support.design.widget.CoordinatorLayout>
<include layout="@layout/modal_popup_view" />
</android.support.design.widget.CoordinatorLayout>
</layout>
如何将变量viewModel
传递到包含的布局中?
答案 0 :(得分:1)
在您的viewModel
中定义一个@layout/modal_popup_view
(或任何其他命名的)变量。
<data>
<variable
name="viewModel"
type="com.myPackage.PopupViewModel" />
</data>
在MyViewModel
中,公开类型为popupViewModel
的属性PopupViewModel
。将属性传递到包含的布局。
<include layout="@layout/modal_popup_view"
app:viewModel="@{viewModel.popupViewModel}" />