gpt4 book ai didi

android - 命名空间在 Android Studio 中未绑定(bind)

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:42:35 26 4
gpt4 key购买 nike

如果我创建一个新的 XML 文件(使用默认的 Android Studio“创建线性布局”),Studio 会生成一个包含以下内容的文件:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">

</LinearLayout>

如果我(右键)单击“分析...→检查代码”,结果窗口将抛出 2 次:“命名空间未绑定(bind)”并引用第 3 行和第 7 行(LinearLayout 标签)。是 Studio 中的错误吗?

最佳答案

如果出现错误:

namespace “工具”未绑定(bind):

例子:

<activity
android:name="com.google.android.gms.ads.AdActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
tools:replace="android:theme"
/>

在 list (或 Activity )的顶部添加 xmlns:tools="http://schemas.android.com/tools"。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mypackage"
xmlns:tools="http://schemas.android.com/tools">

关于android - 命名空间在 Android Studio 中未绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18633511/

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