为什么AndroidStudio会显示警告“从未使用过命名空间声明”?

时间:2013-11-17 22:23:09

标签: android xml android-layout xml-namespaces

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
</LinearLayout>

取自android official training

在第二行中,Android Studio会显示此警告:

Namespace declaration is never used

为什么会这样?

谢谢。

1 个答案:

答案 0 :(得分:9)

这是因为您没有在xml中实际声明tools命名空间的任何内容。

查看android命名空间,您有3个带有该命名空间的元素,但tools没有。

命名空间toolshttp://schemas.android.com/tools)用于GUI设计器,不用于在Android设备上运行应用,因此您可以安全地删除它。