数据绑定按钮onclick无法正常工作

时间:2017-01-30 14:45:00

标签: android android-databinding

activity_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">

    <data>
        <import type="android.view.View" />

        <variable
            name="callback"
            type="com.buscom.ActionCallBack" />
    </data>

    <LinearLayout xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/ll_oml"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/grey_50"
        android:orientation="vertical">

        <android.support.design.widget.CoordinatorLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:onClick="@{(v) -> callback.onClick(v)}"
                android:text="Menu" />
        </android.support.design.widget.CoordinatorLayout>
    </LinearLayout>
</layout>

ActionCallBack.java

这是我在MainActivity中实现的界面

public interface ActionCallback { 
    void onClick(View view);
}

MainActivity.java

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    binding = DataBindingUtil.setContentView(this, R.layout.activity_main);
    actionCallBack = new ActionCallBack() {

        @Override
        public void onClick(View view) {
            System.out.println("Call onclick method *****");
        }
    }
}

当我点击onClick()按钮时,没有引发方法,注意显示在输出中或没有执行任何操作。但是使用onClickListener

以传统方式工作

2 个答案:

答案 0 :(得分:19)

我认为您的活动声明中存在错误。无论如何,你仍然没有设置你的回调,因此:

binding.setCallback(this);

binding.setCallback(actionCallback);

答案 1 :(得分:0)

奇斯科的答案是正确的,但我解决了这个问题

使用它。

binding.setHandlers(this);

我正在零碎工作。 可能对某人有帮助。