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
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.