android progressBar does not update progress view/drawable

后端 未结 15 2295
悲哀的现实
悲哀的现实 2020-11-28 09:11

two Bars which shows the progress of a game. If the user get points or time is up etc the progressBars should be updated:

private TextView tv;
private Progre         


        
15条回答
  •  情深已故
    2020-11-28 10:06

    if you love full progressbar

    time_prg_bar.setMax(100);
    time_prg_bar.setProgress(0); <--
    

    if your progressbar empty

    time_prg_bar.setMax(100);
    time_prg_bar.setProgress(100); <--
    

提交回复
热议问题