android progressBar does not update progress view/drawable

后端 未结 15 2325
悲哀的现实
悲哀的现实 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 09:48

    In my case, I create VerticalSeekBar, and solution of Stuck does not work. After hours, I have found a solution:

    @Override
    public synchronized void setProgress(int progress) {
        super.setProgress(progress);
        onSizeChanged(getWidth(), getHeight(), 0, 0);
    }
    

    Hope that help anyone.

提交回复
热议问题