0

I want to implement constant value android ProgressBar without use thread and handlers. Whenever I search related examples it uses thread and handlers, and without use of thread, handlers OR AsyncTask it doesn't work.

My requirements is to show ProgressBar with fix value range, something like below image:enter image description here

Please help me with sample code snippet. Thanks in advance :)

naeemgik
  • 2,232
  • 4
  • 25
  • 47

1 Answers1

1

Update the progress bar directly using the ProgressBar API setProgress()

http://developer.android.com/reference/android/widget/ProgressBar.html#setProgress%28int%29

Sagar Waghmare
  • 4,702
  • 1
  • 19
  • 20