如何删除两个gridView行之间的空白

发布于 2024-10-17 08:15:58 字数 1527 浏览 3 评论 0原文

我的 gridView 中有膨胀的垂直线性布局。 当我仅显示垂直布局元素时,布局的两个图像之间没有空间。

但是当我显示网格时,两条网格线之间以及每个网格框中的两个图像(垂直)之间都有间距。

我怎样才能删除这些空格?

这是我的主布局,其中包含我的网格:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_height="wrap_content" 
    android:layout_width="wrap_content" android:layout_gravity="center">


<GridView android:id="@+id/GridView01" 
    android:verticalSpacing="0px" 
    android:layout_height="wrap_content" 
    android:layout_width="wrap_content" 
    android:numColumns="3" 
    android:horizontalSpacing="0px" 
    android:stretchMode="none" 
    android:columnWidth="90px"></GridView>

</LinearLayout>

这是我的每个元素网格的垂直布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LayoutP"
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical" 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content">

  <ImageView android:id="@+id/ImageView01" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/greyr"></ImageView>
  <ImageView android:id="@+id/ImageView02" 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:src="@drawable/greyp"></ImageView>

</LinearLayout>

提前致谢。

I've got inflating vertical linear layout in my gridView.
When I display only the vertical layout element, there's no space between the two images of my layout.

But when I display the grid, there's a spacing between two grid lines and between my two images (verticaly) in each grid box.

How can I remove these spaces ?

Here is my main layout wich contains my grid :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_height="wrap_content" 
    android:layout_width="wrap_content" android:layout_gravity="center">


<GridView android:id="@+id/GridView01" 
    android:verticalSpacing="0px" 
    android:layout_height="wrap_content" 
    android:layout_width="wrap_content" 
    android:numColumns="3" 
    android:horizontalSpacing="0px" 
    android:stretchMode="none" 
    android:columnWidth="90px"></GridView>

</LinearLayout>

Here is my vertical layout of each elements grid :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LayoutP"
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical" 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content">

  <ImageView android:id="@+id/ImageView01" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/greyr"></ImageView>
  <ImageView android:id="@+id/ImageView02" 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:src="@drawable/greyp"></ImageView>

</LinearLayout>

Thanks in advanced.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

伴我心暖 2024-10-24 08:15:58

最后,我找到了一个“黑客”。它包括为第一个图像的底部设置负边距,为第二个图像的顶部设置相同的负边距,以及为verticalSpacing网格设置负值。

Finally, I've found a "hack". It consists in setting a negative margin for the bottom of the first image, and the same negative margin for the top of the second one, as well as setting negative for the verticalSpacing grid.

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