presenter.onClick(rootView)}" 源代码: -6ren">
gpt4 book ai didi

android - 我们可以在 Databinding 的 xml 布局中获取 Root View 吗?

转载 作者:行者123 更新时间:2023-11-30 00:26:21 25 4
gpt4 key购买 nike

类似下面的内容:

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>

最佳答案

是的,您可以通过其 ID 获得特定 View

android:onClick="@{() -> presenter.onClick(viewId)}"

在你的情况下你可以做

<LinearLayout android:id="@+id/parentView"
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(parentView)}"
android:text="abcde" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="tytyt" />
</LinearLayout>

你的 onClick 将是

public void onClick(View view) or public void onClick(LinearLayout layout)
{

}

关于android - 我们可以在 Databinding 的 xml 布局中获取 Root View 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45296203/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com