我在Activity中使用以下代码<{1}}
progress bar
移动搜索栏时,进度不会改变,当搜索栏停止时它会改变。如何在搜索栏移动时改变进度?
答案 0 :(得分:0)
跟踪停止后,您在TextView中唯一的设置进度,因此在进度发生变化时也是如此:
@Override
public void onProgressChanged(SeekBar seekBar, int progresValue, boolean fromUser){
progress = progresValue;
progressText.setText("Covered: " + progress + "/" + seekBar.getMax());
}