Android 自定义view画圆

今天自定义view画圆,使用到的就是Android也给我们提供了这两样东西:Paint和Canvas,由于在代码中都有对使用方法的介绍 我也不多说,来看自定义View的代码:

package com.haiwei.customview;

import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.view.Display;
import android.view.View;
import android.view.WindowManager;

public class CustomViews extends View implements Runnable {

	private Paint mPaint;
	private Context mContext;
	private int screenWidth;
	private int screenHeight;
	private int radial = 50;

	public CustomViews(Context context) {
		super(context, null);
		init();
	}

	public CustomViews(Context context, AttributeSet attrs) {
		super(context, attrs);
		mContext = context;
		init();
	}

	/**
	 * 由于onDraw()方法会不停的绘制 所以需要定义一个初始化画笔方法 避免导致不停创建造成内存消耗过大
	 */
	private void init() {
		mPaint = new Paint();
		// 设置画笔为抗锯齿
		mPaint.setAntiAlias(true);
		// 设置颜色为红色
		mPaint.setColor(Color.RED);
		/**
		 * 画笔样式分三种: 1.Paint.Style.STROKE:描边 2.Paint.Style.FILL_AND_STROKE:描边并填充
		 * 3.Paint.Style.FILL:填充
		 */
		mPaint.setStyle(Paint.Style.STROKE);
		/**
		 * 设置描边的粗细,单位:像素px 注意:当setStrokeWidth(0)的时候描边宽度并不为0而是只占一个像素
		 */
		mPaint.setStrokeWidth(20);
		/**
		 * 获取屏幕的宽高
		 */
		WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
		Display display = wm.getDefaultDisplay();
		screenWidth = display.getWidth();
		screenHeight = display.getHeight();
	}

	@Override
	protected void onDraw(Canvas canvas) {
		super.onDraw(canvas);
		/**
		 * 绘制圆环drawCircle的前两个参数表示圆心的XY坐标, 这里我们用到了一个工具类获取屏幕尺寸以便将其圆心设置在屏幕中心位置,
		 * 第三个参数是圆的半径,第四个参数则为我们的画笔
		 * 
		 */
		canvas.drawCircle(screenWidth / 2, screenHeight / 2, radial, mPaint);

	}

	@Override
	public void run() {
		/**
		 * 使用while循环不断的刷新view的半径
		 * 当半径小于100每次增加10 invalidate()重绘view会报错
		 * android.view.ViewRootImpl$CalledFromWrongThreadException 是非主线程更新UI
		 * Android给提供postInvalidate();快捷方法来重绘view 
		 *  现在明白了invalidate和postInvalidate的小区别了吧
		 */ 
		while (true) {
			if (radial <= 170) {
				radial += 20;
				postInvalidate();
			}else{
				radial = 50;
			}
			try {
				Thread.sleep(200);
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
		}
	}
}
在看我们在XML布局文件中是如果实现的:

<span style="font-family: Arial, Helvetica, sans-serif;"><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"</span>
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <com.haiwei.customview.CustomViews
        android:id="@+id/cv"
        android:layout_centerInParent="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>


</RelativeLayout>

在Activity里面为控件开个多线程即可:

package com.haiwei.customview;

import android.app.Activity;
import android.os.Bundle;

public class MainActivity extends Activity {

	private CustomViews mCustomView;
	
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		mCustomView = (CustomViews) findViewById(R.id.cv);
		new Thread(mCustomView).start();
	}
}

在看我们最后实现的效果吧,以后还会继续写博客的哦,希望大家多多支持。。。




  • 2
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

haiwei15

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值