Android Lint 检查中的“命名空间未绑定”

"Namespace is not bound" in Android Lint check

提问人:Adam Johns 提问时间:7/2/2013 更新时间:10/18/2021 访问量:1401

问:

我在 Android Studio 中,运行 lint 检查时出现“Namespace is not bound”。这是什么意思?我的代码仍然运行良好,我只是好奇。警告适用于 LinearLayout 标记(打开和关闭)。

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

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    style="@style/outerLayoutWithMargins"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/bla"
        android:gravity="center"
        android:layout_marginTop="20dp"
        android:layout_marginBottom="4dp"
        android:textStyle="bold"
        android:textColor="@color/bla"/>

    <View
        android:id="@+id/bla"
        android:background="@color/bla"
        android:layout_width="fill_parent"
        android:layout_height="3dp" />

    <ListView
        android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:choiceMode="singleChoice"
        android:divider="#000000"
        android:dividerHeight="0.5dp"/>

</LinearLayout>
Android 命名空间 android-studio lint

评论


答:

0赞 user2063329 10/18/2021 #1

我正在使用“w3-CSS”,为了解决提到的问题,我为使用 line-height 属性的标签添加了一个 CSS 元素。尝试将其包含在样式定义中。