Questions tagged [recycle]
338 questions
0
votes
0 answers
expandable listview with view recycle?
I have modified the listview so that it's height = height of all its children and have put it a scrollview... I am putting images in the list; problems start to arise when adding a lot of images in the list; as the height is now = height of all its…

yeahman
- 2,737
- 4
- 21
- 25
0
votes
1 answer
How do I programmatically delete a defect in the Rally recycle bin using ruby?
I'm able to delete defects in Rally v12.4 using a Ruby script and the Rally Rest API. The defect then goes into the Recycle Bin. How do I remove it completely?
If you must know...I'm importing data from ClearQuest (using Enterprise editino and don't…

Dave Elstner
- 1
- 1
0
votes
0 answers
android onResume not restoring image values
I use AnimationDrawable animation, and after animation is finished or activity is closed im recycling bitmaps. So i start activity for first time and animation is happening, but if i close activity and open it again, im getting error trying to use a…

kort.es
- 479
- 2
- 7
- 26
0
votes
2 answers
Switch gets toggled by itself when gone off screen in ListView - CursorAdapter
I am having trouble figuring this one out.
I have a ListView with CursorAdapter and if item goes offscreen the switch resets it self. I have a listener onCheckedChangeListener set on the switch, which triggers the listener implemented by hosting…

urSus
- 12,492
- 12
- 69
- 89
0
votes
1 answer
WPF listview virtualization with columns
I am trying to create a listview (5'000 items +) that has a smooth scrolling.
I found a solution in the inet, that "virtualizationmode=Recycling" could do the trick.
Well I totally am lost, since I used a gridview in my old app.
Now to virtualize…

Noel Widmer
- 4,444
- 9
- 45
- 69
0
votes
0 answers
Bitmaps and scaled bitmaps
I'm loading multiple bitmaps (aprox 40 of varying sizes from full-screen images to individual sprite frames) using:
Bitmap graphic = BitmapFactory.decodeResource(res, R.drawable.mygraphics);
And then I am scaling them (so they will look the same…

Zippy
- 3,826
- 5
- 43
- 96
0
votes
1 answer
heap size increase upto 35mb when application started
My application contains so many activities up to 40 with 5tabs. and each activity has one background image. when i entered into one activity, background image for that activity has been loaded and displayed.when i away from that activity i am…

user1430138
- 11
- 1
- 6
0
votes
1 answer
Silverlight VirtualizingPanel recycling containers display wrong content
I recently wrote an implementation of a VirtualizingWrapPanel that recycles containers as they scroll into and out of view.
On occasion I've noticed that the content rendered by the control is actually the previously contained data, not the current…

Lee Roth
- 228
- 1
- 11
0
votes
1 answer
Getting Canvas: Use a recycled bitmap on setting layout background
I need to set a different background to layout based on some event. This was causing OOM exception. I added code to fix this but this is now causing recycled bitmap issue.
Here is the code:
if (change_bg != 0) {
//Garbage collect…

Mano
- 314
- 1
- 5
0
votes
1 answer
Is there any side effect of reducing IIS recycle time interval?
My asp .net mvc3 application is hosted in IIS 7 and i wish to reduce memory consumption by reducing the recycle time interval of IIS to 1000 mintes . Is there any side-effects in doings this?

Mridul Raj
- 1,001
- 4
- 19
- 46
0
votes
1 answer
IIS Process Recycling
I have read the MSDN article (link) which says something about the IIS process recycling and it turns out that
The new process is started before the old worker process stops, and requests are then directed to the new process.
But, when I read next…

AgentFire
- 8,944
- 8
- 43
- 90
0
votes
2 answers
IIS 6.0 recycle overlapping delay
Is it possible to add delay in overlapping iis 6.0 recycling? for example iis does not shutdown the old pool for 2 hours even the new app pool is live and processing requests. I`ve got sometimes a long running request.
I thought that 'shutdown time…
Gaploid
0
votes
2 answers
Android recycle bitmap when going back
My app lets u choose an image then when u click next on first activity it takes u to activity num. 2 and it shows the image u've choosen there in the imageview, and when u click back then re-click next on the first activity it takes u to activity…

John Jared
- 790
- 3
- 16
- 40
0
votes
1 answer
Android gallery of drawables
I'm creating a simple Gallery of drawables - each of them is almost the size of a screen, so they require quite much memory. For each entry I'm creating a custom LinearLayout with ImageView and TextView for the title. As most of you know, android…

Sebastian Nowak
- 5,607
- 8
- 67
- 107
0
votes
1 answer
java.lang.RuntimeException: Canvas: trying to use a recycled bitmap android.graphics.Bitmap
I send message to this handler(here I ommitted some cases) to do some operation on a bitmap and then set the bitmap on the UI. Because the operation on the bitmap is time consuming, I put it in a thread. When I finishing doing this, I set the UI in…

comeon.qiang
- 58
- 1
- 7