Not used to using Eclipse for java, mainly used jEdit but with the Android dev along comes Eclipse. I\'ve switched to the debug window and pressed the debug button which sta
Check out the DDMS perspective and LogCat view. Android logs everything, what can be viewed with LogCat.
You should read this guide: Debugging Android using Eclipse and ADT
You can directly type the adb logcat
at the command prompt, it will display the stack traces.
For more info, refer this page: http://developer.android.com/guide/developing/tools/adb.html#logcat
For normal Java development in Eclipse, stack traces will appear in console view:
Window -> Show view -> Console
(if it isn't listed, click on "Other" and find "Console").
When dealing with Android development, find the "LogCat"
view, like I described above. The stack trace should be there.