NullPointerException onPostExecute在Asynctask中

时间:2019-04-14 02:07:32

标签: java android nullpointerexception

我已经在菜单工具栏中添加了图标,当其按下时旋转几秒钟会执行代码,该代码检查应用是否有可用的更新,然后动画停止。 之前它运行良好,但我不知道从今天早上开始检查更新,但随后应用停止运行,并停止了logcat。

 Process: com.nepalpolice.yummyfood, PID: 3400
java.lang.NullPointerException
    at com.nepalpolice.yummyfood.MainActivity.resetUpdating(MainActivity.java:248)
    at com.nepalpolice.yummyfood.update.UpdateTask.onPostExecute(UpdateTask.java:37)
    at com.nepalpolice.yummyfood.update.UpdateTask.onPostExecute(UpdateTask.java:12)

下面是Mainactivity中的resetUpdating方法

   public void resetUpdating() {
    // Get our refresh item from the menu
    MenuItem m = mymenu.findItem(R.id.action_refresh);
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
        if (m.getActionView() != null) {
            // Remove the animation.
            m.getActionView().clearAnimation();
            m.setActionView(null);
        }
    }
}

Updatetask类

public class UpdateTask extends AsyncTask<Void, Void, Void> {
private Context mCon;

public UpdateTask(Context con)
{
    mCon = con;
}

@Override
protected Void doInBackground(Void... nope) {
    try {
        // Set a time to simulate a long update process.
        Thread.sleep(4000);

        return null;

    } catch (Exception e) {
        return null;
    }
}

@Override
protected void onPostExecute(Void nope) {

    ((MainActivity) mCon).resetUpdating();

       }
    }

UpdateSErvice类

    public class UpdateService extends Service {          
    public UpdateService() {
}

@Override
public int onStartCommand(Intent intent, int flags, int startId){

    RequestQueue queue = Volley.newRequestQueue(getApplicationContext());
    String url = "http://updatesagar.blogspot.com/2018/06/msc.html";

    StringRequest stringRequest = new StringRequest(Request.Method.GET, url, new Response.Listener<String>() {
        @Override
        public void onResponse(String response) {

            if(response != null ) {
                boolean resp = response.contains("<div class='post-body entry-content' id='post-body-4386558807662471459' itemprop='description articleBody'>\n" +
                        "<div dir=\"ltr\" style=\"text-align: left;\" trbidi=\"on\">\n" +
                        "11</div>\n" +
                        "<div style='clear: both;'></div>");

                if (!resp) {
                    Intent intent1 = new Intent(UpdateService.this, UpdateDialog.class);
                    intent1.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                    startActivity(intent1);

                } else {
                    Toast.makeText(getBaseContext(), "No updates Availaible", Toast.LENGTH_SHORT).show();
                }
            }
        }
    }, new Response.ErrorListener(){
        @Override
        public void onErrorResponse(VolleyError volleyError) {
            volleyError.printStackTrace();
        }
    });
    queue.add(stringRequest);
    return Service.START_NOT_STICKY;
}

@Override
public void onDestroy() {
    super.onDestroy();
}

@Override
public IBinder onBind(Intent intent) {
    // TODO: Return the communication channel to the service.
    throw new UnsupportedOperationException("Not yet implemented");
      }
}

让我知道是否需要更多信息。预先感谢。

1 个答案:

答案 0 :(得分:0)

我对代码行号和旋转相关的错误的猜测是: 这行很可能导致空指针

MenuItem m = mymenu.findItem(R.id.action_refresh);

mymenu为空

旋转屏幕时,如果异步任务花了一些时间执行并且旋转发生在处理过程中,则将重新创建所有ui视图,因此旧视图将消失。 正确的方法是在任务完成后,在进行任何设置,操作等之前先从mainactivity中找到最新的当前视图对象