自定义View 水印布局 WaterMark 前景色 MD
| 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的更多相关文章
- android自定义View&&简单布局&&回调方法
一.内容描述 根据“慕课网”上的教程,实现一个自定义的View,且该View中使用自定义的属性,同时为该自定义的View定义点击事件的回调方法. 二.定义自定义的属性 在res/valus/ 文件夹下 ...
- Android 自定义View及其在布局文件中的使用示例
前言: 尽管Android已经为我们提供了一套丰富的控件,如:Button,ImageView,TextView,EditText等众多控件,但是,有时候在项目开发过程中,还是需要开发者自定义一些需要 ...
- 【朝花夕拾】Android自定义View篇之(九)多点触控(下)实践出真知
前言 在上一篇文章中,已经总结了MotionEvent以及多点触控相关的基础理论知识和常用的函数.本篇将通过实现单指拖动图片,多指拖动图片的实际案例来进行练习并实现一些效果,来理解前面的理论知识.要理 ...
- 自定义View实现五子棋游戏
成功的路上一点也不拥挤,因为坚持的人太少了. ---简书上看到的一句话 未来请假三天顺带加上十一回家结婚,不得不说真是太坑了,去年婚假还有10天,今年一下子缩水到了3天,只能赶着十一办事了. 最近还在 ...
- 自定义View的实现流程
1.继承View组件,比如,LabelView继承了View 2.重写两个构造方法,比如,对于自定义View LabelView LabelView(Context context),如果该自 ...
- Android圆形图片不求人,自定义View实现(BitmapShader使用)
在很多APP当中,圆形的图片是必不可少的元素,美观大方.本文将带领读者去实现一个圆形图片自定View,力求只用一个Java类来完成这件事情. 一.先上效果图 二.实现思路 在定义View 的onMea ...
- html页面自定义文字水印效果案例
在系统开发过程中,一些数据或页面比较敏感的地方,客户会要求实现水印效果,防止内部人员截图或拍照泄露信息. 自定义文字水印顾名思义就是利用js在完成页面渲染的同时,往页面的最底层动态生成多个带水印信息的 ...
- Android 自定义View及其在布局文件中的使用示例(三):结合Android 4.4.2_r1源码分析onMeasure过程
转载请注明出处 http://www.cnblogs.com/crashmaker/p/3549365.html From crash_coder linguowu linguowu0622@gami ...
- Android 自定义View及其在布局文件中的使用示例(二)
转载请注明出处 http://www.cnblogs.com/crashmaker/p/3530213.html From crash_coder linguowu linguowu0622@gami ...
随机推荐
- VMware虚拟机中CentOS设置固定IP
因为需要配置固定IP,在网上找了很久终于找到一个可行的例子,自己配置成功了. 1.首先获取你的GATEWAY 方便后面在cento系统配置里使用选取菜单栏:Edit->Virtual Netwo ...
- GRYZ 模 拟 赛 系 列 之 迷 宫(不就是个洪水)
- 迷 宫 (maze.cpp/c/pas) Description Karles 和朋友到迷宫玩耍,没想到遇上了 10000000 年一次的大洪水,好在 Karles 是一个喜 欢思考的人,他发现迷 ...
- codevs 2821 天使之城
题目描述 Description 天使城有一个火车站,每辆火车都从A方向驶入车站,再从B方向驶出车站. 为了调度火车,火车站设有停放轨道,可存放5辆火车.已知从A进入车站顺序为1.2.3…….现在给你 ...
- Dos常用命令大全
dos命令进入文件夹 输入 D: 回车,进入D盘的根目录,然后输入dir 回车 可以查看根目录下的文件和文件夹, 输入 cd空格文件夹的名字(不区分大小写) 进入文件夹根目录下, 依次输入dir 查 ...
- MyBatis3与Spring3无缝集成-从iBatis平滑过渡
从2010开始接触iBatis到现在,一直到现在把iBatis作为数据访问层ORM.为了演示一个Web应用,今天又搭了个SpringMVC应用,由于应用比较简单,Spring版本直接用最新版本3.2. ...
- UVALive 6915 Leveling Ground 倍增RMQ
Leveling Ground 题目连接: https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid ...
- 玩一下C#的语音识别
在.NET4.0中,我可以借助System.Speech组件让电脑来识别我们的声音. 以上,当我说"name",显示"Darren",我说"age&q ...
- 用xcode 5 开发访问IOS 7上面的通讯录有问题
NSMutableArray *addressBookTemp = [NSMutableArray array]; ABAddressBookRef addressBooks = ABAddressB ...
- ArcEngine二次开发错误编码对照表(转)
阅读数:3323 每当我们在进行AE开发,出现错误时经常会出现错误代码,但是我们并不知道它到底代表什么意思,这里的而错误编码我们可以对照着找到我们需要的时候常详细信息(问题是,经常还是会出现没有错误编 ...
- arcgis10.5.1 对齐要素
许可级别:BasicStandardAdvanced 摘要 标识地理处理工具用于标识搜索距离中输入要素与目标要素的不一致部分并使其与目标要素一致. 插图 用法 警告: 此工具用于修改输入数据.有关详细 ...