一部のアクティビティに進行状況ダイアログを追加していますが、タイトルに例外の言及があります。それを解決する方法。
dialog = ProgressDialog.show(Notification.this, "loading please wait",
"Loading. Please wait...", true);
new Thread() {
public void run() {
try{
performBackgroundProcess1();
//sleep(3000,000);
} catch (Exception e) {
Log.e("tag", e.getMessage());
}
// dismiss the progress dialog
dialog.dismiss();
}
}.start();
this.all バックグラウンド処理は performbackgroundprocess メソッドで実行されます。