黑莓手机中的通话记录器
在我的应用程序中,我想对通话进行长达 10 分钟的录音。有没有办法实现这个?
非常感谢任何帮助。
In my application, I want to record the call upto 10 mins. Is there any way to implement this?
Any help is much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为它有效:
黑莓通话记录器
I think it works:
Call Recorder for Blackberry
是的,您需要向应用程序注册
PhoneListener
并需要实现所需的方法,例如:callInitiated()
callEnded() 等
,即每当启动特定调用时,您都可以侦听该事件并执行自定义代码。
您可以使用
PhoneCall
类来读取通话信息。希望这有帮助。
Yes, you need to register
PhoneListener
with your application and need to implement required methods like:callInitiated()
callEnded()
etc..etci.e. whenever particular call gets initiated you can listen that event and execute custom code.
You can use the
PhoneCall
class to read the call information.Hope this helps.