Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有搜索栏的媒体播放器。搜索栏工作正常。我的问题是,我需要在文本视图中显示搜索栏开头的进度时间,以及搜索栏末尾的剩余时间。有什么建议么。
我不确定我是否真的理解你想要的。但是,如果您有一个设置为结束时间的最大值的搜索栏,并且它在歌曲/视频/您可以调用的任何内容期间移动mySeekBar.getProgress()。否则,如果您有一个 onSeekBarChangedListener,您将从已实现的方法中获得进度。否则,只需在开始时使用System.currentTimeMillis(),并在每次搜索栏更改时用开始时间减去当前时间。
mySeekBar.getProgress()
System.currentTimeMillis()