1. 程式人生 > >模擬器除錯“掉線”問題解決方法

模擬器除錯“掉線”問題解決方法

在使用模擬器除錯過程中,有時候會發現,模擬器“掉線”了。
在Eclipse的DDMS下看不到device裝置了
使用adb devices命令也不能顯示,或者是device offline狀態
在Eclipse裡邊直接執行自己的Android程式提示如下
  1. [2011-03-16 16:26:30 - Baike] Android Launch!
  2. [2011-03-16 16:26:30 - Baike] adb is running normally.
  3. [2011-03-16 16:26:30 - Baike] Performing com.baidu.baike.MainActivity activity launch
  4. [2011-03-16 16:26:30 - Baike] Automatic Target Mode: launching new emulator with compatible AVD '1.6-320_480'
  5. [2011-03-16 16:26:30 - Baike] Launching a new emulator with Virtual Device '1.6-320_480'
  6. [2011-03-16 16:26:30 - Emulator] emulator: ERROR: the user data image is used by another emulator. aborting
複製程式碼
遇到這種情況我們可以嘗試使用下面兩種方法來解決:
方法1:
    執行如下命令
  1. adb root
複製程式碼 方法2:
    依次執行下面3條命令
  1. adb kill-server
  2. adb devices
  3. adb start-server
複製程式碼 一般有上面的兩種方法就可以解決了,如果還沒解決。
那麻煩你把模擬器叉掉,重啟一下模擬器吧。