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

相关文章
|
3月前
|
Linux Docker 容器
10-24|如果我这两个都配置了privileged:true我后边加的这个管用吗
10-24|如果我这两个都配置了privileged:true我后边加的这个管用吗
|
6月前
|
移动开发 前端开发 容器
技术经验解读:代码:PC链接列表面板border的一种做法(每行之间有分割线)
技术经验解读:代码:PC链接列表面板border的一种做法(每行之间有分割线)
19 1
|
5月前
|
存储 JavaScript 容器
TS,添加注释,//,ctrl + /,shift + alt + a,输出语句,console.log(“Hello Ts‘),变量和数据类型导读,变量就是用来存储数据的容器,变量的使用,TS
TS,添加注释,//,ctrl + /,shift + alt + a,输出语句,console.log(“Hello Ts‘),变量和数据类型导读,变量就是用来存储数据的容器,变量的使用,TS
|
5月前
|
语音技术
语音识别,print(“Hello“,end=‘‘)不换行的写法,\t代表着tab,print(“H\tW“),for循环的基础语法,把字符串遍历的写法,数itheima is有几个a
语音识别,print(“Hello“,end=‘‘)不换行的写法,\t代表着tab,print(“H\tW“),for循环的基础语法,把字符串遍历的写法,数itheima is有几个a
|
7月前
recycleview 自定义分割线
recycleview 自定义分割线
52 0
|
7月前
|
前端开发
selenium 解决 id定位、class定位中,属性值带空格的解决办法
selenium 解决 id定位、class定位中,属性值带空格的解决办法
361 1
|
移动开发 Python
“ \r “导致print打印被覆盖
“ \r “导致print打印被覆盖
123 0
RecyclerView 的用法,添加分割线,实现自定义监听
RecyclerView 的用法,添加分割线,实现自定义监听
RecyclerView 的用法,添加分割线,实现自定义监听
|
Shell Perl Linux
去掉Enter字符(\r)的几个方法
数据:test.txt: f1:f2:f3:0#1 Shell:   #!/bin/bash while read line do echo $line result1=$(echo $line|awk -F ':' '{print $4}' ) echo $re...
1376 0
怎样去掉list里重复的数据(多种方法)
怎样去掉list里重复的数据(多种方法)
169 0
怎样去掉list里重复的数据(多种方法)