카테고리 없음
[Android] ProgressDialog
니니스
2011. 1. 14. 18:27
private ProgressDialog loagindDialog; // Loading Dialog
void createThreadAndDialog() {
/* ProgressDialog作成 */
loagindDialog = ProgressDialog.show(this, "로딩중,
"Loading. Please wait...", true, false);
Thread thread = new Thread(new Runnable() {
public void run() {
// 시간걸리는 처리
handler.sendEmptyMessage(0);
}
});
thread.start();
}
private Handler handler = new Handler() {
public void handleMessage(Message msg) {
loagindDialog.dismiss(); // 다이얼로그 삭제
// View갱신
}
};