Hi google group of android,
I have a  problem with  hello wolrd, i use linux ubuntu with eclipse
Version: 3.4.2, the configuration is perfect but i don't see the text
"Hello,World" the log of console are :

[2009-03-09 16:49:22 - HelloAndroid] ------------------------------
[2009-03-09 16:49:22 - HelloAndroid] Android Launch!
[2009-03-09 16:49:22 - HelloAndroid] adb is running normally.
[2009-03-09 16:49:22 - HelloAndroid] Launching:
com.example.hello.HelloAndroid
[2009-03-09 16:49:22 - HelloAndroid] Automatic Target Mode: launching
new emulator.
[2009-03-09 16:49:22 - HelloAndroid] Launching a new emulator.
[2009-03-09 16:49:23 - HelloAndroid] New emulator found: emulator-5554
[2009-03-09 16:49:23 - HelloAndroid] Waiting for HOME
('android.process.acore') to be launched...
[2009-03-09 16:49:25 - Emulator] emulator: emulator window was out of
view and was recentred
[2009-03-09 16:49:25 - Emulator]

and i see only android emulator 5554 with text "ANDROID" my code is:

package com.example.hello;

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("bellaz");
        setContentView(tv);
    }
}


This group is fantastic,
i'm sorry for my horrible english....



--~--~---------~--~----~------------~-------~--~----~
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