GridView Xml 错误

发布于 2024-11-15 08:01:57 字数 737 浏览 0 评论 0原文

以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一萌ing 2024-11-22 08:01:57

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 is match_parent. match_parent is same as fill_parent. Change match_parent in your code to fill_parent otherwise you can increase android build version to support match_parent. Have a look here

Thanks
Deepak

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文