我正在mesibo中进行自定义音频通话,我成功做到了。现在,我想听听呼叫者的事件,例如呼叫开始时(即从另一侧接听)和呼叫结束时的事件。当被叫方掉线时,我能够从呼叫者那里接收事件,但是说呼叫者掉线而不是被叫者,则没有事件被调用。以下是我如何从扩展 MesiboAudioCallFragment
的Customize片段中获取事件的方法@Override
public boolean Mesibo_onCall(long peerId, long callId, Mesibo.UserProfile profile, int flags) {
System.out.println("ROBOT CALLING.... "+peerId+" : "+callId+" : "+flags);
return false;
}
@Override
public boolean Mesibo_onCallStatus(long peerId, long callId, int status, int flags, String desc) {
System.out.println("ROBOT CALLING.... "+peerId+" :C "+callId+" :F "+flags+" :S "+status);
return false;
}
@Override
public void Mesibo_onCallServer(int i, String s, String s1, String s2) {
}