自定义View入门(七) - 监听

本章目录

  • Part One:自定义View的点击事件
  • Part Two:点击事件处理

自定义View的点击事件

官方的源生控件都有自己的点击或者触摸监听事件,那我们的自定义View也可以设置自己独有的监听器。
监听器的原理其实就是接口回调,我们在异步的网络请求或者MVC模式中会经常遇到,并不复杂。

点击事件处理

  1. 跟自定义View无关的外部监听,比如像Button一样点击跳转之类的可以直接在Activity里设置OnClickListener。
public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        final RelativeLayout relativeLayout = findViewById(R.id.mainActivity_container);
        CustomCircleView customCircleView = findViewById(R.id.circleView);
        customCircleView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Snackbar.make(relativeLayout, "点击了", Toast.LENGTH_SHORT).show();
            }
        });
    }
}

效果为:


外部监听事件.png
  1. 如果希望既能处理外部事件,同时内部也有一些变化,比如Button按钮点击是会有个摁下抬起的动作。那该怎么做呢,很简单,重写performClick()方法即可,在里面填写自定义View内部变化逻辑。
    @Override
    public boolean performClick() {
        currentProgress = 0;
        invalidate();
        return super.performClick();
    }

效果为:


perforClick.gif
  1. 如果像上述所说那样实现监听,同时又实现了该View的onTouchEvent触摸监听,那么无论触摸监听的返回值是什么,OnClickListener都无法触发了。
       @Override
    public boolean performClick() {
        currentProgress = 0;
        invalidate();
        return super.performClick();
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        if (event.getAction() == MotionEvent.ACTION_DOWN) {
            Toast.makeText(context, "摁下", Toast.LENGTH_SHORT).show();
            return true; // 只有返回true这个控件的move和up才会响应
        } else if (event.getAction() == MotionEvent.ACTION_MOVE) {
            Toast.makeText(context, "移动", Toast.LENGTH_SHORT).show();
        } else if (event.getAction() == MotionEvent.ACTION_UP) {
            Toast.makeText(context, "抬起", Toast.LENGTH_SHORT).show();
        }
        return super.onTouchEvent(event);
    }

效果为:


OnTouchListener.gif

可以看到,重绘的点击监听是没有被执行的。
解决的话,其实很简单,在重写OnTouchEvent的时候,会有一个警告。


onTouchEvent警告.png

很长的一段话,概括一下就是要在触摸监听的逻辑里面调用performClick()方法。比如:
    @Override
    public boolean performClick() {
        currentProgress = 0;
        invalidate();
        return super.performClick();
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        if (event.getAction() == MotionEvent.ACTION_DOWN) {
            Toast.makeText(context, "摁下", Toast.LENGTH_SHORT).show();
            return true; // 只有返回true这个控件的move和up才会响应
        } else if (event.getAction() == MotionEvent.ACTION_MOVE) {
            Toast.makeText(context, "移动", Toast.LENGTH_SHORT).show();
        } else if (event.getAction() == MotionEvent.ACTION_UP) {
            performClick();
            Toast.makeText(context, "抬起", Toast.LENGTH_SHORT).show();
        }
        return super.onTouchEvent(event);
    }

这样的话,警告也没了,外部监听,内部两个监听也都实现了,效果为:


OnTouchEvent.gif

最终,本案例所有代码为:
attrs.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="CustomCircleView">
        <attr name="circleColor" format="color"/>
        <attr name="radius" format="dimension"/>
        <attr name="strokeWidth" format="dimension"/>
        <attr name="progressColor" format="color"/>
    </declare-styleable>
</resources>

activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/mainActivity_container"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.terana.customviewclicklistener.activities.MainActivity">

   <com.terana.customviewclicklistener.customview.CustomCircleView
        android:id="@+id/circleView"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        app:circleColor="#696969"
        app:progressColor="#1E88E5"
        app:radius="44dp"
        app:strokeWidth="6dp" />

</RelativeLayout >

MainActivity.java:

package com.terana.customviewclicklistener.activities;

