Hi can anyone help me on my small project please, I have been following this Tutorial and I got to the part where I insert 1 Minute into the EditText the Progress Bar works fine
In your main.xml, for ProgressBar you mentioned max value as 60. So the progress bar takes it max value as 60 and your progress bar starts decreasing from 60 seconds onwards.
Instead of that to work your Progress bar properly all times, in your "setTimer()" method write the below line.
mProgressBar.setMax(60*time);