答案 0 :(得分:0)
试试这个:
public CountDownTimer timer;
在onBindViewHolder(...)
if (holder.timer != null) {
holder.timer.cancel();
}
holder.timer = new CountDownTimer(timeEnd - System.currentTimeMillis(), 1000) {
@Override
public void onTick(long millisUntilFinished) {
// update text..
}
@Override
public void onFinish() {
// update text..
}
};
对我有用!!!