Markdown版本笔记 我的GitHub首页 我的博客 我的微信 我的邮箱
MyAndroidBlogs baiqiantao baiqiantao bqt20094 baiqiantao@sina.com

自定义View 水印布局 WaterMark 前景色 MD


目录

第一种实现方式

项目中的使用案例

项目中要求在所有页面都添加水印,这种情况下可以在BaseActivity中将水印布局设为根布局

前景色样式:



背景色样式:

布局:

<com.bqt.lock.MarkFrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/mark_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:mark_is_foreground="false"
app:mark_show_value="包青天"
app:mark_textcolor="#fff"> <TextView
android:id="@+id/tv"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="#f00"
android:gravity="center"/> <ImageView
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="200dp"
android:scaleType="centerCrop"
android:src="@drawable/icon"/> </com.bqt.lock.MarkFrameLayout>

水印布局 MarkFrameLayout

绘制水印时,可以选择在onDrawForeground上绘制前景色(盖在所有View的上面),也可以选择在onDraw上绘制背景色(会被所有View的背景遮盖)。

如果需要用到继承自其他其他 Layout 的水印布局,则只需将继承的类改为RelativeLayoutLinearLayout即可,其他什么都不需要更改。

public class MarkFrameLayout extends FrameLayout {

    private static final int DEFAULT_DEGRESES = -15;//水印倾斜角度
private static final int DEFAULT_MARK_PAINT_COLOR = Color.parseColor("#FFCCCCCC");//水印颜色
private static final int DEFAULT_ALPHA = (int) (0.5 * 255);//水印透明度
private static final String DEFAULT_MARK_SHOW_VALUE = "[水印]";//水印内容 private boolean showMark = true;
private float mMarkTextSize;
private int mMarkTextColor;
private boolean mMarkLayerIsForeground; //水印绘制在控件背景上,还是前景色上
private float mDegrees;
private int mVerticalSpacing;
private int mHorizontalSpacing;
private int mMarkPainAlpha;
private String mMarkValue;
private TextPaint mMarkPaint;
private Bitmap mMarkBitmap; public MarkFrameLayout(@NonNull Context context) {
this(context, null);
} public MarkFrameLayout(@NonNull Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
if (showMark) {
int defaultMarkTextSize = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, 12, getResources().getDisplayMetrics());
int defaultSpacing = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 24, getResources().getDisplayMetrics()); TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.MarkFrameLayout);
mDegrees = a.getInteger(R.styleable.MarkFrameLayout_mark_rotate_degrees, DEFAULT_DEGRESES);
mMarkTextColor = a.getColor(R.styleable.MarkFrameLayout_mark_textcolor, DEFAULT_MARK_PAINT_COLOR);
mMarkTextSize = a.getDimension(R.styleable.MarkFrameLayout_mark_textsize, defaultMarkTextSize);
mMarkPainAlpha = a.getInt(R.styleable.MarkFrameLayout_mark_alpha, DEFAULT_ALPHA);
mMarkLayerIsForeground = a.getBoolean(R.styleable.MarkFrameLayout_mark_is_foreground, true);//默认绘制在前景色上
mHorizontalSpacing = (int) a.getDimension(R.styleable.MarkFrameLayout_mark_hor_spacing, defaultSpacing);
mVerticalSpacing = (int) a.getDimension(R.styleable.MarkFrameLayout_mark_ver_spacing, defaultSpacing);
mMarkValue = a.getString(R.styleable.MarkFrameLayout_mark_show_value);
mMarkValue = TextUtils.isEmpty(mMarkValue) ? DEFAULT_MARK_SHOW_VALUE : mMarkValue; a.recycle();
initWaterPaint();
setForeground(new ColorDrawable(Color.TRANSPARENT)); //重置前景色透明
}
} @Override
public void onDrawForeground(Canvas canvas) {
super.onDrawForeground(canvas);
if (showMark && mMarkLayerIsForeground) {
drawMark(canvas); //绘制前景色
}
} @Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
if (showMark && !mMarkLayerIsForeground) {
drawMark(canvas); //绘制被景色
}
} private void initWaterPaint() {
//初始化Mark的Paint
mMarkPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG); //mMarkPaint.setAntiAlias(true)
mMarkPaint.setColor(mMarkTextColor);
mMarkPaint.setAlpha(mMarkPainAlpha);
mMarkPaint.setTextSize(mMarkTextSize);
//初始化MarkBitmap
Paint.FontMetrics fontMetrics = mMarkPaint.getFontMetrics();
int textHeight = (int) (fontMetrics.bottom - fontMetrics.top);
int textLength = (int) mMarkPaint.measureText(mMarkValue);
mMarkBitmap = Bitmap.createBitmap(textLength + 2 * mHorizontalSpacing,
textHeight + mVerticalSpacing * 2, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(mMarkBitmap);
canvas.drawText(mMarkValue, mHorizontalSpacing, mVerticalSpacing, mMarkPaint);
} private void drawMark(Canvas canvas) {
int maxSize = Math.max(getMeasuredWidth(), getMeasuredHeight());
mMarkPaint.setShader(new BitmapShader(mMarkBitmap, Shader.TileMode.REPEAT, Shader.TileMode.REPEAT));
canvas.save();
canvas.translate(-(maxSize - getMeasuredWidth()) / 2, 0);
canvas.rotate(mDegrees, maxSize / 2, maxSize / 2);
canvas.drawRect(new RectF(0, 0, maxSize, maxSize), mMarkPaint);
canvas.restore();
} public void setShowMark(boolean showMark) {
this.showMark = showMark;
invalidate();
}
}

