class DownloadFileAsync extends AsyncTask<String, String, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
showDialog(DIALOG_DOWNLOAD_PROGRESS);
}
@Override
protected void onPostExecute(String unused) {
dismissDialog(DIALOG_DOWNLOAD_PROGRESS);
해결방법
class DownloadFileAsync extends AsyncTask<String, String, String> {
private ProgressDialog pDialog;
@Override
protected void onPreExecute()
{
super.onPreExecute();
pDialog = new ProgressDialog(context);
pDialog.setMessage("Please wait...");
pDialog.setIndeterminate(false);
pDialog.setCancelable(true);
pDialog.show();
}
@Override
protected void onPostExecute(String unused) {
pDialog.dismiss();
}
'안드로이드 > 버그탈출' 카테고리의 다른 글
Intent.ACTION_CALL (0) | 2017.04.14 |
---|---|
Android 패키지 파일을 분할하는 중에 문제가 발생하였습니다. (0) | 2017.04.07 |
setlatesteventinfo() is deprecated (0) | 2017.04.05 |
Android Studio ITelephony.aidl (not .java) (0) | 2017.04.03 |
Butter Knife 에러 해결 (0) | 2017.04.03 |