找不到Android绑定适配器

时间:2019-02-25 22:27:36

标签: android kotlin android-databinding androidx

请有人帮助我!我快疯了,这应该工作。尝试构建Android项目时出现以下错误消息:

Android resource linking failed
/Users/slehrbaum/StudioProjects/OneNightComps/Android/app/build/intermediates/incremental/mergeDebugResources/stripped.dir/layout/fragment_login.xml:17: error: attribute errorText (aka lehrbaum.de.onenightcomps:errorText) not found.
error: failed linking file resources.

错误消息确实提到了errorText属性。我以这种方式(full xml here)在xml中使用errorText属性:

<com.google.android.material.textfield.TextInputLayout
        android:id="@+id/usernameField"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/username"
        app:hintEnabled="true"
        app:errorEnabled="true"
        app:errorText="Hi"
        >
        <!--app:errorText="Please provide a username."-->
        <com.google.android.material.textfield.TextInputEditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:autofillHints="username"
            android:inputType="text"
            android:text="@={viewModel.username}"
            />
    </com.google.android.material.textfield.TextInputLayout>

这是我在Kotlin文件(full file here)中定义errorText的方式:

object ViewDataBindingExtensions {
    @JvmStatic
    @BindingAdapter("errorText")
    fun bindErrorText(textInputLayout: TextInputLayout, errorText: String) {
        textInputLayout.error = errorText
    }
}

我只是不明白为什么会这样。我可以在布局文件中输入某种类型的导入信息,以说明BindingAdapter的位置吗?我的Gradle文件有问题吗?我将它与this question中的GitHub项目进行了比较,该项目显然已经解决了,我看不出我的项目有什么区别。根据答案,我应该将Kotlin-kapt插件添加到我的Gradle构建中。我还浏览了项目的其余部分并进行了比较。无济于事。您可以找到我的整个build.gradle file here以及项目的其余部分。

请帮助我!

2 个答案:

答案 0 :(得分:4)

问题与将字符串值传递给standalone/deployments/<app>的方式有关。

使用@ {``}传递此值。

fragment_login.xml的固定部分:

app:errorText

<com.google.android.material.textfield.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/username" app:hintEnabled="true" app:errorText="@{`Please provide a username.`}" app:errorEnabled="@{!viewModel.usernameValid}"> 中必须有apply plugin: 'kotlin-kapt'

答案 1 :(得分:0)

尝试使用

fun bindErrorText(textInputEditText: TextInputEditText, errorText: String) {
 textInputEditText.error = errorText }