Problem -- My Android "Hello World" App Won't Say 'Hello"
Posted
by keith
on Stack Overflow
See other posts from Stack Overflow
or by keith
Published on 2010-04-02T00:40:50Z
Indexed on
2010/04/02
0:43 UTC
Read the original article
Hit count: 608
Hello,
I hope that I have come to the right post for a beginner’s question abut Android programming. If not, please feel free to direct me to a better forum.
I created a hello world application, and the system generated most of the Android language below. When running the app without the system.out statement, there is no “hello” in the emulator. Then, using the Eclipse tutorial, I read that I can add the system.out.println statement to main. Again the app runs, but there is no output.
What am I not understanding here?
android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" System.out.println =" Hello world!" />
Thank you,
Keith
© Stack Overflow or respective owner