これが私のコードのプロトタイプです:-
class something extends Activity
{
protected void onCreate(Bundle savedInstanceState)
{
String str = objectofanotherthing.execute("").get();
}
class anotherthing extends AsyncTask
{
ProgressDialog Dialog;
protected void onPreExecute()
{
Dialog = ProgressDialog.show(context, "Progressing", "Working on it,");
}
protected String doInBackground(String... params)
{
...
}
protected void onPostExecute(Integer result)
{
Dialog.dismiss();
}
}
}
コードを実行すると、プログラムがProgressDialog.showで停止しているように見えます。クラッシュもエラーもありません。この部分にコメントすると、プログラムは正常に実行されます。何ができるかわかりません。誰かがこれで私を助けることができますか?前もって感謝します。