Android 音频管理器方法导致强制关闭
对此感到陌生,并且对为什么调用以下方法会创建强制关闭感到有点困惑:
AudioManager myaudiomanager;
public void toggleSilent()
{
myaudiomanager.setRingerMode(AudioManager.RINGER_MODE_SILENT);
}
我没有看到任何明显的错误,并且我已向有关音频管理器的清单添加了权限。
有人能进一步指导我吗?
New to this and a bit confused as to why calling the following method creates a force close:
AudioManager myaudiomanager;
public void toggleSilent()
{
myaudiomanager.setRingerMode(AudioManager.RINGER_MODE_SILENT);
}
I don't see any blatant errors and I have added permissions to the manifest regarding the audio manager.
Anyone able to direct me further?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该对象从未首先被创建。尝试一下。
The object is never created first of all. Try that.
如果您发布了 ADB 日志,可能会有所帮助。
强制关闭通常意味着您的主线程没有响应,或者更具体地说,没有在 Android 的分配时间内响应。我发现很难相信对 AudioManager 的调用会导致 FC。
If you posted the ADB log that might help..
A force close usually means your main thread is not responding, or more specifically not withing the alotted time of Android. I find it hard to believe a call into the AudioManager is causing a FC..