Android 自定义View之onMeasure、onLayout、onDraw

网友投稿 1254 2022-10-09

Android 自定义View之onMeasure、onLayout、onDraw

Android 自定义View之onMeasure、onLayout、onDraw

android自定义View,相信大家都会了。因此我也不打算在这一篇文章中去展示如何自定义View。我想分享一下自定义View中onMeasure、onLayout、onDraw这几个方法中,我认为有趣的地方,尤其是onMeasure方法对视图的测量。

onMeasure:测量视图大小

首先,这个方法是用于测量我们的View的大小的。要用好这个方法,关键在于理解​​onMeasure(int widthMeasureSpec, int heightMeasureSpec)​​​这个两个参数的含义和用法。 其实,我相信很多人都已经知道了这两个参数,每一个都包含了两方面的信息,一个是测量模式(mode)信息,另一个尺寸大小信息。我们通过重写onMeasure方法决定视图的宽和高。一般,自定义View都应该要重写这个方法。重写了这个方法onMeasure后,记得调用setMeasuredDimension(int, int)保存宽和高。

如下是我们自定义的CustomTextView在布局中的情况:

如上布局所示,CustomTextView的父布局就是LinearLayout,那么在初始化时,CustomTextView的onMeasure(int widthMeasureSpec, int heightMeasureSpec)方法,会收到父布局传过来的参数。每个参数都包含两部分信息,一是测量模式信息,另一部分是尺寸信息。我们通过以下方式可以分离出这两部分信息,另一个参数的信息提取也是类似的。

int widthMode = MeasureSpec.getMode(widthMeasureSpec);int widthSize = MeasureSpec.getSize(widthMeasureSpec);

它的模式有三种:

UNSPECIFIED:父布局没有任何限制(在自定义View不常用这个)EXACTLY:父布局已经确定了确切的尺寸AT_MOST:可以任意增长,直到指定确切的尺寸

自定义视图一般只需要关注后两种。

xml布局文件中​​android:layout_width​​​和​​android:layout_height​​的取值情况:

match_parent:占满整个父布局的宽或高,父布局的宽和高一定是先于子视图或子布局确定好的。具体的数值,如300dp:那么这个更加不用说了,直接就指明了它的大小,这也是确定的。wrap_content:内容多大,宽和高相应多大,反正是能够包裹住内容。但是我们的父布局根本不知道内容有多大,所以干脆就默认把整个父布局的宽高给过来了。这种情况正是我们最需要处理的。我们需要计算内容的大小,以决定视图的宽和高。

通过各个模式及xml布局的设值情况,我们不难发现:

match_parent、具体的数值,如300dp:属于EXACTLY测量模式wrap_content:属于AT_MOST测量模式

例子:

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); int widthMode = MeasureSpec.getMode(widthMeasureSpec); int widthSize = MeasureSpec.getSize(widthMeasureSpec); int heightMode = MeasureSpec.getMode(heightMeasureSpec); int heightSize = MeasureSpec.getSize(heightMeasureSpec); int mWidth = 0; int mHeight = 0; switch (widthMode) { case MeasureSpec.AT_MOST: widthModeStr = "AT_MOST"; mWidth = getPaddingLeft() + getPaddingRight() + mTextBounds.width(); break; case MeasureSpec.EXACTLY: widthModeStr = "EXACTLY"; mWidth = getPaddingLeft() + getPaddingRight() + widthSize; break; default: throw new IllegalStateException("Unexpected value: " + widthMode); } switch (heightMode) { case MeasureSpec.AT_MOST: heightModeStr = "AT_MOST"; mHeight = getPaddingTop() + getPaddingBottom() + mTextBounds.height(); break; case MeasureSpec.EXACTLY: heightModeStr = "EXACTLY"; mHeight = getPaddingTop() + getPaddingBottom() + heightSize; break; default: throw new IllegalStateException("Unexpected value: " + heightMode); } setMeasuredDimension(mWidth, mHeight); }

在自定义View中,只需要考虑padding的情况,不需要考虑margin的情况,因为margin是view与view之间的,属于外部关系,而padding是view内部,所以应当考虑在内,如:

mWidth = getPaddingLeft() + getPaddingRight() + widthSize;

onLayout:设置视图显示位置

在自定义View中,一般不需要重写这个方法,但有些情况需要重写,例如字幕滚动,那么就需要改变文字显示的位置,需要重写onLayout.

