gpt4 book ai didi

未找到 Android 数据绑定(bind)属性

转载 作者:行者123 更新时间:2023-12-03 13:26:16 25 4
gpt4 key购买 nike

我试图复制这个答案:Setting attribute of child element of included layout

我有一个简单的custom_edit_text.xml :

<?xml version="1.0" encoding="utf-8"?>
<layout
xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<variable name="hint123" type="String" />
</data>
<android.support.design.widget.TextInputLayout
android:id="@+id/emailInputLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<android.support.v7.widget.AppCompatEditText
android:id="@+id/emailField"
android:layout_width="275dp"
android:layout_height="wrap_content"
android:paddingBottom="16dp"
android:paddingTop="14dp"
android:hint="@{hint123}"
android:textCursorDrawable="@null"
android:background="@drawable/edit_text_background"
android:fontFamily="@font/eina_regular"
android:textColor="@color/edit_text_color"
android:textColorHint="@color/edit_text_color"
android:textSize="15sp"
/>
</android.support.design.widget.TextInputLayout>
</layout>

我将它包含在另一个文件中:

<?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">
<include
layout="@layout/custom_edit_text"
app:hint123="Email"/>
</layout>

但是,该项目在清理和重建后拒绝编译并出现错误:
AAPT: error: attribute hint123 (aka inc.company.appname:hint123) not found.
有任何想法吗?

我也有
dataBinding {
enabled = true
}

在应用级别启用 build.gradle

最佳答案

我想我已经找到了解决方案。要激活数据绑定(bind),您需要使用 @{}表达式,大括号中的内容必须是有效的 Java 代码。因此,文字字符串必须用引号括起来...必须编码为 &quot;在 XML 属性值内。把它们放在一起,你会得到:

<include
layout="@layout/custom_edit_text"
app:hint123="@{&quot;Email&quot;}"/>

数据绑定(bind)确实适用于包含文件,只是文字的语法有点复杂。我有同样的问题,这个表格在我的项目中工作。

关于未找到 Android 数据绑定(bind)属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55113909/

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