Android Handler和ProgressBar实现进度条的开始,暂停,停止,后退和循环

一,涉及的handler类方法

1,

post(Runnable r)

Causes the Runnable r to be added to the message queue.将要执行的线程对象加到队列当中 
2,
removeCallbacks(Runnable r)
Remove any pending posts of Runnable r that are in the message queue.移除队列当中未执行的线程对象
3,
postDelayed(Runnable r, long delayMillis)
Causes the Runnable r to be added to the message queue, to be run after the specified amount of time elapses.
将要执行的线程对象放入到队列当中,待时间结束后,运行制定的线程对象 

二,编写程序

程序效果:实现进度条的开始,暂停,停止,后退和循环

先上效果图


主activity
import android.app.Activity;  
import android.os.Bundle;  
import android.os.Handler;  
import android.view.View;  
import android.view.View.OnClickListener;  
import android.widget.Button;  
import android.widget.ProgressBar;  
  
public class C93_Handler3Activity extends Activity {  
    /** Called when the activity is first created. */  
    ProgressBar bar;  
    Button start,pause,back,stop;  
    Handler handler;  
    @Override  
    public void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.main);  
        handler=new Handler();  
        bar=(ProgressBar)findViewById(R.id.bar);  
        start=(Button)findViewById(R.id.start);  
        pause=(Button)findViewById(R.id.pause);  
        back=(Button)findViewById(R.id.back);  
        stop=(Button)findViewById(R.id.stop);  
        start.setOnClickListener(new OnClickListener() {  
              
            @Override  
            public void onClick(View v) {  
                // TODO Auto-generated method stub  
                //开始按钮,将要执行的线程对象放到队列当中   
                handler.post(runnable);  
            }  
        });  
        pause.setOnClickListener(new OnClickListener() {  
              
            @Override  
            public void onClick(View v) {  
                // TODO Auto-generated method stub  
                //暂停按钮,删除队列当中未执行的线程对象  
                handler.removeCallbacks(runnable);  
            }  
        });  
        back.setOnClickListener(new OnClickListener() {  
              
            @Override  
            public void onClick(View v) {  
                // TODO Auto-generated method stub  
                if(prolength!=0)  
                {  
                    prolength=bar.getProgress()-1;  
                    bar.setProgress(prolength);  
                    setTitle(String.valueOf(prolength));  
                }  
            }  
        });  
        stop.setOnClickListener(new OnClickListener() {  
              
            @Override  
            public void onClick(View v) {  
                // TODO Auto-generated method stub  
                handler.removeCallbacks(runnable);  
                bar.setProgress(0);  
                setTitle(String.valueOf(0));  
            }  
        });  
          
    }  
    int prolength=0;//定义进程度  
    //定义线程  
    Runnable runnable=new Runnable() {  
          
        @Override  
        public void run() {  
            // TODO Auto-generated method stub  
            prolength=bar.getProgress()+1;  
            bar.setProgress(prolength);  
            setTitle(String.valueOf(prolength));  
            //如果进度小于100,则延迟1000毫秒之后重复执行runnable  
            if(prolength<100)  
            {  
                handler.postDelayed(runnable, 1000);  
            }  
            //否则,都置零,线程重新执行  
            else   
            {  
                bar.setProgress(0);  
                setTitle(String.valueOf(0));  
                handler.post(runnable);  
            }  
        }  
    };  
}  

布局文件

<?xml version="1.0" encoding="utf-8"?>  
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    android:layout_width="fill_parent"  
    android:layout_height="fill_parent"  
    android:orientation="vertical" >  
  
   <ProgressBar android:layout_width="fill_parent"  
       android:layout_height="wrap_content"  
       android:id="@+id/bar"  
       style="@android :style/Widget.ProgressBar.Horizontal"  
       />  
   <LinearLayout android:layout_width="fill_parent"  
       android:layout_height="fill_parent"  
       android:orientation="horizontal">  
       <Button android:layout_width="wrap_content"  
       android:layout_height="wrap_content"  
       android:layout_weight="2"  
       android:id="@+id/start"  
       android:text="开始"/>  
       <Button android:layout_width="wrap_content"  
       android:layout_height="wrap_content"  
       android:layout_weight="2"  
       android:id="@+id/pause"  
       android:text="暂停"/>  
       <Button android:layout_width="wrap_content"  
       android:layout_height="wrap_content"  
       android:layout_weight="2"  
       android:id="@+id/back"  
       android:text="后退"/>  
       <Button android:layout_width="wrap_content"  
           android:layout_height="wrap_content"  
           android:layout_weight="2"  
           android:id="@+id/stop"  
           android:text="停止"/>  
   </LinearLayout>  
      
  
</LinearLayout> 


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值