繁体   English   中英

Eclipse Android运行时错误

[英]Eclipse Android Runtime Errors

当前正在开发用于交付驱动程序的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>();
    }

什么是keypod.keyfort.net.PickUpActivity? 您是否尝试过找那个班? 在我看来,这看起来并不像标准的Android。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM