GridView Xml 错误
以下 GridView xml 出现错误
在这一行找到多个注释: - 错误:错误:不允许字符串类型(在“layout_width”处,值为 'match_parent')。 - 错误:错误:不允许字符串类型(在“layout_height”处,值为 'match_parent')。
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/albums"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="2dip"
android:numColumns="auto_fit"
android:columnWidth="148dp"
android:stretchMode="spacingWidthUniform"
android:drawSelectorOnTop="false"
android:cacheColorHint="#000000"
android:background="#000000"
android:listSelector="#000000"/>
Error on the following GridView xml
Multiple annotations found at this line:
- error: Error: String types not allowed (at 'layout_width' with value
'match_parent').
- error: Error: String types not allowed (at 'layout_height' with value
'match_parent').
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/albums"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="2dip"
android:numColumns="auto_fit"
android:columnWidth="148dp"
android:stretchMode="spacingWidthUniform"
android:drawSelectorOnTop="false"
android:cacheColorHint="#000000"
android:background="#000000"
android:listSelector="#000000"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
match_parent
是在 android 2.2 中引入的。如果您的程序是使用较低版本的 Android 构建的,那么它们可能无法识别match_parent
是什么。 match_parent 与fill_parent
相同。将代码中的 match_parent 更改为fill_parent
,否则您可以增加 Android 构建版本以支持match_parent
。看看这里谢谢
迪帕克
match_parent
is introduced in android 2.2. If your program is built with lower version of android then those may not recognize what ismatch_parent
. match_parent is same asfill_parent
. Change match_parent in your code tofill_parent
otherwise you can increase android build version to supportmatch_parent
. Have a look hereThanks
Deepak