我在这个主题上有几个关于 SO 的问题,但所有这些问题都与Listview 项目之间的距离有关,几乎所有答案都建议使用透明分隔线作为解决方案。
但就我而言,我已经在两个列表项之间设置了分隔符,那么如何在两个列表项之间应用一些边距/填充/距离?
任何帮助表示赞赏。
xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/listMainPlans"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/list_divide"
android:dividerHeight="2dp" >
</ListView>
</LinearLayout>