foxtrotzulu94 / ECE-Pokedex

An Android App for those that want to be the very best! You Gotta Catch 'Em All!
MIT License
1 stars 1 forks source link

Implement ViewHolder pattern in PokedexArrayAdapter.java #48

Closed foxtrotzulu94 closed 8 years ago

foxtrotzulu94 commented 8 years ago

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.