pullToRefreshListView去掉分割线方法

简介: pullToRefreshListView去掉分割线方法

image.png

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

image.png

去掉前代码:

 <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")是没用的 ,加上这个就可以了。

相关文章
|
5月前
|
移动开发 前端开发 容器
技术经验解读:代码:PC链接列表面板border的一种做法(每行之间有分割线)
技术经验解读:代码:PC链接列表面板border的一种做法(每行之间有分割线)
15 1
|
6月前
|
前端开发
selenium 解决 id定位、class定位中,属性值带空格的解决办法
selenium 解决 id定位、class定位中,属性值带空格的解决办法
316 1
|
6月前
|
存储 前端开发 Java
去掉参数中第一个“,”
去掉参数中第一个“,”
53 0
RecyclerView 的用法,添加分割线,实现自定义监听
RecyclerView 的用法,添加分割线,实现自定义监听
RecyclerView 的用法,添加分割线,实现自定义监听
想要判断是不是 empty 还真的挺麻烦的
封装了一个查询控件,如果没有输入查询条件的话,就清空对应的查询条件,如果输入查询条件,则生成对应的查询对象。
133 0
|
Java 程序员 API
来,教你去掉了烦人的 !=null
为了避免空指针调用,我们经常会看到这样的语句:
AddBook&nbsp;类的简单修改(增加注释文…
AddBook&nbsp;类的简单修改(增加注释文…
145 0