반응형
ProgressDialog progDailog;
progDailog = ProgressDialog.show(curContxt, "Progress dialogue sample ", "please wait....", true);
new Thread()
{
public void run()
{
try
{
// Just doing some long operation
}
catch (Exception e)
{
}
progDailog.dismiss;
}
}.start();
반응형
'안드로이드 개발' 카테고리의 다른 글
| 가속센서를 이용한 단말 흔들림 체크 (0) | 2010.10.06 |
|---|---|
| 갤럭시S GPS 향상 방법 (0) | 2010.08.09 |
| Android Screencast 0.4 (open-source) (0) | 2010.07.19 |