0

我有这张图片:

在此处输入图像描述

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

这是我的 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:

在此处输入图像描述

4

2 回答 2

0

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

于 2013-03-25T10:27:16.823 回答
0

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

于 2013-03-25T10:41:35.230 回答