双向绑定Android上的编辑文本

时间:2018-10-27 16:39:29

标签: android kotlin android-edittext android-jetpack

我想为“编辑文本”设置双向绑定。但是到目前为止有一个错误。

在视图类型'android.widget.EditText'上找不到事件'textChangeAttrChanged'

这是一个非常简单的场景,但从未见过一个好的示例。

绑定适配器的一部分:

 @BindingAdapter("textChange")
    @JvmStatic fun setText(view: EditText, value: String) {
        if (view.text.toString() != value) {
            view.setText(value)
        }
    }

    @BindingAdapter("textChangeAttrChanged")
    @JvmStatic fun setTextListener(view: EditText, onTextChange: ITextChange) {
        val textWatcher :  TextWatcher = object : TextWatcher {
            override fun afterTextChanged(s: Editable) {
                onTextChange.onTextChanged(view.text.toString())
            }

            override fun onTextChanged(s: CharSequence, start: Int, before: Int, count: Int) {}

            override fun beforeTextChanged(s: CharSequence, start: Int, count: Int, after: Int) {}
        }

        view.addTextChangedListener(textWatcher)
    }

    @InverseBindingAdapter(attribute = "textChange")
    @JvmStatic fun getText(editText: EditText): String {
        return editText.text.toString()
    }

从XML:

<EditText
                android:id="@+id/et_title_input"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:ems="10"
                android:hint="@string/input_address"
                android:inputType="textPersonName"
                android:textColorHint="@color/colorGray"
                textChange="@={viewModel.searchKeyword}"
                textChangeAttrChanged="@{(text) -> viewModel.onSearchEntered(text)" // adding or removing this line doesn't give a thing
                tools:ignore="Autofill" />

1 个答案:

答案 0 :(得分:1)

这不是对视图模型使用反向数据绑定的正确方法。

首先,EditText已经通过数据绑定库支持双向数据绑定,因此您不必自己执行此操作。

第二,如果要设置用于数据绑定的自定义视图,则仅需要反向绑定适配器。在您的情况下,您只希望已为数据绑定设置的现有视图更新您的视图心情。

通过使用"@={viewModel.searchKeyword}"表示法,表明您具有一个名为“ searchKeyword”的属性,该属性同时具有getter和setter,并且希望数据绑定库使用视图中的值调用setter。当它改变时。

因此,您需要做的就是在属性设置器中实现逻辑。像这样:

@Bindable var searchKeyord : String? = null
    set(value) {
        if (field != value) {
            field = value
            onSearchEntered(value)
            notifyPropertyChanged(BR.searchKeyword)
        }
    }

请查看数据绑定文档以获取更多信息。

希望有帮助!