I am writing an application that gives a dialog(dialog which is an activity) for every international outgoing call. the application interrupts the outgoing call and gives an alert for all the international calls. On the users confirmation, a new call with the same number is placed.
My app is very similar to this one Outgoing call don't start
However my broadcast receiver receives even the outgoing call i place from my application, this leads to an infinite loop. I am using the below code to disable the broadcast receiver after the call is placed from my app.
private void makeCall1(String number) {
PackageManager pm = mContext.getPackageManager();
ComponentName componentName = new ComponentName(mContext,OutgoingCallReceiver.class);
pm.setComponentEnabledSetting(componentName, PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse(number));
startActivity(callIntent);
// Now wait for the call to end somehow and afterwards ->
// pm.setComponentEnabledSetting(componentName, PackageManager.COMPONENT_ENABLED_STATE_ENABLED, PackageManager.DONT_KILL_APP);
}
How can i retrieve the call ended notification of the call that was placed by me so that i can write some code to enable the broadcast receiver for the future calls.
You need add a variable to control it...when the BroadCastReceiver is called first( i.e this would be when the user places call and not from your app)then set the variable to true...Now if true only then show the dialog and later set the variable to false when the call is disconnected.
Now how to know the call has ended?
You can know the call has disconnected using states of call.
These are the states when the call is placed-
CALL_STATE_OFFHOOK
--> Called when the call is placedCALL_STATE_IDLE
-----> Called when the call is disconnectedNow you want to know when the call has disconnected, you can set a variable to control it in your
BroadCastReceiver
Also dont forget to add the permission in manifest as below: