最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android自定義View基礎(chǔ)開發(fā)之圖片加載進度條

 更新時間:2020年05月29日 09:44:19   作者:happy_fsyy  
這篇文章主要介紹了Android自定義View基礎(chǔ)開發(fā)之圖片加載進度條,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下

學會了Paint,Canvas的基本用法之后,我們就可以動手開始實踐了,先寫個簡單的圖片加載進度條看看。

按照慣例,先看效果圖,再決定要不要往下看:

既然看到這里了,應(yīng)該是想了解這個圖片加載進度條了,我們先看具體用法,再看自定義View的實現(xiàn):

<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完全相同,只是多了我們自己的自定義屬性而已,可以設(shè)置圓的顏色,以及文字顏色,大小等等。之后,在MainActivity中使用的方法也是同樣簡單,只要在圖片的進度更新的時候,同時更新我們進度條的進度就行了。

下面我們具體說下我們實現(xiàn)自定義進度條的過程,我們只需要重寫onDraw()方法就夠了,很明顯,我們的進度條包括三部分,內(nèi)圈圓,外圈圓弧,中間的文字,具體看代碼:

protected void onDraw(Canvas canvas) {
 mWidth=getMeasuredWidth();
 mHeight=getMeasuredHeight();
 radius=(float)(Math.min(mWidth,mHeight)*1.0/2)-strokeWidth/2;
 //繪制內(nèi)圈圓
 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);
 }
}

當然,為了讓我們可以自定義進度條的大小顏色,我們還采用了自定義屬性,并且在構(gòu)造器中,也需要加載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);
}

源碼下載

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Android SeekBar實現(xiàn)滑動條效果

    Android SeekBar實現(xiàn)滑動條效果

    這篇文章主要為大家詳細介紹了Android SeekBar實現(xiàn)滑動條效果,可以改變并顯示當前進度的拖動,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-07-07
  • Android框架Volley使用:ImageRequest請求實現(xiàn)圖片加載

    Android框架Volley使用:ImageRequest請求實現(xiàn)圖片加載

    這篇文章主要介紹了Android框架Volley使用:ImageRequest請求實現(xiàn)圖片加載的相關(guān)知識,非常不錯,具有一定的參考借鑒價值 ,需要的朋友可以參考下
    2019-05-05
  • 怎樣刪除android的gallery中的圖片實例說明

    怎樣刪除android的gallery中的圖片實例說明

    長按gallery中的圖片進行刪除該圖片的操作,具體實現(xiàn)如下,感興趣的朋友可以參考下哈
    2013-06-06
  • Android加密之全盤加密詳解

    Android加密之全盤加密詳解

    這篇文章主要介紹了Android加密之全盤加密詳解,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-03-03
  • Android自定義滑動接聽電話控件組實例

    Android自定義滑動接聽電話控件組實例

    這篇文章主要介紹了Android自定義滑動接聽電話控件組,接聽電話可以左右滑動,感興趣的小伙伴們可以參考一下。
    2016-10-10
  • Android開發(fā)中l(wèi)ibs和jinLibs文件夾的作用詳解

    Android開發(fā)中l(wèi)ibs和jinLibs文件夾的作用詳解

    這篇文章主要給大家介紹了關(guān)于Android開發(fā)中l(wèi)ibs和jinLibs文件夾的作用的相關(guān)資料,文中通過圖文及示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面來一起看看吧。
    2017-09-09
  • Android中的Bitmap緩存池使用詳解

    Android中的Bitmap緩存池使用詳解

    這篇文章主要介紹了Android中的Bitmap緩存池使用詳解,本文主要目的是講解如何使用緩存來提高UI的載入輸入和滑動的流暢性,需要的朋友可以參考下
    2015-01-01
  • flutter 輸入框組件TextField的實現(xiàn)代碼

    flutter 輸入框組件TextField的實現(xiàn)代碼

    這篇文章主要介紹了flutter 輸入框組件TextField的實現(xiàn)代碼,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2019-07-07
  • TextVie獲取顯示字符串的寬度之Android開發(fā)

    TextVie獲取顯示字符串的寬度之Android開發(fā)

    在項目開展過程中遇到問題要判斷textview是否需換行,要解決此問題首先判斷textview要顯示的字符串的寬度是否超過我設(shè)定的寬度,若超過則執(zhí)行換行,需要的朋友可以參考下
    2015-07-07
  • 解決AndroidStudio無法運行java中的mian方法問題

    解決AndroidStudio無法運行java中的mian方法問題

    這篇文章主要介紹了解決AndroidStudio無法運行java中的mian方法問題,本文通過圖文并茂的形式給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-10-10

最新評論

鄯善县| 拜城县| 荥经县| 莒南县| 耿马| 蒲城县| 保靖县| 元阳县| 徐水县| 石城县| 鄯善县| 汕尾市| 海口市| 天门市| 嘉善县| 盖州市| 犍为县| 饶平县| 华安县| 霍城县| 綦江县| 县级市| 苍梧县| 铜鼓县| 额尔古纳市| 前郭尔| 剑川县| 华安县| 盐源县| 哈巴河县| 常德市| 巨鹿县| 睢宁县| 习水县| 吉木萨尔县| 迭部县| 丽水市| 福泉市| 皮山县| 平遥县| 阜阳市|