-2

我有一个像这样的gridview

<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/aldiko_shelf_background"
android:columnWidth="40sp"
android:gravity="center"
android:horizontalSpacing="20dp"
android:numColumns="auto_fit"
android:paddingLeft="20sp"
android:paddingRight="20sp"
android:smoothScrollbar="true"
android:stretchMode="columnWidth"
android:verticalSpacing="30sp" />

在此处输入图像描述

我想添加一个图像作为总网格的边框,并想在两行之间添加另一个图像,看起来像这样

在此处输入图像描述

4

1 回答 1

1

据我了解您的问题有两种方法可以做到这一点,一种简单的方法和一种不那么简单的方法

首先,简单的一个->尝试放一个背景图像,例如:书架图像

其次,->您可以在 XML 中修改您的行视图,以便在您的图像之间放置一个图像

我认为你需要的是书架式布局试试这个教程

于 2013-03-28T10:14:29.113 回答