列表视图中的可绘制分隔符填充父级

时间:2013-03-25 10:15:12

标签: android xml listview

我有这张图片:

enter image description here

我希望将此图像分配给listview的divider属性。问题是图像扩展了所有宽度,当我在设备中执行此应用程序时,图像是两条水平线,而不是两个点。

这是我的XML代码:

<com.handmark.pulltorefresh.library.PullToRefreshListView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/pull_refresh_list"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:cacheColorHint="#00000000"
    android:divider="@drawable/divider_list_view"
    android:dividerHeight="4dp"
    android:fadingEdge="none"
    android:fastScrollEnabled="false"
    android:footerDividersEnabled="false"
    android:headerDividersEnabled="false"
    android:scrollbars="none"
    android:paddingLeft="5dp"
    android:paddingRight="5dp" />

这是我的9.png:

enter image description here

2 个答案:

答案 0 :(得分:0)

无法更改列表分隔符的宽度,因为它的流程由os框架管理。

答案 1 :(得分:0)

我不确定我从不厌倦它,但是一个可能的想法,尝试用你的图像制作一个具有额外透明度的9patch图像,让系统拉伸图像的不可见部分。