gpt4 book ai didi

找不到 Android 绑定(bind)适配器

转载 作者:行者123 更新时间:2023-12-02 18:25:41 27 4
gpt4 key购买 nike

请有人帮助我!我快疯了,这应该有用。当我尝试构建 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 属性。我以这种方式在 xml 中使用 errorText 属性 ( full xml here ):

<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以及项目的其余部分。

请帮助我!

最佳答案

问题与将字符串值传递给 app:errorText 的方式有关。

使用@{``}来传递这个值。

fragment_login.xml 的修复部分:

<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}">

必须在 app/build.gradle应用插件:'kotlin-kapt'

关于找不到 Android 绑定(bind)适配器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54875667/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com