[android-developers] bitmap prob

2011-04-07 Thread vani reddy
Hi, when i try to recycle the bitmap its throwing the below error 04-07 16:15:55.861: ERROR/AndroidRuntime(6255): java.lang.RuntimeException: Canvas: trying to use a recycled bitmap android.graphics.Bitmap@45044b80 04-07 16:15:55.861: ERROR/AndroidRuntime(6255): at

Re: [android-developers] bitmap prob

2011-04-07 Thread Kostya Vasilyev
It's just as it says - trying to draw the bitmap after it's been recycle()'d. Recycle only those bitmaps that aren't needed anymore. -- Kostya 07.04.2011 14:33, vani reddy пишет: Hi, when i try to recycle the bitmap its throwing the below error 04-07 16:15:55.861:

Re: [android-developers] bitmap prob

2011-04-07 Thread vani reddy
Hi, Actually for our project we have set a timer to refresh the offers every 60sec and redraw the view, how to know that the bitmaps are not required anymore? This is what i want. On Thu, Apr 7, 2011 at 4:15 PM, Kostya Vasilyev kmans...@gmail.com wrote: It's just as it says - trying to draw

Re: [android-developers] bitmap prob

2011-04-07 Thread Kostya Vasilyev
? ? ? It's your code, so you should know which images are no longer needed. 07.04.2011 15:16, vani reddy пишет: Hi, Actually for our project we have set a timer to refresh the offers every 60sec and redraw the view, how to know that the bitmaps are not required anymore? This is what i want.

Re: [android-developers] bitmap prob

2011-04-07 Thread vani reddy
Hi, Please find attached my code, getBitmap() is converting to bitmap . Tell me where shud i use the recycle method? 2011/4/7 Kostya Vasilyev kmans...@gmail.com ? ? ? It's your code, so you should know which images are no longer needed. 07.04.2011 15:16, vani reddy пишет: Hi, Actually

Re: [android-developers] bitmap prob

2011-04-07 Thread Kostya Vasilyev
Use it on bitmaps that are no longer needed. It's your application, you should know when that is. -- Kostya 2011/4/7 vani reddy vani.redd...@gmail.com Hi, Please find attached my code, getBitmap() is converting to bitmap . Tell me where shud i use the recycle method? 2011/4/7 Kostya