Android视频意图:控制后退按钮?

发布于 2024-08-05 14:58:15 字数 312 浏览 7 评论 0原文

我正在开发一个通过使用意图来播放视频的 Android 应用程序:

tostart = new Intent(Intent.ACTION_VIEW);
tostart.setDataAndType(Uri.parse(movieurl), "video/*");
startActivity(tostart); 

这效果很好。但是,当您按下后退按钮(在设备上)时,电影播放器​​将返回到电影的开头。只有当您再次按返回时,它才会返回到我的应用程序。虽然当前的行为有一定道理,但我想知道是否可以更改它:按返回后是否可以直接返回? 谢谢! 潘曼。

I'm working on an android application that plays video, by using an intent:

tostart = new Intent(Intent.ACTION_VIEW);
tostart.setDataAndType(Uri.parse(movieurl), "video/*");
startActivity(tostart); 

This works great. However, when you press the back button (on the device), the movieplayer goes back to the beginning of the movie. Only when you press back again, it goes back to my application. While the current behaviour makes some sense, I would like to know if I can change it: Is is possible to directly go back after pressing back?
Thanks!
PanMan.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

时光礼记 2024-08-12 14:58:15

鉴于您无法处理其他应用程序的关键事件,您的另一个选择是查找(或构建)一些播放视频的第三方应用程序。

given that you cannot handle another application's key event, your other option is to find (or build) some third party application that plays video.

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