आप AsyncTask का उपयोग कर सकते हैं..
इस कार्यशील कोड की जाँच करें...
AsyncTask को कॉल करने के लिए new Background().execute();
. का उपयोग करेंनिजी वर्ग पृष्ठभूमि AsyncTask बढ़ाता है <शून्य, शून्य, शून्य> {
@Override
protected void onPreExecute() {
super.onPreExecute();
pDialog = new ProgressDialog(Instructions.this);
pDialog.setMessage("Please wait...");
pDialog.setCancelable(false);
pDialog.show();
}
@Override
protected Void doInBackground(Void... arg0) {
// here is your background process...
return null;
}
@Override
protected void onPostExecute(Void result) {
super.onPostExecute(result);
if (pDialog.isShowing())
pDialog.dismiss();
}
}