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
Create updateThumb(); method in VerticalSeekbar
public void updateThumb(){ onSizeChanged(getWidth(), getHeight(), 0, 0); }
And then call update thumb method after setting progress.
seekBar.setProgress((int) progress); seekBar.updateThumb();
its work for me in verticalseekbar calss