无法从呼叫ID中检索PhoneCall对象

时间:2013-02-13 11:11:26

标签: java mobile blackberry

我从PhoneListener获得了一个呼叫ID,但每当我尝试从ID中获取PhoneCall对象时,无论事件发生什么,它都会返回null - 断开连接,连接或启动。 / p>

我正在开发针对OS 7.1。

public void callDisconnected(int CID) {
    Debug.LogEvent(Debug.DEBUG_LEVEL_WARN, "Call ID for recently disconnected call : " + CID);
    try {
        PhoneCall C = (PhoneCall) Phone.getCall(CID); //Always null
    } catch(Exception E) {
        Debug.LogEvent(Debug.DEBUG_LEVEL_ERROR, "Error occured retrieving new call detail(s)");
        Debug.LogEvent(Debug.DEBUG_LEVEL_ERROR, E.getMessage());
    }
}

0 个答案:

没有答案