Implementation of Object Pooling Concept in android

2.1k Views Asked by At

I am new to android, I need to use Object Pooling in my App, but I don't know enough about it. How might it be implemented?

1

There are 1 best solutions below

0
On

The implementation on an Android platform would be no different than a typical Java implementation. Maybe you can learn by reading one of these articles:

http://sourcemaking.com/design_patterns/object_pool

http://www.oodesign.com/object-pool-pattern.html

http://en.wikipedia.org/wiki/Object_pool_pattern

or this question.