I'm listening for outgoing calls with my BroadcastReceiver.
When certain call is placed, specific number and/or conditions are met - that does not matter, I intercept the call.
After that I would like to like to place a new call, to another number. And here I get in trouble. Call is not placed - nothing happens - new activity is started but call is not initiated. Empty view and that's it.
By the way BroadcastReceiver receives intent, then CallInitiatingActivity.onCreate() is called and executed.
Broadcast listener
public class OutgoingCallListener extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (conditionsAreMet()) {
setResultData(null); //terminate current call
Inetent intent = new Intent(context, CallInitiatingActivity.class)
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
startActivity(intent);
}
}
}
Call initiating activity
public class CallInitiatingActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + number));
startActivity(intent);
}
}
Permission used:
<uses-permission android:name="android.permission.CALL_PHONE"/>
Suspicious log in debug level:
checkAndCopyPhoneProviderExtras: some or all extras are missing.
I traced it to method in this class at line #2074.