更改 SipService 类的 makeCallWithOptions() 方法,如下所示...
public void makeCallWithOptions(final String callee, final int accountId, final Bundle options)
throws RemoteException {
SipService.this.enforceCallingOrSelfPermission(SipManager.PERMISSION_USE_SIP, null);
//We have to ensure service is properly started and not just binded
SipService.this.startService(new Intent(SipService.this, SipService.class));
if(pjService == null) {
Log.e(THIS_FILE, "Can't place call if service not started");
// TODO - we should return a failing status here
return;
}
if(!supportMultipleCalls) {
// Check if there is no ongoing calls if so drop this request by alerting user
SipCallSession activeCall = pjService.getActiveCallInProgress();
if(activeCall != null) {
if(!CustomDistribution.forceNoMultipleCalls()) {
notifyUserOfMessage(R.string.not_configured_multiple_calls);
Log.d("call......", "makecallwithoption");
}
return;
}
}
Intent intent = new Intent(SipManager.ACTION_SIP_CALL_LAUNCH);
intent.putExtra(SipProfile.FIELD_ID, accountId);
intent.putExtra(SipManager.EXTRA_SIP_CALL_TARGET, callee);
intent.putExtra(SipManager.EXTRA_SIP_CALL_OPTIONS, options);
sendOrderedBroadcast (intent , SipManager.PERMISSION_USE_SIP, mPlaceCallResultReceiver, null, Activity.RESULT_OK, null, null);
}
添加以下广播接收器..... private BroadcastReceiver mPlaceCallResultReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, final Intent intent) {
final Bundle extras = intent.getExtras();
final String action = intent.getAction();
if(extras == null) {
Log.e(THIS_FILE, "No data in intent retrieved for call");
return;
}
if(!SipManager.ACTION_SIP_CALL_LAUNCH.equals(action)) {
Log.e(THIS_FILE, "Received invalid action " + action);
return;
}
final int accountId = extras.getInt(SipProfile.FIELD_ID, -2);
final String callee = extras.getString(SipManager.EXTRA_SIP_CALL_TARGET);
final Bundle options = extras.getBundle(SipManager.EXTRA_SIP_CALL_OPTIONS);
if(accountId == -2 || callee == null) {
Log.e(THIS_FILE, "Invalid rewrite " + accountId);
return;
}
getExecutor().execute(new SipRunnable() {
@Override
protected void doRun() throws SameThreadException {
pjService.makeCall(callee, accountId, options);
}
});
}
};
在 UAStateReceiver 类中更改以下内容
private void onBroadcastCallState(final SipCallSession callInfo) {
SipCallSession publicCallInfo = new SipCallSession(callInfo);
Intent callStateChangedIntent = new Intent(SipManager.ACTION_SIP_CALL_CHANGED);
callStateChangedIntent.putExtra(SipManager.EXTRA_CALL_INFO, publicCallInfo);
pjService.service.sendBroadcast(callStateChangedIntent, SipManager.PERMISSION_USE_SIP);
}
和......
private void broadCastAndroidCallState(String state, String number) {
// Android normalized event
if(!Compatibility.isCompatible(19)) {
// Not allowed to do that from kitkat
Intent intent = new Intent(ACTION_PHONE_STATE_CHANGED);
intent.putExtra(TelephonyManager.EXTRA_STATE, state);
if (number != null) {
intent.putExtra(TelephonyManager.EXTRA_INCOMING_NUMBER, number);
}
intent.putExtra(pjService.service.getString(R.string.app_name), true);
pjService.service.sendBroadcast(intent, android.Manifest.permission.READ_PHONE_STATE);
}
}
它将能够在 android 4.4.2 中拨打电话快乐编码:)