У вашего броузера проблема в совместимости с HTML5
You could become better at Android Studio with these recommended books :-
(Program code and links below)
Learning Java by Building Android Games - https://amzn.to/2Bs3W5u
Java - A Beginner’s Guide - https://amzn.to/2A2yDyg
Beginning Android Programming with Android Studio - https://amzn.to/2SW7F2h
Android App Development for Dummies - https://amzn.to/2BpYksk
Learn Timer Function at :-
https://www.youtube.com/watch?v=KyeS8uuahiU
Code:-
pb = (ProgressBar)findViewById(R.id.pb);
final Timer t = new Timer();
TimerTask tt = new TimerTask() {
@Override
public void run()
{
counter++;
pb.setProgress(counter);
if(counter == 100)
t.cancel();
}
};
t.schedule(tt,0,100);