Google のドキュメントによると、含まれているレイアウトから含まれているレイアウトのバインディングに変数が渡される可能性がありますが、それを機能させることはできませんが、データ バインディング エラーが発生します ****msg:Identifiers must have user defined types from the XML file. ハンドラーにはそれがありません。インクルード XML は次のようになります。
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:bind="http://schemas.android.com/apk/res-auto">
<data>
<import type="com.example.FocusChangeHandler"/>
<variable
name="handler"
type="FocusChangeHandler"/>
</data>
<!-- Some other views --->
<include
android:id="@+id/inputs"
layout="@layout/input_fields"
bind:handler="@{handler}"/>
</layout>
含まれている XML は次のようになります。
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<EditText
android:id="@+id/nameEdit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onFocusChange="@{handler.onFocusChange}"/>
</layout>
含まれているレイアウトから生成されたバインディング クラスを介してビューを参照できますが、変数を渡すだけでは機能しません。