Day9.通过画笔以及ViewGroup来实现画图

1.画流动的波浪

流动波浪.gif

1.MainActivity

public class MainActivity extends AppCompatActivity {
WaveLoadingView loadingView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
      //  loadingView =findViewById(R.id.load);
    }

2.xml配置

<swu.hsl.a14wavaloading.WavaView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/colorAccent"
    app:LineColor="#fff"
    app:LineSize="10"
    app:WaveLength="150"
    app:WaveCrest="50"
    />

3. WavaView

public class WavaView extends View {
    private Paint mpaint;
    private Path mpath;

    ValueAnimator va;
    float density = getResources().getDisplayMetrics().density;
    private int WaveLength = (int) ((int) 80 * density);
    private int WaveCrest = (int) (50 * density);

    private int speed;//

    private int LineColor=Color.BLACK;//线条颜色
    private int LineSize=10;//线条粗细

 public WavaView(Context context) {
     super(context);
     init();
 }

    public WavaView(Context context, AttributeSet attrs) {
        super(context, attrs);
        //从xml中获取自定义属性的值
        initAttr(context,attrs);
        //初始化画笔
        init();
    }
    //初始化画笔
    private void init() {
        mpaint = new Paint(Paint.ANTI_ALIAS_FLAG);
        mpaint.setColor(Color.BLACK);
        mpaint.setStrokeWidth(10);
        mpaint.setStyle(Paint.Style.STROKE);
    }
private void  initAttr(Context context, AttributeSet attrs){
        //读取所有的自定义属性的值
       TypedArray array= context.obtainStyledAttributes(attrs,R.styleable.WavaView);
        //读取每一个属性的值
    WaveLength=array.getInteger(R.styleable.WavaView_WaveLength, (int) (100*density));
    WaveCrest=array.getInteger(R.styleable.WavaView_WaveCrest, (int) (50*density));
    LineColor=array.getColor(R.styleable.WavaView_LineColor,Color.BLACK);
    LineSize=array.getInteger(R.styleable.WavaView_LineSize,10);

}
    /**
     * 父容器会按照自己的规划给出一个方案
     * 子View通过MeasureSpec.getMode   .getSize获取对应的模式和具体尺寸
     * getMode:
     * Unspecified 无限制的 父容器没有对这个控件进行约束
     * At_Most 不能超过最大值  (wrap_content)
     * Exactly  确定的值(200dp)
     *
     * @param widthMeasureSpec
     * @param heightMeasureSpec
     */
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        /*
        //取出宽度的模式和预告尺寸
        int mode= MeasureSpec.getMode(widthMeasureSpec);
        int width=MeasureSpec.getSize(widthMeasureSpec);
        switch(mode){
            case MeasureSpec.UNSPECIFIED:
            System.out.println("unspecified:"+width);
            break;
            case MeasureSpec.AT_MOST:
                System.out.println("at_most:"+width);
                break;
            case MeasureSpec.EXACTLY:
                System.out.println("exactly:"+width);
                break;
        }*/

    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
        startWave();
    }
public  void  stopWave(){
        //开始暂停动画
        if(va!=null){
            va.cancel();
        }
}
    private void startWave() {
         va = ValueAnimator.ofInt(0, WaveLength);
        va.setDuration(300);
        va.setRepeatCount(ValueAnimator.INFINITE);
        va.setRepeatMode(ValueAnimator.RESTART);
        va.setInterpolator(new LinearInterpolator());
        va.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator valueAnimator) {
                //获取当前值
                speed = (int) valueAnimator.getAnimatedValue();
                //刷新
                invalidate();
            }
        });
        va.start();

    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);//创建曲线
        mpath = new Path();
        inipath();
        canvas.drawPath(mpath, mpaint);


    }

    //初始化路径
    private void inipath() {
        //创建曲线
        mpath = new Path();
        //计算有几个周期(有几个完整的波)
        int count = getWidth() / WaveLength;
        //设置起始点
        mpath.moveTo(0, getHeight() / 2);
        //获取垂直中心的坐标
        int centerY = (int) getPivotY();
        //确定曲线的路径
        for (int start = -WaveLength + speed; start < getWidth(); start += WaveLength) {
            //画上半周期
            mpath.cubicTo(start, centerY, start + WaveLength / 4,
                    centerY - WaveCrest, start + WaveLength / 2, centerY);
            //画下半周期
            mpath.cubicTo(start + WaveLength / 2, centerY,
                    start + WaveLength * 3 / 4, centerY + WaveCrest, start + WaveLength, centerY);
        }
    }

    public int getLineColor() {
        return LineColor;
    }

    public void setLineColor(int lineColor) {
        LineColor = lineColor;
        mpaint.setColor(LineColor);
    }

    public int getLineSize() {
        return LineSize;
    }

    public void setLineSize(int lineSize) {
        LineSize = lineSize;
        mpaint.setStrokeWidth(LineSize);
    }

    public void setWaveCrest(int waveCrest) {
        WaveCrest = waveCrest;

    }

    public void setWaveLength(int waveLength) {
        WaveLength = waveLength;
    }


}

2.画圆

