使用默认拨号器应用取消拨出电话

时间:2019-04-03 09:16:35

标签: android android-bluetooth

我有一个成为默认拨号程序的应用程序。

使用android.telecom类在接听电话,接听电话和挂断电话时效果很好

现在我要做的是,当蓝牙听筒拨打一个号码时,停止该拨号,然后启动具有该相同号码的whatsapp拨号uri。

有什么想法如何取消通过听筒拨打的电话吗?

1 个答案:

答案 0 :(得分:2)

您可以使用TelecomManager类来切断电话。

TelecomManager telecomManager = (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);

if (telecomManager != null) {
if(telecomManager .endCall())
Toast(mContext,"Call ended",Toast.LENGTH_SHORT).show();
else
Toast(mContext,"Failed to end the call",Toast.LENGTH_SHORT).show();
}

您需要许可

<uses-permission android:name="android.permission.ANSWER_PHONE_CALLS" />

接收者权限

 <uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" /> 

广播接收器

public class OutgoingCallReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
    Log.d(OutgoingCallReceiver.class.getSimpleName(), intent.toString());
    Toast.makeText(context, "Outgoing call happening!", Toast.LENGTH_LONG).show();
 // cancel your call here    }
}

更新清单

<receiver  android:name=".OutGoingCallReceiver" 
android:exported="true"> 
<intent-filter>   
<action
android:name="android.intent.action.NEW_OUTGOING_CALL"
android:priority="0" /> 
</intent-filter> 
</receiver>