几天来,我一直在尝试与Kotlin一起在Android Studio 3.4(最新更新)中使用BindingAdapter,但似乎无济于事。
我首先尝试了以下教程:https://codelabs.developers.google.com/codelabs/android-databinding/#7 当我到达第八步时,它就输出一个错误。
此外,我尝试了使用空应用程序,单个活动,单个ViewModel和单个BindingAdapter的简单示例。这是XML代码。
<?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="viewmodel"
type="com.example.testbindingadapter.DataViewModel"/>
</data>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:greetings="@{viewmodel.name}"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:id="@+id/textView"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
现在这是带有BindingAdapter的ViewModel
class DataViewModel : ViewModel() {
private val _name = MutableLiveData<String>()
val name : LiveData<String> = _name
init {
_name.value = "Amath"
}
}
@BindingAdapter("greetings")
fun setName(view: TextView, text: String) {
view.text = "Welcome, $text"
}
我还在我的Graddle中启用了dataBing。我按照以下线程Cannot find the setter for attribute in Data binding的建议添加了apply plugin: 'kotlin-kapt'
。刚开始我遇到一个错误msg:Cannot find the setter for attribute databinding
,随后错误消失了,但是应用程序崩溃了。
你能帮忙吗?
答案 0 :(得分:1)
您永远不会将视图模型设置为数据绑定:
binding.viewmodel = viewModel