Updating a TextView with a SeekBar's value (ultra-slow)
- by Peter Bjorn
Now look at that! I am having trouble with one of the simplest goals: updating a plain TextView with the value of a SeekBar.
This is my approach:
@Override
public void onProgressChanged(SeekBar seekBar, int progress,
boolean fromUser) {
if (fromUser) {
mInfoText.setText(mFunction.getUserFriendlyString(progress));
}
}
…