new Thread( Runnable() {
run() {
while ( 5 延时1秒
try 7 Thread.sleep(1 8 } catch (InterruptedException e) {
e.printStackTrace();
}
12 进入主线程更新UI
13 runOnUiThread( @Override
15 16 (vv.isPlaying()) {
17
18 获取到视频播放进度
19 int maxx=vv.getDuration();
20 int progress=vv.getCurrentPosition();
21
22 设置进度条信息
23 vv_bar.setMax(maxx);
24 vv_bar.setProgress(progress);
25
26 得到时间轴字符串
27 String strtime=String.format("时间轴为:%02d:%02d/%02d:%02d",(progress % 3600000) / 60000,(progress % 60000 ) / 1000,(maxx % 3600000) / 60000,(maxx % 60000 ) / 100028 显示时间轴信息
vv_starttime.setText(strtime);
}
32 }
33 });
34 35
36 37 }).start();