Android自定义View基础开发之图片加载进度条
作者:happy_fsyy 发布时间:2022-05-01 05:52:14
标签:android,图片加载,进度条
学会了Paint,Canvas的基本用法之后,我们就可以动手开始实践了,先写个简单的图片加载进度条看看。
按照惯例,先看效果图,再决定要不要往下看:
既然看到这里了,应该是想了解这个图片加载进度条了,我们先看具体用法,再看自定义View的实现:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/img"
android:layout_width="200dp"
android:layout_height="200dp"
android:scaleType="centerCrop"
android:layout_centerInParent="true"/>
<com.example.circleprogresstest.CircleProgressView
android:id="@+id/progressView"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_centerInParent="true"
custom:isShowProgress="true" />
</RelativeLayout>
ImageLoader.getInstance().displayImage(url, imageView, options,
new SimpleImageLoadingListener() ,
new ImageLoadingProgressListener() {
@Override
public void onProgressUpdate(String imageUri, View view, int current, int total) {
if(current==total){
progressView.setVisibility(View.GONE);
}else{
progressView.setSweepAngle((int)(360*current*1.0f/total));
progressView.postInvalidate();
}
}
}
);
可以看出,以上的用法,非常简单,在xml中添加我们自定义的View,和添加textview或者button完全相同,只是多了我们自己的自定义属性而已,可以设置圆的颜色,以及文字颜色,大小等等。之后,在MainActivity中使用的方法也是同样简单,只要在图片的进度更新的时候,同时更新我们进度条的进度就行了。
下面我们具体说下我们实现自定义进度条的过程,我们只需要重写onDraw()方法就够了,很明显,我们的进度条包括三部分,内圈圆,外圈圆弧,中间的文字,具体看代码:
protected void onDraw(Canvas canvas) {
mWidth=getMeasuredWidth();
mHeight=getMeasuredHeight();
radius=(float)(Math.min(mWidth,mHeight)*1.0/2)-strokeWidth/2;
//绘制内圈圆
mPaint.setColor(initColor);
mPaint.setStyle(Paint.Style.STROKE);
mPaint.setStrokeWidth(strokeWidth);
canvas.drawCircle(mWidth/2,mHeight/2,radius,mPaint);
//绘制覆盖的圆弧
mPaint.setColor(coverColor);
RectF rectF=new RectF(mWidth/2-radius,mHeight/2-radius,mWidth/2+radius,mHeight/2+radius);
canvas.drawArc(rectF,-90,sweepAngle,false,mPaint);
//绘制中间的文本
if(isShowProgress){
progressText=String.format(getResources().getString(R.string.progress_text),(int)(sweepAngle*100.0/360));
mPaint.setTextSize(textSize);
mPaint.setColor(textColor);
if(mBound==null){
mBound=new Rect();
}
mPaint.getTextBounds(progressText,0,progressText.length(),mBound);
mPaint.setStyle(Paint.Style.FILL);
canvas.drawText(progressText,mWidth/2-mBound.width()/2,mHeight/2+mBound.height()/2,mPaint);
}
}
当然,为了让我们可以自定义进度条的大小颜色,我们还采用了自定义属性,并且在构造器中,也需要加载xml中的各项属性:
<resources>
<declare-styleable name="CircleProgressView">
<attr name="initColor" format="color"/>
<attr name="coverColor" format="color"/>
<attr name="strokeWidth" format="dimension"/>
<attr name="progressTextSize" format="dimension"/>
<attr name="progressTextColor" format="color"/>
<attr name="isShowProgress" format="boolean"/>
</declare-styleable>
</resources>
private void initValues(Context context, AttributeSet attrs, int defStyleAttr){
TypedArray typedArray=context.getTheme().obtainStyledAttributes(attrs,R.styleable.CircleProgressView,defStyleAttr,0);
int num=typedArray.getIndexCount();
for(int i=0;i<num;i++){
int attr=typedArray.getIndex(i);
switch (attr){
case R.styleable.CircleProgressView_initColor:
initColor=typedArray.getColor(attr,Color.GRAY);
break;
case R.styleable.CircleProgressView_coverColor:
coverColor=typedArray.getColor(attr,Color.BLACK);
break;
case R.styleable.CircleProgressView_strokeWidth:
strokeWidth=typedArray.getDimensionPixelOffset(attr,5);
break;
case R.styleable.CircleProgressView_progressTextSize:
textSize=typedArray.getDimensionPixelSize(attr,30);
break;
case R.styleable.CircleProgressView_progressTextColor:
textColor=typedArray.getColor(attr,Color.BLACK);
break;
case R.styleable.CircleProgressView_isShowProgress:
isShowProgress=typedArray.getBoolean(attr,false);
break;
default:
break;
}
}
typedArray.recycle();
mPaint=new Paint();
mPaint.setAntiAlias(true);
}
源码下载


