I'm still a newbie in this thing. I'm coding the simple Hello Android Word based on http://code.google.com/android/intro/hello-android.html.
this is what i have in the code:
Using java Syntax Highlighting
- package com.Android.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("Hello, Android");
- setContentView(tv);
- }
- }
Parsed in 0.032 seconds, using GeSHi 1.0.8.4
and when i run it, it doesn't show what i supposed to see like on the google-android page did.
I'm using
Windows Pro XP
Eclipse Platform
Version: 3.4.1
Build id: M20080911-1700
When i run the Run Configuration i got this:

And when i hit Debug i got this

It lets me wait about 10 seconds and then i got this

Can someone tell me what's the error means? I think it tells me that my G1 is not connected to the computer?

.
