代码无问题,底下的Console那里只提示到[2011-10-18 21:28:15 - HelloWorld] Android Launch!
[2011-10-18 21:28:15 - HelloWorld] adb is running normally.
[2011-10-18 21:28:15 - HelloWorld] Performing helloworld.test.HelloWorldActivity activity launch
[2011-10-18 21:28:15 - HelloWorld] Automatic Target Mode: Preferred AVD 'AVD1.6' is not available. Launching new emulator.
[2011-10-18 21:28:15 - HelloWorld] Launching a new emulator with Virtual Device 'AVD1.6'
[2011-10-18 21:30:48 - HelloWorld] ------------------------------
[2011-10-18 21:30:48 - HelloWorld] Android Launch!
[2011-10-18 21:30:48 - HelloWorld] adb is running normally.
[2011-10-18 21:30:48 - HelloWorld] Performing helloworld.test.HelloWorldActivity activity launch就不继续了。我记得应该还有向Emulator中装入apk的过程吧而且,每次点击运行都会打开一个新的模拟器,并且都无法运行程序(不是报错,是压根就没将APK装入)运行设置里面,如果选择手动选择ADK,在已运行的device中无法找到已经打开的模拟器求大大解释先谢过了~~~~~

解决方案 »

  1.   

    话说你要选择工程-》run-》as androidApplication
      

  2.   

    感觉你的AndroidManifest.xml有点问题,当然程序没问题,可以少了这个
     <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
      

  3.   

    adb kill-server
    adb devices
    也看不到模拟器?
      

  4.   

    特地来感谢,这位大哥,纠结了我好久的问题。
    明明已经启动模拟器,在run程序的时候就要重新打开一个模拟器。