On Jul 22, 1:29 pm, gnugu <[email protected]> wrote: > In my unit test I populate the notes texts using String.format("blah > blah blah %1d", index). Of course it takes a long time...
Don't use String.format(). It's criminally slow. Set up a java.util.Formatter object and re-use it. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

