diff options
| author | 2013-05-28 22:15:39 -0700 | |
|---|---|---|
| committer | 2013-05-28 22:15:39 -0700 | |
| commit | c72949c6bc6f5654f09482309d9d3ac03aadd67d (patch) | |
| tree | 9d8853dc81a0bb565c0cb2c423915fe4e307d506 | |
| parent | 27ab718e7ca00092acab7f55fed1a5dea9a7a77b (diff) | |
| parent | 7999c22867c75f39214d8fa6d99ae61ec8aacc7a (diff) | |
am 7999c228: am 7fb15ce7: Update documentation of NEW_OUTGOING_CALL
* commit '7999c22867c75f39214d8fa6d99ae61ec8aacc7a':
Update documentation of NEW_OUTGOING_CALL
| -rw-r--r-- | core/java/android/content/Intent.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index cf0603e3a84d..6f41fb3a3853 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -2255,6 +2255,10 @@ public class Intent implements Parcelable, Cloneable { * <p>Emergency calls cannot be intercepted using this mechanism, and * other calls cannot be modified to call emergency numbers using this * mechanism. + * <p>Some apps (such as VoIP apps) may want to redirect the outgoing + * call to use their own service instead. Those apps should first prevent + * the call from being placed by setting resultData to <code>null</code> + * and then start their own app to make the call. * <p>You must hold the * {@link android.Manifest.permission#PROCESS_OUTGOING_CALLS} * permission to receive this Intent.</p> |