Android:异步任务线程睡眠错误

时间:2017-11-06 18:47:44

标签: java android multithreading android-asynctask thread-sleep

我在stackoverflow的职业生涯中有第一个问题。我希望你帮助我。

发生了什么:

我有Fragment,我想设置一些带有一些日期的recyclelerView,它一直工作,直到我想用一些ErrorMgs做ProgressDialog。

这是我的onCreateView:

Finally



我添加了AsyncTask:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.recycler_view, container, false);
    recyclerView = (RecyclerView) view.findViewById(R.id.my_recycler_view);
    textViewErrorMsg = (TextView) view.findViewById(R.id.tv_error_message);
    progressBarLoading = (ProgressBar) view.findViewById(R.id.pb_loading);
    new TakeDates().execute();
    return view;
}



最后一个方法是populateFromJson:

@SuppressLint("StaticFieldLeak")
class TakeDates extends AsyncTask<Void, Void, Void> {

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        progressDialog = new ProgressDialog(getActivity());
        progressDialog.getWindow().clearFlags(
                WindowManager.LayoutParams.FLAG_DIM_BEHIND);
        progressDialog.setMessage("Loading places...");
        progressDialog.setCanceledOnTouchOutside(false);
        progressDialog.show();
    }

    @Override
    protected Void doInBackground(Void... voids) {
        try {
            Thread.sleep(2200);
            populateFromJson();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        return null;
    }

    @Override
    protected void onPostExecute(Void aVoid) {
        super.onPostExecute(aVoid);
        if (progressDialog.isShowing())
            progressDialog.dismiss();
    }

}



现在关于错误:
1)引起:android.view.ViewRootImpl $ CalledFromWrongThreadException:只有创建视图层次结构的原始线程才能触及其视图。
我知道错误的主要部分在这里:
添加SLEEP Make ERROR后

 private void populateFromJson() {
    ConnectivityManager conMgr = (ConnectivityManager) getContext().getSystemService(Context.CONNECTIVITY_SERVICE);
    assert conMgr != null;
    NetworkInfo i = conMgr.getActiveNetworkInfo();
    if (i != null && i.isConnected() && i.isAvailable()) {
        ApiService api = RetroClient.getApiService(PLACES_URL);

        Call<PlaceList> call = api.getMyJSON();

        call.enqueue(new Callback<PlaceList>() {
            @Override
            public void onResponse(Call<PlaceList> call, Response<PlaceList> response) {
                if (response.isSuccessful()) {
                    itemList = response.body().getItemList();
                    adapter = new RecyclerViewPlaceAdapter(itemList, getContext());
                    recyclerView.setAdapter(adapter);
                    recyclerView.setHasFixedSize(true);
                    recyclerView.setLayoutManager(new LinearLayoutManager(getActivity()));
                    showPlaces();
                } else {
                    showErrorMessage("Try to restart your app.");
                }
            }

            @Override
            public void onFailure(Call<PlaceList> call, Throwable t) {
                showErrorMessage("Here is the main error: " + t.getMessage() + "\nTry to restart your app.");
            }
        });
    } else {
        showErrorMessage("Internet Connection Not Available" + "\nTry to find better connection to the internet.");
    }
}

4 个答案:

答案 0 :(得分:0)

不,错误的根本原因是您正在尝试使用视图表单工作线程。 应该在此方法中获得您的调用结果

@Override
protected void onPostExecute(Void result) {
  //work with you RecyclerView here
}

答案 1 :(得分:0)

不要使用AsyncTask。只需在onCreateView()中调用populateFromJson()

答案 2 :(得分:0)

populateFromJson()尝试使用recicleView。 View(和View子类)对象不能在除Activity线程之外的任何线程中使用。

当您对AsyncTask .execute()执行onPreExecute时,onPostExecute将由活动线程和doInBackground由子线程执行。

一旦你明白这一点,你就会很容易理解为了避免这个错误,你应该在populateFromJson()

中拨打onPostExecute

N.B。如果你的doInBackground方法真的只需要等待,那么有更多有效的方法来做到这一点。看看herehere

答案 3 :(得分:-1)

您无法从后台线程更新视图,让异步任务返回doInBackground中的项目列表,onPostExecuted将接收列表作为参数,您可以通过该方法更新回收站视图。

更简单的方法是用rxjava替换异步任务