Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- afterdelay
- 얻는법
- swift
- 앱스토어
- 공략
- 포켓볼
- Bitcode
- LG유플러스
- UITableView
- 샘플
- IOS
- GCD
- error
- UIView
- 신도림
- Check
- swift3
- 스마트폰
- 포켓몬 GO
- Xcode
- 해몽
- Example
- simulator
- setting
- 신도림 테크노마트
- 아이폰7
- 보라카이
- 페이백
- loop
- push
Archives
- Today
- Total
도래울
안드로이드 - ProgressDialog 사용하기 예제 본문
01) ProgressDialog
ProgressDialog는 주로 오래걸리는 작업인 경우에 사용자의 클릭을 방지하기위해 또는 사용자에게 뭔가 작업이 일어나고 있다는 것을 알려줄 경우에 사용된다.
아래그림의 "로딩중. 잠시만 기다려 주세요..." 와 같은 다이얼로그가 프로그레스 다이얼로그이다.
code snippets
private static final int DIALOG_PROGRESS_ID = 1; ProgressThread progressThread; ProgressDialog progressDialog; private class ProgressThread extends Thread { Handler mHandler; ProgressThread(Handler h) { mHandler = h; } public void run() { // 백그라운드로 실행해야 할 것들을 이곳에 구현한다. Message msg = mHandler.obtainMessage(); mHandler.sendMessage(msg); } } final Handler handler = new Handler() { public void handleMessage(Message msg) { dismissDialog(DIALOG_PROGRESS_ID); removeDialog(DIALOG_PROGRESS_ID); // 백그라운드 작업이 끝나고 실행해야 할 것들을 이곳에 구현한다. } }; protected Dialog onCreateDialog(int id) { switch (id) { case DIALOG_PROGRESS_ID: ProgressDialog progressDialog = new ProgressDialog(MyListActivity.this); progressDialog.setMessage(getString(R.string.wait_msg)); new ProgressThread(handler).start(); return progressDialog; } return null; }
'개발 > Android' 카테고리의 다른 글
Android Intent 유용한 사용예제 모음 (0) | 2016.02.05 |
---|---|
[Android] - Context 란? (0) | 2016.02.05 |
전체화면 사용하기 (Status bar, Title bar 숨기기) (0) | 2016.02.05 |
Android 2.3(Gingerbread) 에서 추가된 기능 (0) | 2016.02.05 |
안드로이드 RelativeLayout 컨테이너 (Android Container 2: RelativeLayout) (0) | 2016.02.05 |
Comments