There are e.printStackTrace() method to print exceptional error, so I would like to take entire exception in String and show it by Toast.makeText()
How can i do this?
If there are more alternate idea, then please share me or suggest me.
| |||||
feedback
|
UPDATE As pointed by @BlackRider in his answer there is a better way to extract an exception stacktrace into the String:
According to the source | |||||||||||
feedback
|
| |||||||||||
feedback
|
|
It's doable, but don't do this. Show just the error message (even that is too much for 'real' users), the full stack trace should go to the log only. | |||||||
feedback
|
|
you can print the stack trace to a stream & read from it.
or you can use a StringWriter in place of the ByteArrayOutputStream. | |||
|
feedback
|
|
In your exception handler use:
However, you're much better off using ADB with logcat, because stack traces on Toasts look terrible. | |||
|
feedback
|