RadioButton onCheckedChanged与DataBinding和lambdas

时间:2016-12-06 01:43:03

标签: android data-binding android-databinding

我有一个RadioButton:

<RadioButton
    android:id="@+id/rdioA"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:checked="@{!q.b}"
    android:onCheckedChanged="@{(cb, isChecked) -> {if (isChecked) q.setB(false)}}"
    android:text="AAA"/>

变量'q'定义为:

<data>
    <import type="android.view.View"/>
    <variable name="q" type="com.example.Q"/>
</data>

Q.java中的函数是:

public void setB(boolean b) {
    this.b = b;
}

我得到的编译错误是:

/Users/../view_d.xml
Error:(60, 53) Syntax error: extraneous input '=' expecting {<EOF>, '.', '::', '[', '+', '-', '*', '/', '%', '<<', '>>>', '>>', '<=', '>=', '>', '<', 'instanceof', '==', '!=', '&', '^', '|', '&&', '||', '?', '??'} 
Error:Execution failed for task ':app:compileDevDebugJavaWithJavac'.
> java.lang.RuntimeException: Found data binding errors.

如果我使用

android:onCheckedChanged="@{q::onCheckedChanged}"

没有问题 - 它有效。

1 个答案:

答案 0 :(得分:4)

您不能在数据绑定表达式中使用语句。这包括花括号或if语句。请改用:

<RadioButton
    android:id="@+id/rdioA"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:checked="@{!q.b}"
    android:onCheckedChanged="@{(cb, isChecked) -> (isChecked) ? q.setB(false) : void}"
    android:text="AAA"/>

您可以使用三元表达式替换if语句。如果您不想做任何事情,void关键字可用于表示没有返回值。这有效,因为onCheckedChanged()的返回值为void。如果您绑定到期望返回值为onLongClick()的侦听器,则应使用该侦听器的返回类型 - truefalse onLongClick()

您应该尽量避免在数据绑定表达式中使用复杂的逻辑。不支持语句的选择是试图限制绑定表达式的复杂性。