0

我在我的应用程序中添加了 PullToRefresh( https://github.com/chrisbanes/Android-PullToRefresh ) Listview。

然后将其滚动到底部或顶部,它会自动显示阴影。 在此处输入图像描述

我在xml中设置了一些属性,比如

    <com.handmark.pulltorefresh.library.PullToRefreshListView
    android:id="@+id/pull_refresh_list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:cacheColorHint="#00000000"
    android:divider="#19000000"
    android:dividerHeight="4dp"
    android:fadingEdge="none"
    android:fastScrollEnabled="false"
    android:footerDividersEnabled="false"
    android:headerDividersEnabled="false"
    android:scrollingCache="false"
    android:smoothScrollbar="true" />

它无法隐藏它。

任何人都可以帮助我吗??

谢谢

4

1 回答 1

0

这是我认为的分隔线,删除

android:divider="#19000000"
android:dividerHeight="4dp"

它现在应该可以工作了

于 2013-11-20T17:26:51.020 回答