I am developing an application where one of the things we need is to control the outgoing call, at least to be able to stop it from our application.

For now I tried using Intent.ACTION_CALL to use existing activity:

Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber)); 
startActivity(callIntent); 

But stopping the call seems to be disallowed by default API.

Can you suggest some workaround?

For example, enabling airplane mode during the call? Just an example, this hack didn't work for me. :)

link|improve this question
Terminating the call is possible. TextMe4Callback on the Android market does this. – user348555 May 23 '10 at 23:22
Did using BroadcastReceiver work for you? Could you revise this question and/or accept an answer? – Paul Lammertsma Nov 22 '10 at 15:59
feedback

7 Answers

  1. Create a BroadcastReceiver with a priority of 0.
  2. In the BC intercept the ACTION_NEW_OUTGOING_CALL intent in its onReceive method
  3. call setResultData(null) in the same method

This will prevent the call from initiating (as long as your receiver is the last to process the intent I think)

link|improve this answer
1  
I can verify that this works on Android 2.1 and 2.2. – Paul Lammertsma Nov 30 '10 at 16:21
i also use this way. – Nissan911 Jun 27 '11 at 21:58
feedback

Capturing the outgoing call in a BroadcastReceiver has been mentioned and is definitely the best way to do it if you want to end the call before dialing.

Once dialing or in-call, however, that technique no longer works. The only way to hang up that I've encountered so far, is to do so through Java Reflection. As it is not part of the public API, you should be careful to use it, and not rely upon it. Any change to the internal composition of Android will effectively break your application.

Prasanta Paul's blog demonstrates how it can be accomplished, which I have summarized below.

Obtaining the ITelephony object:

TelephonyManager tm = (TelephonyManager) context
        .getSystemService(Context.TELEPHONY_SERVICE);
try {
    // Java reflection to gain access to TelephonyManager's
    // ITelephony getter
    Log.v(TAG, "Get getTeleService...");
    Class c = Class.forName(tm.getClass().getName());
    Method m = c.getDeclaredMethod("getITelephony");
    m.setAccessible(true);
    com.android.internal.telephony.ITelephony telephonyService =
            (ITelephony) m.invoke(tm);
} catch (Exception e) {
    e.printStackTrace();
    Log.e(TAG,
            "FATAL ERROR: could not connect to telephony subsystem");
    Log.e(TAG, "Exception object: " + e);
}

Ending the call:

telephonyService.endCall();
link|improve this answer
2  
+1 Not good practice to do, but the OP asks specifically for a workaround for something that is not allowed by the API, thus this is a good answer. – bjarkef Jun 9 '11 at 12:26
1  
If this is the only solution, then I think this is a great answer! – TacB0sS Jan 12 at 14:19
hey i am not able to block particlar call by this code i checked – Rstar Apr 6 at 15:01
@Rstar What kind of exception are you getting? Which line or method is failing? Which device are you running? Which version of Android? – Paul Lammertsma Apr 6 at 16:21
i am not getting any exception see this code and i have also written some notes in pastebin.com/3TW0ieVZ – Rstar Apr 6 at 18:45
show 2 more comments
feedback

Considering the potential for wonderful mischief I would be surprised if this is allowed.

This thread says flatly that the API cannot end a call. Others have tried.

link|improve this answer
3  
Then how they did it in tCallBlocking Lite? – an0 Aug 3 '09 at 15:36
1  
Sure it is possible. See the answer above. – Felipe Micaroni Lalli Dec 4 '11 at 23:49
feedback

For Ilana:

public class ilanasReceiver extends BroadcastReceiver {
  public void onReceive(Context context, Intent intent) {
    if (intent.getAction().equals(Intent.ACTION_NEW_OUTGOING_CALL)) {
      if (getResultData()!=null) {
     String number = "123456";
     setResultData(number);
      }
    }
  }
}

In addition in Manifest put in package section:

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

That is all.

link|improve this answer
feedback

You can try enabling then disabling airplane mode:

