It would be nice if there were some clear and straightforward way of getting this to run without having to be reasonably skilled in Android development.
Anyway I downloaded the installer_r15-windows.exe as recommended and ran that installer.
Then from Eclipse "ADT Plugin for Eclipse"
First thing then was to go into Window -> Preferences -> Android -> DDMS and set the "ADB connection time out(ms)": to 500000
It also seems to help greatly to use the AVD Manager (from Window menu) to start the emulator. And randomly go to the platform-tools directory and execute "adb kill-server" and "adb start-server".
Then in Eclipse use "Run As -> Android Application" from context menu and hopefully you get the following:
[2011-11-01 12:28:50 - HelloWorldProj] ------------------------------
[2011-11-01 12:28:50 - HelloWorldProj] Android Launch!
[2011-11-01 12:28:50 - HelloWorldProj] adb is running normally.
[2011-11-01 12:28:50 - HelloWorldProj] Performing my.pack.age.name.HelloWorldProjActivity activity launch
[2011-11-01 12:28:53 - HelloWorldProj] Uploading HelloWorldProj.apk onto device 'emulator-5554'
[2011-11-01 12:28:54 - HelloWorldProj] Installing HelloWorldProj.apk...
[2011-11-01 12:30:09 - HelloWorldProj] Success!
[2011-11-01 12:30:10 - HelloWorldProj] Starting activity my.pack.age.name.HelloWorldProjActivity on device emulator-5554
[2011-11-01 12:30:17 - HelloWorldProj] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=my.pack.age.name/.HelloWorldProjActivity }
Then wait a while and your message final appears in the emulator!
But if it is so difficult to run a simple HelloWorld app, is it worth perservering with Android?