類似以下內容:我們可以在Databinding的xml佈局中獲得Root View嗎?
android:onClick="@{() -> presenter.onClick(rootView)}"
的源代碼:
<?xml version="1.0" encoding="utf-8"?>
<layout>
<data>
<variable
name="presenter"
type="Presenter" />
</data>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="@{() -> presenter.onClick(rootView)}"
android:text="abcde" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="tytyt" />
</LinearLayout>
</layout>
你所說的'rootView'意思?您可以使用'binding.getRoot()'獲得佈局的視圖對象。讓我知道你是不是在尋找這個。 –
我想從xml中得到它,而不是從代碼 – Sam