view 实心园进度条

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:custom="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <lianxi.jdt.Circle_jdt
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</RelativeLayout>



 
package lianxi.jdt;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Rect;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.view.View;

/**
 * Created by lenovo on 2017/11/01.
 */

public class Circle_jdt extends View {
    private Paint paint = new Paint();
    private boolean runing = true;
    private int p =0;


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

    public Circle_jdt(Context context, AttributeSet attrs) {
        super(context, attrs);
        paint.setAntiAlias(true);//抗锯齿
        paint.setColor(Color.RED);//设置画笔的颜色
        //paint.setStyle(Paint.Style.STROKE);//设置画笔 填充是空心的

        new Thread(new Runnable() {
            @Override
            public void run() {
                while (runing){
                    if (p>=360){
                        runing = false;
                        return;
                    }
                    System.out.println("p = " + p);
                    p += 10;
                    postInvalidate(); //子线程刷新 系统调用onDraw() 方法

                    try {
                        Thread.sleep(100);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }).start();

    }

    public Circle_jdt(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        paint.setColor(Color.RED);//设置画笔的颜色
        int x = getWidth() / 2;
        int y = getHeight() / 2;

        int radius = 200;//设置园的大小
        paint.setStrokeWidth(30);//设置画笔的粗细
//定义一个区域
        RectF rectF = new RectF(x - radius, y - radius, x + radius, y + radius);
        //画弧
//       useCentor  true 从中心点开始画 false 中心点不现实
        canvas.drawArc(rectF, -90, p, true, paint);

        int text = (int) ((float) p / 360 * 100);

//        measureText  测量字符串的宽度
        float textWidth = paint.measureText(text + "%");
        Rect rextText = new Rect();
//        rextText.height() 获取字符串的高度
        paint.getTextBounds(text + "%", 0, (text + "%").length(), rextText);

        paint.setTextSize(30);
        paint.setStrokeWidth(1);
        //画文字
        paint.setColor(Color.BLACK);//设置画笔的颜色
        canvas.drawText(text + "%", x - textWidth / 2, y + rextText.height() / 2, paint);

    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值