While working on a simple program in Android, I mistakenly closed LogCat window and I want to know how to show it again.
While working on a simple program in Android, I mistakenly closed LogCat window and
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In Eclipse, Goto Window-> Show View -> Other -> Android-> Logcat.
Logcat is nothing but a console of your Emulator or Device.
System.out.printlndoes not work in Android. So you have to handle every thing in Logcat. More Info Look out this Documentation.Edit 1: System.out.println is working on Logcat. If you use that the Tag will be like System.out and Message will be your message.