pullToRefreshListView去掉分割线方法

pullToRefreshListView去掉分割线方法

如上图用的是pullToRefreshListView  每个item之间有一条线,样式比较尴尬 ,需要去掉,去掉后的效果是这样的

pullToRefreshListView去掉分割线方法

去掉前代码:

 <com.jky.mobilebzt.pulltorefresh.PullToRefreshListView
        android:id="@+id/plv_q_and_s"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@id/tv_enter_user_fb"
        android:background="@color/color_efefef"
        android:dividerHeight="3dp"
        android:headerDividersEnabled="false"
        android:footerDividersEnabled="false"
        android:paddingLeft="@dimen/padding_lllsmall"
        android:paddingRight="@dimen/padding_lllsmall" />

去掉后代码:

 <com.jky.mobilebzt.pulltorefresh.PullToRefreshListView
        android:id="@+id/plv_q_and_s"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@id/tv_enter_user_fb"
        android:background="@color/color_efefef"
        android:divider="#00000000"
        android:dividerHeight="3dp"
        android:headerDividersEnabled="false"
        android:footerDividersEnabled="false"
        android:paddingLeft="@dimen/padding_lllsmall"
        android:paddingRight="@dimen/padding_lllsmall" />

就是加上了一句:   android:divider="#00000000" 设置成透明 我试了隐藏将高度设置为0( android:dividerHeight="0dp")是没用的 ,加上这个就可以了。

上一篇:Android的多渠道打包


下一篇:RatingBar使用