从Activity调用时,另一个AsyncTask类中的ProgressDialog未显示

时间:2017-01-17 13:25:59

标签: java android android-asynctask progressdialog

我有一个名为ToString()的类,它从我的webService获取一些信息然后返回,并且我试图在访问互联网时运行“进度”对话框。因为我在不止一个地方使用这个课程,所以我不会在活动本身中做出贡献。这是我的RestClient课程:

RestClient

在我的活动中,当我点击这样的按钮时,我会调用班级public class RestClient extends AsyncTask<URL, String, String> { private Context context; private String string; public RestClient(Context context, String string) { this.context = context; this.string = string; } @Override protected void onPreExecute() { dialog = ProgressDialog.show(context, "Buscando seu Produto","Por favor, espere um momento...",true ,false); //I've already tried: /*ProgressDialog dialog = new ProgressDialog(context); dialog.setTitle("Buscando seu Produto"); dialog.setMessage("Por favor, espere um momento..."); dialog.setIndeterminate(true); dialog.setCancelable(false);*/ dialog.show(); super.onPreExecute(); } @Override protected String doInBackground(URL... params) { try { //Some WebService gets and Json conversions using my string variable //and some Thread.sleep that counts 2000 miliseconds to do all the queries dialog.dismiss(); } catch (IOException | InterruptedException |JSONException e) { e.printStackTrace(); dialog.dismiss(); return e.getMessage(); } return null; } @Override protected void onPostExecute(String s) { super.onPostExecute(s); } }

---编辑:我忘了提到我在同一活动中有一个AlertDialog,有时可以在ProgressDialog之前和之后显示---

RestClient

问题是我的private Button buttonConfirm; private EditView evString; private String theString; private String returnFromExecute; private RestClient restClient; private AlertDialog.Builder dialog; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_access_webservice); evString = (EditText) findViewById(R.id.editViewMyString); buttonConfirm = (Button) findViewById(R.id.buttonConfirm); dialog = new ProgressDialog(IdentificacaoDeProdutoActivity.this); dialog.setTitle("Error"); dialog.setMessage("Please try again"); dialog.setIndeterminate(true); dialog.setCancelable(false); buttonConfirmar.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { theString = evString.getText().toString(); if(!(theString!=null && theString.trim().length()>0)) //To check if theString is not null { dialog.show(); } restClient = new RestClient(AccessWebserviceActivity.this, theString); //Then I call execute and put a Thread.sleep a bit longer to compensate the ones I have in my doInBackground restClient.execute(); try { Thread.sleep(2050); } catch (Exception e) { dialog.show(); return; } } } } 从未显示过。我已经尝试ProgressDialoggetParent()getApplication()而不是getApplicationContext(),但没有一个有效。有人知道发生了什么,我该怎么办?

4 个答案:

答案 0 :(得分:1)

你还没有创建进度对话框试试这个。

ProgressDialog dialog;

 @Override
    protected void onPreExecute() {
        dialog= new ProgressDialog(context);
        dialog.setMessage("on Progress");
        dialog.show();
        super.onPreExecute();
    }

答案 1 :(得分:0)

您需要致电

dialog = ProgressDialog.show(context, "Buscando seu Produto","Por favor, espere um momento...",true ,false);

并删除

 dialog.show();

同时放置dialog.dismiss(); onPostExecute()中的方法。这个dialog.dismiss()方法在catch块中很好,但是如果你在try块中调用这个方法,它的目的是什么。一旦您调用此AsyncTask,它就会删除进度对话框。

答案 2 :(得分:0)

returnFromExecute = restClient.get();

删除该声明。你已经:

restClient.execute();

应该这样做。

您应该在doInBackground()中处理onPostExecute()的结果。无法在onCreate()中处理或检索它。

答案 3 :(得分:0)

经过大量关于线程和进程的研究后我发现我必须封装我之后拥有的所有代码

中的RestClient.execute

new Thread(new Runnable() { public void run() { // My code } });

这样代码的执行就发生在后台以及WebService查询中。

编辑:

即使创建新线程有效,也不建议使用!正确的做法是创建另一个扩展AsyncTask 的类来完成工作。