Hi, The simplest answer that i can give is wait for it to load. Android means your Android OS is loading on to the emulator. You have to wait for some time. This wait time can vary with system configuration. So Wait for 5-10 mins.
A useful tip is that you don't close your emulator once you run you app. same emulator can work for your updated application or different applicaiton all together. Regards, Yousuf On Mon, Dec 21, 2009 at 9:04 AM, Sanjeev <[email protected]> wrote: > Hi, > I tried to execute a simple Hello World program, but the screen only shows > "ANDROID" irrespective of what string I type. I am not sure how to fix this > issue. > > I am following the code in > http://developer.android.com/guide/tutorials/hello-world.html > > package com.android.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);* > > } > } > > No matter what I set the string I always see only "ANDROID" string on the > simulator. > > Regards, > Sanjeev > > > -- > You received this message because you are subscribed to the Google > Groups "Android Beginners" group. > > NEW! Try asking and tagging your question on Stack Overflow at > http://stackoverflow.com/questions/tagged/android > > To unsubscribe from this group, send email to > [email protected]<android-beginners%[email protected]> > For more options, visit this group at > http://groups.google.com/group/android-beginners?hl=en > -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android 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

