android使用ItemDecoration给RecyclerView 添加水印

时间:2024-02-10 03:56:10
【文件属性】:

文件名称:android使用ItemDecoration给RecyclerView 添加水印

文件大小:61KB

文件格式:PDF

更新时间:2024-02-10 03:56:10

AND android c

前言 项目中有使用到水印效果,如下图所示。在实现过程中,最终选用ItemDecoration来实现,其中有两大步骤:自定义Drawable来完成水印图片、使用ItemDecoration来布局水印。 Demo在 WatermarkFragment 中,效果图如下: 1. 自定义Drawable完成水印图片 public class MyDrawable extends Drawable { Paint mPaint; public MyDrawable() { mPaint = new Paint(); mPaint.setColor(Color.parseColor(#


网友评论