안드로이드 소스는 영 정이 안간다.
h = new Handler()
{
public void handleMessage(Message msg)
{
dialog.dismiss();
Toast.makeText(skin_book_image_activity.this, "완료됨", Toast.LENGTH_SHORT).show();
}
};
Thread t = new Thread
(
new Runnable()
{
@Override public void run()
{
activity.this.runOnUiThread
(
new Runnable()
{
@Override public void run()
{
dialog = ProgressDialog.show(skin_book_image_activity.this, "", "작업중...", true);
dialog.show();
}
}
);
시간이 걸리는 작업...
h.sendEmptyMessage(0);
}
}
);
t.start();
반응형
'Android 초보' 카테고리의 다른 글
adb shell run-as (0) | 2014.12.12 |
---|---|
안드로이드, 배경화면 이미지 (0) | 2014.07.14 |
HttpURLConnection getInputStream FileNotFoundException (0) | 2014.07.04 |
GCM. 발송서버. php (0) | 2014.07.04 |
GCM. 안드로이드앱 (0) | 2014.07.04 |