> 1) I keep a running score on screen. The StringBuffer I'm using to > build this is causing all types of char[] and String allocations. I'm > not sure what I can do about that.
You can reuse a StringBuffer by deleting its content, we do that in a bunch of places in Android's source code. You can also avoid calling toString() on it or passing it to methods that treat it as a String. Calling toString() creates a copy of the buffer, which you certainly don't want. -- Romain Guy Android framework engineer [email protected] Note: please don't send private questions to me, as I don't have time to provide private support. All such questions should be posted on public forums, where I and others can see and answer them --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

