Reputation: 4716
I used Logcat to show json data in android studio, but it just showed in single line and it couldn't show the whole json data. So how should I do can make Logcat show the whole json data in multi-line like eclipse?
Thanks for help!
Upvotes: 16
Views: 6020
Reputation: 17861
Try using the Soft Wraps
. Turn it on in the Android Monitor
tool window. That should make it wrap the content.
Upvotes: 43