android 等待圈_Android ProgressDialog 转圈圈-阿里云开发者社区
轉圏圏型的等待
ProgressBarDemo.java:
package com.lveyo.android.demo.progressbar;
import android.app.Activity;
import android.app.ProgressDialog;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class ProgressBarDemo extends Activity {
privateTextView statusTextView;
privateButton beginBtn;
privateProgressDialog progressDialog;
@Override
public voidonCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
statusTextView = (TextView)findViewById(R.id.status);
beginBtn = (Button)findViewById(R.id.beginBtn);
setListener();
}
privateHandler handler = new Handler(){
@Override
public voidhandleMessage(Message msg) {
//關閉ProgressDialog
progressDialog.dismiss();
//更新UI
statusTextView.setText("Completed!");
}};
private voidsetListener(){
beginBtn.setOnClickListener(new View.OnClickListener() {
@Override
public voidonClick(View v) {
//顯示ProgressDialog
progressDialog = ProgressDialog.show(ProgressBarDemo.this,"Loading...", "Please wait...", true, false);
//新建線程
newThread(){
@Override
public voidrun() {
//需要花時間計算的方法
Calculation.calculate(4);
//向handler發消息
handler.sendEmptyMessage(0);
}}.start();
}
});
}
}
Calculation.java
package com.lveyo.android.demo.progressbar;
public class Calculation {
publicstatic void calculate(int sleepSeconds){
try {
Thread.sleep(sleepSeconds * 1000);
} catch(Exception e) {
// TODO:handle exception
}
}
}
main.xml文件
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="begin"
/>
總結
以上是生活随笔為你收集整理的android 等待圈_Android ProgressDialog 转圈圈-阿里云开发者社区的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 参考文献顺序不对_Endnote插入参考
- 下一篇: c++ 数组换行_C语言的数组的构建与打