我正在使用 Android Studio 4.1 和 Gradle gradle-6.5-all 无法使用 DataBinding。
SDK 版本
compileSdkVersion 30
buildToolsVersion "30.0.2"
minSdkVersion 16
targetSdkVersion 30
下面是我的 XML、BindingAdapter 和 build.gradle 代码。
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-android-extensions'
id 'kotlin-kapt'
id "androidx.navigation.safeargs.kotlin"
}
android {
....
buildFeatures {
viewBinding true
dataBinding true
}
}
<?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">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/stepText"
android:layout_width="40dp"
android:layout_height="40dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:stepBackground="@{1}"
android:text="1"
android:textAllCaps="true"
android:textColor="@android:color/black"
android:textSize="20sp"
android:padding="20dp"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
@BindingAdapter("stepBackground")
fun stepBackground(view: View, type: Int?) {
Timber.e("stepBackground ${view.background}")
type?.let {
when(it) {
1 -> view.setBackgroundResource(R.drawable.white_shape_circle)
2 -> view.setBackgroundResource(R.drawable.red_shape_circle)
else -> view.setBackgroundResource(R.drawable.grey_shape_circle)
}
}
}
在上面的代码中,我试图根据步数应用动态背景。但这里没有应用背景。我还设置了断点来检查 BindingAdapter 方法是否正在调用。但是 Debugger 不会去 BindingAdapter 方法。
我可以知道这里缺少什么吗?