暂停播放器
我想暂停播放器。但通过代码只执行启动和停止。我们如何暂停播放器。
i want to pause the player. but over code only perform start and stop. how we pause the player.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想暂停播放器。但通过代码只执行启动和停止。我们如何暂停播放器。
i want to pause the player. but over code only perform start and stop. how we pause the player.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我认为player.stop()会暂停播放器。根据黑莓文档。
i think player.stop() will pause the player. according to blackberry docs.
检查开始按钮中的代码。它可能调用 setMediaTime(0) 或其他东西。 Vivart 是正确的,因为 stop() 是暂停——它只是停止,与播放器内的 MediaTime 没有任何关系。
Check the code in your start button. It probably calls setMediaTime(0) or something else is. Vivart is correct in that stop() is pause-- it just stops, it has nothing to say about the MediaTime inside the player.