import android.os.Bundle;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.RelativeLayout;
import android.widget.Toast;

import com.terana.customviewclicklistener.R;
import com.terana.customviewclicklistener.customview.CustomCircleView;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        final RelativeLayout relativeLayout = findViewById(R.id.mainActivity_container);
        CustomCircleView customCircleView = findViewById(R.id.circleView);
        customCircleView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Snackbar.make(relativeLayout, "点击了", Toast.LENGTH_SHORT).show();
            }
        });
    }
}

CustomCircleView:

package com.terana.customviewclicklistener.customview;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.RectF;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.widget.Toast;

import com.terana.customviewclicklistener.R;
import com.terana.customviewclicklistener.utils.DensityUtils;


public class CustomCircleView extends View{
    //画圆的画笔
    private Paint circlePaint;
    //圆的半径
    private float radius;
    //圆的颜色
    private int circleColor;
    //圆的宽度
    private float strokeWidth;
    //动态圆的颜色
    private int progressColor;
    //动态圆的画笔
    private Paint progressPaint;
    //动态圆的当前进度值
    private int currentProgress;
    //动态圆的范围
    private RectF initRectF;
    //文字画笔
    private Paint textPaint;
    //为了密度转换,需要一个context
    private Context context;

    public CustomCircleView(Context context) {
        this(context, null);
    }

    public CustomCircleView(Context context, @Nullable AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public CustomCircleView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        this(context, attrs, defStyleAttr, 0);
    }

    public CustomCircleView(Context context, @Nullable AttributeSet attrs, int defStyleAttr, int defStyleRes) {
        super(context, attrs, defStyleAttr, defStyleRes);
        this.context = context;
        initAttrs(context, attrs);
        initVariables();
    }

    @Override
    public boolean performClick() {
        currentProgress = 0;
        invalidate();
        return super.performClick();
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        if (event.getAction() == MotionEvent.ACTION_DOWN) {
            Toast.makeText(context, "摁下", Toast.LENGTH_SHORT).show();
            return true; // 只有返回true这个控件的move和up才会响应
        } else if (event.getAction() == MotionEvent.ACTION_MOVE) {
            Toast.makeText(context, "移动", Toast.LENGTH_SHORT).show();
        } else if (event.getAction() == MotionEvent.ACTION_UP) {
            performClick();
            Toast.makeText(context, "抬起", Toast.LENGTH_SHORT).show();
        }
        return super.onTouchEvent(event);
    }

    private void initAttrs(Context context, AttributeSet attrs) {
        TypedArray typedArray = context.obtainStyledAttributes(attrs,
                R.styleable.CustomCircleView, 0, 0);//获取TypedArray对象
        radius = typedArray.getDimension(R.styleable.CustomCircleView_radius,
                100);//获取半径,默认值为100
        strokeWidth = typedArray.getDimension(R.styleable.CustomCircleView_strokeWidth,
                2);//获取圆环的宽度,默认为2
        circleColor = typedArray.getColor(R.styleable.CustomCircleView_circleColor,
                Color.BLACK);//获取圆环的颜色,默认为红色
        progressColor = typedArray.getColor(R.styleable.CustomCircleView_progressColor,
                Color.RED);//获取圆环的颜色,默认为红色
        typedArray.recycle();//TypedArray对象是共享的资源,所以在获取完值之后必须要调用recycle()方法来回收。
    }

