Android 2.3 中的呼叫阻止
我正在开发一个应用程序来阻止来电,但据我所知,在 Android 2.3gingerbread 中,谷歌已禁用以下功能:
。
所以现在我的应用程序只能在 2.3 以下的型号上运行。
任何人都可以帮助我解决这个话题吗?
I am developing an application to block an incoming call but as far as I know in Android 2.3 gingerbread google has disabled the feature of:
<uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
.
So now my app only runs on models below 2.3.
Can any one help me on this topic?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅如何授予 MODIFY_PHONE_STATE 权限应用程序在 Gingerbread 上运行,了解为什么此权限在 2.3 Gingerbread 中不可用。
似乎未来的版本将包含此功能作为公共电话 API 的一部分,但时间表未知:请参阅问题 http://code.google.com/p/android/issues/detail?id=54
一个可能的破解方法是在来电时调低音量接收以防止铃声被听到,铃声结束后恢复到原来的音量。
Please see How to grant MODIFY_PHONE_STATE permission for apps ran on Gingerbread for why this permission is unavailable in 2.3 Gingerbread.
It seems like a future release will include this capability as part of a public telephony API, but timeline is unknown: See issue http://code.google.com/p/android/issues/detail?id=54
A possible hacky work-around is turning down the volume when an incoming call is received to prevent the ring from being heard, and then bringing it back to the original volume after the ringing is over.
我已经使用 Audiomanger 类实现了它。
I have implemented it using Audiomanger class.