gpt4 book ai didi

android - 数据绑定(bind) : Attribute is missing the Androld namespace prefix

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:52:55 29 4
gpt4 key购买 nike

安卓工作室 3.0

classpath 'com.android.tools.build:gradle:3.0.1'

设置

  dataBinding {
enabled = true
}

我想使用数据绑定(bind)。

这是我的 xml 布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<data>
<variable
name="offer" type="com.myproject.customer.Offer" />
</data>

</android.support.constraint.ConstraintLayout>

但是我得到错误:

Attribute is missing the Android namespace prefix

最佳答案

您的数据绑定(bind) XML 根应该是 layout 标记

From Docs

数据绑定(bind)布局文件略有不同以布局的根标记开头,后跟数据元素 和 View 根元素。此 View 元素是您的根在非绑定(bind)布局文件中的位置。

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<variable name="user" type="com.example.User"/>
</data>

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content">

</android.support.constraint.ConstraintLayout>

</layout>

关于android - 数据绑定(bind) : Attribute is missing the Androld namespace prefix,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47512161/

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