[2009-06-09 07:32:04 - HelloAndroid-test]
------------------------------
[2009-06-09 07:32:04 - HelloAndroid-test] Android Launch!
[2009-06-09 07:32:04 - HelloAndroid-test] adb is running normally.
[2009-06-09 07:32:04 - HelloAndroid-test] Performing
com.example.helloandroid.HelloAndroid activity launch
[2009-06-09 07:32:04 - HelloAndroid-test] Automatic Target Mode:
launching new emulator with compatible AVD 'c3pio'
[2009-06-09 07:32:04 - HelloAndroid-test] Launching a new emulator
with Virtual Device 'c3pio'
[2009-06-09 07:32:12 - HelloAndroid-test] New emulator found:
emulator-5554
[2009-06-09 07:32:12 - HelloAndroid-test] Waiting for HOME
('android.process.acore') to be launched...
[2009-06-09 07:32:57 - HelloAndroid-test] HOME is up on device
'emulator-5554'
[2009-06-09 07:32:57 - HelloAndroid-test] Uploading HelloAndroid-
test.apk onto device 'emulator-5554'
[2009-06-09 07:32:58 - HelloAndroid-test] Installing HelloAndroid-
test.apk...
[2009-06-09 07:33:21 - HelloAndroid-test] Application already exists.
Attempting to re-install instead...
[2009-06-09 07:33:28 - HelloAndroid-test] Success!
[2009-06-09 07:33:28 - HelloAndroid-test] Starting activity
com.example.helloandroid.HelloAndroid on device
[2009-06-09 07:33:31 - HelloAndroid-test] ActivityManager: Starting:
Intent { comp={com.example.helloandroid/
com.example.helloandroid.HelloAndroid} }
[2009-06-09 07:33:32 - HelloAndroid-test] Attempting to connect
debugger to 'com.example.helloandroid' on port 8611
[2009-06-09 07:33:33 - HelloAndroid-test] Launch error: Failed to
connect to remote VM. Connection refused.


This is the log in my console. It tracks yours very well as far as
"Uploading HelloAndroid-test.apk onto device 'emulator-5554'"
I'm new myself, maybe it's an issue of the apk (executable bytecode)
not being in the right place. Are you operating in Vista Program Files
folder...very wierd things happen there, It's likely better off in
another folder altogether.

All this being said...I can't get my debigger started so if any other
beginner has overcome tis I'd be glad to hear.

Yours Sincerely
John
On Jun 9, 2:07 am, Sheng-Yi Shih <[email protected]> wrote:
> Hi,
>
>     I also have the same problem. When I ran this program, it just launch
> the android emulator
> and showed nothing but the android on the screen. There is no "Hello
> Android" on the screen.
> I tried to press all the keys on the screen but there is still no reaction.
> The code i am running is as
> follows. I also put the log here. Please help me to figure out how to start
> from here. Thanks.
>
> Jude
>
> --------------------
> Log
> [2009-06-08 22:56:40 - HelloWorld1] ------------------------------
> [2009-06-08 22:56:40 - HelloWorld1] Android Launch!
> [2009-06-08 22:56:40 - HelloWorld1] adb is running normally.
> [2009-06-08 22:56:40 - HelloWorld1] Performing com.example.HelloWorld1.hello
> activity launch
> [2009-06-08 22:56:40 - HelloWorld1] Automatic Target Mode: launching new
> emulator with compatible AVD 'adv15'
> [2009-06-08 22:56:40 - HelloWorld1] Launching a new emulator with Virtual
> Device 'adv15'
> [2009-06-08 22:56:47 - HelloWorld1] New emulator found: emulator-5554
> [2009-06-08 22:56:47 - HelloWorld1] Waiting for HOME
> ('android.process.acore') to be launched...
>
> Code
>
> package com.example.HelloWorld1;
>
> import android.app.Activity;
> import android.os.Bundle;
>
> import android.widget.TextView;
>
> public class hello extends Activity {
>    /** Called when the activity is first created. */
>    @Override
>    public void onCreate(Bundle savedInstanceState) {
>        super.onCreate(savedInstanceState);
>        TextView tv = new TextView(this);
>        tv.setText("Hello, Android");
>        setContentView(tv);
>    }
>
> }
>
> 2009/6/8 Jack Ha <[email protected]>
>
>
>
> > Do you see any error messages in the Console?
>
> > --
> > Jack Ha
> > Open Source Development Center
> > ・T・ ・ ・Mobile・ stick together
>
> > The views, opinions and statements in this email are those of
> > the author solely in their individual capacity, and do not
> > necessarily represent those of T-Mobile USA, Inc.
>
> > On Jun 6, 7:03 pm, Fahd <[email protected]> wrote:
> > > Hi All,
>
> > > I am following the hello world example and when I run it through
> > > eclipse, the emulater starts showing android...
> > > then it comes in to the system and asks me to press menu to unlock.
> > > When I do it, it justs unlocks but there no helloworld or application
> > > window, just the normal android desktop!!!!! Am I missing somthing??
>
> > > Following is the code I am running (which is the copy of the example)
>
> > > package com.example.helloandroid;
>
> > > import android.app.Activity;
> > > import android.os.Bundle;
> > > import android.widget.TextView;
>
> > > public class HelloAndroid extends Activity {
> > >     /** Called when the activity is first created. */
> > >     @Override
> > >     public void onCreate(Bundle savedInstanceState) {
> > >         super.onCreate(savedInstanceState);
> > >         TextView tv = new TextView(this);
> > >         tv.setText("Hello, Android");
> > >         setContentView(tv);
> > >         //setContentView(R.layout.main);
> > >     }
>
> > > }
>
> > > Why isnt the helloworld window coming?? Any help plss
>
> > > Fahd
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to