recycle view设置item下划线

来源:互联网 发布:贴吧登录数据加载失败 编辑:程序博客网 时间:2024/06/05 02:38
recyclerView.addItemDecoration(new DividerItemDecoration(this, DividerItemDecoration.HORIZONTAL));

drawable目录下新建bg_decoration.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"       android:shape="rectangle">    <gradient        android:centerColor="@color/colorAccent"        android:startColor="@color/colorPrimary"        android:endColor="@color/colorPrimaryDark"        android:type="linear"/>    <size android:height="3dp"/></shape>

style.xml下的主题样式中加入

<item name="android:listDivider">@drawable/bg_decoration</item>
原创粉丝点击