onDraw:将视图渲染出来

利用画布和画笔,把内容渲染出来。

protected void onDraw(Canvas canvas) { super.onDraw(canvas); if (!TextUtils.isEmpty(mText)) { Paint.FontMetrics fontMetrics = mPaint.getFontMetrics(); canvas.drawText(mText, getPaddingLeft(), Math.abs(fontMetrics-)+(Integer)(getPaddingTop()/2), mPaint); } }

如上所示利用画布canvas的drawText方法将视图渲染出来。

drawText方法里有个坐标,一般来说者是取左上角的坐标,应该就会把文字显示完整,但是事实不是这样。对于drawText这个坐标来说:

.FontMetrics fontMetrics = mPaint.getFontMetrics(); Math.abs(fontMetrics-);// baseline的位置

完整示例: style.xml:

CustomTextView.java:

package com.wong.customtextview;import android.annotation.SuppressLint;import android.content.Context;import android.content.res.TypedArray;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Paint;import android.graphics.Rect;import android.text.TextPaint;import android.text.TextUtils;import android.util.AttributeSet;import android.util.Log;import android.util.TypedValue;import android.view.View;import androidx.annotation.Nullable;public class CustomTextView extends View { private final Rect mTextBounds = new Rect(); private String mText; private TextPaint mPaint; private int mTextColor; private float mTextSize; public CustomTextView(Context context) { this(context, null); } public CustomTextView(Context context, @Nullable AttributeSet attrs) { this(context, attrs, 0); } public CustomTextView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); @SuppressLint("Recycle") TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CustomTextView); mText = a.getString(R.styleable.CustomTextView_custom_text); mTextColor = a.getColor(R.styleable.CustomTextView_custom_textColor, Color.BLACK); mTextSize = a.getFloat(R.styleable.CustomTextView_custom_textSize, 15); a.recycle(); float size = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, mTextSize, context.getResources().getDisplayMetrics()); mPaint = new TextPaint(); mPaint.setColor(mTextColor); mPaint.setAntiAlias(true); mPaint.setStrokeCap(Paint.Cap.ROUND); mPaint.setStrokeJoin(Paint.Join.ROUND); mPaint.setTextSize(size); if (!TextUtils.isEmpty(mText)) { mPaint.getTextBounds(mText, 0, mText.length(), mTextBounds); } } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); int widthMode = MeasureSpec.getMode(widthMeasureSpec); int widthSize = MeasureSpec.getSize(widthMeasureSpec); int heightMode = MeasureSpec.getMode(heightMeasureSpec); int heightSize = MeasureSpec.getSize(heightMeasureSpec); int mWidth = 0; int mHeight = 0; String widthModeStr; switch (widthMode) { case MeasureSpec.AT_MOST: widthModeStr = "AT_MOST"; mWidth = getPaddingLeft() + getPaddingRight() + mTextBounds.width(); break; case MeasureSpec.EXACTLY: widthModeStr = "EXACTLY"; mWidth = getPaddingLeft() + getPaddingRight() + widthSize; break; default: throw new IllegalStateException("Unexpected value: " + widthMode); } String heightModeStr; switch (heightMode) { case MeasureSpec.AT_MOST: heightModeStr = "AT_MOST"; mHeight = getPaddingTop() + getPaddingBottom() + mTextBounds.height(); break; case MeasureSpec.EXACTLY: heightModeStr = "EXACTLY"; mHeight = getPaddingTop() + getPaddingBottom() + heightSize; break; default: throw new IllegalStateException("Unexpected value: " + heightMode); } setMeasuredDimension(mWidth, mHeight); String str = "@widthMode#" + widthModeStr + ":" + widthSize + "@heightMode#" + heightModeStr + ":" + heightSize + "###" + getSuggestedMinimumHeight() + "##$" + getSuggestedMinimumWidth(); Log.d("尺寸", str); } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); if (!TextUtils.isEmpty(mText)) { Paint.FontMetrics fontMetrics = mPaint.getFontMetrics(); canvas.drawText(mText, getPaddingLeft(), Math.abs(fontMetrics-)+(Integer)(getPaddingTop()/2), mPaint); } }}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:微信小程序全自动埋点(小程序埋点是什么意思)
下一篇:小程序云开发,个人博客(小程序云服务开发)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~