gpt4 book ai didi

android - 属性缺少 android 特定的命名空间

转载 作者:行者123 更新时间:2023-11-29 15:23:09 26 4
gpt4 key购买 nike

这是 main.xml 的 fragment 。虽然使用了 android:layout_width,但它的 giving 属性丢失了。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView android:id="@+id/eventlabel"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10px"
android:layout_weight="1"
android:paddingBottom="10px"/>
</LinearLayout>

谁能指出错误?谢谢

最佳答案

你有:

<LinearLayout xmlns="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools

将其更改为:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
<!-- rest is the same -->

您只有 xmlns=... 而实际上没有指定 android 部分。此外,您的 tools XMLNS 缺少结束符 "

关于android - 属性缺少 android 特定的命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16237826/

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