我正在使用处理程序来启动异步任务,但是这样做时,我的应用程序崩溃了。我被卡住的原因是因为如果我通过其他任何东西(例如 onClickListener)启动异步任务,那么我可以多次运行它,一遍又一遍,并且每次都能完美运行。一旦我从我的处理程序执行 asynctask,它就会立即使用 NullPointerException 使应用程序崩溃。
我的处理程序看起来像这样
public Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
handler.post(new Runnable() {
@Override
public void run() {
new sortNearby().execute();
}
});
}
};
这是来自应用程序的堆栈跟踪的一部分,显示了异常
Caused by: java.lang.NullPointerException
at badams.android.app.fragments.MainMenu_NearbyFragment$sortNearby.doInBackground(MainMenu_NearbyFragment.java:100)
我的代码的第 100 行是 doInBackground 下 asynctask 的第一行
protected String doInBackground(String... args) {
for (int i = 0; i < global.places.size(); i++) { //this is line 100
我知道异常很可能来自“global.places.size()”可能为空,但我坚持为什么它只有在从处理程序调用时才会这样做,因为如果我从我的代码的任何其他部分。
编辑
根据@Raghunandan 的要求,这是我的 asynctask 中 doInBackground 的整个代码块,它计算“地点”与用户之间的距离:
class sortNearby extends AsyncTask<String, Place, String> {
protected String doInBackground(String... args) {
for (int i = 0; i < global.places.size(); i++) { //THIS IS LINE 100
Location locationA = new Location("place");
locationA.setLatitude(global.places.get(i).getLatitude());
locationA.setLongitude(global.places.get(i).getLongitude());
Location locationB = new Location("user");
locationB.setLatitude(global.applicationLocationManager.getLatitude());
locationB.setLongitude(global.applicationLocationManager.getLongitude());
float dist = locationA.distanceTo(locationB);
dist = dist / 1000;
global.places.get(i).setDistance(dist);
}
return null;
}
编辑 2
global 是一个扩展 Application 的类,在 Activity 中定义如下:
global = (ApplicationGlobal) getActivity().getApplicationContext();