Android自定义View实现自动转圈效果

 更新时间:2018年05月10日 16:38:44   作者:Cyq_0927  
这篇文章主要为大家详细介绍了Android自定义View实现自动转圈效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Android实现自动转圈效果展示的具体代码,供大家参考,具体内容如下

在values文件夹下创建attrs.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <declare-styleable name="MyPb">
  <attr name="circle_color" format="color" />
  <attr name="circle_radius" format="dimension" /><!-- 尺寸 -->
  <attr name="circle_x" format="dimension" />
  <attr name="circle_y" format="dimension" />
 </declare-styleable>
</resources>

写一个类继承view

package widget;

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.View;

import com.bwie.zdycircle.R;

import java.util.Timer;
import java.util.TimerTask;

/**
 * Created by Administrator on 2017/12/7.
 */

public class MyPb extends View {

 private float radius, cx, cy;
 private Paint paint;
 private float sweepAngle;// 旋转角度

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

 public MyPb(Context context, @Nullable AttributeSet attrs) {
  super(context, attrs);
  // 获取自定义的属性
  TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.MyPb);

  // 获取颜色
  int color = a.getColor(R.styleable.MyPb_circle_color, Color.BLACK);// 获取不到给默认值
  radius = a.getDimension(R.styleable.MyPb_circle_radius, 20);
  cx = a.getDimension(R.styleable.MyPb_circle_x, 100);
  cy = a.getDimension(R.styleable.MyPb_circle_y, 100);

  // 需要回收
  a.recycle();

  paint = new Paint();
  paint.setAntiAlias(true);// 抗锯齿
  paint.setColor(color);
  paint.setStyle(Paint.Style.STROKE);// 空心

  Timer timer = new Timer();
  timer.schedule(new TimerTask() {
   @Override
   public void run() {
    if (sweepAngle > 360) {
     return;
    }
    sweepAngle += 1;
    postInvalidate();
   }
  }, 1000, 20);// 每隔20毫秒执行一次

 }

 @Override
 protected void onDraw(Canvas canvas) {
  paint.setColor(Color.BLUE);
  paint.setStrokeWidth(10);
  canvas.drawCircle(cx, cy, radius, paint);// 画圆
  paint.setStrokeWidth(20);// 粗细
  // 画运动的轨迹
  paint.setColor(Color.RED);
  // 上下左右与圆重合,左边为圆心的横坐标减去半径,上边为纵坐标减去半径,以此类推
  RectF rectF = new RectF(cx - radius, cy - radius, cx + radius, cy + radius);
  // 起始角度,旋转角度,第三个属性为是否填充,画笔
  canvas.drawArc(rectF, -90, sweepAngle, false, paint);

  // 绘制文字
  int progress = (int) (sweepAngle / 360f * 100);
  paint.setTextSize(50);
  paint.setStrokeWidth(0);
  paint.setColor(Color.BLACK);
  canvas.drawText(progress + "%", cx - 20, cy, paint);
 }
}

在主页面布局中引入自定义view类

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 tools:context="com.bwie.zdycircle.MainActivity">

 <widget.MyPb
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  app:circle_color="#0000ff"
  app:circle_radius="70dp"
  app:circle_x="200dp"
  app:circle_y="200dp" />

</LinearLayout>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Kotlin浅析null操作方法

    Kotlin浅析null操作方法

    Kotlin对比于Java的一个最大的区别就是它致力于消除空引用所带来的危险。在Java中,如果我们尝试访问一个空引用的成员可能就会导致空指针异常NullPointerException(NPE)的出现。在Kotlin语言中就解决了这个问题,下面来看看它是如何做到的
    2022-08-08
  • 【Android 基础】详解Animation 动画介绍和实现

    【Android 基础】详解Animation 动画介绍和实现

    这篇文章主要介绍了【Android 基础】详解Animation 动画介绍和实现 ,对于想要学习android开发的同学具有一定的参考价值,有需要的可以了解一下。
    2016-12-12
  • Room Kotlin API的使用入门教程

    Room Kotlin API的使用入门教程

    这篇文章主要介绍了Room Kotlin API使用入门教程,帮助大家更好的理解和学习使用并且测试 Room Kotlin API,感兴趣的朋友可以了解下
    2021-04-04
  • Android自定义view实现水波纹进度球效果

    Android自定义view实现水波纹进度球效果

    在我们的日常开发中自定义控件还是用的挺多的,设计师或者产品为了更好的漂亮,美观,交互都会做一些牛逼的ui效果图,但是最后实现的还是我们程序员啊。所以说 自定义view你还是得会的。
    2016-08-08
  • Android实现朋友圈评论回复列表

    Android实现朋友圈评论回复列表

    这篇文章主要为大家详细介绍了Android实现朋友圈评论回复列表,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-11-11
  • 聊聊Android中的事件分发机制

    聊聊Android中的事件分发机制

    这篇文章主要介绍了Android中的事件分发机制的相关资料,帮助大家更好的理解和学习使用Android,感兴趣的朋友可以了解下
    2021-04-04
  • Android使用Spinner实现城市级联下拉框

    Android使用Spinner实现城市级联下拉框

    这篇文章主要为大家详细介绍了Android使用Spinner实现城市级联下拉框,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-12-12
  • 发布 Android library 到 Maven 解析

    发布 Android library 到 Maven 解析

    这篇文章主要介绍了发布 Android library到Maven解析,文章围绕主题展开详细的内容介绍,具有一定的参考价值,需要的小伙伴可以参考一下
    2022-09-09
  • android Textview文字监控(Textview使用方法)

    android Textview文字监控(Textview使用方法)

    以手机号充值为例,当用户输入最后一位数时候,进行汇率的变换,本文就实现类似这样的功能
    2013-11-11
  • Android SurfaceView运行机制剖析--处理切换到后台再重新进入程序时的异常

    Android SurfaceView运行机制剖析--处理切换到后台再重新进入程序时的异常

    本文主要介绍Android SurfaceView运行机制,这里整理了详细的资料来讲解SurfaceView的运行原理,并附示例代码参考,有需要的小伙伴可以参考下
    2016-08-08

最新评论