多活动应用程序中的 setVolumeControlStream()
我的应用程序中有三个活动,但在调用上述方法时遇到问题。首先,我是否必须在每个活动的 onCreate() 方法中调用它?现在我已经尝试过这种方式,突然间它只在三项活动中的一项有效。在另外两个中,未显示默认音量控制栏,并且未调节音量。在多活动应用程序中控制音量流的正确方法是什么?提前致谢。
I've got three activities in my application and I have problems with calling the above mentioned method. First of all, do I have to call it inside every activity's onCreate() method? Right now I've tried it this way, and suddenly it works only in one activity of three. In other two the default volume control bar is not shown and the volume is not adjusted. What's the right way of controling volume stream in a multiple activity application? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您重写 onKeyDown() 等时,请确保您也为您不处理的键或至少为音量增大/减小键调用 super.onKeyDown() ,例如在视图子类中:
When you have overriden onKeyDown() etc make sure that you do call super.onKeyDown() as well for keys that you do not handle or at least for the volume up/down keys, e.g. in your view subclass: