按钮上的数据绑定onclick侦听器

时间:2017-11-18 08:46:25

标签: android data-binding

尝试理解数据绑定,但没有得到它。任何帮助赞赏。

我需要的是我的自定义方法调用“setOnClick(用户用户)”点击按钮。我只想了解Binding Adapters Concepts。

  

任务执行失败':数据绑定:compileDebugJavaWithJavac'。   android.databinding.tool.util.LoggedErrorException:发现数据绑定错误。     **** /数据绑定错误**** msg:在类com.locale.databinding.MyAdapter文件中找不到方法setOnClick():/ Users / svernekar003 / Documents / GitHub / RxDagger2Demo / databinding / src / main / res / layout / activity_main.xml loc:61:35 - 61:61 **** \ data binding error ****

示例代码。

activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<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="user"
        type="com.locale.databinding.User"></variable>

    <variable
        name="myClickHandler"
        type="com.locale.databinding.MyAdapter"></variable>
</data>

<android.support.constraint.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.locale.svernekar.databinding.MainActivity">

    <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="8dp"
        android:text="@{user.name}"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/last_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginTop="8dp"
        android:text="@{user.lastName}"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="@+id/name"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.502" />

    <ViewStub
        android:id="@+id/view_stub"
        android:layout_width="20dp"
        android:layout_height="20dp"
        android:inflatedId="@+id/inflate_id"
        android:layout="@layout/view_stub_sample" />

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginTop="8dp"
        android:onClick="@{()->myClickHandler.setOnClick(user)}"
        android:text="Change Data"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/last_name" />

</android.support.constraint.ConstraintLayout>

MyAdapter.java

public class MyAdapter {

private User user;

@BindingAdapter("android:onClick")
public static void setOnClick(User user) {

    Log.d("Onclick", "after do long time");
}


@BindingAdapter("android:src")
public static void setImageResource(ImageView imageView, int resource) {
    imageView.setImageResource(resource);
}

public int getId() {
    return android.R.drawable.ic_dialog_dialer;
}
}

2 个答案:

答案 0 :(得分:1)

使用此

 android:onClick="@{user}"

因为您已经创建了BindingAdapter

@BindingAdapter("android:onClick")
public static void setOnClick(User user) {

    ...
}

原因

您已经创建了属性@BindingAdapter的{​​{1}},因此它将像上面一样工作。

答案 1 :(得分:0)

您在这里缺少对回调的理解。我建议在此处进行Google的数据绑定代码实验室:

https://codelabs.developers.google.com/codelabs/android-databinding/index.html

但是,我们可以一起浏览解决方案。

首先,要创建BindingAdapter,需要在方法中指定视图类型。因此,它应该看起来像这样:

@BindingAdapter("android:onClick")
fun setOnClick(view: View, user: User) {
    Log.d("Onclick", "after do long time")
}

现在,关于BindingAdapters的事情是,它们是在页面加载或绑定值更改时设置的。因此,如果User是LiveData,则可以使用,但是当用户单击时它将不会调用-在更新用户值时将调用。绑定适配器在绑定值更新时调用,无论名称是什么。因此,上面的代码与此代码块相同:

@BindingAdapter("app:userUpdated")
fun setUserUpdated(view: View, user: User) {
    Log.d("UserUpdated", "after user value is updated")
}

在这种情况下,您的onClick绑定没有设置点击侦听器-而是在“用户”字段设置了绑定。因此,将为onClick提供两种绑定适配器-一种是绑定用户(如果绑定User),另一种(系统默认值)如果绑定ClickListener。您拥有的XML绑定到clicklistener,而不是用户,所以您的适配器将永远不会执行。但是,即使它被正确绑定,也不会在单击时绑定,因为它不是那样绑定的。要使其绑定到用户的点击上,您需要执行以下操作:

@BindingAdapter("android:onClick")
fun setOnClick(view: View, user: User) {
    view.setOnClickListener(View.OnClickListener { Log.d("Onclick", "after do long time") })
}