Currently, the scrolling list that makes up the PokedexArrayAdapter has been creating and inflating new views which wastes considerable memory and may affect performance.
Resolve this by implementing the ViewHolder pattern recommended by Android for use with ListViews.
Currently, the scrolling list that makes up the PokedexArrayAdapter has been creating and inflating new views which wastes considerable memory and may affect performance. Resolve this by implementing the ViewHolder pattern recommended by Android for use with ListViews.