Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Yes very possible. You need to hook into the "Phone Events" and create a phone listener. The docs give some hints on this. so fire up your favorite Java IDE and rock on!</p> <p><a href="http://na.blackberry.com/eng/deliverables/1076/development.pdf" rel="nofollow noreferrer">http://na.blackberry.com/eng/deliverables/1076/development.pdf</a> (look around page 190)</p> <pre><code>Listen for phone events. &gt;Implement the PhoneListener interface. Register the phone listener. &gt;Invoke Phone.addPhoneListener(). Remove a phone listener. &gt;Invoke removePhoneListener(). </code></pre> <p>When a new call arrives it uses the <b>callIncoming(int)</b> callback. There are a bunch more:</p> <pre><code> A call is added to a conference call. callAdded(int) A BlackBerry® device user answers a call (user driven). callAnswered(int) A conference call is established. callConferenceCallEstablished(int) The network indicates a connected event (network driven). callConnected(int) A direct-connect call is connected. callDirectConnectConnected(int) A direct-connect call is disconnected. callDirectConnectDisconnected(int) A call is disconnected. callDisconnected(int) A BlackBerry device user ends the call. callEndedByUser(int) A call fails. callFailed(int, int) A new call arrives. callIncoming(int) The BlackBerry device initiates an outgoing call. callInitiated(int) A call is removed from a conference call. callRemoved(int) A held call resumes. callResumed(int) A call is waiting. callWaiting(int) A conference call is ended (all members are disconnected). conferenceCallDisconnected(int) </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload