[android-developers] Re: AutoScroll ListView at specified intervals without user intervention

2012-01-28 Thread Giants203
I'm trying to automatically scroll the list view based on the playing of an audio file. The listview items will have English translation of what is being played in the audio which will be in a foreign language. So as the audi progresses, i need to keep the listview scrolling down. I will maintain

Re: [android-developers] Re: AutoScroll ListView at specified intervals without user intervention

2012-01-28 Thread YuviDroid
Ok, now it's clearer :) The two links I gave you should help with auto-scroll part. With the time intervals you might use a Timer ( http://developer.android.com/reference/java/util/Timer.html), or make use of the AlarmManager (

[android-developers] Re: AutoScroll ListView at specified intervals without user intervention

2012-01-28 Thread Giants203
Thanks for your input. On Jan 28, 10:55 am, YuviDroid yuvidr...@gmail.com wrote: Ok, now it's clearer :) The two links I gave you should help with auto-scroll part. With the time intervals you might use a Timer (http://developer.android.com/reference/java/util/Timer.html), or make use of