如何删除两个gridView行之间的空白
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后,我找到了一个“黑客”。它包括为第一个图像的底部设置负边距,为第二个图像的顶部设置相同的负边距,以及为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.