Android-自定义View网络加载

一、前言

自定义View-仿QQ运动步数进度效果基础上衍生的网络加载,效果图如下:

loading

二、直接上三部曲

1)定义attrs.xml

    <declare-styleable name="LoadingView">
        <attr name="typeLoading" format="string"/>
        <attr name="circleWidth" format="dimension"/>
        <attr name="InnerColor" format="color"/>
        <attr name="foreginColor" format="color" />
    </declare-styleable>

2)在布局中使用

    <com.example.myapplication.Widget.LoadingView
        android:id="@+id/loading"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:foreginColor="@color/colorBlue"
        app:InnerColor="@color/colorRed"
        app:circleWidth="5dp"
        app:typeLoading="water"
        />

3)正文代码在此

package com.example.myapplication.Widget;


import android.animation.ValueAnimator;
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.RectF;
import android.util.AttributeSet;
import android.util.TypedValue;
import android.view.View;
import android.view.animation.LinearInterpolator;

import androidx.annotation.Nullable;

import com.example.myapplication.R;

public class LoadingView extends View {

    /**
     * 内外弧的宽高
     */
    private int circleWidth = 5;
    /**
     * 内弧颜色
     */
    private int InnerColor = Color.BLUE;
    /**
     * 外弧颜色
     */
    private int foreginColor = Color.RED;
    /**
     * 圆角颜色,也可在layout中设置背景,如果自己设置背景的话还要加圆角,这里已经是处理好了
     */
    private int rectColor = Color.parseColor("#999999");
    /**
     * 外弧画笔
     */
    private Paint paintforegin;
    /**
     * 内弧画笔
     */
    private Paint paintInner;
    /**
     * 背景圆角画笔
     */
    private Paint paintRect;
    /**
     * 外弧起始与终止点
     */
    private int startForegin = 135;
    private int endForegin = 275;
    /**
     * 内弧起始与终止点
     */
    private int startInner = 45;
    private int endInner = 90;

    /**
     * 内外弧半径
     */
    private int radus = 150;
    private int innerPading = radus - 70;
    /**
     * 背景圆角的半径
     */
    private int rectRadus = radus + 50;
    /**
     * 背景圆角大小
     */
    private int rectCircle = 30;

    public LoadingView(Context context) {
        super(context, null);
    }

    public LoadingView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        initType(attrs, context);
        loading();
    }

    /**
     * 获得属性
     * @param attrs
     * @param context
     */
    private void initType(AttributeSet attrs, Context context) {
        TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.LoadingView);
        foreginColor = typedArray.getColor(R.styleable.LoadingView_foreginColor, foreginColor);
        InnerColor = typedArray.getColor(R.styleable.LoadingView_InnerColor, InnerColor);
        circleWidth = typedArray.getDimensionPixelSize(R.styleable.LoadingView_circleWidth, circleWidth);
        typedArray.recycle();
        initCirclePaint();
    }


    /**
     * 初始化画笔
     */
    private void initCirclePaint(){
        paintforegin = new Paint();
        paintforegin.setAntiAlias(true);
        paintforegin.setDither(true);
        paintforegin.setStrokeWidth(circleWidth);
        paintforegin.setColor(foreginColor);
        paintforegin.setStyle(Paint.Style.STROKE);
        paintforegin.setStrokeCap(Paint.Cap.ROUND);
        paintforegin.setStrokeJoin(Paint.Join.ROUND);

        paintInner = new Paint();
        paintInner.setAntiAlias(true);
        paintInner.setDither(true);
        paintInner.setStrokeWidth(circleWidth);
        paintInner.setColor(InnerColor);
        paintInner.setStyle(Paint.Style.STROKE);
        paintInner.setStrokeJoin(Paint.Join.ROUND);
        paintInner.setStrokeCap(Paint.Cap.ROUND);

        paintRect = new Paint();
        paintRect.setAntiAlias(true);
        paintRect.setDither(true);
        paintRect.setColor(rectColor);
        paintRect.setStyle(Paint.Style.FILL);

    }
    /**
     * 测量处理
     */
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        //获取宽高的模式
        int widthMode = MeasureSpec.getMode(widthMeasureSpec);
        int heightMode = MeasureSpec.getMode(heightMeasureSpec);
        //指定宽高的大小
        int width = MeasureSpec.getSize(widthMeasureSpec);
        int height = MeasureSpec.getSize(heightMeasureSpec);
        //如果宽高设置为wrap_content时,刚默认为300
        if(widthMode == MeasureSpec.AT_MOST || heightMode == MeasureSpec.AT_MOST){
            width = 300;
            height = width;
        }
        //如果宽高不一致时,则以宽为标准
        if(width != height){
            height = width;
        }

        setMeasuredDimension(width,height);
    }

    /**
     * 中心点
     */
    private int y;
    private int x;

    @Override
    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
        x = (right - left) / 2;
        y = (bottom - top) / 2;
        super.onLayout(changed, left, top, right, bottom);
    }

    private int DptoPx(int dp, Context context) {
        return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, context.getResources().getDisplayMetrics());
    }

    @Override
    protected void onDraw(Canvas canvas) {
        drawCircle(canvas);

        drawArc(canvas);
        drawArc2(canvas);

    }


    /**
     * 绘制外弧
     * @param canvas
     */
    private void drawArc(Canvas canvas) {
        RectF rectF = new RectF(x - radus, y - radus, x + radus, y + radus);
        canvas.drawArc(rectF, startForegin, endForegin, false, paintforegin);
    }
    /**
     * 绘制内弧
     * @param canvas
     */
    private void drawArc2(Canvas canvas) {
        RectF rectF = new RectF(x - innerPading, y - innerPading, x + innerPading, y + innerPading);
        canvas.drawArc(rectF, startInner, endInner, false, paintInner);
    }

    /**
     * 绘制背景圆角
     * @param canvas
     */
    private void drawCircle(Canvas canvas){
        RectF rectF = new RectF(x - rectRadus, y - rectRadus, x + rectRadus, y + rectRadus);

        canvas.drawRoundRect (rectF,rectCircle,rectCircle,paintRect);
    }

    /**
     * 绘制更新
     * @param value
     */
    private void reDraw(int value) {

        startForegin += value;

        startInner -= value;


        postInvalidate();
    }

    /**
     * 设置属性动画来重新绘制
     */
    @SuppressLint("WrongConstant")
    private void loading() {
        ValueAnimator valueAnimator = ValueAnimator.ofInt(0,2);
        valueAnimator.setDuration(1);
        //设置重复次数
        valueAnimator.setRepeatCount(ValueAnimator.INFINITE);
        //设置重复模式
        valueAnimator.setRepeatMode(ValueAnimator.RESTART);
        valueAnimator.setInterpolator(new LinearInterpolator());
        valueAnimator.start();
        valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator valueAnimator) {
                int value = (int) valueAnimator.getAnimatedValue();
                reDraw(value);
            }
        });
    }
}

CSDN地址:Android-自定义View网络加载

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