Aaron
Aaron

Reputation: 4480

Run time errors in eclipse for android.

Is there a better way to find run time errors than using breakpoints? I am used to visual studio that points out the lines and gives suggestions. Maybe some code I can put in an alertdialog. Thanks

Upvotes: 0

Views: 92

Answers (1)

kosa
kosa

Reputation: 66657

You may use logcat stacktrace (but you don't get data at the point of time), you can click on the stack trace which takes you to corresponding line in the file. Alert dialogs etc., are not possible.

Upvotes: 1

Related Questions