    private void initVariables() {
        //创建画圆的画笔
        circlePaint = new Paint();
        circlePaint.setAntiAlias(true);//画笔去除锯齿
        circlePaint.setColor(circleColor);//画笔颜色为红色
        circlePaint.setStyle(Paint.Style.STROKE);//画的圆是空心圆,FILL为实心圆
        circlePaint.setStrokeWidth(strokeWidth);//设置圆的线条宽度为2

        //创建动态圆的范围
        initRectF = new RectF();

        //创建动态圆的画笔
        progressPaint = new Paint();
        progressPaint.setAntiAlias(true);//画笔去除锯齿
        progressPaint.setColor(progressColor);//画笔颜色为红色
        progressPaint.setStyle(Paint.Style.STROKE);//画的圆是空心圆,FILL为实心圆
        progressPaint.setStrokeWidth(strokeWidth);//设置圆的线条宽度为2

        //初始化文字画笔
        textPaint = new Paint();
        textPaint.setAntiAlias(true);
        textPaint.setColor(circleColor);
        textPaint.setStyle(Paint.Style.STROKE);
        textPaint.setTextSize(DensityUtils.sp2px(context, 22));
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        //getSuggestedMinimumWidth用于返回View推荐的最小宽度
        int width = getMyMeasureSize(getSuggestedMinimumWidth(), widthMeasureSpec);
        //getSuggestedMinimumHeight用于返回View推荐的最小高度
        int height = getMyMeasureSize(getSuggestedMinimumHeight(), heightMeasureSpec);
        setMeasuredDimension(width, height);//必须调用此方法,否则会抛出异常
    }

    private int getMyMeasureSize(int size, int measureSpec) {
        int result = size;
        //从MeasureSpec中获取测量模式
        int specMode = MeasureSpec.getMode(measureSpec);
        //从MeasureSpec中获取测量大小
        int specSize = MeasureSpec.getSize(measureSpec);
        switch (specMode){
            //父容器没有对当前View有任何限制,要多大就多大,这种情况一般用于系统内部,表示一种测量状态。
            case MeasureSpec.UNSPECIFIED:
                result = size;//用推荐值即可
                break;
            //父容器已经检测出View所需要的精确大小,这个时候View的最终大小就是SpecSize的值。
            //对应match_parent和具体的数值。
            case MeasureSpec.EXACTLY:
                result = specSize;
                break;
            //父容器指定了一个可用大小即SpecSize,View的大小不能大于这个值。对应wrap_content。
            case MeasureSpec.AT_MOST:
                result = Math.min(200, specSize);
                break;
        }
        return result;
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        int minimum = Math.min(getWidth() / 2, getHeight() / 2);
        radius = radius <= minimum ? radius : minimum;
        //画圆
        canvas.drawCircle(getWidth() / 2, getHeight() / 2, radius - strokeWidth / 2, circlePaint);

        //动态圆的总进度
        int totalProgress = 100;
        //获取动态圆的矩形区域
        initRectF.top = getWidth() / 2 - radius + strokeWidth / 2;
        initRectF.left = getHeight() / 2 - radius + strokeWidth / 2;
        initRectF.right = getWidth() / 2 + radius - strokeWidth / 2;
        initRectF.bottom = getHeight() / 2 + radius - strokeWidth / 2;

        updateProgress();
        //本质其实是画一个圆弧形的矩形
        canvas.drawArc(initRectF, -90,((float) currentProgress / totalProgress)
                * 360 , false, progressPaint);

        //在中心点绘制文字
        String text = currentProgress + "%";
        //获取文字的宽度,text是文本,然后从0开始到文字结束
        float textWidth = textPaint.measureText(text, 0, text.length());
        Paint.FontMetrics fontMetrics = textPaint.getFontMetrics();
        canvas.drawText(text, (getWidth() - textWidth) / 2,
                getHeight() / 2 + (Math.abs(fontMetrics.ascent) - fontMetrics.descent) / 2, textPaint);
    }

    private MyRunnable runnable = new MyRunnable();

    private void updateProgress() {

        if (currentProgress == 60){
            getHandler().removeCallbacks(runnable);
        }else {
            getHandler().postDelayed(runnable, 20);
        }
    }

    private class MyRunnable implements Runnable{
        @Override
        public void run() {
            currentProgress++;
            postInvalidate();
        }
    }

    public void setRadius(float mRadius) {
        this.radius = mRadius;
        invalidate();//重绘
    }

    public void setCircleColor(int mCircleColor) {
        circlePaint.setColor(mCircleColor);
        invalidate();//重绘
    }

    public void setStrokeWidth(float mStrokeWidth) {
        circlePaint.setStrokeWidth(mStrokeWidth);
        invalidate();//重绘
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容