猜你喜欢
- 前言android 防止重复点击是一个非常常见的需求,每个人都有各自的点击事件的处理习惯,有的喜欢使用匿名内部类,有的activity、fr
- 在spring boot中,简单几步,使用spring AOP实现一个 * :1、引入依赖:<dependency> &nbs
- 本章先讲解Java随机数的几种产生方式,然后通过示例对其进行演示。广义上讲,Java中的随机数的有三种产生方式:(01). 通过System
- 概述从今天开始, 小白我将带大家开启 Jave 数据结构 & 算法的新篇章.链表链表 (Linked List) 是一种递归的动态数
- C#将图片2值化示例代码,原图及二值化后的图片如下:原图:二值化后的图像:实现代码:using System;using System.Dr
- 由于老师说如果拿MATLAB制作出游戏或者有趣的动画的话。。平时成绩可以拿满分于是。。开始尝试制作各种matlab小游戏最初通过Alex的贪
- 本文实例讲述了C#装箱和拆箱操作。分享给大家供大家参考,具体如下:1. C#中的装箱C#中的装箱就是把一个值类型隐式地转换为object类型
- java StringBuilder类的详解及简单实例实现代码:public class StringBuilder
- 由于springboot常用war包部署,改为cloud开发模式多端口情况下,部署反而不习惯毕竟,war包要不要项目名访问都必须放在tomc
- 如论实施敏捷的团队,或者实施 DevOps 的团队,通过自动化测试提高测试效率和软件质量都是其共同的选择。UI 自动化测试是自动化化测试当中
- 详解Java读取Jar中资源文件及实现代码 &
- 前言IOC和AOP是Spring 中最重要的两个模块。这里练习一下如何使用Spring Boot AOP处理方法的入参和返回值。Spring
- 以前用序列化都是一些方法需要才实现的,后来业务需求要深拷贝才去研究。参阅了别人博客得出一些总结。序列化是为了把Java对象转化为字节序列(字
- 之前在开发一个程序,希望能够通过属性名称读取出属性值,但是由于那时候不熟悉反射,所以并没有找到合适的方法,做了不少的重复性工作啊!然后今天我
- maven打包方式使用maven打包插件maven-jar-plugin在pom.xml文件最后新增以下代码。maven-dependenc
- 有时候我们需要多列表中的数据进行特定的排序,最近项目中用到的是按名称排序,所以简单来说一下:效果图:排序方法:Collections.sor
- 上篇《Spring Aop实例之xml配置》中,讲解了xml配置方式,今天来说说AspectJ注解方式去配置spring aop。依旧采用的
- 一、系统介绍本系统实现了用户登录,实现了对学生成绩的增删改查,实现了用户修改密码功能,采用MD5加密算法,数据库使用Mysql8.0.13,
- 我公司最近升级程序经常报出更新失败问题,究其原因,原来是更新时,他们可能又打开了正在被更新的文件,导致更新文件时,文件被其它进程占用,无法正
- 释放公平锁(基于JDK1.7.0_40)1. unlock()unlock()在ReentrantLock.java中实现的,源码如下:pu