[android-beginners] Re: Hello World not working

2008-10-06 Thread Cyclonus

yep, thanks i figured it out

On Oct 4, 7:21 am, Megha Joshi [EMAIL PROTECTED] wrote:
 That is normal...it is your emulator boot up screen...wait for a while...you
 will see your app launched on the screen. You can also see the logcat output
 to view the launch progress 
 :http://code.google.com/android/reference/adb.html#logcat

 2008/10/3 Cyclonus [EMAIL PROTECTED]



  Hey guys I just got Android up and running and I followed the tutorial
  on the Android tutorial page, but I can't get it running. Here is the
  code:

  package HelloAndroid.der;

  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);
    }
  }

  When it is run only 'Android' pops up on the phone screen.

  I have a feeling it has something to do with the way I have named it.
  I am completely new to programming, but really want to learn and
  become a competent coder.

  Any help is appreciated, thanks
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
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
-~--~~~~--~~--~--~---



[android-beginners] Re: Hello World not working

2008-10-03 Thread Megha Joshi
That is normal...it is your emulator boot up screen...wait for a while...you
will see your app launched on the screen. You can also see the logcat output
to view the launch progress :
http://code.google.com/android/reference/adb.html#logcat

2008/10/3 Cyclonus [EMAIL PROTECTED]


 Hey guys I just got Android up and running and I followed the tutorial
 on the Android tutorial page, but I can't get it running. Here is the
 code:

 package HelloAndroid.der;

 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);
   }
 }

 When it is run only 'Android' pops up on the phone screen.

 I have a feeling it has something to do with the way I have named it.
 I am completely new to programming, but really want to learn and
 become a competent coder.

 Any help is appreciated, thanks

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
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
-~--~~~~--~~--~--~---