private void updateProgress() {
if (this.progressAnimator != null && this.progressAnimator.isRunning()) {
this.progressAnimator.end();
}
double progress = (double) (((this.mentionIndex * 1000) + ((this.playCountNum * 1000) /
this.currentMention.number)) / this.totalMetionCount);
this.progressAnimator = ObjectAnimator.ofInt(this.progressBar, "progress", new int[]{
(int) progress});
if (this.currentMention.is_times) {
this.progressAnimator.setDuration(((long) this.currentMention.rate) * 1000);
} else {
this.progressAnimator.setDuration(1000);
}
this.progressAnimator.setInterpolator(new LinearInterpolator());
this.progressAnimator.start();
}
VideoPlayActivity.java 文件源码
java
阅读 38
收藏 0
点赞 0
评论 0
项目:boohee_v5.6
作者:
评论列表
文章目录