我想要在gridview之间有一条如下图所示的线:
以下我已经尝试过。
网格视图 XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<GridView
android:id="@+id/gridhouseindex"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:listSelector="@null"
android:smoothScrollbar="true"
android:stretchMode="columnWidth"
android:numColumns="2"
android:verticalSpacing="22dp">
</GridView>
适配器 XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<ImageView
android:id="@+id/imgViewHouseIndex"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal|center"
android:layout_marginLeft="20dp"
android:adjustViewBounds="true"
android:src="@drawable/univer" />
<TextView
android:id="@+id/txtViewHouseIndex"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="TextView"
android:textSize="12sp"
android:textStyle="bold" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@drawable/grid_line" />
</LinearLayout>
<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="@drawable/grid_line" />
网格线 XML:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<stroke
android:width="2dp"
android:color="#b6a9a9" />
<gradient
android:angle="90"
android:endColor="#b6a9a9"
android:startColor="#FFFFFF" />
<corners
android:bottomLeftRadius="1dp"
android:bottomRightRadius="1dp"
android:topLeftRadius="1dp"
android:topRightRadius="1dp" />
通过使用上面的代码,我得到如下图:
有人可以告诉我,我哪里出错了,或者我必须做什么才能得到准确的输出。
更新:
这是我得到的输出。