1.xml

  <swu.hsl.a14wavaloading.CircleView
        android:layout_width="match_parent"
        android:layout_height="300dp" />
-->

2. MainActivity

public class MainActivity extends AppCompatActivity {
WaveLoadingView loadingView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
      //  loadingView =findViewById(R.id.load);

    }

3. CircleView

image.png

public class CircleView extends View {
    Paint   CirclePaint;
    Paint textPaint;
    private  int  centerYspace;//和中心线的距离
    private  int  LineSize=10;
    private  int  LineColor=Color.BLACK;//线条颜色
    private  int  textColor=Color.BLACK;//文本颜色
    private  int  textSize=50;//文本尺寸
    private   float  progress;//进度

    public CircleView(Context context) {
        super(context);
        init();
    }

    private void init() {
        CirclePaint=new Paint(Paint.ANTI_ALIAS_FLAG);
        CirclePaint.setColor(LineColor);

        CirclePaint.setStrokeWidth(LineSize);
        CirclePaint.setStyle(Paint.Style.STROKE);
        textPaint=new Paint(Paint.ANTI_ALIAS_FLAG);
        textPaint.setColor(textColor);
        textPaint.setTextSize(textSize);

    }

    public CircleView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    @Override
    protected void onDraw(Canvas canvas) {
   //确定半径
        int radius=Math.min(getWidth(),getHeight()/2-2*LineSize);
        //画圆
        canvas.drawCircle(getPivotX(),getPivotY(),radius,CirclePaint);

        //画文本
        String text=(int)(progress*100)+"%";
        //计算文本宽度
        int width= (int) textPaint.measureText(text);
        //获取文字fontMetrics
       Paint.FontMetricsInt fm= textPaint.getFontMetricsInt();
        canvas.drawText(text,getPivotX()-width/2,getPivotY()+(-fm.ascent/2)-centerYspace,textPaint);
    }

    public void setLineColor(int lineColor) {
        LineColor = lineColor;
        CirclePaint.setColor(lineColor);
    }

    public void setLineSize(int lineSize) {
        LineSize = lineSize;
        CirclePaint.setStrokeWidth(lineSize);
    }

    public void setTextColor(int textColor) {
        this.textColor = textColor;
        textPaint.setColor(textColor);
    }

    public void setTextSize(int textSize) {
        this.textSize = textSize;
        textPaint.setTextSize(textSize);
    }

    public float getProgress() {
        return progress;
    }

    public void setProgress(float progress) {
        this.progress = progress;
        //刷新
        invalidate();
    }

    public int getCenterYspace() {
        return centerYspace;
    }

    public void setCenterYspace(int centerYspace) {
        this.centerYspace = centerYspace;
    }
}

3.圆和波浪的结合

组合画动图.gif

1.xml


    <swu.hsl.a14wavaloading.WaveLoadingView
        android:id="@+id/load"
        android:layout_width="300dp"
        android:layout_height="300dp"
        android:layout_centerInParent="true"
       />

2.WaveLoadingView


public class WaveLoadingView extends ViewGroup {
CircleView cv;
private  WavaView wv;
 private  float progress=0;

    public WaveLoadingView(Context context) {
        super(context);
    }

    public WaveLoadingView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }




    /**
     *ViewGroup中 通过测量左右子视图来确定容器的宽高
     */
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    }

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


    }

    /**
     *对所有子控件进行布局
     * b
     * i==l left
     * i1=t top
     * i2=r right
     * i3=b bottom
     */
    @Override
    protected void onLayout(boolean b, int i, int i1, int i2, int i3) {
        //创建CircleView
        cv = new CircleView(getContext());
        cv.setLineColor(Color.RED);
        cv.setLineSize(40);
        cv.setTextColor(Color.RED);
        cv.setCenterYspace(90);
        //对子视图进行控局
        cv.layout(0, 0, getWidth(), getHeight());
        //将子视图添加到容器中
        addView(cv);
        //创建WaveView
         wv = new WavaView(getContext());
        wv.setLineColor(Color.RED);
        wv.setLineSize(5);
        wv.setWaveCrest(50);
        wv.setWaveLength(100);


        //布局
        wv.layout(getWidth() / 4, getHeight() / 2 - 30, getWidth() * 3 / 4, getHeight() / 2 + 30);
        addView(wv);
    }

    public float getProgress() {
        return progress;
    }

    public void setProgress(float progress) {
        this.progress = progress;
  if(progress<1.001) {
      cv.setProgress(progress);
  }
  if ((int) progress==1){
      wv.stopWave();
  }
    }
}


3.MainActivity


public class MainActivity extends AppCompatActivity {
WaveLoadingView loadingView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        loadingView =findViewById(R.id.load);

    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        if(event.getAction()==MotionEvent.ACTION_DOWN){
            new Timer().schedule(new TimerTask() {
                @Override
                public void run() {

                    loadingView.setProgress((float) (loadingView.getProgress()+0.01));
                }
            },0,100);
        }
        return  true;
    }

}

4.心得

在昨天的基础上了解学习了ViewGroup的使用

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

推荐阅读更多精彩内容