Re: [android-developers] Re: Memory Leak in my map overlay

2010-01-12 Thread Kevin Duffey
Thank you for filling us in on the issue once you found it. Interesting that it was what it was. On Tue, Jan 12, 2010 at 10:05 PM, jgostylo wrote: > I finally found my issue. For some reason: > face = Typeface.createFromAsset(context.getAssets(), "fonts/ > sd_led_screen.ttf"); > was not letting

[android-developers] Re: Memory Leak in my map overlay

2010-01-12 Thread jgostylo
I finally found my issue. For some reason: face = Typeface.createFromAsset(context.getAssets(), "fonts/ sd_led_screen.ttf"); was not letting go of all its resources. I am not sure the exact mechanics but I think it was filling the cache and not releasing that memory. When I pull out the font int

[android-developers] Re: Memory Leak in my map overlay

2010-01-11 Thread jgostylo
I have done some additional investigation and it seems that many people are having similar symptoms but their fixes aren't working for me. One person said they had threads that were not dying but I have checked that my thread count does not continually increase. I have been using ExecutorService