自定义属性

<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="MarkFrameLayout">
<attr name="mark_rotate_degrees" format="integer"/>
<attr name="mark_textcolor" format="color|reference"/>
<attr name="mark_textsize" format="dimension"/>
<attr name="mark_alpha" format="integer"/>
<attr name="mark_is_foreground" format="boolean"/>
<attr name="mark_hor_spacing" format="dimension"/>
<attr name="mark_ver_spacing" format="dimension"/>
<attr name="mark_show_value" format="string"/>
</declare-styleable> </resources>

第二种实现方式

参考

使用案例

FrameLayout rootView = findViewById(R.id.layout);
rootView.setForeground(new WaterMarkBg(this, labels, -10, 12));

自定义 Drawable

public class WaterMarkBg extends Drawable {

    private Paint paint = new Paint();
private List<String> labels;
private Context context;
private int degress;//角度
private int fontSize;//字体大小 单位sp /**
* 初始化构造
*
* @param context 上下文
* @param labels 水印文字列表 多行显示支持
* @param degress 水印角度
* @param fontSize 水印文字大小
*/
public WaterMarkBg(Context context, List<String> labels, int degress, int fontSize) {
this.labels = labels;
this.context = context;
this.degress = degress;
this.fontSize = fontSize;
} @Override
public void draw(@NonNull Canvas canvas) {
int width = getBounds().right;
int height = getBounds().bottom; canvas.drawColor(Color.TRANSPARENT);
paint.setColor(Color.GRAY);
paint.setAlpha((int) (0.5 * 255));
paint.setAntiAlias(true);
paint.setTextSize(sp2px(context, fontSize));
canvas.save();
canvas.rotate(degress);
float textWidth = paint.measureText(labels.get(0));
int index = 0;
for (int positionY = height / 10; positionY <= height; positionY += height / 10 + 80) {
float fromX = -width + (index++ % 2) * textWidth;
for (float positionX = fromX; positionX < width; positionX += textWidth * 2) {
int spacing = 0;//间距
for (String label : labels) {
canvas.drawText(label, positionX, positionY + spacing, paint);
spacing = spacing + 50;
} }
}
canvas.restore();
} @Override
public void setAlpha(@IntRange(from = 0, to = 255) int alpha) { } @Override
public void setColorFilter(@Nullable ColorFilter colorFilter) { } @Override
public int getOpacity() {
return PixelFormat.UNKNOWN;
} private static int sp2px(Context context, float spValue) {
final float fontScale = context.getResources().getDisplayMetrics().scaledDensity;
return (int) (spValue * fontScale + 0.5f);
}
}

2018-10-13 11:59:36 星期六

