开发者

Android Error tracing in Eclipse?

开发者 https://www.devze.com 2023-03-25 05:55 出处:网络
I am developing Android app in eclipse with Android SDK 2.3, but i am开发者_JAVA百科 unable to see the errors like we see in java or .net, there are no run time errors tracing, if there is some error

I am developing Android app in eclipse with Android SDK 2.3, but i am开发者_JAVA百科 unable to see the errors like we see in java or .net, there are no run time errors tracing, if there is some error i have to place alerts there to check it, where as compiler does not place any error in its window. Its quite strange that it gives compile time error but no run time error. Please help.

Thanks Atif


Go to Window->Show View->Other.., and select Android->LogCat. This is the running system trace. I believe this is what you are looking for.


So first thing about android is, you will not be able to look your output details in console as your java or .net shows. As you might know emulator is what is considered to be your output window. And in order to find compile time errors eclipse makes it easy by highlighting your mistakes instantly. And as you have asked for, to look at your runtime errors android uses a special view called Logcat. This is were you will be listed out with all the runtime details of android. And as you have said that you are not able to view even System.out.println messages not being viewed, you might find it a bit strange but actually android does print these mesages in Logcat for you. So as the user sparkymat has suggested follow the steps and you are done.

0

精彩评论

暂无评论...
验证码 换一张
取 消