Why does LogCat not show the full message?
问题 Anyone knows why Logcat doesn't show full message? I try to print xml response from my site but I only can get some of it.. 回答1: Because your logcat has reached its max size, see What is the size limit for Logcat and how to change its capacity? Try using this code to write your result into a text file in sdcard, then use DDMS to get it. public static void appendLog(String text) { File logFile = new File("sdcard/log.txt"); if (!logFile.exists()) { try { logFile.createNewFile(); } catch