AsyncTask으로 작업을 비동기로 수행할 때, ProgressDialog로 현재 작업이 진행중임을 화면에 나타낼 수 있습니다. public class GetTask extends AsyncTask { private Context context; private ProgressDialog progressDialog; public GetTask(Context context) { this.context = context; this.progressDialog = new ProgressDialog(context); } @Override protected void onPreExecute() { super.onPreExecute(); progressDialog.setMessage("작업 중..."); progres..