我正在尝试为listview
分隔线设置边距。
分隔线是一条虚线:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line" >
<stroke
android:dashGap="1dp"
android:dashWidth="1.5dp"
android:width="1dp"
android:color="#FF404040" />
<size android:height="3dp" />
</shape>
和listview
我设置分隔符的地方
<ListView
android:id="@+id/lv_news_feed_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/white"
android:divider="@drawable/ch_dashed_line_divider"
/>
但我想要左右分隔边距。我还尝试为形状设置填充,但listview
忽略了填充。
<padding
android:bottom="15dp"
android:left="15dp"
android:right="15dp"
android:top="15dp" />
是否有可能为listview
分隔线设置边距 - 除了在适配器的 getView() 中?