Android:AudioHardware pcm 播放将进入待机状态
在我的 HTC Desire (Froyo) 中,我从 Android 应用程序发起了一个呼叫,当呼叫结束时,我的 Android 应用程序进入待机模式,并
在 log cat 中显示“AudioHardware pcm 播放将进入待机状态”。当我按下后退按钮时,只有这样我才能控制我的应用程序...我怎样才能防止调用待机模式..
In my HTC Desire (Froyo) , I initiated a call from the a android app and when the call ends, my android app gone to standby mode by showing
" AudioHardware pcm playback is going to standby " in log cat. when i press the back button, only then i can control my app... how can i prevent calling the standby mode..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将此权限添加到您的 AndroidManifest.xml:
然后在
onCreate()
中:在
onDestroy()
中:Add this permission to your AndroidManifest.xml:
Then in
onCreate()
:And in
onDestroy()
: