[android-developers] Differences between Android 3.0 and 3.1 in garbage collection?

2011-07-04 Thread Steven Jeon
Hi. I have an apk which is supposed to be operated in Honeycomb devices. It requests some information to a server, receives replies in a form of XML, parses the reply, and display the results. It works fine in Android 3.0. However, if I run the same apk in Android 3.1, I see (in DDMS) consecutive

Re: [android-developers] Differences between Android 3.0 and 3.1 in garbage collection?

2011-07-04 Thread Mark Murphy
If the DOM is not working well for you, don't use the DOM. Use SAX, or perhaps the XmlPullParser, both of which are available in Android. On Fri, Jul 1, 2011 at 1:18 AM, Steven Jeon jeon.ste...@gmail.com wrote: Hi. I have an apk which is supposed to be operated in Honeycomb devices. It