带有线程的Android ProgressBar

时间:2012-02-10 19:19:36

标签: android android-widget android-progressbar

我正在使用android中的ProgressBar类,但是我无法在5秒内完成它并加载应用程序。一切正常但进度条没有进展。这是代码。

public class StartPoint extends Activity{

ProgressBar progressBar;
private int progressBarStatus = 0;

@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.splash);

    progressBar = (ProgressBar)findViewById(R.id.progressBar1);


    Thread timer = new Thread(){
        public void run(){
            try{
                sleep(5000);
                while(progressBarStatus < 5000){
                    progressBar.setProgress(progressBarStatus);
                    progressBarStatus += 1000;

                }
            }catch(InterruptedException e){
                e.printStackTrace();
            }finally{
                Intent openMainList = new Intent(StartPoint.this, in.isuru.caf.MainList.class);
                startActivity(openMainList);
            }
        }
    };
    timer.start();
}

protected void onPause(){
    super.onPause();
    finish();
}

}

这是布局文件splash.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/mary_mother_of_god" />

<ProgressBar
    android:id="@+id/progressBar1"
    style="?android:attr/progressBarStyleHorizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1.67" />

</LinearLayout>

1 个答案:

答案 0 :(得分:9)

您无法从其他线程更新UI小部件。您需要执行以下操作:

Thread timer = new Thread(){
    public void run(){
        try{
            sleep(5000);
            while(progressBarStatus < 5000){
                StartPoint.this.runOnUIThread(new Runnable(){
                    public void run()
                    {
                        progressBar.setProgress(progressBarStatus);
                        progressBarStatus += 1000;
                    }
                });

            }
        }catch(InterruptedException e){
            e.printStackTrace();
        }finally{
            Intent openMainList = new Intent(StartPoint.this, in.isuru.caf.MainList.class);
            startActivity(openMainList);
        }
    }
};
timer.start();