android之进度条组件ProgressBar

首先是main.xml文件

代码如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
	<ProgressBar
	    android:id="@+id/myprobarA"
	    style="?android:attr/progressBarStyle"
	    android:visibility="gone"
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"/>
	<ProgressBar
	    android:id="@+id/myprobarB"
	    style="?android:attr/progressBarStyleHorizontal"
	    android:visibility="gone"
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"/>
	<ProgressBar
	    android:id="@+id/myprobarC"
	    style="?android:attr/progressBarStyleHorizontal"
	    android:visibility="gone"
	    android:max="120"
	    android:progress="0"
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"/>
	<ProgressBar
	    android:id="@+id/myprobarD"
	    android:visibility="gone"
	    android:max="120"
	    android:progress="50"
	    android:secondaryProgress="70"
	    style="?android:attr/progressBarStyleLarge"
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"/>
	<ProgressBar
	    android:id="@+id/myprobarE"
	    android:visibility="gone"
	    android:max="120"
	    android:progress="50"
	    android:secondaryProgress="70"
	    style="?android:attr/progressBarStyleSmall"
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"/>
	<Button
	    android:id="@+id/mybut"
	    android:text="显示进度条"
	    android:layout_width="wrap_content"
	    android:layout_height="wrap_content"/>
</LinearLayout>

  然后编写Activity.java类

代码如下:

package com.example.myfirstproject;

import java.sql.Date;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.List;
import java.util.Timer;
import java.util.TimerTask;
import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.app.Activity;
import android.content.pm.ActivityInfo;
import android.content.res.Configuration;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.*;

public class MainActivity extends Activity {
	private ProgressBar myprobarA,myprobarB,myprobarC,myprobarD,myprobarE;
	private Button mybut;
	protected static final int STOP = 1;
	protected static final int CONTINUE = 2;
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        this.myprobarA = (ProgressBar)this.findViewById(R.id.myprobarA);
        this.myprobarB = (ProgressBar)this.findViewById(R.id.myprobarB);
        this.myprobarC = (ProgressBar)this.findViewById(R.id.myprobarC);
        this.myprobarD = (ProgressBar)this.findViewById(R.id.myprobarD);
        this.myprobarE = (ProgressBar)this.findViewById(R.id.myprobarE);
        this.mybut = (Button)this.findViewById(R.id.mybut);
        this.myprobarA.setIndeterminate(false);
        this.myprobarB.setIndeterminate(false);
        this.myprobarC.setIndeterminate(true);
        this.myprobarD.setIndeterminate(false);
        this.myprobarE.setIndeterminate(false);
        this.mybut.setOnClickListener(new OnClickListenerlmpl());
    }
    private class OnClickListenerlmpl implements OnClickListener{
    	public void onClick(View view){
    		MainActivity.this.myprobarB.setSecondaryProgress(0);
    		MainActivity.this.myprobarA.setVisibility(View.VISIBLE);
    		MainActivity.this.myprobarB.setVisibility(View.VISIBLE);
    		MainActivity.this.myprobarC.setVisibility(View.VISIBLE);
    		MainActivity.this.myprobarD.setVisibility(View.VISIBLE);
    		MainActivity.this.myprobarE.setVisibility(View.VISIBLE);
    		MainActivity.this.myprobarA.setMax(120);
    		MainActivity.this.myprobarB.setMax(120);
    		MainActivity.this.myprobarA.setProgress(0);
    		MainActivity.this.myprobarB.setProgress(0);
    		new Thread(new Runnable(){
    			public void run(){
    				int count = 0;
    				for(int i = 0;i < 10;i++){
    					try{
    						count = (i+1)*20;
    						Thread.sleep(500);
    						if(i==6){
    							Message m = new Message();
    							m.what = MainActivity.STOP;
    							MainActivity.this.myMessageHandler.sendMessage(m);
    							break;
    						}else{
    							Message m = new Message();
    							m.arg1 = count;
    							m.what = MainActivity.CONTINUE;
    							MainActivity.this.myMessageHandler.sendMessage(m);
    						}
    					}catch(Exception ex){
    						ex.printStackTrace();
    					}
    				}
    			}
    		}).start();
    	}
    }
    private Handler myMessageHandler = new Handler(){
    	public void handleMessage(Message msg){
    		switch(msg.what){
    		case MainActivity.STOP:
    			myprobarA.setVisibility(View.GONE);
    			myprobarB.setVisibility(View.GONE);
    			myprobarC.setVisibility(View.GONE);
    			myprobarD.setVisibility(View.GONE);
    			myprobarE.setVisibility(View.GONE);
    			Thread.currentThread().interrupt();
    			break;
    		case MainActivity.CONTINUE:
    			if(!Thread.currentThread().isInterrupted()){
    				myprobarA.setProgress(msg.arg1);
    				myprobarB.setProgress(msg.arg1);
    				myprobarC.setProgress(msg.arg1);
    				myprobarD.setProgress(msg.arg1);
    				myprobarE.setProgress(msg.arg1);
    			}
    			break;
    		}
    	}
    };
}

  运行效果:

