2

当我将 v7 GridLayout 放入线性布局时,我不断收到此错误:

为标签 android.support.v7.widget.GridLayout 找到了意外的命名空间前缀“xmlns”

如果我在线性或相对布局中没有 GridLayout,那么它可以正常工作,但我必须在某种布局中使用 GridLayout,这样滚动才能工作,但我不断收到上述错误?

有人知道防止这种情况在布局中发生吗?

谢谢你的帮助。

4

1 回答 1

5

我认为这是 Lint 的一个已知问题:http ://code.google.com/p/android/issues/detail?id=52831 。

只需将 tools:ignore="MissingPrefix" 添加到 Gridlayout 项:

<android.support.v7.widget.GridLayout
...
tools:ignore="MissingPrefix">

为了能够使用此命名空间,请确保将其包含在根标记中:

xmlns:tools="http://schemas.android.com/tools"
于 2013-03-17T17:49:51.267 回答