Android Lint 检查中的“命名空间未绑定”
Posted
技术标签:
【中文标题】Android Lint 检查中的“命名空间未绑定”【英文标题】:"Namespace is not bound" in Android Lint check 【发布时间】:2013-06-29 03:08:13 【问题描述】:我在 android Studio 中,运行 lint 检查时出现“未绑定命名空间”。这是什么意思?我的代码仍然可以正常工作,我只是好奇。警告是针对 LinearLayout 标签(打开和关闭)。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/outerLayoutWithMargins"
android:layout_
android:layout_>
<TextView
android:layout_
android:layout_
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_
android:layout_ />
<ListView
android:id="@android:id/list"
android:layout_
android:layout_
android:choiceMode="singleChoice"
android:divider="#000000"
android:dividerHeight="0.5dp"/>
</LinearLayout>
【问题讨论】:
【参考方案1】:我正在使用“w3-CSS”,为了解决上述问题,我为使用 line-height 属性的标签添加了一个 CSS 元素。尝试将其包含在样式定义中。
【讨论】:
以上是关于Android Lint 检查中的“命名空间未绑定”的主要内容,如果未能解决你的问题,请参考以下文章
Android Gradle 插件LintOptions 配置 ② ( abortOnError 配置 | 手动执行 lint 检查并生成 lint-result.html 检查报告 )
错误记录Android Studio 编译时 lint 检查报错 ( WARNING: DSL element ‘android.dataBinding.enabled‘ is obsolet )
错误记录Android Studio 编译时 lint 检查报错 ( Could not resolve junit:junit:4.+. )