当前位置: 代码迷 >> Android >> Android:problem in displaying the progressbar dialog
  详细解决方案

Android:problem in displaying the progressbar dialog

热度:506   发布时间:2016-05-01 10:33:56.0
Android:problem in displaying the progressbar dialog?

?

在你提交方法中使用如下方法,将其中的doFunction();换成自己的方法既可以了。

?

?

new AsyncTask<Void, Void, Void>() {        @Override        protected void onPreExecute()        {             pd = ProgressDialog.show(getApplicationContext(),"", "Sending Image ...", true);            Log.d(TAG, "onPreExecute()");        }        @Override        protected Void doInBackground(Void... params)        {            doFunction();            return null;        }        @Override        protected void onPostExecute(Void res)        {            Log.d(TAG, "onPostExecute()");            pd.dismiss();        }    }.execute();

?

?

?

  相关解决方案