2

如何在两个列表视图之间添加 20px 空间:

    <ListView
        android:minWidth="25px"
        android:minHeight="25px"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/listStations" />
 SPACER???
    <ListView
        android:minWidth="25px"
        android:minHeight="25px"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/listSocial" />
4

2 回答 2

1

对于第一个列表视图,您可以添加

 android:layout_marginBottom="20dp"
于 2012-05-30T05:47:14.907 回答
0

在其中一个s 上设置paddingTop或设置paddingBottom就足够了。或者,您可以创建一个空视图(例如 a没有文本,或者如@AljoshaBre提到的只是 a ),并将其设置为.20pxListViewTextViewViewlayout_height20px

于 2012-05-29T22:21:30.110 回答