On Sun, Feb 20, 2011 at 9:23 AM, abhay <[email protected]> wrote: > I am new to android . I want to print some thing using > system.out.println but nothing gets printed on the screen why ??
For the same reason that "system.out.println" does not print anything to the screen in Swing, or SWT, or to the browser in a Web app. You will find that information in LogCat, and you are better served using the android.util.Log class for writing out such information. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 3.4 Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

