onProgressUpdate未运行

时间:2018-04-10 13:42:47

标签: java android android-studio android-asynctask

我正在使用Retrofit从api接收json数据,并且运行良好,但将来我想显示一个进度条。我决定实现onProgressUpdate以检查是否调用了此方法,但是在检查Logcat选项卡时,它无法正常工作。也就是说,该方法没有运行。 AsyncTask类中的所有其他方法都在工作。我为每种方法都有一个Toast,所有这些都运行了。

public class MindicadorTask extends AsyncTask<Void, Void, Void> {

        private String TAG = MindicadorTask.class.getSimpleName();

        @Override
        protected void onPreExecute() {
            super.onPreExecute();
            Toast.makeText(MainActivity.this, "JSON Downloading", Toast.LENGTH_SHORT).show();
        }

        @Override
        protected Void doInBackground(Void... voids) {

            Retrofit retrofit = new Retrofit.Builder()
                    .baseUrl(IMindicador.BASE_URL)
                    .addConverterFactory(GsonConverterFactory.create())
                    .build();
            IMindicador iMindicador = retrofit.create(IMindicador.class);

            Call<Mindicador> call = iMindicador.getAPI();

            mMindicador = new Mindicador();
            try {
                mMindicador = call.execute().body();
            } catch (IOException e) {
                Log.e(TAG, "" + e.getMessage());
            }

            return null;
        }

        @Override
        protected void onProgressUpdate(Void... values) {
            super.onProgressUpdate(values);
            Log.e(TAG, "onProgressUpdate was called");
        }

        @Override
        protected void onPostExecute(Void aVoid) {
            super.onPostExecute(aVoid);
            Toast.makeText(MainActivity.this, "JSON Call was sucessfull", Toast.LENGTH_SHORT).show();
        }
    }

2 个答案:

答案 0 :(得分:2)

你必须传递一些值,而不是Void。例如,尝试使用int。当int迭代时,它调用onProgressUpdate()。

答案 1 :(得分:2)

指定要发送到onProgressUpdate方法的类型数据。也可以在doInBackground方法中调用publishProgress方法,该方法会对onProgressUpdate方法调用进行操作。