android.provider.Settings.System.putInt(getContentResolver(),
        android.provider.Settings.System.AIRPLANE_MODE_ON, 1);

Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
intent.putExtra("state", 1);
sendBroadcast(new Intent("android.intent.action.AIRPLANE_MODE"));
sendBroadcast(intent);
android.provider.Settings.System.putInt(getContentResolver(),
        android.provider.Settings.System.AIRPLANE_MODE_ON, 0);

intent.putExtra("state", 0);
sendBroadcast(new Intent("android.intent.action.AIRPLANE_MODE"));
sendBroadcast(intent);
link|improve this answer
8  
Sledgehammer, meet nut. – Christopher Aug 24 '10 at 15:07
at this time there's no way to hang up an outgoing call, itself, the solution proposed by Gung Shi Jie is a good idea, but does not work, changes to the state "AIRPLANE MODE" will be ignored during an outgoing call, its works only on emulaterd terminals during developing, i've tried and failed in both HTC Desire and Acer Liquid phones. – user524876 Nov 30 '10 at 8:43
feedback

Try this:

(I used Reflection to access advanced telephony features and modify somethings)

                        try {
                            //String serviceManagerName = "android.os.IServiceManager";
                            String serviceManagerName = "android.os.ServiceManager";
                            String serviceManagerNativeName = "android.os.ServiceManagerNative";
                            String telephonyName = "com.android.internal.telephony.ITelephony";

                            Class telephonyClass;
                            Class telephonyStubClass;
                            Class serviceManagerClass;
                            Class serviceManagerStubClass;
                            Class serviceManagerNativeClass;
                            Class serviceManagerNativeStubClass;

                            Method telephonyCall;
                            Method telephonyEndCall;
                            Method telephonyAnswerCall;
                            Method getDefault;

                            Method[] temps;
                            Constructor[] serviceManagerConstructor;

                            // Method getService;
                            Object telephonyObject;
                            Object serviceManagerObject;

                            telephonyClass = Class.forName(telephonyName);
                            telephonyStubClass = telephonyClass.getClasses()[0];
                            serviceManagerClass = Class.forName(serviceManagerName);
                            serviceManagerNativeClass = Class.forName(serviceManagerNativeName);

                            Method getService = // getDefaults[29];
                                    serviceManagerClass.getMethod("getService", String.class);

                            Method tempInterfaceMethod = serviceManagerNativeClass.getMethod(
                                    "asInterface", IBinder.class);

                            Binder tmpBinder = new Binder();
                            tmpBinder.attachInterface(null, "fake");

                            serviceManagerObject = tempInterfaceMethod.invoke(null, tmpBinder);
                            IBinder retbinder = (IBinder) getService.invoke(serviceManagerObject, "phone");
                            Method serviceMethod = telephonyStubClass.getMethod("asInterface", IBinder.class);

                            telephonyObject = serviceMethod.invoke(null, retbinder);
                            //telephonyCall = telephonyClass.getMethod("call", String.class);
                            telephonyEndCall = telephonyClass.getMethod("endCall");
                            //telephonyAnswerCall = telephonyClass.getMethod("answerRingingCall");

                            telephonyEndCall.invoke(telephonyObject);

                        } catch (Exception e) {
                            e.printStackTrace();
                            Log.error(DialerActivity.this,
                                    "FATAL ERROR: could not connect to telephony subsystem");
                            Log.error(DialerActivity.this, "Exception object: " + e);
                        }
link|improve this answer
1  
thanks it works just fine to hangup a telephone call throw an application – S.Hawary Apr 12 at 8:36
feedback

According to the documentation on ACTION_NEW_OUTGOING_CALL

The Intent will have the following extra value:

EXTRA_PHONE_NUMBER - the phone number originally intended to be dialed.

Once the broadcast is finished, the resultData is used as the actual number to call. If null, no call will be placed.

link|improve this answer
This is an explanation to Ash's answer, which uses setResultData(null). – Paul Lammertsma Jan 26 '11 at 12:40
feedback

protected by Community Sep 19 '11 at 1:24

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.