blob: 2d1fe50e11d9484afa33a3ea8d72b6b81a6facaf [file] [log] [blame]
Yorke Leeb4ce1432014-06-09 13:53:23 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
Santos Cordon9eb45932014-06-27 12:28:43 -07004 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5 * in compliance with the License. You may obtain a copy of the License at
Yorke Leeb4ce1432014-06-09 13:53:23 -07006 *
Santos Cordon9eb45932014-06-27 12:28:43 -07007 * http://www.apache.org/licenses/LICENSE-2.0
Yorke Leeb4ce1432014-06-09 13:53:23 -07008 *
Santos Cordon9eb45932014-06-27 12:28:43 -07009 * Unless required by applicable law or agreed to in writing, software distributed under the License
10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11 * or implied. See the License for the specific language governing permissions and limitations under
12 * the License.
Yorke Leeb4ce1432014-06-09 13:53:23 -070013 */
14
Tyler Gunnef9f6f92014-09-12 22:16:17 -070015package android.telecom;
Yorke Leeb4ce1432014-06-09 13:53:23 -070016
Hall Liu0464b9b2016-01-12 15:32:58 -080017import android.Manifest;
Yorke Leec61d1362015-09-21 17:25:25 -070018import android.annotation.RequiresPermission;
Jeff Sharkey910e0812017-04-21 16:29:27 -060019import android.annotation.SuppressAutoDoc;
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -060020import android.annotation.SuppressLint;
Santos Cordon6c7a3882014-06-25 15:30:08 -070021import android.annotation.SystemApi;
Jeff Sharkeyd86b8fe2017-06-02 17:36:26 -060022import android.annotation.SystemService;
Santos Cordon6c7a3882014-06-25 15:30:08 -070023import android.content.ComponentName;
Yorke Leeb4ce1432014-06-09 13:53:23 -070024import android.content.Context;
Yorke Lee3e56ba12015-04-23 12:32:36 -070025import android.content.Intent;
Nancy Chenb2299c12014-10-29 18:22:11 -070026import android.net.Uri;
Santos Cordon96efb482014-07-19 14:57:05 -070027import android.os.Bundle;
Santos Cordon6c7a3882014-06-25 15:30:08 -070028import android.os.RemoteException;
29import android.os.ServiceManager;
Yorke Lee2ae312e2014-09-12 17:58:48 -070030import android.telephony.TelephonyManager;
Anthony Lee67279262014-10-27 11:28:40 -070031import android.text.TextUtils;
Santos Cordon6c7a3882014-06-25 15:30:08 -070032import android.util.Log;
Yorke Leeb4ce1432014-06-09 13:53:23 -070033
Tyler Gunnef9f6f92014-09-12 22:16:17 -070034import com.android.internal.telecom.ITelecomService;
Yorke Leeb4ce1432014-06-09 13:53:23 -070035
Jay Shrauner7746a942014-08-26 12:15:15 -070036import java.util.ArrayList;
Tyler Gunna1ed7d12014-09-08 09:52:22 -070037import java.util.Collections;
Ihab Awad807fe0a2014-07-09 12:30:52 -070038import java.util.List;
39
Yorke Leeb4ce1432014-06-09 13:53:23 -070040/**
Santos Cordond9e614f2014-10-28 13:10:36 -070041 * Provides access to information about active calls and registration/call-management functionality.
Evan Charlton0e094d92014-11-08 15:49:16 -080042 * Apps can use methods in this class to determine the current call state.
Santos Cordond9e614f2014-10-28 13:10:36 -070043 * <p>
44 * Apps do not instantiate this class directly; instead, they retrieve a reference to an instance
45 * through {@link Context#getSystemService Context.getSystemService(Context.TELECOM_SERVICE)}.
46 * <p>
47 * Note that access to some telecom information is permission-protected. Your app cannot access the
48 * protected information or gain access to protected functionality unless it has the appropriate
49 * permissions declared in its manifest file. Where permissions apply, they are noted in the method
50 * descriptions.
Yorke Leeb4ce1432014-06-09 13:53:23 -070051 */
Jeff Sharkey910e0812017-04-21 16:29:27 -060052@SuppressAutoDoc
Jeff Sharkeyd86b8fe2017-06-02 17:36:26 -060053@SystemService(Context.TELECOM_SERVICE)
Tyler Gunnef9f6f92014-09-12 22:16:17 -070054public class TelecomManager {
Ihab Awad807fe0a2014-07-09 12:30:52 -070055
Evan Charlton10197192014-07-19 15:00:29 -070056 /**
Santos Cordon96efb482014-07-19 14:57:05 -070057 * Activity action: Starts the UI for handing an incoming call. This intent starts the in-call
Tyler Gunnef9f6f92014-09-12 22:16:17 -070058 * UI by notifying the Telecom system that an incoming call exists for a specific call service
59 * (see {@link android.telecom.ConnectionService}). Telecom reads the Intent extras to find
60 * and bind to the appropriate {@link android.telecom.ConnectionService} which Telecom will
Santos Cordon96efb482014-07-19 14:57:05 -070061 * ultimately use to control and get information about the call.
62 * <p>
63 * Input: get*Extra field {@link #EXTRA_PHONE_ACCOUNT_HANDLE} contains the component name of the
Tyler Gunnef9f6f92014-09-12 22:16:17 -070064 * {@link android.telecom.ConnectionService} that Telecom should bind to. Telecom will then
Evan Charlton10197192014-07-19 15:00:29 -070065 * ask the connection service for more information about the call prior to showing any UI.
Brad Ebinger23b1c6d2017-01-12 13:10:40 -080066 *
67 * @deprecated Use {@link #addNewIncomingCall} instead.
Evan Charlton10197192014-07-19 15:00:29 -070068 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -070069 public static final String ACTION_INCOMING_CALL = "android.telecom.action.INCOMING_CALL";
Evan Charlton10197192014-07-19 15:00:29 -070070
71 /**
Yorke Leec3cf9822014-10-02 09:38:39 -070072 * Similar to {@link #ACTION_INCOMING_CALL}, but is used only by Telephony to add a new
73 * sim-initiated MO call for carrier testing.
Brad Ebinger23b1c6d2017-01-12 13:10:40 -080074 * @deprecated Use {@link #addNewUnknownCall} instead.
Yorke Leec3cf9822014-10-02 09:38:39 -070075 * @hide
76 */
77 public static final String ACTION_NEW_UNKNOWN_CALL = "android.telecom.action.NEW_UNKNOWN_CALL";
78
79 /**
Santos Cordon895d4b82015-06-25 16:41:48 -070080 * An {@link android.content.Intent} action sent by the telecom framework to start a
81 * configuration dialog for a registered {@link PhoneAccount}. There is no default dialog
82 * and each app that registers a {@link PhoneAccount} should provide one if desired.
83 * <p>
84 * A user can access the list of enabled {@link android.telecom.PhoneAccount}s through the Phone
85 * app's settings menu. For each entry, the settings app will add a click action. When
86 * triggered, the click-action will start this intent along with the extra
87 * {@link #EXTRA_PHONE_ACCOUNT_HANDLE} to indicate the {@link PhoneAccount} to configure. If the
88 * {@link PhoneAccount} package does not register an {@link android.app.Activity} for this
89 * intent, then it will not be sent.
Evan Charlton10197192014-07-19 15:00:29 -070090 */
Santos Cordon895d4b82015-06-25 16:41:48 -070091 public static final String ACTION_CONFIGURE_PHONE_ACCOUNT =
92 "android.telecom.action.CONFIGURE_PHONE_ACCOUNT";
Evan Charlton10197192014-07-19 15:00:29 -070093
94 /**
Andrew Lee873cfbf2015-02-26 15:22:00 -080095 * The {@link android.content.Intent} action used to show the call accessibility settings page.
96 */
97 public static final String ACTION_SHOW_CALL_ACCESSIBILITY_SETTINGS =
98 "android.telecom.action.SHOW_CALL_ACCESSIBILITY_SETTINGS";
99
100 /**
Yorke Lee3818a892014-07-21 15:57:17 -0700101 * The {@link android.content.Intent} action used to show the call settings page.
102 */
103 public static final String ACTION_SHOW_CALL_SETTINGS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700104 "android.telecom.action.SHOW_CALL_SETTINGS";
Yorke Lee3818a892014-07-21 15:57:17 -0700105
106 /**
Andrew Lee866080f2015-02-19 12:05:33 -0800107 * The {@link android.content.Intent} action used to show the respond via SMS settings page.
108 */
109 public static final String ACTION_SHOW_RESPOND_VIA_SMS_SETTINGS =
110 "android.telecom.action.SHOW_RESPOND_VIA_SMS_SETTINGS";
111
112 /**
Evan Charlton6d8604f2014-09-04 12:38:17 -0700113 * The {@link android.content.Intent} action used to show the settings page used to configure
114 * {@link PhoneAccount} preferences.
115 */
116 public static final String ACTION_CHANGE_PHONE_ACCOUNTS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700117 "android.telecom.action.CHANGE_PHONE_ACCOUNTS";
Evan Charlton6d8604f2014-09-04 12:38:17 -0700118
119 /**
Tyler Gunnd9da6ce2017-04-14 13:43:30 -0700120 * {@link android.content.Intent} action used indicate that a new phone account was just
121 * registered.
122 * <p>
123 * The Intent {@link Intent#getExtras() extras} will contain {@link #EXTRA_PHONE_ACCOUNT_HANDLE}
124 * to indicate which {@link PhoneAccount} was registered.
125 * <p>
126 * Will only be sent to the default dialer app (see {@link #getDefaultDialerPackage()}).
Santos Cordonc66f3ba2015-02-27 15:22:07 -0800127 */
Santos Cordonc66f3ba2015-02-27 15:22:07 -0800128 public static final String ACTION_PHONE_ACCOUNT_REGISTERED =
129 "android.telecom.action.PHONE_ACCOUNT_REGISTERED";
130
131 /**
Tyler Gunnd9da6ce2017-04-14 13:43:30 -0700132 * {@link android.content.Intent} action used indicate that a phone account was just
133 * unregistered.
134 * <p>
135 * The Intent {@link Intent#getExtras() extras} will contain {@link #EXTRA_PHONE_ACCOUNT_HANDLE}
136 * to indicate which {@link PhoneAccount} was unregistered.
137 * <p>
138 * Will only be sent to the default dialer app (see {@link #getDefaultDialerPackage()}).
Bryce Lee30b0aa02015-09-23 21:53:53 -0700139 */
Bryce Lee30b0aa02015-09-23 21:53:53 -0700140 public static final String ACTION_PHONE_ACCOUNT_UNREGISTERED =
141 "android.telecom.action.PHONE_ACCOUNT_UNREGISTERED";
142
143 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700144 * Activity action: Shows a dialog asking the user whether or not they want to replace the
145 * current default Dialer with the one specified in
146 * {@link #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME}.
147 *
148 * Usage example:
149 * <pre>
150 * Intent intent = new Intent(TelecomManager.ACTION_CHANGE_DEFAULT_DIALER);
151 * intent.putExtra(TelecomManager.EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME,
152 * getActivity().getPackageName());
153 * startActivity(intent);
154 * </pre>
155 */
156 public static final String ACTION_CHANGE_DEFAULT_DIALER =
157 "android.telecom.action.CHANGE_DEFAULT_DIALER";
158
159 /**
Yorke Lee107c4ce2015-06-15 12:08:24 -0700160 * Broadcast intent action indicating that the current default dialer has changed.
161 * The string extra {@link #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME} will contain the
162 * name of the package that the default dialer was changed to.
163 *
164 * @see #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME
165 */
166 public static final String ACTION_DEFAULT_DIALER_CHANGED =
167 "android.telecom.action.DEFAULT_DIALER_CHANGED";
168
169 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700170 * Extra value used to provide the package name for {@link #ACTION_CHANGE_DEFAULT_DIALER}.
171 */
172 public static final String EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME =
173 "android.telecom.extra.CHANGE_DEFAULT_DIALER_PACKAGE_NAME";
174
175 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700176 * Optional extra for {@link android.content.Intent#ACTION_CALL} containing a boolean that
177 * determines whether the speakerphone should be automatically turned on for an outgoing call.
Evan Charlton10197192014-07-19 15:00:29 -0700178 */
179 public static final String EXTRA_START_CALL_WITH_SPEAKERPHONE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700180 "android.telecom.extra.START_CALL_WITH_SPEAKERPHONE";
Evan Charlton10197192014-07-19 15:00:29 -0700181
182 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700183 * Optional extra for {@link android.content.Intent#ACTION_CALL} containing an integer that
184 * determines the desired video state for an outgoing call.
Santos Cordon96efb482014-07-19 14:57:05 -0700185 * Valid options:
Yorke Lee32f24732015-05-12 16:18:03 -0700186 * {@link VideoProfile#STATE_AUDIO_ONLY},
187 * {@link VideoProfile#STATE_BIDIRECTIONAL},
188 * {@link VideoProfile#STATE_RX_ENABLED},
189 * {@link VideoProfile#STATE_TX_ENABLED}.
Evan Charlton10197192014-07-19 15:00:29 -0700190 */
191 public static final String EXTRA_START_CALL_WITH_VIDEO_STATE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700192 "android.telecom.extra.START_CALL_WITH_VIDEO_STATE";
Evan Charlton10197192014-07-19 15:00:29 -0700193
194 /**
Tyler Gunn37653562017-03-13 18:15:15 -0700195 * Optional extra for {@link #addNewIncomingCall(PhoneAccountHandle, Bundle)} containing an
196 * integer that determines the requested video state for an incoming call.
197 * Valid options:
198 * {@link VideoProfile#STATE_AUDIO_ONLY},
199 * {@link VideoProfile#STATE_BIDIRECTIONAL},
200 * {@link VideoProfile#STATE_RX_ENABLED},
201 * {@link VideoProfile#STATE_TX_ENABLED}.
202 */
203 public static final String EXTRA_INCOMING_VIDEO_STATE =
204 "android.telecom.extra.INCOMING_VIDEO_STATE";
205
206 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700207 * The extra used with an {@link android.content.Intent#ACTION_CALL} and
208 * {@link android.content.Intent#ACTION_DIAL} {@code Intent} to specify a
209 * {@link PhoneAccountHandle} to use when making the call.
Evan Charlton10197192014-07-19 15:00:29 -0700210 * <p class="note">
Santos Cordon96efb482014-07-19 14:57:05 -0700211 * Retrieve with {@link android.content.Intent#getParcelableExtra(String)}.
Evan Charlton10197192014-07-19 15:00:29 -0700212 */
Evan Charlton6eb262c2014-07-19 18:18:19 -0700213 public static final String EXTRA_PHONE_ACCOUNT_HANDLE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700214 "android.telecom.extra.PHONE_ACCOUNT_HANDLE";
Evan Charlton10197192014-07-19 15:00:29 -0700215
216 /**
Tyler Gunn335ff2e2015-07-30 14:18:33 -0700217 * Optional extra for {@link android.content.Intent#ACTION_CALL} containing a string call
218 * subject which will be associated with an outgoing call. Should only be specified if the
219 * {@link PhoneAccount} supports the capability {@link PhoneAccount#CAPABILITY_CALL_SUBJECT}.
220 */
221 public static final String EXTRA_CALL_SUBJECT = "android.telecom.extra.CALL_SUBJECT";
222
223 /**
Yorke Lee04ea7d32015-06-05 15:59:18 -0700224 * The extra used by a {@link ConnectionService} to provide the handle of the caller that
225 * has initiated a new incoming call.
226 */
Yorke Lee02fb5bc2015-06-09 12:27:36 -0700227 public static final String EXTRA_INCOMING_CALL_ADDRESS =
228 "android.telecom.extra.INCOMING_CALL_ADDRESS";
Yorke Lee04ea7d32015-06-05 15:59:18 -0700229
230 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700231 * Optional extra for {@link #ACTION_INCOMING_CALL} containing a {@link Bundle} which contains
232 * metadata about the call. This {@link Bundle} will be returned to the
233 * {@link ConnectionService}.
Evan Charlton10197192014-07-19 15:00:29 -0700234 */
235 public static final String EXTRA_INCOMING_CALL_EXTRAS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700236 "android.telecom.extra.INCOMING_CALL_EXTRAS";
Evan Charlton10197192014-07-19 15:00:29 -0700237
238 /**
Nancy Chen10798dc2014-08-08 14:00:25 -0700239 * Optional extra for {@link android.content.Intent#ACTION_CALL} and
240 * {@link android.content.Intent#ACTION_DIAL} {@code Intent} containing a {@link Bundle}
241 * which contains metadata about the call. This {@link Bundle} will be saved into
Santos Cordon7a060d52015-06-19 14:52:04 -0700242 * {@code Call.Details} and passed to the {@link ConnectionService} when placing the call.
Nancy Chen10798dc2014-08-08 14:00:25 -0700243 */
244 public static final String EXTRA_OUTGOING_CALL_EXTRAS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700245 "android.telecom.extra.OUTGOING_CALL_EXTRAS";
Nancy Chen10798dc2014-08-08 14:00:25 -0700246
247 /**
Yorke Leec3cf9822014-10-02 09:38:39 -0700248 * @hide
249 */
250 public static final String EXTRA_UNKNOWN_CALL_HANDLE =
251 "android.telecom.extra.UNKNOWN_CALL_HANDLE";
252
253 /**
Sailesh Nepalda6bb382016-04-14 19:51:46 -0700254 * Optional extra for incoming and outgoing calls containing a long which specifies the time the
255 * call was created. This value is in milliseconds since boot.
256 * @hide
257 */
258 public static final String EXTRA_CALL_CREATED_TIME_MILLIS =
259 "android.telecom.extra.CALL_CREATED_TIME_MILLIS";
260
261 /**
262 * Optional extra for incoming and outgoing calls containing a long which specifies the time
263 * telecom began routing the call. This value is in milliseconds since boot.
264 * @hide
265 */
266 public static final String EXTRA_CALL_TELECOM_ROUTING_START_TIME_MILLIS =
267 "android.telecom.extra.CALL_TELECOM_ROUTING_START_TIME_MILLIS";
268
269 /**
270 * Optional extra for incoming and outgoing calls containing a long which specifies the time
271 * telecom finished routing the call. This value is in milliseconds since boot.
272 * @hide
273 */
274 public static final String EXTRA_CALL_TELECOM_ROUTING_END_TIME_MILLIS =
275 "android.telecom.extra.CALL_TELECOM_ROUTING_END_TIME_MILLIS";
276
277 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700278 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
279 * containing the disconnect code.
Evan Charlton10197192014-07-19 15:00:29 -0700280 */
281 public static final String EXTRA_CALL_DISCONNECT_CAUSE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700282 "android.telecom.extra.CALL_DISCONNECT_CAUSE";
Evan Charlton10197192014-07-19 15:00:29 -0700283
284 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700285 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
286 * containing the disconnect message.
Evan Charlton10197192014-07-19 15:00:29 -0700287 */
288 public static final String EXTRA_CALL_DISCONNECT_MESSAGE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700289 "android.telecom.extra.CALL_DISCONNECT_MESSAGE";
Evan Charlton10197192014-07-19 15:00:29 -0700290
291 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700292 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
293 * containing the component name of the associated connection service.
Evan Charlton0e094d92014-11-08 15:49:16 -0800294 * @hide
Evan Charlton10197192014-07-19 15:00:29 -0700295 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800296 @SystemApi
Evan Charlton10197192014-07-19 15:00:29 -0700297 public static final String EXTRA_CONNECTION_SERVICE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700298 "android.telecom.extra.CONNECTION_SERVICE";
Evan Charlton10197192014-07-19 15:00:29 -0700299
300 /**
Hall Liu90f62902015-11-19 16:19:24 -0800301 * Optional extra for communicating the call technology used by a
302 * {@link com.android.internal.telephony.Connection} to Telecom
303 * @hide
304 */
305 public static final String EXTRA_CALL_TECHNOLOGY_TYPE =
306 "android.telecom.extra.CALL_TECHNOLOGY_TYPE";
307
308 /**
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700309 * An optional {@link android.content.Intent#ACTION_CALL} intent extra denoting the
310 * package name of the app specifying an alternative gateway for the call.
311 * The value is a string.
312 *
313 * (The following comment corresponds to the all GATEWAY_* extras)
314 * An app which sends the {@link android.content.Intent#ACTION_CALL} intent can specify an
315 * alternative address to dial which is different from the one specified and displayed to
316 * the user. This alternative address is referred to as the gateway address.
317 */
318 public static final String GATEWAY_PROVIDER_PACKAGE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700319 "android.telecom.extra.GATEWAY_PROVIDER_PACKAGE";
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700320
321 /**
322 * An optional {@link android.content.Intent#ACTION_CALL} intent extra corresponding to the
323 * original address to dial for the call. This is used when an alternative gateway address is
324 * provided to recall the original address.
325 * The value is a {@link android.net.Uri}.
326 *
327 * (See {@link #GATEWAY_PROVIDER_PACKAGE} for details)
328 */
329 public static final String GATEWAY_ORIGINAL_ADDRESS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700330 "android.telecom.extra.GATEWAY_ORIGINAL_ADDRESS";
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700331
332 /**
Evan Charlton10197192014-07-19 15:00:29 -0700333 * The number which the party on the other side of the line will see (and use to return the
334 * call).
335 * <p>
Santos Cordon96efb482014-07-19 14:57:05 -0700336 * {@link ConnectionService}s which interact with {@link RemoteConnection}s should only populate
337 * this if the {@link android.telephony.TelephonyManager#getLine1Number()} value, as that is the
338 * user's expected caller ID.
Evan Charlton10197192014-07-19 15:00:29 -0700339 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700340 public static final String EXTRA_CALL_BACK_NUMBER = "android.telecom.extra.CALL_BACK_NUMBER";
Evan Charlton10197192014-07-19 15:00:29 -0700341
342 /**
Hall Liu8f613fb2017-02-14 18:11:11 -0800343 * The number of milliseconds that Telecom should wait after disconnecting a call via the
344 * ACTION_NEW_OUTGOING_CALL broadcast, in order to wait for the app which cancelled the call
345 * to make a new one.
346 * @hide
347 */
348 public static final String EXTRA_NEW_OUTGOING_CALL_CANCEL_TIMEOUT =
349 "android.telecom.extra.NEW_OUTGOING_CALL_CANCEL_TIMEOUT";
350
351 /**
Tyler Gunn9f6f0472017-04-17 18:25:22 -0700352 * Boolean extra specified to indicate that the intention of adding a call is to handover an
Tyler Gunn8bf76572017-04-06 15:30:08 -0700353 * existing call from the user's device to a different {@link PhoneAccount}.
354 * <p>
Tyler Gunn9f6f0472017-04-17 18:25:22 -0700355 * Used when calling {@link #addNewIncomingCall(PhoneAccountHandle, Bundle)}
356 * to indicate to Telecom that the purpose of adding a new incoming call is to handover an
357 * existing call from the user's device to a different {@link PhoneAccount}. This occurs on
358 * the receiving side of a handover.
359 * <p>
360 * Used when Telecom calls
361 * {@link ConnectionService#onCreateOutgoingConnection(PhoneAccountHandle, ConnectionRequest)}
362 * to indicate that the purpose of Telecom requesting a new outgoing connection it to request
363 * a handover to this {@link ConnectionService} from an ongoing call on the user's device. This
364 * occurs on the initiating side of a handover.
365 * <p>
Tyler Gunn727c6bd2017-04-11 09:51:40 -0700366 * The phone number of the call used by Telecom to determine which call should be handed over.
Tyler Gunn8bf76572017-04-06 15:30:08 -0700367 * @hide
368 */
369 public static final String EXTRA_IS_HANDOVER = "android.telecom.extra.IS_HANDOVER";
370
371 /**
Tyler Gunn3af38692017-05-26 13:30:09 -0700372 * Parcelable extra used with {@link #EXTRA_IS_HANDOVER} to indicate the source
373 * {@link PhoneAccountHandle} when initiating a handover which {@link ConnectionService}
374 * the handover is from.
375 * @hide
376 */
377 public static final String EXTRA_HANDOVER_FROM_PHONE_ACCOUNT =
378 "android.telecom.extra.HANDOVER_FROM_PHONE_ACCOUNT";
379
380 /**
Tyler Gunn9f6f0472017-04-17 18:25:22 -0700381 * Extra key specified in the {@link ConnectionRequest#getExtras()} when Telecom calls
382 * {@link ConnectionService#onCreateOutgoingConnection(PhoneAccountHandle, ConnectionRequest)}
383 * to inform the {@link ConnectionService} what the initial {@link CallAudioState} of the
384 * {@link Connection} will be.
385 * @hide
386 */
387 public static final String EXTRA_CALL_AUDIO_STATE = "android.telecom.extra.CALL_AUDIO_STATE";
388
389 /**
Hall Liu95d55872017-01-25 17:12:49 -0800390 * A boolean extra, which when set on the {@link Intent#ACTION_CALL} intent or on the bundle
391 * passed into {@link #placeCall(Uri, Bundle)}, indicates that the call should be initiated with
392 * an RTT session open. See {@link android.telecom.Call.RttCall} for more information on RTT.
393 */
394 public static final String EXTRA_START_CALL_WITH_RTT =
395 "android.telecom.extra.START_CALL_WITH_RTT";
396
397 /**
Santos Cordonf2600eb2015-06-22 15:02:20 -0700398 * A boolean meta-data value indicating whether an {@link InCallService} implements an
399 * in-call user interface. Dialer implementations (see {@link #getDefaultDialerPackage()}) which
400 * would also like to replace the in-call interface should set this meta-data to {@code true} in
401 * the manifest registration of their {@link InCallService}.
402 */
403 public static final String METADATA_IN_CALL_SERVICE_UI = "android.telecom.IN_CALL_SERVICE_UI";
404
405 /**
Santos Cordon88881552015-12-10 17:29:54 -0800406 * A boolean meta-data value indicating whether an {@link InCallService} implements an
407 * in-call user interface to be used while the device is in car-mode (see
408 * {@link android.content.res.Configuration.UI_MODE_TYPE_CAR}).
409 *
410 * @hide
411 */
412 public static final String METADATA_IN_CALL_SERVICE_CAR_MODE_UI =
413 "android.telecom.IN_CALL_SERVICE_CAR_MODE_UI";
414
415 /**
Sailesh Nepal9c2618b2016-01-23 16:28:22 -0800416 * A boolean meta-data value indicating whether an {@link InCallService} implements ringing.
417 * Dialer implementations (see {@link #getDefaultDialerPackage()}) which would also like to
418 * override the system provided ringing should set this meta-data to {@code true} in the
419 * manifest registration of their {@link InCallService}.
420 */
421 public static final String METADATA_IN_CALL_SERVICE_RINGING =
422 "android.telecom.IN_CALL_SERVICE_RINGING";
423
424 /**
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700425 * A boolean meta-data value indicating whether an {@link InCallService} wants to be informed of
426 * calls which have the {@link Call.Details#PROPERTY_IS_EXTERNAL_CALL} property. An external
427 * call is one which a {@link ConnectionService} knows about, but is not connected to directly.
428 * Dialer implementations (see {@link #getDefaultDialerPackage()}) which would like to be
429 * informed of external calls should set this meta-data to {@code true} in the manifest
430 * registration of their {@link InCallService}. By default, the {@link InCallService} will NOT
431 * be informed of external calls.
432 */
433 public static final String METADATA_INCLUDE_EXTERNAL_CALLS =
434 "android.telecom.INCLUDE_EXTERNAL_CALLS";
435
436 /**
Tyler Gunn24e18332017-02-10 09:42:49 -0800437 * A boolean meta-data value indicating whether an {@link InCallService} wants to be informed of
438 * calls which have the {@link Call.Details#PROPERTY_SELF_MANAGED} property. A self-managed
439 * call is one which originates from a self-managed {@link ConnectionService} which has chosen
440 * to implement its own call user interface. An {@link InCallService} implementation which
441 * would like to be informed of external calls should set this meta-data to {@code true} in the
442 * manifest registration of their {@link InCallService}. By default, the {@link InCallService}
443 * will NOT be informed about self-managed calls.
444 * <p>
445 * An {@link InCallService} which receives self-managed calls is free to view and control the
446 * state of calls in the self-managed {@link ConnectionService}. An example use-case is
Tyler Gunn37653562017-03-13 18:15:15 -0700447 * exposing these calls to an automotive device via its companion app.
448 * <p>
449 * This meta-data can only be set for an {@link InCallService} which also sets
450 * {@link #METADATA_IN_CALL_SERVICE_UI}. Only the default phone/dialer app, or a car-mode
451 * {@link InCallService} can see self-managed calls.
Tyler Gunn24e18332017-02-10 09:42:49 -0800452 * <p>
453 * See also {@link Connection#PROPERTY_SELF_MANAGED}.
454 */
455 public static final String METADATA_INCLUDE_SELF_MANAGED_CALLS =
456 "android.telecom.INCLUDE_SELF_MANAGED_CALLS";
457
458 /**
Evan Charlton10197192014-07-19 15:00:29 -0700459 * The dual tone multi-frequency signaling character sent to indicate the dialing system should
460 * pause for a predefined period.
461 */
462 public static final char DTMF_CHARACTER_PAUSE = ',';
463
464 /**
465 * The dual-tone multi-frequency signaling character sent to indicate the dialing system should
466 * wait for user confirmation before proceeding.
467 */
468 public static final char DTMF_CHARACTER_WAIT = ';';
469
470 /**
471 * TTY (teletypewriter) mode is off.
472 *
473 * @hide
474 */
475 public static final int TTY_MODE_OFF = 0;
476
477 /**
478 * TTY (teletypewriter) mode is on. The speaker is off and the microphone is muted. The user
479 * will communicate with the remote party by sending and receiving text messages.
480 *
481 * @hide
482 */
483 public static final int TTY_MODE_FULL = 1;
484
485 /**
486 * TTY (teletypewriter) mode is in hearing carryover mode (HCO). The microphone is muted but the
487 * speaker is on. The user will communicate with the remote party by sending text messages and
488 * hearing an audible reply.
489 *
490 * @hide
491 */
492 public static final int TTY_MODE_HCO = 2;
493
494 /**
495 * TTY (teletypewriter) mode is in voice carryover mode (VCO). The speaker is off but the
496 * microphone is still on. User will communicate with the remote party by speaking and receiving
497 * text message replies.
498 *
499 * @hide
500 */
501 public static final int TTY_MODE_VCO = 3;
502
503 /**
504 * Broadcast intent action indicating that the current TTY mode has changed. An intent extra
505 * provides this state as an int.
Evan Charlton10197192014-07-19 15:00:29 -0700506 *
Santos Cordon96efb482014-07-19 14:57:05 -0700507 * @see #EXTRA_CURRENT_TTY_MODE
Evan Charlton10197192014-07-19 15:00:29 -0700508 * @hide
509 */
510 public static final String ACTION_CURRENT_TTY_MODE_CHANGED =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700511 "android.telecom.action.CURRENT_TTY_MODE_CHANGED";
Evan Charlton10197192014-07-19 15:00:29 -0700512
513 /**
514 * The lookup key for an int that indicates the current TTY mode.
515 * Valid modes are:
516 * - {@link #TTY_MODE_OFF}
517 * - {@link #TTY_MODE_FULL}
518 * - {@link #TTY_MODE_HCO}
519 * - {@link #TTY_MODE_VCO}
520 *
521 * @hide
522 */
523 public static final String EXTRA_CURRENT_TTY_MODE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700524 "android.telecom.intent.extra.CURRENT_TTY_MODE";
Evan Charlton10197192014-07-19 15:00:29 -0700525
526 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700527 * Broadcast intent action indicating that the TTY preferred operating mode has changed. An
528 * intent extra provides the new mode as an int.
Evan Charlton10197192014-07-19 15:00:29 -0700529 *
Santos Cordon96efb482014-07-19 14:57:05 -0700530 * @see #EXTRA_TTY_PREFERRED_MODE
Evan Charlton10197192014-07-19 15:00:29 -0700531 * @hide
532 */
533 public static final String ACTION_TTY_PREFERRED_MODE_CHANGED =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700534 "android.telecom.action.TTY_PREFERRED_MODE_CHANGED";
Evan Charlton10197192014-07-19 15:00:29 -0700535
536 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700537 * The lookup key for an int that indicates preferred TTY mode. Valid modes are: -
538 * {@link #TTY_MODE_OFF} - {@link #TTY_MODE_FULL} - {@link #TTY_MODE_HCO} -
539 * {@link #TTY_MODE_VCO}
Evan Charlton10197192014-07-19 15:00:29 -0700540 *
541 * @hide
542 */
543 public static final String EXTRA_TTY_PREFERRED_MODE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700544 "android.telecom.intent.extra.TTY_PREFERRED";
Evan Charlton10197192014-07-19 15:00:29 -0700545
Nancy Chen9d568c02014-09-08 14:17:59 -0700546 /**
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700547 * Broadcast intent action for letting custom component know to show the missed call
Sailesh Nepalbe15ad92016-01-21 19:26:20 -0800548 * notification. If no custom component exists then this is sent to the default dialer which
549 * should post a missed-call notification.
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700550 */
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700551 public static final String ACTION_SHOW_MISSED_CALLS_NOTIFICATION =
552 "android.telecom.action.SHOW_MISSED_CALLS_NOTIFICATION";
553
554 /**
Sailesh Nepalbe15ad92016-01-21 19:26:20 -0800555 * The number of calls associated with the notification. If the number is zero then the missed
556 * call notification should be dismissed.
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700557 */
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700558 public static final String EXTRA_NOTIFICATION_COUNT =
559 "android.telecom.extra.NOTIFICATION_COUNT";
560
561 /**
562 * The number associated with the missed calls. This number is only relevant
563 * when EXTRA_NOTIFICATION_COUNT is 1.
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700564 */
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700565 public static final String EXTRA_NOTIFICATION_PHONE_NUMBER =
566 "android.telecom.extra.NOTIFICATION_PHONE_NUMBER";
567
568 /**
Bryce Lee8d41d1d2015-08-10 07:40:42 -0700569 * The intent to clear missed calls.
570 * @hide
571 */
572 @SystemApi
573 public static final String EXTRA_CLEAR_MISSED_CALLS_INTENT =
574 "android.telecom.extra.CLEAR_MISSED_CALLS_INTENT";
575
576 /**
577 * The intent to call back a missed call.
578 * @hide
579 */
580 @SystemApi
581 public static final String EXTRA_CALL_BACK_INTENT =
582 "android.telecom.extra.CALL_BACK_INTENT";
583
584 /**
Charles He858f1322017-11-27 17:11:04 -0800585 * The dialer activity responsible for placing emergency calls from, for example, a locked
586 * keyguard.
587 * @hide
588 */
589 public static final ComponentName EMERGENCY_DIALER_COMPONENT =
590 ComponentName.createRelative("com.android.phone", ".EmergencyDialer");
591
592 /**
Eric Erfanian62706c52017-12-06 16:27:53 -0800593 * The boolean indicated by this extra controls whether or not a call is eligible to undergo
594 * assisted dialing. This extra is stored under {@link #EXTRA_OUTGOING_CALL_EXTRAS}.
595 * @hide
596 */
597 public static final String EXTRA_USE_ASSISTED_DIALING =
598 "android.telecom.extra.USE_ASSISTED_DIALING";
599
600 /**
Nancy Chen9d568c02014-09-08 14:17:59 -0700601 * The following 4 constants define how properties such as phone numbers and names are
602 * displayed to the user.
603 */
604
Santos Cordoned769ae2015-05-13 18:47:38 -0700605 /**
606 * Indicates that the address or number of a call is allowed to be displayed for caller ID.
Charles He858f1322017-11-27 17:11:04 -0800607 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700608 public static final int PRESENTATION_ALLOWED = 1;
609
Santos Cordoned769ae2015-05-13 18:47:38 -0700610 /**
611 * Indicates that the address or number of a call is blocked by the other party.
612 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700613 public static final int PRESENTATION_RESTRICTED = 2;
614
Santos Cordoned769ae2015-05-13 18:47:38 -0700615 /**
616 * Indicates that the address or number of a call is not specified or known by the carrier.
617 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700618 public static final int PRESENTATION_UNKNOWN = 3;
619
Santos Cordoned769ae2015-05-13 18:47:38 -0700620 /**
621 * Indicates that the address or number of a call belongs to a pay phone.
622 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700623 public static final int PRESENTATION_PAYPHONE = 4;
624
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700625 private static final String TAG = "TelecomManager";
Yorke Leeb4ce1432014-06-09 13:53:23 -0700626
627 private final Context mContext;
Yorke Leeb4ce1432014-06-09 13:53:23 -0700628
Hall Liue1bc2ec2015-10-09 15:58:37 -0700629 private final ITelecomService mTelecomServiceOverride;
630
Santos Cordon6c7a3882014-06-25 15:30:08 -0700631 /**
632 * @hide
633 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700634 public static TelecomManager from(Context context) {
635 return (TelecomManager) context.getSystemService(Context.TELECOM_SERVICE);
Yorke Leeb4ce1432014-06-09 13:53:23 -0700636 }
Santos Cordon6c7a3882014-06-25 15:30:08 -0700637
638 /**
639 * @hide
640 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700641 public TelecomManager(Context context) {
Hall Liue1bc2ec2015-10-09 15:58:37 -0700642 this(context, null);
643 }
644
645 /**
646 * @hide
647 */
648 public TelecomManager(Context context, ITelecomService telecomServiceImpl) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700649 Context appContext = context.getApplicationContext();
650 if (appContext != null) {
651 mContext = appContext;
652 } else {
653 mContext = context;
654 }
Hall Liue1bc2ec2015-10-09 15:58:37 -0700655 mTelecomServiceOverride = telecomServiceImpl;
Ihab Awad807fe0a2014-07-09 12:30:52 -0700656 }
657
658 /**
Santos Cordon91371dc2015-05-08 13:52:09 -0700659 * Return the {@link PhoneAccount} which will be used to place outgoing calls to addresses with
660 * the specified {@code uriScheme}. This {@link PhoneAccount} will always be a member of the
661 * list which is returned from invoking {@link #getCallCapablePhoneAccounts()}. The specific
662 * account returned depends on the following priorities:
663 * <ul>
664 * <li> If the user-selected default {@link PhoneAccount} supports the specified scheme, it will
665 * be returned.
666 * </li>
667 * <li> If there exists only one {@link PhoneAccount} that supports the specified scheme, it
668 * will be returned.
669 * </li>
670 * </ul>
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700671 * <p>
Santos Cordon91371dc2015-05-08 13:52:09 -0700672 * If no {@link PhoneAccount} fits the criteria above, this method will return {@code null}.
673 *
Yorke Leec61d1362015-09-21 17:25:25 -0700674 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
675 *
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700676 * @param uriScheme The URI scheme.
Santos Cordon91371dc2015-05-08 13:52:09 -0700677 * @return The {@link PhoneAccountHandle} corresponding to the account to be used.
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700678 */
Yorke Leec61d1362015-09-21 17:25:25 -0700679 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700680 public PhoneAccountHandle getDefaultOutgoingPhoneAccount(String uriScheme) {
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700681 try {
682 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700683 return getTelecomService().getDefaultOutgoingPhoneAccount(uriScheme,
684 mContext.getOpPackageName());
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700685 }
686 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700687 Log.e(TAG, "Error calling ITelecomService#getDefaultOutgoingPhoneAccount", e);
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700688 }
689 return null;
690 }
691
692 /**
Andrew Leed4abbfb2014-09-03 14:58:27 -0700693 * Return the {@link PhoneAccount} which is the user-chosen default for making outgoing phone
694 * calls. This {@code PhoneAccount} will always be a member of the list which is returned from
Nancy Chen210ef032014-09-15 17:58:42 -0700695 * calling {@link #getCallCapablePhoneAccounts()}
Santos Cordon91371dc2015-05-08 13:52:09 -0700696 * <p>
Andrew Leed4abbfb2014-09-03 14:58:27 -0700697 * Apps must be prepared for this method to return {@code null}, indicating that there currently
698 * exists no user-chosen default {@code PhoneAccount}.
699 *
700 * @return The user outgoing phone account selected by the user.
Jay Shrauner225ccad2015-04-15 15:51:15 -0700701 * @hide
Andrew Leed4abbfb2014-09-03 14:58:27 -0700702 */
703 public PhoneAccountHandle getUserSelectedOutgoingPhoneAccount() {
704 try {
705 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700706 return getTelecomService().getUserSelectedOutgoingPhoneAccount();
Andrew Leed4abbfb2014-09-03 14:58:27 -0700707 }
708 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700709 Log.e(TAG, "Error calling ITelecomService#getUserSelectedOutgoingPhoneAccount", e);
Andrew Leed4abbfb2014-09-03 14:58:27 -0700710 }
711 return null;
712 }
713
714 /**
Santos Cordon91371dc2015-05-08 13:52:09 -0700715 * Sets the user-chosen default for making outgoing phone calls.
Andrew Lee59cac3a2014-08-28 16:50:10 -0700716 * @hide
717 */
Andrew Leed4abbfb2014-09-03 14:58:27 -0700718 public void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle accountHandle) {
Andrew Lee59cac3a2014-08-28 16:50:10 -0700719 try {
720 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700721 getTelecomService().setUserSelectedOutgoingPhoneAccount(accountHandle);
Andrew Lee59cac3a2014-08-28 16:50:10 -0700722 }
723 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700724 Log.e(TAG, "Error calling ITelecomService#setUserSelectedOutgoingPhoneAccount");
Andrew Lee59cac3a2014-08-28 16:50:10 -0700725 }
726 }
727
728 /**
Andrew Lee59cac3a2014-08-28 16:50:10 -0700729 * Returns the current SIM call manager. Apps must be prepared for this method to return
730 * {@code null}, indicating that there currently exists no user-chosen default
731 * {@code PhoneAccount}.
Santos Cordon91371dc2015-05-08 13:52:09 -0700732 *
Andrew Lee59cac3a2014-08-28 16:50:10 -0700733 * @return The phone account handle of the current sim call manager.
Andrew Lee59cac3a2014-08-28 16:50:10 -0700734 */
735 public PhoneAccountHandle getSimCallManager() {
736 try {
737 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700738 return getTelecomService().getSimCallManager();
Andrew Lee59cac3a2014-08-28 16:50:10 -0700739 }
740 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700741 Log.e(TAG, "Error calling ITelecomService#getSimCallManager");
Andrew Lee59cac3a2014-08-28 16:50:10 -0700742 }
743 return null;
744 }
745
746 /**
Sailesh Nepalcf855622015-07-28 19:22:14 -0700747 * Returns the current SIM call manager for the specified user. Apps must be prepared for this
748 * method to return {@code null}, indicating that there currently exists no user-chosen default
749 * {@code PhoneAccount}.
750 *
751 * @return The phone account handle of the current sim call manager.
752 *
753 * @hide
754 */
755 public PhoneAccountHandle getSimCallManager(int userId) {
756 try {
757 if (isServiceConnected()) {
758 return getTelecomService().getSimCallManagerForUser(userId);
759 }
760 } catch (RemoteException e) {
761 Log.e(TAG, "Error calling ITelecomService#getSimCallManagerForUser");
762 }
763 return null;
764 }
765
766 /**
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700767 * Returns the current connection manager. Apps must be prepared for this method to return
768 * {@code null}, indicating that there currently exists no user-chosen default
769 * {@code PhoneAccount}.
770 *
771 * @return The phone account handle of the current connection manager.
Evan Charlton0e094d92014-11-08 15:49:16 -0800772 * @hide
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700773 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800774 @SystemApi
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700775 public PhoneAccountHandle getConnectionManager() {
776 return getSimCallManager();
777 }
778
779 /**
Nancy Chen210ef032014-09-15 17:58:42 -0700780 * Returns a list of the {@link PhoneAccountHandle}s which can be used to make and receive phone
781 * calls which support the specified URI scheme.
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700782 * <P>
783 * For example, invoking with {@code "tel"} will find all {@link PhoneAccountHandle}s which
784 * support telephone calls (e.g. URIs such as {@code tel:555-555-1212}). Invoking with
785 * {@code "sip"} will find all {@link PhoneAccountHandle}s which support SIP calls (e.g. URIs
786 * such as {@code sip:example@sipexample.com}).
787 *
788 * @param uriScheme The URI scheme.
789 * @return A list of {@code PhoneAccountHandle} objects supporting the URI scheme.
Evan Charlton0e094d92014-11-08 15:49:16 -0800790 * @hide
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700791 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800792 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -0600793 @RequiresPermission(anyOf = {
794 android.Manifest.permission.READ_PRIVILEGED_PHONE_STATE,
795 android.Manifest.permission.READ_PHONE_STATE
796 })
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700797 public List<PhoneAccountHandle> getPhoneAccountsSupportingScheme(String uriScheme) {
798 try {
799 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700800 return getTelecomService().getPhoneAccountsSupportingScheme(uriScheme,
801 mContext.getOpPackageName());
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700802 }
803 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700804 Log.e(TAG, "Error calling ITelecomService#getPhoneAccountsSupportingScheme", e);
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700805 }
806 return new ArrayList<>();
807 }
808
Nancy Chen513c8922014-09-17 14:47:20 -0700809
810 /**
Santos Cordon91371dc2015-05-08 13:52:09 -0700811 * Returns a list of {@link PhoneAccountHandle}s which can be used to make and receive phone
812 * calls. The returned list includes only those accounts which have been explicitly enabled
813 * by the user.
Nancy Chen513c8922014-09-17 14:47:20 -0700814 *
Yorke Leec61d1362015-09-21 17:25:25 -0700815 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
816 *
Nancy Chen513c8922014-09-17 14:47:20 -0700817 * @see #EXTRA_PHONE_ACCOUNT_HANDLE
818 * @return A list of {@code PhoneAccountHandle} objects.
Nancy Chen513c8922014-09-17 14:47:20 -0700819 */
Yorke Leec61d1362015-09-21 17:25:25 -0700820 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Nancy Chen513c8922014-09-17 14:47:20 -0700821 public List<PhoneAccountHandle> getCallCapablePhoneAccounts() {
Santos Cordon91371dc2015-05-08 13:52:09 -0700822 return getCallCapablePhoneAccounts(false);
823 }
824
825 /**
Tyler Gunn89317072017-04-07 14:57:37 -0700826 * Returns a list of {@link PhoneAccountHandle}s for self-managed {@link ConnectionService}s.
827 * <p>
828 * Self-Managed {@link ConnectionService}s have a {@link PhoneAccount} with
829 * {@link PhoneAccount#CAPABILITY_SELF_MANAGED}.
830 * <p>
831 * Requires permission {@link android.Manifest.permission#READ_PHONE_STATE}, or that the caller
832 * is the default dialer app.
833 * <p>
834 * A {@link SecurityException} will be thrown if a called is not the default dialer, or lacks
835 * the {@link android.Manifest.permission#READ_PHONE_STATE} permission.
836 *
837 * @return A list of {@code PhoneAccountHandle} objects.
838 */
839 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
840 public List<PhoneAccountHandle> getSelfManagedPhoneAccounts() {
841 try {
842 if (isServiceConnected()) {
843 return getTelecomService().getSelfManagedPhoneAccounts(mContext.getOpPackageName());
844 }
845 } catch (RemoteException e) {
846 Log.e(TAG, "Error calling ITelecomService#getSelfManagedPhoneAccounts()", e);
847 }
848 return new ArrayList<>();
849 }
850
851 /**
Santos Cordon91371dc2015-05-08 13:52:09 -0700852 * Returns a list of {@link PhoneAccountHandle}s including those which have not been enabled
853 * by the user.
854 *
855 * @return A list of {@code PhoneAccountHandle} objects.
856 * @hide
857 */
858 public List<PhoneAccountHandle> getCallCapablePhoneAccounts(boolean includeDisabledAccounts) {
Nancy Chen513c8922014-09-17 14:47:20 -0700859 try {
860 if (isServiceConnected()) {
Santos Cordon91371dc2015-05-08 13:52:09 -0700861 return getTelecomService().getCallCapablePhoneAccounts(
862 includeDisabledAccounts, mContext.getOpPackageName());
Nancy Chen513c8922014-09-17 14:47:20 -0700863 }
864 } catch (RemoteException e) {
Santos Cordon91371dc2015-05-08 13:52:09 -0700865 Log.e(TAG, "Error calling ITelecomService#getCallCapablePhoneAccounts(" +
866 includeDisabledAccounts + ")", e);
Nancy Chen513c8922014-09-17 14:47:20 -0700867 }
868 return new ArrayList<>();
869 }
870
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700871 /**
Nancy Chen513c8922014-09-17 14:47:20 -0700872 * Returns a list of all {@link PhoneAccount}s registered for the calling package.
873 *
874 * @return A list of {@code PhoneAccountHandle} objects.
Evan Charlton0e094d92014-11-08 15:49:16 -0800875 * @hide
Nancy Chen513c8922014-09-17 14:47:20 -0700876 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800877 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -0600878 @SuppressLint("Doclava125")
Nancy Chen513c8922014-09-17 14:47:20 -0700879 public List<PhoneAccountHandle> getPhoneAccountsForPackage() {
880 try {
881 if (isServiceConnected()) {
882 return getTelecomService().getPhoneAccountsForPackage(mContext.getPackageName());
883 }
884 } catch (RemoteException e) {
885 Log.e(TAG, "Error calling ITelecomService#getPhoneAccountsForPackage", e);
886 }
887 return null;
888 }
889
890 /**
Evan Charlton8c8a0622014-07-20 12:31:00 -0700891 * Return the {@link PhoneAccount} for a specified {@link PhoneAccountHandle}. Object includes
892 * resources which can be used in a user interface.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700893 *
Evan Charlton6eb262c2014-07-19 18:18:19 -0700894 * @param account The {@link PhoneAccountHandle}.
Evan Charlton8c8a0622014-07-20 12:31:00 -0700895 * @return The {@link PhoneAccount} object.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700896 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700897 public PhoneAccount getPhoneAccount(PhoneAccountHandle account) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700898 try {
899 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700900 return getTelecomService().getPhoneAccount(account);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700901 }
902 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700903 Log.e(TAG, "Error calling ITelecomService#getPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700904 }
905 return null;
906 }
907
908 /**
Nancy Chen210ef032014-09-15 17:58:42 -0700909 * Returns a count of all {@link PhoneAccount}s.
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700910 *
Nancy Chen210ef032014-09-15 17:58:42 -0700911 * @return The count of {@link PhoneAccount}s.
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700912 * @hide
913 */
914 @SystemApi
915 public int getAllPhoneAccountsCount() {
916 try {
917 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700918 return getTelecomService().getAllPhoneAccountsCount();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700919 }
920 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700921 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccountsCount", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700922 }
923 return 0;
924 }
925
926 /**
927 * Returns a list of all {@link PhoneAccount}s.
928 *
929 * @return All {@link PhoneAccount}s.
930 * @hide
931 */
932 @SystemApi
933 public List<PhoneAccount> getAllPhoneAccounts() {
934 try {
935 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700936 return getTelecomService().getAllPhoneAccounts();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700937 }
938 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700939 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccounts", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700940 }
941 return Collections.EMPTY_LIST;
942 }
943
944 /**
945 * Returns a list of all {@link PhoneAccountHandle}s.
946 *
947 * @return All {@link PhoneAccountHandle}s.
948 * @hide
949 */
950 @SystemApi
951 public List<PhoneAccountHandle> getAllPhoneAccountHandles() {
952 try {
953 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700954 return getTelecomService().getAllPhoneAccountHandles();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700955 }
956 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700957 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccountHandles", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700958 }
959 return Collections.EMPTY_LIST;
960 }
961
962 /**
Brad Ebingerec0d3342016-01-29 15:40:43 -0800963 * Register a {@link PhoneAccount} for use by the system that will be stored in Device Encrypted
964 * storage. When registering {@link PhoneAccount}s, existing registrations will be overwritten
965 * if the {@link PhoneAccountHandle} matches that of a {@link PhoneAccount} which is already
Santos Cordond9e614f2014-10-28 13:10:36 -0700966 * registered. Once registered, the {@link PhoneAccount} is listed to the user as an option
967 * when placing calls. The user may still need to enable the {@link PhoneAccount} within
968 * the phone app settings before the account is usable.
969 * <p>
970 * A {@link SecurityException} will be thrown if an app tries to register a
971 * {@link PhoneAccountHandle} where the package name specified within
972 * {@link PhoneAccountHandle#getComponentName()} does not match the package name of the app.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700973 *
Evan Charlton8c8a0622014-07-20 12:31:00 -0700974 * @param account The complete {@link PhoneAccount}.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700975 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700976 public void registerPhoneAccount(PhoneAccount account) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700977 try {
978 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700979 getTelecomService().registerPhoneAccount(account);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700980 }
981 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700982 Log.e(TAG, "Error calling ITelecomService#registerPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700983 }
984 }
985
986 /**
Evan Charlton8c8a0622014-07-20 12:31:00 -0700987 * Remove a {@link PhoneAccount} registration from the system.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700988 *
Evan Charlton8c8a0622014-07-20 12:31:00 -0700989 * @param accountHandle A {@link PhoneAccountHandle} for the {@link PhoneAccount} to unregister.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700990 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700991 public void unregisterPhoneAccount(PhoneAccountHandle accountHandle) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700992 try {
993 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700994 getTelecomService().unregisterPhoneAccount(accountHandle);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700995 }
996 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700997 Log.e(TAG, "Error calling ITelecomService#unregisterPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700998 }
999 }
1000
1001 /**
Nancy Chen7ab1dc42014-09-09 18:18:26 -07001002 * Remove all Accounts that belong to the calling package from the system.
Evan Charlton0e094d92014-11-08 15:49:16 -08001003 * @hide
Ihab Awad807fe0a2014-07-09 12:30:52 -07001004 */
Evan Charlton0e094d92014-11-08 15:49:16 -08001005 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001006 @SuppressLint("Doclava125")
Yorke Lee06044272015-04-14 15:16:59 -07001007 public void clearPhoneAccounts() {
1008 clearAccounts();
1009 }
1010 /**
1011 * Remove all Accounts that belong to the calling package from the system.
1012 * @deprecated Use {@link #clearPhoneAccounts()} instead.
1013 * @hide
1014 */
1015 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001016 @SuppressLint("Doclava125")
Nancy Chen7ab1dc42014-09-09 18:18:26 -07001017 public void clearAccounts() {
Ihab Awad807fe0a2014-07-09 12:30:52 -07001018 try {
1019 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001020 getTelecomService().clearAccounts(mContext.getPackageName());
Ihab Awad807fe0a2014-07-09 12:30:52 -07001021 }
1022 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001023 Log.e(TAG, "Error calling ITelecomService#clearAccounts", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -07001024 }
1025 }
1026
1027 /**
Anthony Lee67279262014-10-27 11:28:40 -07001028 * Remove all Accounts that belong to the specified package from the system.
1029 * @hide
1030 */
1031 public void clearAccountsForPackage(String packageName) {
1032 try {
1033 if (isServiceConnected() && !TextUtils.isEmpty(packageName)) {
1034 getTelecomService().clearAccounts(packageName);
1035 }
1036 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -08001037 Log.e(TAG, "Error calling ITelecomService#clearAccountsForPackage", e);
Anthony Lee67279262014-10-27 11:28:40 -07001038 }
1039 }
1040
Yorke Lee1011f482015-04-23 15:58:27 -07001041
Anthony Lee67279262014-10-27 11:28:40 -07001042 /**
Yorke Lee1011f482015-04-23 15:58:27 -07001043 * @deprecated - Use {@link TelecomManager#getDefaultDialerPackage} to directly access
1044 * the default dialer's package name instead.
Ihab Awad807fe0a2014-07-09 12:30:52 -07001045 * @hide
1046 */
Santos Cordon6c7a3882014-06-25 15:30:08 -07001047 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001048 @SuppressLint("Doclava125")
Santos Cordon6c7a3882014-06-25 15:30:08 -07001049 public ComponentName getDefaultPhoneApp() {
1050 try {
Santos Cordon9eb45932014-06-27 12:28:43 -07001051 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001052 return getTelecomService().getDefaultPhoneApp();
Santos Cordon9eb45932014-06-27 12:28:43 -07001053 }
Santos Cordon6c7a3882014-06-25 15:30:08 -07001054 } catch (RemoteException e) {
1055 Log.e(TAG, "RemoteException attempting to get the default phone app.", e);
1056 }
1057 return null;
1058 }
1059
Santos Cordon9eb45932014-06-27 12:28:43 -07001060 /**
Yorke Lee1011f482015-04-23 15:58:27 -07001061 * Used to determine the currently selected default dialer package.
1062 *
1063 * @return package name for the default dialer package or null if no package has been
1064 * selected as the default dialer.
1065 */
1066 public String getDefaultDialerPackage() {
1067 try {
1068 if (isServiceConnected()) {
1069 return getTelecomService().getDefaultDialerPackage();
1070 }
1071 } catch (RemoteException e) {
1072 Log.e(TAG, "RemoteException attempting to get the default dialer package name.", e);
1073 }
1074 return null;
1075 }
1076
1077 /**
Yorke Lee107c4ce2015-06-15 12:08:24 -07001078 * Used to set the default dialer package.
1079 *
1080 * @param packageName to set the default dialer to..
1081 *
1082 * @result {@code true} if the default dialer was successfully changed, {@code false} if
1083 * the specified package does not correspond to an installed dialer, or is already
1084 * the default dialer.
1085 *
1086 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
1087 * Requires permission: {@link android.Manifest.permission#WRITE_SECURE_SETTINGS}
1088 *
1089 * @hide
1090 */
1091 public boolean setDefaultDialer(String packageName) {
1092 try {
1093 if (isServiceConnected()) {
1094 return getTelecomService().setDefaultDialer(packageName);
1095 }
1096 } catch (RemoteException e) {
1097 Log.e(TAG, "RemoteException attempting to set the default dialer.", e);
1098 }
1099 return false;
1100 }
1101
1102 /**
Yorke Lee1011f482015-04-23 15:58:27 -07001103 * Used to determine the dialer package that is preloaded on the system partition.
1104 *
1105 * @return package name for the system dialer package or null if no system dialer is preloaded.
1106 * @hide
1107 */
1108 public String getSystemDialerPackage() {
1109 try {
1110 if (isServiceConnected()) {
1111 return getTelecomService().getSystemDialerPackage();
1112 }
1113 } catch (RemoteException e) {
1114 Log.e(TAG, "RemoteException attempting to get the system dialer package name.", e);
1115 }
1116 return null;
1117 }
1118
1119 /**
Nancy Chen443e5012014-10-15 15:48:21 -07001120 * Return whether a given phone number is the configured voicemail number for a
1121 * particular phone account.
1122 *
Yorke Leec61d1362015-09-21 17:25:25 -07001123 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
1124 *
Nancy Chen443e5012014-10-15 15:48:21 -07001125 * @param accountHandle The handle for the account to check the voicemail number against
1126 * @param number The number to look up.
Nancy Chen443e5012014-10-15 15:48:21 -07001127 */
Yorke Leec61d1362015-09-21 17:25:25 -07001128 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Nancy Chen443e5012014-10-15 15:48:21 -07001129 public boolean isVoiceMailNumber(PhoneAccountHandle accountHandle, String number) {
1130 try {
1131 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001132 return getTelecomService().isVoiceMailNumber(accountHandle, number,
1133 mContext.getOpPackageName());
Nancy Chen443e5012014-10-15 15:48:21 -07001134 }
1135 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -08001136 Log.e(TAG, "RemoteException calling ITelecomService#isVoiceMailNumber.", e);
Nancy Chen443e5012014-10-15 15:48:21 -07001137 }
1138 return false;
1139 }
1140
1141 /**
Yorke Lee49e2d462015-04-15 16:14:22 -07001142 * Return the voicemail number for a given phone account.
Nancy Chen8c066f72014-12-03 15:18:08 -08001143 *
Yorke Leec61d1362015-09-21 17:25:25 -07001144 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
1145 *
Yorke Lee49e2d462015-04-15 16:14:22 -07001146 * @param accountHandle The handle for the phone account.
1147 * @return The voicemail number for the phone account, and {@code null} if one has not been
1148 * configured.
Nancy Chen8c066f72014-12-03 15:18:08 -08001149 */
Yorke Leec61d1362015-09-21 17:25:25 -07001150 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Yorke Lee49e2d462015-04-15 16:14:22 -07001151 public String getVoiceMailNumber(PhoneAccountHandle accountHandle) {
Nancy Chen8c066f72014-12-03 15:18:08 -08001152 try {
1153 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001154 return getTelecomService().getVoiceMailNumber(accountHandle,
1155 mContext.getOpPackageName());
Nancy Chen8c066f72014-12-03 15:18:08 -08001156 }
1157 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -08001158 Log.e(TAG, "RemoteException calling ITelecomService#hasVoiceMailNumber.", e);
Nancy Chen8c066f72014-12-03 15:18:08 -08001159 }
Yorke Lee49e2d462015-04-15 16:14:22 -07001160 return null;
Nancy Chen8c066f72014-12-03 15:18:08 -08001161 }
1162
1163 /**
Nancy Chen5cf27842015-01-24 23:30:27 -08001164 * Return the line 1 phone number for given phone account.
1165 *
Yorke Leec61d1362015-09-21 17:25:25 -07001166 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
1167 *
Nancy Chen5cf27842015-01-24 23:30:27 -08001168 * @param accountHandle The handle for the account retrieve a number for.
1169 * @return A string representation of the line 1 phone number.
Nancy Chen5cf27842015-01-24 23:30:27 -08001170 */
Yorke Leec61d1362015-09-21 17:25:25 -07001171 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Nancy Chen5cf27842015-01-24 23:30:27 -08001172 public String getLine1Number(PhoneAccountHandle accountHandle) {
1173 try {
1174 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001175 return getTelecomService().getLine1Number(accountHandle,
1176 mContext.getOpPackageName());
Nancy Chen5cf27842015-01-24 23:30:27 -08001177 }
1178 } catch (RemoteException e) {
1179 Log.e(TAG, "RemoteException calling ITelecomService#getLine1Number.", e);
1180 }
1181 return null;
1182 }
1183
1184 /**
Santos Cordon9eb45932014-06-27 12:28:43 -07001185 * Returns whether there is an ongoing phone call (can be in dialing, ringing, active or holding
Tyler Gunn24e18332017-02-10 09:42:49 -08001186 * states) originating from either a manager or self-managed {@link ConnectionService}.
Nancy Chen0eb1e402014-08-21 22:52:29 -07001187 * <p>
1188 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
Tyler Gunn24e18332017-02-10 09:42:49 -08001189 *
1190 * @return {@code true} if there is an ongoing call in either a managed or self-managed
1191 * {@link ConnectionService}, {@code false} otherwise.
Santos Cordon9eb45932014-06-27 12:28:43 -07001192 */
Yorke Leec61d1362015-09-21 17:25:25 -07001193 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Nancy Chen0eb1e402014-08-21 22:52:29 -07001194 public boolean isInCall() {
Santos Cordon9eb45932014-06-27 12:28:43 -07001195 try {
1196 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001197 return getTelecomService().isInCall(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -07001198 }
1199 } catch (RemoteException e) {
Yorke Lee2ae312e2014-09-12 17:58:48 -07001200 Log.e(TAG, "RemoteException calling isInCall().", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001201 }
1202 return false;
1203 }
1204
1205 /**
Tyler Gunn24e18332017-02-10 09:42:49 -08001206 * Returns whether there is an ongoing call originating from a managed
1207 * {@link ConnectionService}. An ongoing call can be in dialing, ringing, active or holding
1208 * states.
1209 * <p>
1210 * If you also need to know if there are ongoing self-managed calls, use {@link #isInCall()}
1211 * instead.
1212 * <p>
1213 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
1214 *
1215 * @return {@code true} if there is an ongoing call in a managed {@link ConnectionService},
1216 * {@code false} otherwise.
1217 */
1218 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
1219 public boolean isInManagedCall() {
1220 try {
1221 if (isServiceConnected()) {
1222 return getTelecomService().isInManagedCall(mContext.getOpPackageName());
1223 }
1224 } catch (RemoteException e) {
1225 Log.e(TAG, "RemoteException calling isInManagedCall().", e);
1226 }
1227 return false;
1228 }
1229
1230 /**
Yorke Lee2ae312e2014-09-12 17:58:48 -07001231 * Returns one of the following constants that represents the current state of Telecom:
1232 *
1233 * {@link TelephonyManager#CALL_STATE_RINGING}
1234 * {@link TelephonyManager#CALL_STATE_OFFHOOK}
1235 * {@link TelephonyManager#CALL_STATE_IDLE}
Yorke Lee7c72c2d2014-10-28 14:12:02 -07001236 *
1237 * Note that this API does not require the
1238 * {@link android.Manifest.permission#READ_PHONE_STATE} permission. This is intentional, to
1239 * preserve the behavior of {@link TelephonyManager#getCallState()}, which also did not require
1240 * the permission.
Tyler Gunn24e18332017-02-10 09:42:49 -08001241 *
1242 * Takes into consideration both managed and self-managed calls.
1243 *
Yorke Lee2ae312e2014-09-12 17:58:48 -07001244 * @hide
1245 */
1246 @SystemApi
1247 public int getCallState() {
1248 try {
1249 if (isServiceConnected()) {
1250 return getTelecomService().getCallState();
1251 }
1252 } catch (RemoteException e) {
1253 Log.d(TAG, "RemoteException calling getCallState().", e);
1254 }
1255 return TelephonyManager.CALL_STATE_IDLE;
1256 }
1257
1258 /**
Santos Cordon9eb45932014-06-27 12:28:43 -07001259 * Returns whether there currently exists is a ringing incoming-call.
1260 *
Tyler Gunn24e18332017-02-10 09:42:49 -08001261 * @return {@code true} if there is a managed or self-managed ringing call.
Santos Cordon9eb45932014-06-27 12:28:43 -07001262 * @hide
1263 */
1264 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001265 @RequiresPermission(anyOf = {
1266 android.Manifest.permission.READ_PRIVILEGED_PHONE_STATE,
1267 android.Manifest.permission.READ_PHONE_STATE
1268 })
Santos Cordon9eb45932014-06-27 12:28:43 -07001269 public boolean isRinging() {
1270 try {
1271 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001272 return getTelecomService().isRinging(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -07001273 }
1274 } catch (RemoteException e) {
1275 Log.e(TAG, "RemoteException attempting to get ringing state of phone app.", e);
1276 }
1277 return false;
1278 }
1279
1280 /**
Santos Cordon96efb482014-07-19 14:57:05 -07001281 * Ends an ongoing call.
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001282 * TODO: L-release - need to convert all invocations of ITelecomService#endCall to use this
Santos Cordon96efb482014-07-19 14:57:05 -07001283 * method (clockwork & gearhead).
Santos Cordon9eb45932014-06-27 12:28:43 -07001284 * @hide
1285 */
1286 @SystemApi
Jeff Sharkeyd86b8fe2017-06-02 17:36:26 -06001287 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Santos Cordon9eb45932014-06-27 12:28:43 -07001288 public boolean endCall() {
1289 try {
1290 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001291 return getTelecomService().endCall();
Santos Cordon9eb45932014-06-27 12:28:43 -07001292 }
1293 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001294 Log.e(TAG, "Error calling ITelecomService#endCall", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001295 }
1296 return false;
1297 }
1298
1299 /**
1300 * If there is a ringing incoming call, this method accepts the call on behalf of the user.
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001301 *
Tyler Gunn6676bb52015-10-23 14:39:49 -07001302 * If the incoming call is a video call, the call will be answered with the same video state as
1303 * the incoming call requests. This means, for example, that an incoming call requesting
1304 * {@link VideoProfile#STATE_BIDIRECTIONAL} will be answered, accepting that state.
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001305 *
1306 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} or
1307 * {@link android.Manifest.permission#ANSWER_PHONE_CALLS}
Santos Cordon9eb45932014-06-27 12:28:43 -07001308 */
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001309 //TODO: L-release - need to convert all invocation of ITelecmmService#answerRingingCall to use
1310 // this method (clockwork & gearhead).
1311 @RequiresPermission(anyOf =
1312 {Manifest.permission.ANSWER_PHONE_CALLS, Manifest.permission.MODIFY_PHONE_STATE})
Santos Cordon9eb45932014-06-27 12:28:43 -07001313 public void acceptRingingCall() {
1314 try {
1315 if (isServiceConnected()) {
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001316 getTelecomService().acceptRingingCall(mContext.getPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -07001317 }
1318 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001319 Log.e(TAG, "Error calling ITelecomService#acceptRingingCall", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001320 }
1321 }
1322
1323 /**
Tyler Gunn6676bb52015-10-23 14:39:49 -07001324 * If there is a ringing incoming call, this method accepts the call on behalf of the user,
1325 * with the specified video state.
1326 *
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001327 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} or
1328 * {@link android.Manifest.permission#ANSWER_PHONE_CALLS}
1329 *
Tyler Gunn6676bb52015-10-23 14:39:49 -07001330 * @param videoState The desired video state to answer the call with.
Tyler Gunn6676bb52015-10-23 14:39:49 -07001331 */
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001332 @RequiresPermission(anyOf =
1333 {Manifest.permission.ANSWER_PHONE_CALLS, Manifest.permission.MODIFY_PHONE_STATE})
Tyler Gunn6676bb52015-10-23 14:39:49 -07001334 public void acceptRingingCall(int videoState) {
1335 try {
1336 if (isServiceConnected()) {
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001337 getTelecomService().acceptRingingCallWithVideoState(
1338 mContext.getPackageName(), videoState);
Tyler Gunn6676bb52015-10-23 14:39:49 -07001339 }
1340 } catch (RemoteException e) {
1341 Log.e(TAG, "Error calling ITelecomService#acceptRingingCallWithVideoState", e);
1342 }
1343 }
1344
1345 /**
Santos Cordon9eb45932014-06-27 12:28:43 -07001346 * Silences the ringer if a ringing call exists.
Yorke Leec61d1362015-09-21 17:25:25 -07001347 *
1348 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
Santos Cordon9eb45932014-06-27 12:28:43 -07001349 */
Yorke Leec61d1362015-09-21 17:25:25 -07001350 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Santos Cordon9eb45932014-06-27 12:28:43 -07001351 public void silenceRinger() {
1352 try {
1353 if (isServiceConnected()) {
Yorke Leef1a349b2015-04-29 16:16:50 -07001354 getTelecomService().silenceRinger(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -07001355 }
1356 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001357 Log.e(TAG, "Error calling ITelecomService#silenceRinger", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001358 }
1359 }
1360
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001361 /**
1362 * Returns whether TTY is supported on this device.
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001363 */
Jeff Sharkey9650a432017-11-18 20:43:03 -07001364 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001365 @RequiresPermission(anyOf = {
1366 android.Manifest.permission.READ_PRIVILEGED_PHONE_STATE,
1367 android.Manifest.permission.READ_PHONE_STATE
1368 })
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001369 public boolean isTtySupported() {
1370 try {
1371 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001372 return getTelecomService().isTtySupported(mContext.getOpPackageName());
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001373 }
1374 } catch (RemoteException e) {
1375 Log.e(TAG, "RemoteException attempting to get TTY supported state.", e);
1376 }
1377 return false;
1378 }
1379
1380 /**
1381 * Returns the current TTY mode of the device. For TTY to be on the user must enable it in
Santos Cordon96efb482014-07-19 14:57:05 -07001382 * settings and have a wired headset plugged in.
1383 * Valid modes are:
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001384 * - {@link TelecomManager#TTY_MODE_OFF}
1385 * - {@link TelecomManager#TTY_MODE_FULL}
1386 * - {@link TelecomManager#TTY_MODE_HCO}
1387 * - {@link TelecomManager#TTY_MODE_VCO}
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001388 * @hide
1389 */
1390 public int getCurrentTtyMode() {
1391 try {
1392 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001393 return getTelecomService().getCurrentTtyMode(mContext.getOpPackageName());
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001394 }
1395 } catch (RemoteException e) {
1396 Log.e(TAG, "RemoteException attempting to get the current TTY mode.", e);
1397 }
Evan Charlton10197192014-07-19 15:00:29 -07001398 return TTY_MODE_OFF;
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001399 }
1400
Santos Cordon96efb482014-07-19 14:57:05 -07001401 /**
1402 * Registers a new incoming call. A {@link ConnectionService} should invoke this method when it
Tyler Gunnf5035432017-01-09 09:43:12 -08001403 * has an incoming call. For managed {@link ConnectionService}s, the specified
1404 * {@link PhoneAccountHandle} must have been registered with {@link #registerPhoneAccount} and
1405 * the user must have enabled the corresponding {@link PhoneAccount}. This can be checked using
1406 * {@link #getPhoneAccount}. Self-managed {@link ConnectionService}s must have
1407 * {@link android.Manifest.permission#MANAGE_OWN_CALLS} to add a new incoming call.
1408 * <p>
Tyler Gunn37653562017-03-13 18:15:15 -07001409 * The incoming call you are adding is assumed to have a video state of
1410 * {@link VideoProfile#STATE_AUDIO_ONLY}, unless the extra value
1411 * {@link #EXTRA_INCOMING_VIDEO_STATE} is specified.
1412 * <p>
Tyler Gunnf5035432017-01-09 09:43:12 -08001413 * Once invoked, this method will cause the system to bind to the {@link ConnectionService}
1414 * associated with the {@link PhoneAccountHandle} and request additional information about the
1415 * call (See {@link ConnectionService#onCreateIncomingConnection}) before starting the incoming
Brad Ebingerec0d3342016-01-29 15:40:43 -08001416 * call UI.
1417 * <p>
Tyler Gunnf5035432017-01-09 09:43:12 -08001418 * For a managed {@link ConnectionService}, a {@link SecurityException} will be thrown if either
1419 * the {@link PhoneAccountHandle} does not correspond to a registered {@link PhoneAccount} or
1420 * the associated {@link PhoneAccount} is not currently enabled by the user.
1421 * <p>
1422 * For a self-managed {@link ConnectionService}, a {@link SecurityException} will be thrown if
1423 * the {@link PhoneAccount} has {@link PhoneAccount#CAPABILITY_SELF_MANAGED} and the calling app
1424 * does not have {@link android.Manifest.permission#MANAGE_OWN_CALLS}.
1425 *
Santos Cordon96efb482014-07-19 14:57:05 -07001426 * @param phoneAccount A {@link PhoneAccountHandle} registered with
1427 * {@link #registerPhoneAccount}.
1428 * @param extras A bundle that will be passed through to
1429 * {@link ConnectionService#onCreateIncomingConnection}.
1430 */
1431 public void addNewIncomingCall(PhoneAccountHandle phoneAccount, Bundle extras) {
1432 try {
1433 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001434 getTelecomService().addNewIncomingCall(
Santos Cordon96efb482014-07-19 14:57:05 -07001435 phoneAccount, extras == null ? new Bundle() : extras);
1436 }
1437 } catch (RemoteException e) {
1438 Log.e(TAG, "RemoteException adding a new incoming call: " + phoneAccount, e);
1439 }
1440 }
1441
Nancy Chen0eb1e402014-08-21 22:52:29 -07001442 /**
Yorke Leec3cf9822014-10-02 09:38:39 -07001443 * Registers a new unknown call with Telecom. This can only be called by the system Telephony
1444 * service. This is invoked when Telephony detects a new unknown connection that was neither
1445 * a new incoming call, nor an user-initiated outgoing call.
1446 *
1447 * @param phoneAccount A {@link PhoneAccountHandle} registered with
1448 * {@link #registerPhoneAccount}.
1449 * @param extras A bundle that will be passed through to
1450 * {@link ConnectionService#onCreateIncomingConnection}.
1451 * @hide
1452 */
1453 @SystemApi
1454 public void addNewUnknownCall(PhoneAccountHandle phoneAccount, Bundle extras) {
1455 try {
1456 if (isServiceConnected()) {
1457 getTelecomService().addNewUnknownCall(
1458 phoneAccount, extras == null ? new Bundle() : extras);
1459 }
1460 } catch (RemoteException e) {
1461 Log.e(TAG, "RemoteException adding a new unknown call: " + phoneAccount, e);
1462 }
1463 }
1464
1465 /**
Nancy Chen0eb1e402014-08-21 22:52:29 -07001466 * Processes the specified dial string as an MMI code.
1467 * MMI codes are any sequence of characters entered into the dialpad that contain a "*" or "#".
1468 * Some of these sequences launch special behavior through handled by Telephony.
Nancy Chen95e8a672014-10-16 18:38:21 -07001469 * This method uses the default subscription.
Nancy Chen0eb1e402014-08-21 22:52:29 -07001470 * <p>
1471 * Requires that the method-caller be set as the system dialer app.
1472 * </p>
1473 *
Yorke Leec61d1362015-09-21 17:25:25 -07001474 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
1475 *
Nancy Chen0eb1e402014-08-21 22:52:29 -07001476 * @param dialString The digits to dial.
1477 * @return True if the digits were processed as an MMI code, false otherwise.
1478 */
Yorke Leec61d1362015-09-21 17:25:25 -07001479 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Nancy Chen0eb1e402014-08-21 22:52:29 -07001480 public boolean handleMmi(String dialString) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001481 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001482 if (service != null) {
1483 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001484 return service.handlePinMmi(dialString, mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001485 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001486 Log.e(TAG, "Error calling ITelecomService#handlePinMmi", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001487 }
1488 }
1489 return false;
1490 }
1491
1492 /**
Nancy Chen95e8a672014-10-16 18:38:21 -07001493 * Processes the specified dial string as an MMI code.
1494 * MMI codes are any sequence of characters entered into the dialpad that contain a "*" or "#".
1495 * Some of these sequences launch special behavior through handled by Telephony.
1496 * <p>
1497 * Requires that the method-caller be set as the system dialer app.
1498 * </p>
1499 *
Yorke Leec61d1362015-09-21 17:25:25 -07001500 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
1501 *
Nancy Chen95e8a672014-10-16 18:38:21 -07001502 * @param accountHandle The handle for the account the MMI code should apply to.
1503 * @param dialString The digits to dial.
1504 * @return True if the digits were processed as an MMI code, false otherwise.
Nancy Chen95e8a672014-10-16 18:38:21 -07001505 */
Yorke Leec61d1362015-09-21 17:25:25 -07001506 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Yorke Lee06044272015-04-14 15:16:59 -07001507 public boolean handleMmi(String dialString, PhoneAccountHandle accountHandle) {
Nancy Chen95e8a672014-10-16 18:38:21 -07001508 ITelecomService service = getTelecomService();
1509 if (service != null) {
1510 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001511 return service.handlePinMmiForPhoneAccount(accountHandle, dialString,
1512 mContext.getOpPackageName());
Nancy Chen95e8a672014-10-16 18:38:21 -07001513 } catch (RemoteException e) {
1514 Log.e(TAG, "Error calling ITelecomService#handlePinMmi", e);
1515 }
1516 }
1517 return false;
1518 }
1519
1520 /**
Yorke Leec61d1362015-09-21 17:25:25 -07001521 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
1522 *
Nancy Chenb2299c12014-10-29 18:22:11 -07001523 * @param accountHandle The handle for the account to derive an adn query URI for or
1524 * {@code null} to return a URI which will use the default account.
1525 * @return The URI (with the content:// scheme) specific to the specified {@link PhoneAccount}
1526 * for the the content retrieve.
1527 */
Yorke Leec61d1362015-09-21 17:25:25 -07001528 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Nancy Chenb2299c12014-10-29 18:22:11 -07001529 public Uri getAdnUriForPhoneAccount(PhoneAccountHandle accountHandle) {
1530 ITelecomService service = getTelecomService();
1531 if (service != null && accountHandle != null) {
1532 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001533 return service.getAdnUriForPhoneAccount(accountHandle, mContext.getOpPackageName());
Nancy Chenb2299c12014-10-29 18:22:11 -07001534 } catch (RemoteException e) {
1535 Log.e(TAG, "Error calling ITelecomService#getAdnUriForPhoneAccount", e);
1536 }
1537 }
1538 return Uri.parse("content://icc/adn");
1539 }
1540
1541 /**
Nancy Chen0eb1e402014-08-21 22:52:29 -07001542 * Removes the missed-call notification if one is present.
1543 * <p>
1544 * Requires that the method-caller be set as the system dialer app.
1545 * </p>
Yorke Leec61d1362015-09-21 17:25:25 -07001546 *
1547 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
Nancy Chen0eb1e402014-08-21 22:52:29 -07001548 */
Yorke Leec61d1362015-09-21 17:25:25 -07001549 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Nancy Chen0eb1e402014-08-21 22:52:29 -07001550 public void cancelMissedCallsNotification() {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001551 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001552 if (service != null) {
1553 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001554 service.cancelMissedCallsNotification(mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001555 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001556 Log.e(TAG, "Error calling ITelecomService#cancelMissedCallsNotification", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001557 }
1558 }
1559 }
1560
1561 /**
1562 * Brings the in-call screen to the foreground if there is an ongoing call. If there is
1563 * currently no ongoing call, then this method does nothing.
1564 * <p>
1565 * Requires that the method-caller be set as the system dialer app or have the
1566 * {@link android.Manifest.permission#READ_PHONE_STATE} permission.
1567 * </p>
1568 *
1569 * @param showDialpad Brings up the in-call dialpad as part of showing the in-call screen.
1570 */
Yorke Leec61d1362015-09-21 17:25:25 -07001571 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Nancy Chen0eb1e402014-08-21 22:52:29 -07001572 public void showInCallScreen(boolean showDialpad) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001573 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001574 if (service != null) {
1575 try {
Svet Ganov16a16892015-04-16 10:32:04 -07001576 service.showInCallScreen(showDialpad, mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001577 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001578 Log.e(TAG, "Error calling ITelecomService#showCallScreen", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001579 }
1580 }
1581 }
1582
Yorke Lee3e56ba12015-04-23 12:32:36 -07001583 /**
1584 * Places a new outgoing call to the provided address using the system telecom service with
1585 * the specified extras.
1586 *
1587 * This method is equivalent to placing an outgoing call using {@link Intent#ACTION_CALL},
1588 * except that the outgoing call will always be sent via the system telecom service. If
1589 * method-caller is either the user selected default dialer app or preloaded system dialer
1590 * app, then emergency calls will also be allowed.
1591 *
Tyler Gunnf5035432017-01-09 09:43:12 -08001592 * Placing a call via a managed {@link ConnectionService} requires permission:
1593 * {@link android.Manifest.permission#CALL_PHONE}
Yorke Lee3e56ba12015-04-23 12:32:36 -07001594 *
1595 * Usage example:
1596 * <pre>
1597 * Uri uri = Uri.fromParts("tel", "12345", null);
1598 * Bundle extras = new Bundle();
1599 * extras.putBoolean(TelecomManager.EXTRA_START_CALL_WITH_SPEAKERPHONE, true);
1600 * telecomManager.placeCall(uri, extras);
1601 * </pre>
1602 *
Santos Cordon7a060d52015-06-19 14:52:04 -07001603 * The following keys are supported in the supplied extras.
1604 * <ul>
1605 * <li>{@link #EXTRA_OUTGOING_CALL_EXTRAS}</li>
1606 * <li>{@link #EXTRA_PHONE_ACCOUNT_HANDLE}</li>
1607 * <li>{@link #EXTRA_START_CALL_WITH_SPEAKERPHONE}</li>
1608 * <li>{@link #EXTRA_START_CALL_WITH_VIDEO_STATE}</li>
1609 * </ul>
Tyler Gunnf5035432017-01-09 09:43:12 -08001610 * <p>
1611 * An app which implements the self-managed {@link ConnectionService} API uses
1612 * {@link #placeCall(Uri, Bundle)} to inform Telecom of a new outgoing call. A self-managed
1613 * {@link ConnectionService} must include {@link #EXTRA_PHONE_ACCOUNT_HANDLE} to specify its
1614 * associated {@link android.telecom.PhoneAccountHandle}.
1615 *
1616 * Self-managed {@link ConnectionService}s require permission
1617 * {@link android.Manifest.permission#MANAGE_OWN_CALLS}.
Santos Cordon7a060d52015-06-19 14:52:04 -07001618 *
Yorke Lee3e56ba12015-04-23 12:32:36 -07001619 * @param address The address to make the call to.
1620 * @param extras Bundle of extras to use with the call.
1621 */
Tyler Gunnf5035432017-01-09 09:43:12 -08001622 @RequiresPermission(anyOf = {android.Manifest.permission.CALL_PHONE,
1623 android.Manifest.permission.MANAGE_OWN_CALLS})
Yorke Lee3e56ba12015-04-23 12:32:36 -07001624 public void placeCall(Uri address, Bundle extras) {
1625 ITelecomService service = getTelecomService();
1626 if (service != null) {
Yorke Leea5d5c1d2015-05-05 16:25:55 -07001627 if (address == null) {
1628 Log.w(TAG, "Cannot place call to empty address.");
1629 }
Yorke Lee3e56ba12015-04-23 12:32:36 -07001630 try {
Yorke Leea5d5c1d2015-05-05 16:25:55 -07001631 service.placeCall(address, extras == null ? new Bundle() : extras,
1632 mContext.getOpPackageName());
Yorke Lee3e56ba12015-04-23 12:32:36 -07001633 } catch (RemoteException e) {
1634 Log.e(TAG, "Error calling ITelecomService#placeCall", e);
1635 }
1636 }
1637 }
1638
Santos Cordon91371dc2015-05-08 13:52:09 -07001639 /**
1640 * Enables and disables specified phone account.
1641 *
1642 * @param handle Handle to the phone account.
1643 * @param isEnabled Enable state of the phone account.
1644 * @hide
1645 */
1646 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001647 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Santos Cordon91371dc2015-05-08 13:52:09 -07001648 public void enablePhoneAccount(PhoneAccountHandle handle, boolean isEnabled) {
1649 ITelecomService service = getTelecomService();
1650 if (service != null) {
1651 try {
1652 service.enablePhoneAccount(handle, isEnabled);
1653 } catch (RemoteException e) {
1654 Log.e(TAG, "Error enablePhoneAbbount", e);
1655 }
1656 }
1657 }
1658
Hall Liu0464b9b2016-01-12 15:32:58 -08001659 /**
1660 * Dumps telecom analytics for uploading.
1661 *
1662 * @return
1663 * @hide
1664 */
1665 @SystemApi
1666 @RequiresPermission(Manifest.permission.DUMP)
Hall Liu057def52016-05-05 17:17:07 -07001667 public TelecomAnalytics dumpAnalytics() {
Hall Liu0464b9b2016-01-12 15:32:58 -08001668 ITelecomService service = getTelecomService();
Hall Liu057def52016-05-05 17:17:07 -07001669 TelecomAnalytics result = null;
Hall Liu0464b9b2016-01-12 15:32:58 -08001670 if (service != null) {
1671 try {
1672 result = service.dumpCallAnalytics();
1673 } catch (RemoteException e) {
1674 Log.e(TAG, "Error dumping call analytics", e);
1675 }
1676 }
1677 return result;
1678 }
1679
Abhijith Shastry1908cb842016-02-02 11:10:19 -08001680 /**
Abhijith Shastrya26fe992016-02-29 11:40:24 -08001681 * Creates the {@link Intent} which can be used with {@link Context#startActivity(Intent)} to
1682 * launch the activity to manage blocked numbers.
Abhijith Shastryec30d2f2016-03-04 16:46:08 -08001683 * <p> The activity will display the UI to manage blocked numbers only if
Abhijith Shastrya26fe992016-02-29 11:40:24 -08001684 * {@link android.provider.BlockedNumberContract#canCurrentUserBlockNumbers(Context)} returns
1685 * {@code true} for the current user.
1686 */
1687 public Intent createManageBlockedNumbersIntent() {
1688 ITelecomService service = getTelecomService();
1689 Intent result = null;
1690 if (service != null) {
1691 try {
1692 result = service.createManageBlockedNumbersIntent();
1693 } catch (RemoteException e) {
1694 Log.e(TAG, "Error calling ITelecomService#createManageBlockedNumbersIntent", e);
1695 }
1696 }
1697 return result;
1698 }
1699
Tyler Gunnf5035432017-01-09 09:43:12 -08001700 /**
1701 * Determines whether Telecom would permit an incoming call to be added via the
1702 * {@link #addNewIncomingCall(PhoneAccountHandle, Bundle)} API for the specified
1703 * {@link PhoneAccountHandle}.
1704 * <p>
1705 * A {@link ConnectionService} may not add a call for the specified {@link PhoneAccountHandle}
1706 * in the following situations:
1707 * <ul>
1708 * <li>{@link PhoneAccount} does not have property
1709 * {@link PhoneAccount#CAPABILITY_SELF_MANAGED} set (i.e. it is a managed
1710 * {@link ConnectionService}), and the active or held call limit has
1711 * been reached.</li>
1712 * <li>There is an ongoing emergency call.</li>
1713 * </ul>
1714 *
1715 * @param phoneAccountHandle The {@link PhoneAccountHandle} the call will be added for.
1716 * @return {@code true} if telecom will permit an incoming call to be added, {@code false}
1717 * otherwise.
1718 */
1719 public boolean isIncomingCallPermitted(PhoneAccountHandle phoneAccountHandle) {
Tyler Gunn44e01912017-01-31 10:49:05 -08001720 if (phoneAccountHandle == null) {
1721 return false;
1722 }
1723
Tyler Gunnf5035432017-01-09 09:43:12 -08001724 ITelecomService service = getTelecomService();
1725 if (service != null) {
1726 try {
1727 return service.isIncomingCallPermitted(phoneAccountHandle);
1728 } catch (RemoteException e) {
1729 Log.e(TAG, "Error isIncomingCallPermitted", e);
1730 }
1731 }
1732 return false;
1733 }
1734
1735 /**
1736 * Determines whether Telecom would permit an outgoing call to be placed via the
1737 * {@link #placeCall(Uri, Bundle)} API for the specified {@link PhoneAccountHandle}.
1738 * <p>
1739 * A {@link ConnectionService} may not place a call for the specified {@link PhoneAccountHandle}
1740 * in the following situations:
1741 * <ul>
1742 * <li>{@link PhoneAccount} does not have property
1743 * {@link PhoneAccount#CAPABILITY_SELF_MANAGED} set (i.e. it is a managed
1744 * {@link ConnectionService}), and the active, held or ringing call limit has
1745 * been reached.</li>
1746 * <li>{@link PhoneAccount} has property {@link PhoneAccount#CAPABILITY_SELF_MANAGED} set
1747 * (i.e. it is a self-managed {@link ConnectionService} and there is an ongoing call in
1748 * another {@link ConnectionService}.</li>
1749 * <li>There is an ongoing emergency call.</li>
1750 * </ul>
1751 *
1752 * @param phoneAccountHandle The {@link PhoneAccountHandle} the call will be added for.
1753 * @return {@code true} if telecom will permit an outgoing call to be placed, {@code false}
1754 * otherwise.
1755 */
1756 public boolean isOutgoingCallPermitted(PhoneAccountHandle phoneAccountHandle) {
1757 ITelecomService service = getTelecomService();
1758 if (service != null) {
1759 try {
1760 return service.isOutgoingCallPermitted(phoneAccountHandle);
1761 } catch (RemoteException e) {
1762 Log.e(TAG, "Error isOutgoingCallPermitted", e);
1763 }
1764 }
1765 return false;
1766 }
1767
Sanket Padawea8eddd42017-11-03 11:07:35 -07001768 /**
1769 * Called from the recipient side of a handover to indicate a desire to accept the handover
1770 * of an ongoing call to another {@link ConnectionService} identified by
1771 * {@link PhoneAccountHandle} destAcct. For managed {@link ConnectionService}s, the specified
1772 * {@link PhoneAccountHandle} must have been registered with {@link #registerPhoneAccount} and
1773 * the user must have enabled the corresponding {@link PhoneAccount}. This can be checked using
1774 * {@link #getPhoneAccount}. Self-managed {@link ConnectionService}s must have
1775 * {@link android.Manifest.permission#MANAGE_OWN_CALLS} to handover a call to it.
1776 * <p>
1777 * Once invoked, this method will cause the system to bind to the {@link ConnectionService}
1778 * associated with the {@link PhoneAccountHandle} destAcct and call
1779 * (See {@link ConnectionService#onCreateIncomingHandoverConnection}).
1780 * <p>
1781 * For a managed {@link ConnectionService}, a {@link SecurityException} will be thrown if either
1782 * the {@link PhoneAccountHandle} destAcct does not correspond to a registered
1783 * {@link PhoneAccount} or the associated {@link PhoneAccount} is not currently enabled by the
1784 * user.
1785 * <p>
1786 * For a self-managed {@link ConnectionService}, a {@link SecurityException} will be thrown if
1787 * the calling app does not have {@link android.Manifest.permission#MANAGE_OWN_CALLS}.
1788 *
1789 * @param srcAddr The {@link android.net.Uri} of the ongoing call to handover to the caller’s
1790 * {@link ConnectionService}.
1791 * @param videoState Video state after the handover.
1792 * @param destAcct The {@link PhoneAccountHandle} registered to the calling package.
1793 */
1794 public void acceptHandover(Uri srcAddr, int videoState, PhoneAccountHandle destAcct) {
1795 try {
1796 if (isServiceConnected()) {
1797 getTelecomService().acceptHandover(srcAddr, videoState, destAcct);
1798 }
1799 } catch (RemoteException e) {
1800 Log.e(TAG, "RemoteException acceptHandover: " + e);
1801 }
1802 }
Tyler Gunnf5035432017-01-09 09:43:12 -08001803
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001804 private ITelecomService getTelecomService() {
Hall Liue1bc2ec2015-10-09 15:58:37 -07001805 if (mTelecomServiceOverride != null) {
1806 return mTelecomServiceOverride;
1807 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001808 return ITelecomService.Stub.asInterface(ServiceManager.getService(Context.TELECOM_SERVICE));
Santos Cordon6c7a3882014-06-25 15:30:08 -07001809 }
Santos Cordon9eb45932014-06-27 12:28:43 -07001810
1811 private boolean isServiceConnected() {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001812 boolean isConnected = getTelecomService() != null;
Santos Cordon9eb45932014-06-27 12:28:43 -07001813 if (!isConnected) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001814 Log.w(TAG, "Telecom Service not found.");
Santos Cordon9eb45932014-06-27 12:28:43 -07001815 }
1816 return isConnected;
1817 }
Evan Charlton235c1592014-09-05 15:41:23 +00001818}