How do I prevent exception catching in Android?

前端 未结 4 584
北荒
北荒 2021-01-22 17:50

I\'m trying to develop an application for Android, but I\'m having difficulties tracing the source and cause of each exception I get in the process. My code runs in an Activity,

4条回答
  •  天涯浪人
    2021-01-22 18:47

    To me, that output doesn't look like it is actually the stacktrace of the exception. That just looks like the Thread information from the debug perspective. Try using logcat in either the ddms perspective or the ddms standalone tool to look at the actual exception that is thrown.

提交回复
热议问题