Stop Progressbar manual scrolling in Android
- by Rony
Hi experts,
I have already posted my query here, but unfortunately, not getting the required support for this simple query.
http://www.anddev.org/prevent_manual_moving_of_seekbar_widget-t13048.html
I am using progressbar widget in my application to show the download progress.
In the current state, I am able to manually move the slider back and forth while download is progressing. How can I prevent the manual moving of progressbar, instead it works only based on
progressbar.setProgress(progressbar.getProgress() + 1024); -- currently this works perfect, but I need to prevent the manual moving of progressbar during download.
Any help in this regard is appreciated.
Regards,
Rony