目前正在为送货司机开发一个 Android 应用程序。它几个月来一直工作正常,但现在按下“提交”按钮时突然强制退出。
在调试时,它给了我各种与 android 库相关的运行时错误。
当我去确切的位置时,每个人都说找不到源。一切都在那里,我已经重新安装了 SDK 并浏览了每个文件位置。
请帮忙
编辑:
if(isOnline())
{
PODCache.clearedfordeliveryjobs.add(etDespatch.getText().toString());
new runner().execute(al_kvp);
}
PODCache 是另一个类,这也是上面所指的位。
public void onStart(Intent intent, int startid) {
// Run this
Toast.makeText(getApplicationContext(), "PODCache Started", 10).show();
RUNNING = true;
try {
clearedfordeliveryjobs = (ArrayList<String>) LocalPersistence
.readObjectFromFile(this, UNBLOCKEDLIST);
} catch (Exception e) {
clearedfordeliveryjobs = new ArrayList<String>();
}