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