我在我的新应用程序中使用android的数据绑定库。 目前我尝试将另一个视图的引用传递给方法。
我有ImageButton
onClickListener
。在这个onClick监听器中,我想将根视图的引用传递给方法。
<RelativLayout
android:id="@+id/root_element"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:contentDescription="@string/close_dialog"
android:src="@drawable/ic_close_212121_24dp"
android:background="@android:color/transparent"
android:onClick="@{() -> Helper.doSth(root_element)}"/>
</RelativLayout>
上面提供的这个源代码只是一个例子,而不是完整的。 有更多的孩子,图像按钮也不是根元素的直接子元素。但我认为其含义很明确。
我已经尝试通过指定根视图的id来传递引用(参见上文)。但这不起作用。如果我尝试编译它,我会收到错误,指出root_element
的类型没有指定。
我还尝试导入生成的绑定类,并通过其中的公共字段访问根元素。此方法也不起作用,因为必须首先生成绑定类。
那么有没有办法将视图的引用传递给方法?
我知道我可以使用@id/root_element
传递根视图的id,但我不希望这样,因为我必须找到一种方法来获取仅使用给定id的对该视图的引用。
答案 0 :(得分:46)
您可以使用root_element,但Android数据绑定可以使用驼峰名称。因此,root_element成为rootElement。你的处理程序应该是:
android:onClick="@{() -> Helper.doSth(rootElement)}"
答案 1 :(得分:6)
您拥有的内容与应该执行的操作之间的区别在于,不要传递ID root_element
。而是将视图作为另一个变量传递到布局文件中。
在我的情况下,我的布局中有一个开关,我希望将其作为参数传递给我的lambda中的方法。我的代码是这样的:
MyLayoutBinding binding = DataBindingUtil.inflate(inflater, R.layout.my_layout, parent, true);
binding.setDataUpdater(mDataUpdater);
binding.setTheSwitch(binding.switchFavorite);
然后我的布局是这样的:
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<variable name="dataUpdater" type="..."/>
<variable name="theSwitch" type="android.widget.Switch"/>
<import type="android.view.View"/>
</data>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="@{()->dataUpdater.doSomething(theSwitch)}">
<Switch
style="@style/Switch"
android:id="@+id/switch_favorite"
... />
.../>
正如你可以看到的,在我的代码中,我获得了对我的开关的引用并将其作为绑定中的变量传递。然后在我的布局中,我可以访问它,在我的lambda中传递它。
答案 2 :(得分:0)
您应该传递要引用的元素的ID。
<data>
<variable
name="viewModel"
type=".....settings.SettingsViewModel" />
</data>
.
.
.
<Switch
android:id="@+id/newGamesNotificationSwitch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="@{viewModel.getSubscriptionsValues(newGamesNotificationSwitch)}" />
看到开关ID是newGamesNotificationSwitch,这就是我要传递给getSubscriptionsValues(..)函数的东西。
如果您的ID带有下划线(_),则应使用驼峰式密码。
例如: my_id_with_underscore应该作为myIdWithUnderscore传递。
希望有帮助