pullToRefreshListView去掉分割线方法
【摘要】
如上图用的是pullToRefreshListView 每个item之间有一条线,样式比较尴尬 ,需要去掉,去掉后的效果是这样的
去掉前代码:
<com.jky.mobilebzt.pulltorefresh.PullToRefreshListView android:id="@+id/pl...
如上图用的是pullToRefreshListView 每个item之间有一条线,样式比较尴尬 ,需要去掉,去掉后的效果是这样的
去掉前代码:
-
<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")是没用的 ,加上这个就可以了。
希望对大家有所帮助。欢迎各位小伙伴加入我的qq群:开发一群:454430053 (付费)开发二群:537532956 (付费)开发三群:812695329(免费)这里已经有很多小伙伴在等你了,快来加入我们吧!
文章来源: wukong.blog.csdn.net,作者:再见孙悟空_,版权归原作者所有,如需转载,请联系作者。
原文链接:wukong.blog.csdn.net/article/details/109852415
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)