自定义View 水印布局 WaterMark 前景色 MD的更多相关文章

  1. android自定义View&&简单布局&&回调方法

    一.内容描述 根据“慕课网”上的教程,实现一个自定义的View,且该View中使用自定义的属性,同时为该自定义的View定义点击事件的回调方法. 二.定义自定义的属性 在res/valus/ 文件夹下 ...

  2. Android 自定义View及其在布局文件中的使用示例

    前言: 尽管Android已经为我们提供了一套丰富的控件,如:Button,ImageView,TextView,EditText等众多控件,但是,有时候在项目开发过程中,还是需要开发者自定义一些需要 ...

  3. 【朝花夕拾】Android自定义View篇之(九)多点触控(下)实践出真知

    前言 在上一篇文章中,已经总结了MotionEvent以及多点触控相关的基础理论知识和常用的函数.本篇将通过实现单指拖动图片,多指拖动图片的实际案例来进行练习并实现一些效果,来理解前面的理论知识.要理 ...

  4. 自定义View实现五子棋游戏

    成功的路上一点也不拥挤,因为坚持的人太少了. ---简书上看到的一句话 未来请假三天顺带加上十一回家结婚,不得不说真是太坑了,去年婚假还有10天,今年一下子缩水到了3天,只能赶着十一办事了. 最近还在 ...

  5. 自定义View的实现流程

    1.继承View组件,比如,LabelView继承了View   2.重写两个构造方法,比如,对于自定义View LabelView   LabelView(Context context),如果该自 ...

  6. Android圆形图片不求人,自定义View实现(BitmapShader使用)

    在很多APP当中,圆形的图片是必不可少的元素,美观大方.本文将带领读者去实现一个圆形图片自定View,力求只用一个Java类来完成这件事情. 一.先上效果图 二.实现思路 在定义View 的onMea ...

  7. html页面自定义文字水印效果案例

    在系统开发过程中,一些数据或页面比较敏感的地方,客户会要求实现水印效果,防止内部人员截图或拍照泄露信息. 自定义文字水印顾名思义就是利用js在完成页面渲染的同时,往页面的最底层动态生成多个带水印信息的 ...

  8. Android 自定义View及其在布局文件中的使用示例(三):结合Android 4.4.2_r1源码分析onMeasure过程

    转载请注明出处 http://www.cnblogs.com/crashmaker/p/3549365.html From crash_coder linguowu linguowu0622@gami ...

  9. Android 自定义View及其在布局文件中的使用示例(二)

    转载请注明出处 http://www.cnblogs.com/crashmaker/p/3530213.html From crash_coder linguowu linguowu0622@gami ...

随机推荐

  1. CodeForces 794 G.Replace All

    CodeForces 794 G.Replace All 解题思路 首先如果字符串 \(A, B\) 没有匹配,那么二元组 \((S, T)\) 合法的一个必要条件是存在正整数对 \((x,y)\), ...

  2. hdu 3534 树形dp ***

    题意:统计一棵带权树上两点之间的最长距离以及最长距离的数目 链接:点我 首先统计出结点到叶子结点的最长距离和次长距离. 然后找寻经过这个点的,在这个为根结点的子树中的最长路径个数目. #include ...

  3. 从客户端浏览器直传文件到Storage

    关于上传文件到Azure Storage没有什么可讲的,不论我们使用哪种平台.语言,上传流程都如下图所示: 从上图我们可以了解到从客户端上传文件到Storage,是需要先将文件上传到应用服务上,然后再 ...

  4. 群晖NAS的Docker容器使用中国镜像加速

    vi /var/packages/Docker/etc/dockerd.json 添加如下内容: { "registry-mirrors": ["https://regi ...

  5. 使用Docker中国官方镜像的加速地址

    vi /etc/docker/daemon.json # 添加如下内容 { "registry-mirrors": ["https://registry.docker-c ...

  6. ZOJ 2702 Unrhymable Rhymes 贪心

    贪心.能凑成一组就算一组 Unrhymable Rhymes Time Limit: 10 Seconds      Memory Limit: 32768 KB      Special Judge ...

  7. CentOS 7.x,不重新编译 PHP,动态安装 imap 扩展

    先前的教程:PHP5不重新编译,如何安装自带的未安装过的扩展,如soap扩展? # 安装依赖包 yum install -y libc-client-devel /usr/local/src/cent ...

  8. 【iOS开发-91】GCD的同步异步串行并行、NSOperation和NSOperationQueue一级用dispatch_once实现单例

    (1)GCD实现的同步异步.串行并行. --同步sync应用场景:用户登录,利用堵塞 --串行异步应用场景:下载等耗时间的任务 /** * 由于是异步.所以开通了子线程.可是由于是串行队列,所以仅仅须 ...

  9. 对一个前端使用AngularJS后端使用ASP.NET Web API项目的理解(1)

    chsakell分享了一个前端使用AngularJS,后端使用ASP.NET Web API的项目. 源码: https://github.com/chsakell/spa-webapi-angula ...

  10. Running Jenkins behind Nginx

    original : https://wiki.jenkins-ci.org/display/JENKINS/Running+Jenkins+behind+Nginx In situations wh ...