我是靠谱客的博主 简单戒指,最近开发中收集的这篇文章主要介绍Recylerview添加分割线与自定义分割线,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

效果图:

默认分割线:                                    自定义分割线: 

看代码:

1. 添加默认分割线:

mRecylerView.addItemDecoration(new DividerItemDecoration(this,DividerItemDecoration.VERTICAL));

2. 自定义分割线(分两步,①创建drawable文件 ②为recylerview添加drawable分割线)

①创建drawable

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <gradient android:startColor="@android:color/holo_red_dark"
              android:centerColor="@android:color/white"
              android:endColor="@android:color/holo_blue_light"/>
    <size android:height="2dp"/>
</shape>   

②创建drawable对象,给recylerview添加

DividerItemDecoration dividerItemDecoration = new DividerItemDecoration(this, DividerItemDecoration.VERTICAL);
dividerItemDecoration.setDrawable(ResourcesCompat.getDrawable(getResources(), R.drawable.recylerview_divider, null));
mRecylerView.addItemDecoration(dividerItemDecoration);

 

最后

以上就是简单戒指为你收集整理的Recylerview添加分割线与自定义分割线的全部内容,希望文章能够帮你解决Recylerview添加分割线与自定义分割线所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部