In my application, I want to record the call upto 10 mins. Is there any way to implement this?
Any help is much appreciated.
In my application, I want to record the call upto 10 mins. Is there any way to implement this?
Any help is much appreciated.
I think it works:
Call Recorder for Blackberry
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.