这是我的布局:
<?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 Studio会显示此警告:
Namespace declaration is never used
为什么会这样?
谢谢。
答案 0 :(得分:9)
这是因为您没有在xml中实际声明tools
命名空间的任何内容。
查看android
命名空间,您有3个带有该命名空间的元素,但tools
没有。
命名空间tools
(http://schemas.android.com/tools)用于GUI设计器,不用于在Android设备上运行应用,因此您可以安全地删除它。