日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
怎么在Android項目中添加一個進度條功能

怎么在Android項目中添加 一個進度條功能?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

創(chuàng)新互聯(lián)是專業(yè)的中山網(wǎng)站建設(shè)公司,中山接單;提供成都網(wǎng)站設(shè)計、成都做網(wǎng)站,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行中山網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!

效果如圖… 

怎么在Android項目中添加 一個進度條功能

代碼實現(xiàn)過程–main布局

這個布局中就是一個簡單的引用



 

自定義ProgressView-默認是圖中第一種效果

package com.example.pb;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.graphics.Paint.Style;
import android.graphics.Rect;
import android.graphics.RectF;
import android.os.Handler;
import android.util.AttributeSet;
import android.view.View;

public class ProgressView extends View {
 int progress = 0;
 private String text="0%";
 private int max = 100;

 public ProgressView(Context context, AttributeSet attrs, int defStyleAttr) {
 super(context, attrs, defStyleAttr);
 }

 public ProgressView(Context context, AttributeSet attrs) {
 super(context, attrs);
 }

 public ProgressView(Context context) {
 super(context);
 }

 @Override
 protected void onDraw(Canvas canvas) {
 super.onDraw(canvas);
 // 對于畫筆
 Paint paint = new Paint();
 // 設(shè)置抗鋸齒
 paint.setAntiAlias(true);
 // 設(shè)置畫筆顏色

 // 三種樣式--Stroke 只要描邊 Fill 填充 FILL_AND_STROKE和既有描邊又有填充
 paint.setStyle(Style.STROKE);
 //設(shè)置描邊寬度
 paint.setStrokeWidth(2);
 //定義外圈員的顏色
 paint.setColor(Color.RED);
 //繪制圓形進度條--獲取當前控件多大,正好讓進度條在這個控件區(qū)間內(nèi)
 canvas.drawCircle(getMeasuredWidth()/2, getMeasuredWidth()/2, getMeasuredWidth()/2, paint);
 //重新設(shè)置描邊寬度,這個寬度最好能完全蓋過圓形
 paint.setStrokeWidth(3);

 //定義限制圓弧的矩形,當前這樣定義正好讓圓弧和圓重合
 RectF oval = new RectF(0, 0, getMeasuredWidth(), getMeasuredWidth());
 //設(shè)置進度條(圓弧的顏色)
 paint.setColor(Color.GREEN);
 //繪制,設(shè)置進度條的度數(shù)從0開始,結(jié)束值是個變量,可以自己自由設(shè)置,來設(shè)置進度 
 //true和false 代表是否使用中心點,如果true,代表連接中心點,會出現(xiàn)扇形的效果
 canvas.drawArc(oval, 0, 360 * progress / max, false, paint);
 //文字的繪制
 paint.setTextSize(40);
 //設(shè)置文字寬度
 paint.setStrokeWidth(1.0f);
 //測量文字大小-提前準備個矩形
 Rect bounds = new Rect();
 //測量文字的寬和高,測量的值可以根據(jù)矩形獲取
 paint.getTextBounds(text, 0, text.length(), bounds);
 paint.setColor(Color.BLACK);
 paint.setStyle(Style.FILL);
 //繪制文字,計算文字的寬高進行設(shè)置
 canvas.drawText(text, getMeasuredWidth()/2 - bounds.width() / 2,
  getMeasuredWidth()/2 + bounds.height() / 2, paint);

 }
 /**
 * 初始設(shè)置當前進度的最大值-默認100
 * @param max
 */
 public void setMax(int max) {
 this.max = max;
 }
 /**
 * 更新進度和文字
 * @param progress
 * @param text
 */
 public void setProgressAndText(int progress, String text) {
 this.progress = progress;
 this.text = text;
 //重新繪制
 postInvalidate();
 }

}

如果想要實現(xiàn)第二種效果

//設(shè)置填充模式
paint.setStyle(Style.FILL);
//繪制,設(shè)置進度條的度數(shù)從0開始,結(jié)束值是個變量,可以自己自由設(shè)置,來設(shè)置進度 
 //true和false 代表是否使用中心點,如果true,代表連接中心點,會出現(xiàn)扇形的效果
 canvas.drawArc(oval, 0, 360 * progress / max, false, paint);

Activity中代碼–模擬一下下載的過程,效果隨便定義

package com.example.pb;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;

public class MainActivity extends Activity {

 private ProgressView circleView;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);

 circleView = (ProgressView) findViewById(R.id.circleView);

 }

 int progress = 0;

 public void start(View v) {
 // 1000公里
 circleView.setMax(100);
 progress=0;
 new Thread() {
  public void run() {
  while (true) {
   progress = progress + 1;
   String text = progress + "%";
   circleView.setProgressAndText(progress, text);
   try {
   sleep(30);
   } catch (InterruptedException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
   }
   if (progress == 100) {
   break;
   }
  }
  };
 }.start();
 }

}

看完上述內(nèi)容,你們掌握怎么在Android項目中添加 一個進度條功能的方法了嗎?如果還想學到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


當前標題:怎么在Android項目中添加一個進度條功能
文章分享:http://www.dlmjj.cn/article/ppiedj.html