最近作android開發遇到的一些錯誤和解決辦法

本身總結的在android中常會出現的很差解決的問題和方法
(其中第三個方法通過了四天的折磨。。。。。哎)

1.報錯:
BUILD FAILED
D:\workspace\ganji\build.xml:144: The following error occurred while executing this line:
D:\workspace\ganji\build.xml:271: Unable to delete file D:\workspace\ganji\tmp\proguard\tmp.jar
解決:
已經開了一個模擬器了,沒法從新編譯,必須關閉一個。用於ant


2.報錯:
The connection to adb is down, and a severe error has occured.
這個問題誰能解決啊
解決:
cmd跳到sdk tools文件路徑下
adb kill-server
而後再adb start-server

3.報錯:
The connection to adb is down, and a severe error has occured.
[2010-03-11 09:36:56 - HelloOPone] You must restart adb and Eclipse.
[2010-03-11 09:36:56 - HelloOPone] Please ensure that adb is correctly located at 'D:\OPhoneSDK_1.5
\platform-tools\adb.exe' and can be executed.
解決:
方法1.cmd中adb kill-server,而後adb -startserver
方法2.方法1無論用,那麼在任務管理器中殺死adb.exe,而後重啓Eclipse。
方法3.方法1和2都無論用,那麼查看最後一句報錯中:platform-tools中是否有adb.exe(個人錯誤就是在相關路徑下面沒有platform-tools文件夾
,因此我選擇新建一個文件夾,而且把tools中的文件所有複製到platform-tools中)
4.前面的方法試了仍是不行的話,建議從新裝一個系統,最好換個系統。有些大牛也說過:MS存在一些小問題[size=large][/size]java

 


XX 15:35 2012-8-30

  "......The method onAccuracyChanged(Sensor, int) of type Fundamentals must override a superclass......"
"......The method onClick(View) of type new View.OnClickListener(){} must override a superclass...... "

「......The method onSensorChanged(SensorEvent) of type Fundamentals must override a superclass......」


OO 15:35 2012-8-30


在 Eclipse中依次打開:項目屬性-->javaCompiler,找到其中的complier compliance level 將1.5改成1.6。 就是說Java 1.5的編譯器默認對父類的方法進行覆蓋,採用@Override進行說明;但1.6已經擴展到對接口的方法,因此若是仍是以Java 1.5的編譯器來編譯的話,會出現錯誤。 java的編譯器是1.6版本的,選擇編譯級別爲1.6便可。




XX 15:56 2012-8-30    Field requires API level 5 (current min is 1): ......
OO 15:56 2012-8-30    Right click on the project folder > Android tools > Clear Link Markers

XX 10:32 2012-9-19    Eclips 沒法格式化代碼,
OO 10:33 2012-9-19    去掉搜狗輸入法的快捷鍵

XX 10:23 2012-9-21    ADB server didn't ACK  虛擬機沒法啓動
OO 10:23 2012-9-21    都是豌豆莢惹的禍,卸載掉豌豆莢就OK

XX 14:57 2012-9-25    Cannot refer to a non-final variable editText inside an inner class defined in a different method
OO 14:57 2012-9-25    內部類什麼的,沒看明白。可是把變量在以前定義成private就OK


XX 14:45 2012-9-26    建立Handler時報錯(The constructor Handler(new Callback(){}) is undefined)
OO 14:46 2012-9-26    在頭文件中加入import android.os.Handler.Callback;android

相關文章
相關標籤/搜索