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 的水印布局,则只需将继承的类改为RelativeLayout或LinearLayout即可,其他什么都不需要更改。

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.744B.Hongcow's Game(交互 按位统计)

    题目链接 \(Description\) 一个\(n\times n\)的非负整数矩阵\(A\),保证\(A_{i,i}=0\).现在你要对每个\(i\)求\(\min_{j\neq i}A_{i,j ...

  2. tomcat配置问题:访问http://localhost:8080/ 遇到 Access Error: 404

    win7: 8080端口已经被其他应用使用,比如nixxxxxxxxxxxxx When I had an error Access Error: 404 -- Not Found I fixed i ...

  3. UVALive 6906 Cluster Analysis 并查集

    Cluster Analysis 题目连接: https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemi ...

  4. 没用过的函数 GetHomePath - 获取用户程序数据目录

    uses System.IOUtils; procedure TForm1.FormCreate(Sender: TObject); var S: string; begin { 三种方法结果一致: ...

  5. 使用Puppeteer进行数据抓取(一)——安装和使用

    Puppeteer是 Google Chrome 团队官方的Chrome 自动化工具.它本身是基于Chrome Dev Protocol协议实现的,但它提供了更高层次API封装,使用起来更加方便快捷. ...

  6. 使用MSTest进行单元测试

    我之前写过一篇XUNit的简介:使用Xunit来进行单元测试.Xunit在当时确实是一个最简单易用的测试框架,然而,随着发展,Xunit也变得复杂了不少,光写一个最简单的测试就要导入8个包. 如果在大 ...

  7. 在.net core 2.0中生成exe文件

    .net core 2.0程序默认生成的是一个dll,需要通过dotnet命令来执行他. dotnet ConsoleApp1.dll 这种方式有点类似于java程序.本身这种方式没有什么问题,但在调 ...

  8. GUN WINDOW 工具

    GNU utilities for Win32 CoreUtils for Windows 或者 完整的 package dd for windows Unix ports - WHICH, TEE ...

  9. php简单浏览目录内容

    <?php $dir = dirname(__FILE__); $open_dir = opendir($dir); echo "<table border=1 borderCo ...

  10. WebLogic使用总结(二)——WebLogic卸载

    一.WebLogic 12c的卸载 WebLogic的卸载是非常容易的,找到WebLogic的卸载程序,如下图所示: 启动卸载程序,如下图所示: