簡體   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