跳转到YouTube视频的特定时间(Android)
我已经使用YouTubePlayerView在手机上加载了视频。我想知道是否有人可以帮我用代码跳到视频的特定时间(例如2m4sec)。跳转到YouTube视频的特定时间(Android)
回答:
您应该使用YouTubePlayer
的seekTo
方法将视频跳转到特定时间。
YouTubePlayer.seekToMillis (int milliSeconds)
More about this method
或者:
YouTubePlayer.seekToRelativeMillis (int milliSeconds)
More about this method
如果你想开始一个视频从某一个时间向右走,你可以使用:
YouTubePlayer.loadVideo(String videoId, int timeMillis)
More about this method
以上是 跳转到YouTube视频的特定时间(Android) 的全部内容, 来源链接: utcz.com/qa/265203.html