如何实现android VideoView的暂停动作?

发布于 2024-12-29 05:02:54 字数 530 浏览 1 评论 0原文

在我的应用程序中,我将播放 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深府石板幽径 2025-01-05 05:02:54

来自 VideoView.java 我发现...

start() goes with pause(), but resume() goes with suspend() (the latter pair causing the screen to blank out).

对于您的解决方案,请查看此示例 正在播放视频

From VideoView.java I found...

start() goes with pause(), but resume() goes with suspend() (the latter pair causing the screen to blank out).

And for your solution look at this example Playing Video

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文