Android自定义View基础开发之图片加载进度条_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);
}

源码下载:http://xiazai.jb51.net/201608/yuanma/circleprogress(jb51.net).rar

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

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索Android进度条
android加载进度条
自定义view进度条、webview 自定义进度条、webview加载进度条、wkwebview 加载进度条、ioswebview加载进度条,以便于您获取更多的相关知识。

时间: 2024-10-07 09:23:44

Android自定义View基础开发之图片加载进度条_Android的相关文章

Android自定义View之使用贝塞尔曲线实现流量进度条

第一次写带图片的博客,多少还是有点紧张,效果不好,请将就着看,前面的图是今天要写的控件的效果图,元素不多,分别是一个按钮和一个自定义的控件. 在此以前,我看过许多的书,比如<Android群英传>.<第一行代码>等,也看了很多大神的博客,但是即便是这样,当我看到这么多代码的时候,一直都没有真正的动手去敲过这些代码,以至于我总是觉得自定义View是一个多么高深莫测的技术,我们这些小白是难以触及的,但是当昨晚看了一篇鸡汤之后,觉得人还是要学会专注,要耐得住寂寞,要沉得住气.所以在未来的

Android自定义View仿华为圆形加载进度条

View仿华为圆形加载进度条效果图 实现思路 可以看出该View可分为三个部分来实现 最外围的圆,该部分需要区分进度圆和底部的刻度圆,进度部分的刻度需要和底色刻度区分开来 中间显示的文字进度,需要让文字在View中居中显示 旋转的小圆点,小圆点需要模拟小球下落运动时的加速度效果,开始下落的时候慢,到最底部时最快,上来时速度再逐渐减慢 具体实现 先具体细分讲解,博客最后面给出全部源码 (1)首先为View创建自定义的xml属性 在工程的values目录下新建attrs.xml文件 <resourc

Android自定义下拉刷新上拉加载_Android

本文实例为大家分享了Android自定义下拉刷新上拉加载的具体实现步骤,供大家参考,具体内容如下 实现的方式是SwipeRefreshLayout + RecyclerView 的VIewType 首先看效果: 总的思路: 布局文件 <android.support.v4.widget.SwipeRefreshLayout android:layout_marginTop="?attr/actionBarSize" android:id="@+id/one_refres

Android自定义listview布局实现上拉加载下拉刷新功能_Android

listview实现上拉加载以及下拉刷新的方式有很多.下面是我写的一种自定义的布局,复用性也比较的强.首先就是继承的listview的自定义view.      AutoListView.Java: package com.example.mic.testdemo.view; import android.annotation.TargetApi; import android.content.Context; import android.os.Build; import android.os

Android自定义下拉刷新上拉加载

本文实例为大家分享了Android自定义下拉刷新上拉加载的具体实现步骤,供大家参考,具体内容如下 实现的方式是SwipeRefreshLayout + RecyclerView 的VIewType 首先看效果: 总的思路: 布局文件 <android.support.v4.widget.SwipeRefreshLayout android:layout_marginTop="?attr/actionBarSize" android:id="@+id/one_refres

Android自定义listview布局实现上拉加载下拉刷新功能

listview实现上拉加载以及下拉刷新的方式有很多.下面是我写的一种自定义的布局,复用性也比较的强.首先就是继承的listview的自定义view. AutoListView.Java: package com.example.mic.testdemo.view; import android.annotation.TargetApi; import android.content.Context; import android.os.Build; import android.os.Bund

Android Webview添加网页加载进度条实例详解

推荐阅读:Android WebView线性进度条实例详解 最近在android项目中使用webview嵌套了一个抽奖活动网页,活动上线,运行良好(改了N次需求和突发bug),还好这种模式的活动,只需要修改网页,不需要重新打包发布市场,这也是这种模式开发的优势之一.后来据产品哥反馈说加载网页无进度提示,好吧,这个当时真没考虑这么多,这个要加加..想当然以为轻松搞定之....其实还是比轻松要复杂点... 1.首先自定义一个WebView控件 /** * 带进度条的Webivew * @author

混合开发(一)——WebView开发高级技巧之加载网页以及JavaScript,加载进度条

混合开发(一)--WebView开发高级技巧之加载网页以及JavaScript,加载进度条 现在关于混合开发也越来越多了,很多人喜欢跟随,比如HB,比如RN,其实这东西很早就有这么一个概念了,而且说实话,这方面的需求目前来讲,还是只针对一个别的应用的,不过日后会发展成什么样,那我就不知道了,不过在此之前,我们的WebView,还是用的比较多的,包括他浏览新闻,以及加载一些动作,也就是加载JS,这样的话,我们就可以拿出来讲一讲了,说真的,学习android也挺久的了,感觉很多东西,一出来的时候都哇

&amp;#106avascript使图片加载进度实时显示

加载|显示 javascript使图片加载进度实时显示 function chk(){  l--;  document.getElementById("aa").innerText=""+((sum-l)*100/sum)+"%"  if (l==0){     for (var i=0;i<sum;i++)       document.body.innerHTML+="<img src='"+imgs[i].s