如何实现android VideoView的暂停动作?
在我的应用程序中,我将播放 VideoView。
我没有将媒体控制器用于播放、暂停和停止等各种选项。
相反,我使用单个按钮来使用播放和暂停功能。
我已经实现了如下代码:
case R.id.playVideoBtn:
if(myVideoView.isPlaying()){
myVideoView.pause();
}else{
//MediaController ctlr=new MediaController(this);
// ctlr.setMediaPlayer(myVideoView);
//myVideoView.setMediaController(ctlr);
myVideoView.start();
}
break;
现在我想知道如何为相同的按钮单击实现暂停功能。
请帮助我。
谢谢。
In my Application i am going to Play the VideoView.
I am not using the Media Controller for variour option like Play, Pause and Stop.
Instead of that i am Using Single Button to Use Play and Pause Functionality.
I have Implement like Below Code:
case R.id.playVideoBtn:
if(myVideoView.isPlaying()){
myVideoView.pause();
}else{
//MediaController ctlr=new MediaController(this);
// ctlr.setMediaPlayer(myVideoView);
//myVideoView.setMediaController(ctlr);
myVideoView.start();
}
break;
Now i am wonder about how to implement the Pause functionality for the same Button Click.
Please help me for it.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 VideoView.java 我发现...
对于您的解决方案,请查看此示例 正在播放视频
From VideoView.java I found...
And for your solution look at this example Playing Video