当我将视图留给前一个孩子时,取景器中的视频视图仍在播放
我有一个具有不同视图的 viewflipper 控制器。
我单击第一个视图,然后转到带有动画的第二个视图。
第二个视图是一个视频视图,内部有流媒体视频(它工作完美),
问题是当我使用后退物理按钮(flipper.showPrevious())返回时 在离开之前停止视频。
我用 videoView.stopPlayback();
重写该设置,以便 之前有 stopPlayback()
吗)
我该如何解决这个问题?我做错了什么?
干杯!
I have a viewflipper controller with different views.
I click in the firsview and i go to secoundview with and animation.
The secondview is a video view with a streaming video inside (it works perfectly)
the problem is when i go back using the back physical button(flipper.showPrevious())
I override that for stop the video before leave with videoView.stopPlayback();
When i come back to the firstview i still have the video playing over the firstview (only the video, or a black screen if i did the stopPlayback()
before)
How can i solve that? What i am doing wrong?
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您始终可以尝试
videoView.setVisibility(int);
功能。You could always try
videoView.setVisibility(int);
function.