Android实现图片加载进度提示
作者:laibaigan 发布时间:2022-09-11 17:54:44
标签:Android,图片加载,进度
本文实例为大家分享了Android实现图片加载进度提示的具体代码,供大家参考,具体内容如下
先上图:
实现原理:
第一个控件的实现原理是重写ImageView的onDraw()方法,利用Canvas的clipRect()方法控制图片的显示区域,主键扩大图片的显示区域,从而实现逐渐增加的效果
关键代码:
public class LoadingImageView extends ImageView {
/*** 背景图片 */
private Drawable bgDrawable;
/**前景图片*/
private Drawable fgDrawable;
/**是否显示加载进度条*/
private boolean isShowProgress;
private Resources rsc;
private int progress;
private int progressHeight;
private int progressLeft;
private int progressTop;
private int progressRight;
private int progressBottom;
public LoadingImageView(Context context) {
this(context,null);
}
public LoadingImageView(Context context, AttributeSet attrs) {
this(context, attrs,0);
}
public LoadingImageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
rsc = getResources();
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
if(bgDrawable==null){
return;
}
progressLeft = getMeasuredWidth()/2-(fgDrawable.getIntrinsicWidth()/2);
progressTop = getMeasuredHeight()/2-(fgDrawable.getIntrinsicHeight()/2);
progressRight = getMeasuredWidth()/2+(fgDrawable.getIntrinsicWidth()/2);
progressBottom = getMeasuredHeight()/2+(fgDrawable.getIntrinsicHeight()/2);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
return super.onTouchEvent(event);
}
/**
* 设置背景图片
* @param drawableRes
*/
public void setBgDrawableRes(int drawableRes){
bgDrawable = rsc.getDrawable(drawableRes);
invalidate();
}
public void setFgDrawableRes(int drawableRes){
fgDrawable = rsc.getDrawable(drawableRes);
invalidate();
}
public void setProgress(int progress,boolean flag) {
isShowProgress = flag;
if(progress>=0&progress<=100){
this.progress = progress;
invalidate();
}
}
@Override
protected void onDraw(Canvas canvas) {
if(bgDrawable!=null){
bgDrawable.setBounds(progressLeft, progressTop, progressRight, progressBottom);
bgDrawable.draw(canvas);
}
super.onDraw(canvas);
if(bgDrawable!=null&&isShowProgress){
bgDrawable.setBounds(progressLeft, progressTop, progressRight, progressBottom);
bgDrawable.draw(canvas);
}
if(fgDrawable!=null&&isShowProgress){
//根据进度计算图片显示的高的比
progressHeight = fgDrawable.getIntrinsicHeight()*progress/100;
//关键代码,设置图片的显示区域
canvas.clipRect(progressLeft,progressBottom-progressHeight,progressRight,progressBottom);
fgDrawable.setBounds(progressLeft, progressTop, progressRight, progressBottom);
fgDrawable.draw(canvas);
}
}
}
第二个圆形加载进度的原理其实也很简单,就是画弧线,不断增加弧线的角度,实现改变进度的功能
关键代码:
public class LoadingCircleView extends View {
private final Paint paint;
private final Context context;
private Resources res;
private int progress;
private int ringWidth;
//圆环的颜色
private int ringColor;
//进度条颜色
private int progressColor;
//字体颜色
private int textColor;
//字的大小
private int textSize;
private String textProgress;
public LoadingCircleView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
this.context = context;
this.paint = new Paint();
this.res = context.getResources();
this.paint.setAntiAlias(true); //消除锯齿
this.ringWidth = dip2px(context, 10); //设置圆环宽度
this.ringColor = Color.rgb(233, 233, 233);
this.progressColor = Color.rgb(146, 206, 108);
this.textColor = Color.rgb(203, 203, 203);
this.textSize = 30;
}
public LoadingCircleView(Context context, AttributeSet attrs) {
this(context, attrs,0);
}
public LoadingCircleView(Context context) {
this(context,null);
}
/**
* 设置加载进度,取值范围在0~100之间
* @param progress
*/
public void setProgress(int progress) {
if(progress>=0&&progress<=100){
this.progress = progress;
invalidate();
}
}
/**
* 设置圆环背景色
* @param ringColor
*/
public void setRingColor(int ringColor) {
this.ringColor = res.getColor(ringColor);
}
/**
* 设置进度条颜色
* @param progressColor
*/
public void setProgressColor(int progressColor) {
this.progressColor = res.getColor(progressColor);
}
/**
* 设置字体颜色
* @param textColor
*/
public void setTextColor(int textColor) {
this.textColor = res.getColor(textColor);
}
/**
* 设置字体大小
* @param textSize
*/
public void setTextSize(int textSize) {
this.textSize = textSize;
}
/**
* 设置圆环半径
* @param ringWidth
*/
public void setRingWidthDip(int ringWidth) {
this.ringWidth = dip2px(context, ringWidth);
}
/**
* 通过不断画弧的方式更新界面,实现进度增加
*/
@Override
protected void onDraw(Canvas canvas) {
int center = getWidth()/2;
int radios = center-ringWidth/2;
//绘制圆环
this.paint.setStyle(Paint.Style.STROKE); //绘制空心圆
this.paint.setColor(ringColor);
this.paint.setStrokeWidth(ringWidth);
canvas.drawCircle(center,center, radios, this.paint);
RectF oval = new RectF(center-radios, center-radios, center+radios, center+radios);
this.paint.setColor(progressColor);
canvas.drawArc(oval, 90, 360*progress/100, false, paint);
this.paint.setStyle(Paint.Style.FILL);
this.paint.setColor(textColor);
this.paint.setStrokeWidth(0);
this.paint.setTextSize(textSize);
this.paint.setTypeface(Typeface.DEFAULT_BOLD);
textProgress = progress+"%";
float textWidth = paint.measureText(textProgress);
canvas.drawText(textProgress, center-textWidth/2, center+textSize/2, paint);
super.onDraw(canvas);
}
/**
* 根据手机的分辨率从 dp 的单位 转成为 px(像素)
*/
public static int dip2px(Context context, float dpValue) {
final float scale = context.getResources().getDisplayMetrics().density;
return (int) (dpValue * scale + 0.5f);
} }
控件定义好后就可以再Xml里面调用了:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<com.example.imagetest.LoadingImageView
android:id="@+id/loading_image_view"
android:layout_width="258px"
android:layout_height="257px"
android:background="#330000"
>
</com.example.imagetest.LoadingImageView>
<com.example.imagetest.LoadingCircleView
android:id="@+id/loading_cirle_view"
android:layout_width="100dp"
android:layout_height="100dp"
>
</com.example.imagetest.LoadingCircleView>
<!--
<ListView
android:id="@+id/listview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
></ListView> -->
</LinearLayout>
最后就可以使用了,在主线程里面模拟加载进度,起一个线程,模仿加载进度逐渐增加:
public class MainActivity extends Activity {
ListView listview;
private LoadingImageView loadingImageView;
private LoadingCircleView loadingCircleView;
private Handler handler = new Handler(){
public void handleMessage(android.os.Message msg) {
loadingImageView.setProgress(msg.what,true);
loadingCircleView.setProgress(msg.what);
};
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
loadingImageView = (LoadingImageView) findViewById(R.id.loading_image_view);
loadingImageView.setFgDrawableRes(R.drawable.bg_click_load_img);
loadingImageView.setBgDrawableRes(R.drawable.ic_launcher);
loadingImageView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
loading();
}
});
loadingCircleView = (LoadingCircleView) findViewById(R.id.loading_cirle_view);
loadingCircleView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
loading();
}
});
// listview = (ListView) findViewById(R.id.listview);
// showImage();
}
private void loading(){
Thread t = new Thread(){
@Override
public void run() {
int i = 0;
while(i<=100){
try {
i++;
handler.sendEmptyMessage(i);
this.sleep(10);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
super.run();
}
};
t.start();
}
@Override
protected void onResume() {
super.onResume();
}
@Override
protected void onPause() {
super.onPause();
}
@Override
protected void onDestroy() {
super.onDestroy();
}
}
来源:https://blog.csdn.net/laibaigan/article/details/8822477


猜你喜欢
- 基数排序也是桶排序的一种,也是跟样本数据强相关的,且基数排序要求样本数据是非负的十进制数,如果有小数或者负数,那么代码将要大量重写!这就是不
- 经过各种各样的整理,以及和热心网友讨论,终于整理出了九种android开发中最常见的问题和解决方案再次跟大家分享下!!有用的话请顶顶帖子,共
- 小总结抛出异常:创建异常对象,封装异常信息然后通过throw将异常对象传递给调用者。不对异常进行处理只对异常进行抛出是非常不负责任的表现可以
- 目录引言编译环境及说明图片素材分割事件处理OnPaint事件鼠标交互事件代码汇总引言我们有时候会在程序的文件夹里看见一些图标,而这些图标恰好
- 学习内容Java I/O 项目案例内容管理java文件I/O实例----生成报表我们之前学习了两个重要的模块,一个就是Java I/O 另外
- 前言本文主要介绍了关于spring boot中servlet启动过程与原理的相关内容,下面话不多说了,来一起看看详细的介绍吧启动过程与原理:
- 在 Java 中,当我们处理String时,有时需要将字符串编码为特定字符集。编码是一种将数据从一种格式转换为另一种格式的方法。字符串对象使
- 在使用多线程过程中,可能会遇到在一些情况下必须等待子线程全部执行结束后主线程才进行下一步,做法如下: //在使用多线程过程中,可能会遇到在一
- 本文实例为大家分享了flutter实现底部导航栏的具体代码,供大家参考,具体内容如下一.flutter底部导航栏常用组件BottomNavi
- 原理简介Java中提供了Calendar这个专门用于对日历进行操作的类,那么这个类有什么特殊的地方呢,首先我们来看Calendar的声明:p
- 1. 认识ZoneZone像一个沙盒,是我们代码执行的一个环境。我们的main函数默认就运行在Root Zone当中。子Zone的构造有点像
- 本文实例为大家分享了java金额数字转中文工具类的具体代码,供大家参考,具体内容如下java金额数字转中文工具类ConvertNum.jav
- 前几天网上突然出现流言:某东发生数据泄露12G,最终某东在一篇声明中没有否认,还算是勉强承认了吧,这件事对于一般人有什么影响、应该怎么做已经
- <html> <head> &nb
- 1. JAVA源文件的命名JAVA源文件名必须和源文件中所定义的类的类名相同。2. Package的命名Package名的第一部分应是小写A
- 网页爬虫:其实就是一个程序用于在互联网中获取符合指定规则的数据。package day05; import java.io.Buffered
- 前言最近在工作中遇到了这么一个需求:如何实现 Android 应用前后台切换的监听?下面来一起看看详细的介绍:iOS 内边是可以实现的,Ap
- 环境:springcloud Hoxton.SR11本节主要了解系统中的谓词与配置的路由信息是如何进行初始化关联生成路由对象的。每个谓词工厂
- 一、MyBatis简介MyBatis是支持普通SQL查询,存储过程和高级映射的优秀持久层框架。MyBatis消除了几乎所有的JDBC代码和参
- 前言 最近项目有一个节点进度条的小需求,完成后,想分享出来希望可以帮到有需要的同学。真机效果图自定义View完整代码开箱即用~,注释已经炒鸡