I have a seekbar, while moving it I want to change values from 0 to 5. I have a TextView, where I display those values while moving the seekbar. I tried using the following code but it just shows that the seekbar is progressed but it doesn't update the values of the progressed seek bar.
int yourProgress = 3;
ProgressBar pb = (ProgressBar) solo.getView(R.id.sbQuestionMarks);
pb.setProgress(yourProgress);
somebody give me a hint or an example how to do this in Robotium automation?