I have a ListView where each item represents a podcast that can run up to 90 minutes. Selecting an item will display a SeekBar and start streaming in the audio from a URL using MediaPlayer.
I could use some pointers on how to handle maintaining the state of the SeekBar after it scrolls off the page and then scrolled back into view. I know that views are recycled and I've read that caching views in the adapter is a bad idea so I'm just wondering what other options there are.