时间: 2024-09-30 02:26:34

android之进度条组件ProgressBar的相关文章

Android学习笔记(24):进度条组件ProgressBar及其子类

ProgressBar作为进度条组件使用,它还派生了SeekBar(拖动条)和RatingBar(星级评分条). ProgressBar支持的XML属性: Attribute Name Related Method Description style 设置ProgressBar指定风格 android:indeterminate 设置为true时,进度条不显示运行进度 android:indeterminateBehavior indeterminate模式下.当进度条达到最大值时的动画处理行为

android之实现ProgressBar进度条组件

android之实现ProgressBar进度条组件: (注意:横向那个进度条要android4.0以上版本支持,也就是最低(android:minSdkVersion="14")支持) 布局:layout/activity_main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.a

Android自定义进度条-带文本(文字进度)的水平进度条(ProgressBar)

/** * 带文本提示的进度条 */ public class TextProgressBar extends ProgressBar { private String text; private Paint mPaint; public TextProgressBar(Context context) { super(context); initText(); } public TextProgressBar(Context context, AttributeSet attrs, int d

【Android 初学】8、进度条(ProgressBar、SeekBar、RatingBar)

Start Android 现在发现每个控件的使用方法都大同小异,所以决定加快学习步骤,这一部分的笔记就写的简略了. 1.Android当中的进度条 2.各种进度条之间的关系 3.ProgressBar进度条的风格 4.ProgressBar的使用方法 ProgressBar的Style 主要有两大类 进度条的主要属性 进度条最大值:max 当前进度:progress 次要进度的值:SecondaryProgress 1.SeekBar的主要属性 1)进度条最大值:max 2)当前进度:prog

Android自定义进度条样式

最近在做一个widget,上面需要一个progressbar,产品经理和设计师给出来的东西是要实现一个圆角的progress和自定义的颜色,研究一小下,分享出来给大家哦. 测试于:Android4.0+ 操作步骤: 1.创建你的layout文件引用progressbar如下,标红处引用你自定的样式: <ProgressBar android:id="@+id/progressDownload" style="?android:attr/progressBarStyleH

[ExtJs5.1.0-第3天] 进度条组件介绍

进度条组件介绍 1.认识Ext.Progress BarExt.ProgressBar是一个可更新的进度条组件,继承自Ext.Component,该进度条具有2种不同的模式: 手工模式 和 自动模式.在手工模式中程序员要自己控制进度条的显示.更新.清楚:在自动模式中只需调用wait方法,进度条就会自动无限制地滚动下去,它适合为那些长时间的同步操作进行提示. 下表给出所有组件都有的公共属性和方法 配置项 类型 说明 renderTo String 指定一个页面上已经存在的元素或元素id,该元素将会

Android中进度条类型的控件定义和妙用技巧

Android中进度条控件有3个(不算ProgressDialog),分别是ProgressBar,SeekBar和RatingBar,对于自定义样式来说又得按照需求分为2中情况,第一种是刻度型,第二种是循环类型. 第一种是"刻度型",也就是他有起点和终点,起点值小于终点值 这种样式的修改,要修改三个属性即可 分别是:背景(主要是进度的轨道样式),第一级别滚动条progressDrawable,第二级别progressDrawable 遗憾的是Android提供的api很难设置,不过可

Android之进度条2

我之前有写过一篇“Android之进度条1”,那个是条形的进度条(显示数字进度),这次实现圆形进度条. 点击查看Android之进度条1:http://www.cnblogs.com/caidupingblogs/p/5102745.html> MainActivity继承Activity实现Runnable接口: package com.cdp.progressbar; import android.app.Activity; import android.os.Bundle; import

android 自定义进度条颜色

先看图 基于产品经理各种自定义需求,经过查阅了解,下面是自己对Android自定义进度条的学习过程!   这个没法了只能看源码了,还好下载了源码, sources\base\core\res\res\  下应有尽有,修改进度条颜色只能找progress ,因为是改变样式,首先找styles.xml 找到xml后,进去找到 [html] view plaincopyprint? <span style="font-size: 18px;">    <style name