Android视频意图:控制后退按钮?
我正在开发一个通过使用意图来播放视频的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
鉴于您无法处理其他应用程序的关键事件,您的另一个选择是查找(或构建)一些播放视频的第三方应用程序。
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.