2012-02-10 55 views
0

我正在android中的ProgressBar类上工作,但我无法通过5秒的时间使它进展并加载应用程序。一切正常,但进度条没有进展。这是代码。Android ProgressBar与线程

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> 

回答

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(); 
+0

我不明白。你可以更具体或发布整个代码。告诉我,当我睡5000毫秒,我可以开始上面的方法或我需要声明分开。 – Isuru 2012-02-10 19:44:27

+0

我编辑了上面的代码。 – CaseyB 2012-02-10 20:21:24

+0

谢谢你的工作! – Isuru 2012-02-10 20:45:57