blob: 82da4475c1b9d6e9a6f0b1174495d4faf02352bb [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
Tyler Gunn00d737b2019-10-31 13:04:37 -070017import static android.Manifest.permission.READ_PRIVILEGED_PHONE_STATE;
18
Hall Liu0464b9b2016-01-12 15:32:58 -080019import android.Manifest;
Tyler Gunn6e3ecc42018-11-12 11:30:56 -080020import android.annotation.IntDef;
Fan Zhang5431ef52019-10-14 13:43:46 -070021import android.annotation.NonNull;
Slava Shklyaeve65e4012019-03-04 16:02:34 +000022import android.annotation.Nullable;
Yorke Leec61d13662015-09-21 17:25:25 -070023import android.annotation.RequiresPermission;
Jeff Sharkey910e0812017-04-21 16:29:27 -060024import android.annotation.SuppressAutoDoc;
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -060025import android.annotation.SuppressLint;
Santos Cordon6c7a3882014-06-25 15:30:08 -070026import android.annotation.SystemApi;
Jeff Sharkeyd86b8fe2017-06-02 17:36:26 -060027import android.annotation.SystemService;
Artur Satayev2ebb31c2020-01-08 12:24:36 +000028import android.compat.annotation.UnsupportedAppUsage;
Santos Cordon6c7a3882014-06-25 15:30:08 -070029import android.content.ComponentName;
Yorke Leeb4ce1432014-06-09 13:53:23 -070030import android.content.Context;
Yorke Lee3e56ba12015-04-23 12:32:36 -070031import android.content.Intent;
Nancy Chenb2299c12014-10-29 18:22:11 -070032import android.net.Uri;
Sanket Padawef6a9e5b2018-01-05 14:26:16 -080033import android.os.Build;
Santos Cordon96efb482014-07-19 14:57:05 -070034import android.os.Bundle;
Santos Cordon6c7a3882014-06-25 15:30:08 -070035import android.os.RemoteException;
36import android.os.ServiceManager;
Tyler Gunn7e45b722018-12-04 12:56:45 -080037import android.os.UserHandle;
Chen Xuc9d4ee12019-09-26 16:11:59 -070038import android.telephony.Annotation.CallState;
Brad Ebingere7833312019-05-07 10:55:55 -070039import android.telephony.SubscriptionManager;
Yorke Lee2ae312e2014-09-12 17:58:48 -070040import android.telephony.TelephonyManager;
Anthony Lee67279262014-10-27 11:28:40 -070041import android.text.TextUtils;
Santos Cordon6c7a3882014-06-25 15:30:08 -070042import android.util.Log;
Yorke Leeb4ce1432014-06-09 13:53:23 -070043
Tyler Gunnef9f6f92014-09-12 22:16:17 -070044import com.android.internal.telecom.ITelecomService;
Yorke Leeb4ce1432014-06-09 13:53:23 -070045
Tyler Gunn6e3ecc42018-11-12 11:30:56 -080046import java.lang.annotation.Retention;
47import java.lang.annotation.RetentionPolicy;
Jay Shrauner7746a942014-08-26 12:15:15 -070048import java.util.ArrayList;
Tyler Gunna1ed7d12014-09-08 09:52:22 -070049import java.util.Collections;
Ihab Awad807fe0a2014-07-09 12:30:52 -070050import java.util.List;
Philip P. Moltmann00cf9fb2020-01-06 16:41:38 -080051import java.util.Objects;
Tyler Gunn7e45b722018-12-04 12:56:45 -080052import java.util.concurrent.Executor;
Ihab Awad807fe0a2014-07-09 12:30:52 -070053
Yorke Leeb4ce1432014-06-09 13:53:23 -070054/**
Santos Cordond9e614f2014-10-28 13:10:36 -070055 * Provides access to information about active calls and registration/call-management functionality.
Evan Charlton0e094d92014-11-08 15:49:16 -080056 * Apps can use methods in this class to determine the current call state.
Santos Cordond9e614f2014-10-28 13:10:36 -070057 * <p>
58 * Apps do not instantiate this class directly; instead, they retrieve a reference to an instance
59 * through {@link Context#getSystemService Context.getSystemService(Context.TELECOM_SERVICE)}.
60 * <p>
61 * Note that access to some telecom information is permission-protected. Your app cannot access the
62 * protected information or gain access to protected functionality unless it has the appropriate
63 * permissions declared in its manifest file. Where permissions apply, they are noted in the method
64 * descriptions.
Yorke Leeb4ce1432014-06-09 13:53:23 -070065 */
Jeff Sharkey910e0812017-04-21 16:29:27 -060066@SuppressAutoDoc
Jeff Sharkeyd86b8fe2017-06-02 17:36:26 -060067@SystemService(Context.TELECOM_SERVICE)
Tyler Gunnef9f6f92014-09-12 22:16:17 -070068public class TelecomManager {
Ihab Awad807fe0a2014-07-09 12:30:52 -070069
Evan Charlton10197192014-07-19 15:00:29 -070070 /**
Santos Cordon96efb482014-07-19 14:57:05 -070071 * Activity action: Starts the UI for handing an incoming call. This intent starts the in-call
Tyler Gunnef9f6f92014-09-12 22:16:17 -070072 * UI by notifying the Telecom system that an incoming call exists for a specific call service
73 * (see {@link android.telecom.ConnectionService}). Telecom reads the Intent extras to find
74 * and bind to the appropriate {@link android.telecom.ConnectionService} which Telecom will
Santos Cordon96efb482014-07-19 14:57:05 -070075 * ultimately use to control and get information about the call.
76 * <p>
77 * Input: get*Extra field {@link #EXTRA_PHONE_ACCOUNT_HANDLE} contains the component name of the
Tyler Gunnef9f6f92014-09-12 22:16:17 -070078 * {@link android.telecom.ConnectionService} that Telecom should bind to. Telecom will then
Evan Charlton10197192014-07-19 15:00:29 -070079 * ask the connection service for more information about the call prior to showing any UI.
Brad Ebinger23b1c6d2017-01-12 13:10:40 -080080 *
81 * @deprecated Use {@link #addNewIncomingCall} instead.
Evan Charlton10197192014-07-19 15:00:29 -070082 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -070083 public static final String ACTION_INCOMING_CALL = "android.telecom.action.INCOMING_CALL";
Evan Charlton10197192014-07-19 15:00:29 -070084
85 /**
Yorke Leec3cf9822014-10-02 09:38:39 -070086 * Similar to {@link #ACTION_INCOMING_CALL}, but is used only by Telephony to add a new
87 * sim-initiated MO call for carrier testing.
Brad Ebinger23b1c6d2017-01-12 13:10:40 -080088 * @deprecated Use {@link #addNewUnknownCall} instead.
Yorke Leec3cf9822014-10-02 09:38:39 -070089 * @hide
90 */
91 public static final String ACTION_NEW_UNKNOWN_CALL = "android.telecom.action.NEW_UNKNOWN_CALL";
92
93 /**
Santos Cordon895d4b82015-06-25 16:41:48 -070094 * An {@link android.content.Intent} action sent by the telecom framework to start a
95 * configuration dialog for a registered {@link PhoneAccount}. There is no default dialog
96 * and each app that registers a {@link PhoneAccount} should provide one if desired.
97 * <p>
98 * A user can access the list of enabled {@link android.telecom.PhoneAccount}s through the Phone
99 * app's settings menu. For each entry, the settings app will add a click action. When
100 * triggered, the click-action will start this intent along with the extra
101 * {@link #EXTRA_PHONE_ACCOUNT_HANDLE} to indicate the {@link PhoneAccount} to configure. If the
102 * {@link PhoneAccount} package does not register an {@link android.app.Activity} for this
103 * intent, then it will not be sent.
Evan Charlton10197192014-07-19 15:00:29 -0700104 */
Santos Cordon895d4b82015-06-25 16:41:48 -0700105 public static final String ACTION_CONFIGURE_PHONE_ACCOUNT =
106 "android.telecom.action.CONFIGURE_PHONE_ACCOUNT";
Evan Charlton10197192014-07-19 15:00:29 -0700107
108 /**
Andrew Lee873cfbf2015-02-26 15:22:00 -0800109 * The {@link android.content.Intent} action used to show the call accessibility settings page.
110 */
111 public static final String ACTION_SHOW_CALL_ACCESSIBILITY_SETTINGS =
112 "android.telecom.action.SHOW_CALL_ACCESSIBILITY_SETTINGS";
113
114 /**
Yorke Lee3818a8922014-07-21 15:57:17 -0700115 * The {@link android.content.Intent} action used to show the call settings page.
116 */
117 public static final String ACTION_SHOW_CALL_SETTINGS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700118 "android.telecom.action.SHOW_CALL_SETTINGS";
Yorke Lee3818a8922014-07-21 15:57:17 -0700119
120 /**
Andrew Lee866080f2015-02-19 12:05:33 -0800121 * The {@link android.content.Intent} action used to show the respond via SMS settings page.
122 */
123 public static final String ACTION_SHOW_RESPOND_VIA_SMS_SETTINGS =
124 "android.telecom.action.SHOW_RESPOND_VIA_SMS_SETTINGS";
125
126 /**
Evan Charlton6d8604f2014-09-04 12:38:17 -0700127 * The {@link android.content.Intent} action used to show the settings page used to configure
128 * {@link PhoneAccount} preferences.
129 */
130 public static final String ACTION_CHANGE_PHONE_ACCOUNTS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700131 "android.telecom.action.CHANGE_PHONE_ACCOUNTS";
Evan Charlton6d8604f2014-09-04 12:38:17 -0700132
133 /**
Tyler Gunnd9da6ce2017-04-14 13:43:30 -0700134 * {@link android.content.Intent} action used indicate that a new phone account was just
135 * registered.
136 * <p>
137 * The Intent {@link Intent#getExtras() extras} will contain {@link #EXTRA_PHONE_ACCOUNT_HANDLE}
138 * to indicate which {@link PhoneAccount} was registered.
139 * <p>
140 * Will only be sent to the default dialer app (see {@link #getDefaultDialerPackage()}).
Santos Cordonc66f3ba2015-02-27 15:22:07 -0800141 */
Santos Cordonc66f3ba2015-02-27 15:22:07 -0800142 public static final String ACTION_PHONE_ACCOUNT_REGISTERED =
143 "android.telecom.action.PHONE_ACCOUNT_REGISTERED";
144
145 /**
Tyler Gunnd9da6ce2017-04-14 13:43:30 -0700146 * {@link android.content.Intent} action used indicate that a phone account was just
147 * unregistered.
148 * <p>
149 * The Intent {@link Intent#getExtras() extras} will contain {@link #EXTRA_PHONE_ACCOUNT_HANDLE}
150 * to indicate which {@link PhoneAccount} was unregistered.
151 * <p>
152 * Will only be sent to the default dialer app (see {@link #getDefaultDialerPackage()}).
Bryce Lee30b0aa02015-09-23 21:53:53 -0700153 */
Bryce Lee30b0aa02015-09-23 21:53:53 -0700154 public static final String ACTION_PHONE_ACCOUNT_UNREGISTERED =
155 "android.telecom.action.PHONE_ACCOUNT_UNREGISTERED";
156
157 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700158 * Activity action: Shows a dialog asking the user whether or not they want to replace the
159 * current default Dialer with the one specified in
160 * {@link #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME}.
161 *
162 * Usage example:
163 * <pre>
164 * Intent intent = new Intent(TelecomManager.ACTION_CHANGE_DEFAULT_DIALER);
165 * intent.putExtra(TelecomManager.EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME,
166 * getActivity().getPackageName());
167 * startActivity(intent);
168 * </pre>
Hai Zhang929085f2019-05-03 15:31:43 +0800169 * <p>
170 * This is no longer supported since Q, please use
171 * {@link android.app.role.RoleManager#createRequestRoleIntent(String)} with
172 * {@link android.app.role.RoleManager#ROLE_DIALER} instead.
Yorke Lee1011f482015-04-23 15:58:27 -0700173 */
174 public static final String ACTION_CHANGE_DEFAULT_DIALER =
175 "android.telecom.action.CHANGE_DEFAULT_DIALER";
176
177 /**
Yorke Lee107c4ce2015-06-15 12:08:24 -0700178 * Broadcast intent action indicating that the current default dialer has changed.
179 * The string extra {@link #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME} will contain the
180 * name of the package that the default dialer was changed to.
181 *
182 * @see #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME
183 */
184 public static final String ACTION_DEFAULT_DIALER_CHANGED =
185 "android.telecom.action.DEFAULT_DIALER_CHANGED";
186
187 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700188 * Extra value used to provide the package name for {@link #ACTION_CHANGE_DEFAULT_DIALER}.
189 */
190 public static final String EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME =
191 "android.telecom.extra.CHANGE_DEFAULT_DIALER_PACKAGE_NAME";
192
193 /**
tonyzhuff60f5e2018-10-01 19:14:59 +0800194 * Broadcast intent action indicating that the current default call screening app has changed.
Tyler Gunn78f77f62020-03-27 12:51:26 -0700195 * <p>
196 * Note: This intent is NEVER actually broadcast and will be deprecated in the future.
197 * <p>
198 * An app that want to know if it holds the
199 * {@link android.app.role.RoleManager#ROLE_CALL_SCREENING} role can use
200 * {@link android.app.role.RoleManager#isRoleHeld(String)} to confirm if it holds the role or
201 * not.
tonyzhuff60f5e2018-10-01 19:14:59 +0800202 */
203 public static final String ACTION_DEFAULT_CALL_SCREENING_APP_CHANGED =
204 "android.telecom.action.DEFAULT_CALL_SCREENING_APP_CHANGED";
205
206 /**
207 * Extra value used with {@link #ACTION_DEFAULT_CALL_SCREENING_APP_CHANGED} broadcast to
208 * indicate the ComponentName of the call screening app which has changed.
Tyler Gunn78f77f62020-03-27 12:51:26 -0700209 * <p>
210 * Note: This extra is NOT used and will be deprecated in the future.
tonyzhuff60f5e2018-10-01 19:14:59 +0800211 */
212 public static final String EXTRA_DEFAULT_CALL_SCREENING_APP_COMPONENT_NAME =
213 "android.telecom.extra.DEFAULT_CALL_SCREENING_APP_COMPONENT_NAME";
214
215 /**
216 * Extra value used with {@link #ACTION_DEFAULT_CALL_SCREENING_APP_CHANGED} broadcast to
217 * indicate whether an app is the default call screening app.
Tyler Gunn78f77f62020-03-27 12:51:26 -0700218 * <p>
219 * Note: This extra is NOT used and will be deprecated in the future.
tonyzhuff60f5e2018-10-01 19:14:59 +0800220 */
221 public static final String EXTRA_IS_DEFAULT_CALL_SCREENING_APP =
222 "android.telecom.extra.IS_DEFAULT_CALL_SCREENING_APP";
223
224 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700225 * Optional extra for {@link android.content.Intent#ACTION_CALL} containing a boolean that
226 * determines whether the speakerphone should be automatically turned on for an outgoing call.
Evan Charlton10197192014-07-19 15:00:29 -0700227 */
228 public static final String EXTRA_START_CALL_WITH_SPEAKERPHONE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700229 "android.telecom.extra.START_CALL_WITH_SPEAKERPHONE";
Evan Charlton10197192014-07-19 15:00:29 -0700230
231 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700232 * Optional extra for {@link android.content.Intent#ACTION_CALL} containing an integer that
233 * determines the desired video state for an outgoing call.
Santos Cordon96efb482014-07-19 14:57:05 -0700234 * Valid options:
Yorke Lee32f24732015-05-12 16:18:03 -0700235 * {@link VideoProfile#STATE_AUDIO_ONLY},
236 * {@link VideoProfile#STATE_BIDIRECTIONAL},
237 * {@link VideoProfile#STATE_RX_ENABLED},
238 * {@link VideoProfile#STATE_TX_ENABLED}.
Evan Charlton10197192014-07-19 15:00:29 -0700239 */
240 public static final String EXTRA_START_CALL_WITH_VIDEO_STATE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700241 "android.telecom.extra.START_CALL_WITH_VIDEO_STATE";
Evan Charlton10197192014-07-19 15:00:29 -0700242
243 /**
Tyler Gunn37653562017-03-13 18:15:15 -0700244 * Optional extra for {@link #addNewIncomingCall(PhoneAccountHandle, Bundle)} containing an
245 * integer that determines the requested video state for an incoming call.
246 * Valid options:
247 * {@link VideoProfile#STATE_AUDIO_ONLY},
248 * {@link VideoProfile#STATE_BIDIRECTIONAL},
249 * {@link VideoProfile#STATE_RX_ENABLED},
250 * {@link VideoProfile#STATE_TX_ENABLED}.
251 */
252 public static final String EXTRA_INCOMING_VIDEO_STATE =
253 "android.telecom.extra.INCOMING_VIDEO_STATE";
254
255 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700256 * The extra used with an {@link android.content.Intent#ACTION_CALL} and
257 * {@link android.content.Intent#ACTION_DIAL} {@code Intent} to specify a
258 * {@link PhoneAccountHandle} to use when making the call.
Evan Charlton10197192014-07-19 15:00:29 -0700259 * <p class="note">
Santos Cordon96efb482014-07-19 14:57:05 -0700260 * Retrieve with {@link android.content.Intent#getParcelableExtra(String)}.
Evan Charlton10197192014-07-19 15:00:29 -0700261 */
Evan Charlton6eb262c2014-07-19 18:18:19 -0700262 public static final String EXTRA_PHONE_ACCOUNT_HANDLE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700263 "android.telecom.extra.PHONE_ACCOUNT_HANDLE";
Evan Charlton10197192014-07-19 15:00:29 -0700264
265 /**
Tyler Gunn335ff2e2015-07-30 14:18:33 -0700266 * Optional extra for {@link android.content.Intent#ACTION_CALL} containing a string call
267 * subject which will be associated with an outgoing call. Should only be specified if the
268 * {@link PhoneAccount} supports the capability {@link PhoneAccount#CAPABILITY_CALL_SUBJECT}.
269 */
270 public static final String EXTRA_CALL_SUBJECT = "android.telecom.extra.CALL_SUBJECT";
271
272 /**
Yorke Lee04ea7d32015-06-05 15:59:18 -0700273 * The extra used by a {@link ConnectionService} to provide the handle of the caller that
274 * has initiated a new incoming call.
275 */
Yorke Lee02fb5bc2015-06-09 12:27:36 -0700276 public static final String EXTRA_INCOMING_CALL_ADDRESS =
277 "android.telecom.extra.INCOMING_CALL_ADDRESS";
Yorke Lee04ea7d32015-06-05 15:59:18 -0700278
279 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700280 * Optional extra for {@link #ACTION_INCOMING_CALL} containing a {@link Bundle} which contains
281 * metadata about the call. This {@link Bundle} will be returned to the
282 * {@link ConnectionService}.
Evan Charlton10197192014-07-19 15:00:29 -0700283 */
284 public static final String EXTRA_INCOMING_CALL_EXTRAS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700285 "android.telecom.extra.INCOMING_CALL_EXTRAS";
Evan Charlton10197192014-07-19 15:00:29 -0700286
287 /**
Joseph Pirozzo40ea5ee2018-01-02 16:15:23 -0800288 * Optional extra for {@link #ACTION_INCOMING_CALL} containing a boolean to indicate that the
289 * call has an externally generated ringer. Used by the HfpClientConnectionService when In Band
290 * Ringtone is enabled to prevent two ringers from being generated.
291 * @hide
292 */
293 public static final String EXTRA_CALL_EXTERNAL_RINGER =
294 "android.telecom.extra.CALL_EXTERNAL_RINGER";
295
296 /**
Nancy Chen10798dc2014-08-08 14:00:25 -0700297 * Optional extra for {@link android.content.Intent#ACTION_CALL} and
298 * {@link android.content.Intent#ACTION_DIAL} {@code Intent} containing a {@link Bundle}
299 * which contains metadata about the call. This {@link Bundle} will be saved into
Santos Cordon7a060d52015-06-19 14:52:04 -0700300 * {@code Call.Details} and passed to the {@link ConnectionService} when placing the call.
Nancy Chen10798dc2014-08-08 14:00:25 -0700301 */
302 public static final String EXTRA_OUTGOING_CALL_EXTRAS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700303 "android.telecom.extra.OUTGOING_CALL_EXTRAS";
Nancy Chen10798dc2014-08-08 14:00:25 -0700304
305 /**
sqian6d9e7452019-02-08 21:42:15 -0800306 * An optional boolean extra on {@link android.content.Intent#ACTION_CALL_EMERGENCY} to tell
307 * whether the user's dial intent is emergency; this is required to specify when the dialed
308 * number is ambiguous, identified as both emergency number and any other non-emergency number;
309 * e.g. in some situation, 611 could be both an emergency number in a country and a
310 * non-emergency number of a carrier's customer service hotline.
311 *
312 * @hide
313 */
314 @SystemApi
315 public static final String EXTRA_IS_USER_INTENT_EMERGENCY_CALL =
316 "android.telecom.extra.IS_USER_INTENT_EMERGENCY_CALL";
317
318 /**
Hall Liuba820bd2020-01-22 17:17:13 -0800319 * A mandatory extra containing a {@link Uri} to be passed in when calling
320 * {@link #addNewUnknownCall(PhoneAccountHandle, Bundle)}. The {@link Uri} value indicates
321 * the remote handle of the new call.
Yorke Leec3cf9822014-10-02 09:38:39 -0700322 * @hide
323 */
Hall Liu2ef04112020-09-14 18:34:10 -0700324 @SystemApi
Yorke Leec3cf9822014-10-02 09:38:39 -0700325 public static final String EXTRA_UNKNOWN_CALL_HANDLE =
326 "android.telecom.extra.UNKNOWN_CALL_HANDLE";
327
328 /**
Sailesh Nepalda6bb382016-04-14 19:51:46 -0700329 * Optional extra for incoming and outgoing calls containing a long which specifies the time the
330 * call was created. This value is in milliseconds since boot.
Hall Liudbb17f12020-03-10 18:28:58 -0700331 * @hide
Sailesh Nepalda6bb382016-04-14 19:51:46 -0700332 */
333 public static final String EXTRA_CALL_CREATED_TIME_MILLIS =
334 "android.telecom.extra.CALL_CREATED_TIME_MILLIS";
335
336 /**
Jack Yu1e1ff942019-12-23 15:19:56 -0800337 * Optional extra for incoming and outgoing calls containing a long which specifies the Epoch
338 * time the call was created.
339 * @hide
340 */
341 public static final String EXTRA_CALL_CREATED_EPOCH_TIME_MILLIS =
342 "android.telecom.extra.CALL_CREATED_EPOCH_TIME_MILLIS";
343
344 /**
Sailesh Nepalda6bb382016-04-14 19:51:46 -0700345 * Optional extra for incoming and outgoing calls containing a long which specifies the time
346 * telecom began routing the call. This value is in milliseconds since boot.
347 * @hide
348 */
349 public static final String EXTRA_CALL_TELECOM_ROUTING_START_TIME_MILLIS =
350 "android.telecom.extra.CALL_TELECOM_ROUTING_START_TIME_MILLIS";
351
352 /**
353 * Optional extra for incoming and outgoing calls containing a long which specifies the time
354 * telecom finished routing the call. This value is in milliseconds since boot.
355 * @hide
356 */
357 public static final String EXTRA_CALL_TELECOM_ROUTING_END_TIME_MILLIS =
358 "android.telecom.extra.CALL_TELECOM_ROUTING_END_TIME_MILLIS";
359
360 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700361 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
362 * containing the disconnect code.
Evan Charlton10197192014-07-19 15:00:29 -0700363 */
364 public static final String EXTRA_CALL_DISCONNECT_CAUSE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700365 "android.telecom.extra.CALL_DISCONNECT_CAUSE";
Evan Charlton10197192014-07-19 15:00:29 -0700366
367 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700368 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
369 * containing the disconnect message.
Evan Charlton10197192014-07-19 15:00:29 -0700370 */
371 public static final String EXTRA_CALL_DISCONNECT_MESSAGE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700372 "android.telecom.extra.CALL_DISCONNECT_MESSAGE";
Evan Charlton10197192014-07-19 15:00:29 -0700373
374 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700375 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
376 * containing the component name of the associated connection service.
Evan Charlton0e094d92014-11-08 15:49:16 -0800377 * @hide
Evan Charlton10197192014-07-19 15:00:29 -0700378 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800379 @SystemApi
Evan Charlton10197192014-07-19 15:00:29 -0700380 public static final String EXTRA_CONNECTION_SERVICE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700381 "android.telecom.extra.CONNECTION_SERVICE";
Evan Charlton10197192014-07-19 15:00:29 -0700382
383 /**
Hall Liuba820bd2020-01-22 17:17:13 -0800384 * Optional extra for communicating the call technology used by a {@link ConnectionService}
385 * to Telecom. Valid values are:
386 * <ul>
387 * <li>{@link TelephonyManager#PHONE_TYPE_CDMA}</li>
388 * <li>{@link TelephonyManager#PHONE_TYPE_GSM}</li>
389 * <li>{@link TelephonyManager#PHONE_TYPE_IMS}</li>
390 * <li>{@link TelephonyManager#PHONE_TYPE_THIRD_PARTY}</li>
391 * <li>{@link TelephonyManager#PHONE_TYPE_SIP}</li>
392 * </ul>
Hall Liu90f62902015-11-19 16:19:24 -0800393 * @hide
394 */
Hall Liu2ef04112020-09-14 18:34:10 -0700395 @SystemApi
Hall Liu90f62902015-11-19 16:19:24 -0800396 public static final String EXTRA_CALL_TECHNOLOGY_TYPE =
397 "android.telecom.extra.CALL_TECHNOLOGY_TYPE";
398
399 /**
Wei Huang7f7f72e2018-05-30 19:21:36 +0800400 * Optional extra for communicating the call network technology used by a
401 * {@link android.telecom.Connection} to Telecom and InCallUI.
402 *
Andrew Sapperstein8fe35e52020-04-28 12:29:20 -0700403 * {@code NETWORK_TYPE_*} in {@link android.telephony.TelephonyManager}.
Wei Huang7f7f72e2018-05-30 19:21:36 +0800404 */
405 public static final String EXTRA_CALL_NETWORK_TYPE =
406 "android.telecom.extra.CALL_NETWORK_TYPE";
407
408 /**
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700409 * An optional {@link android.content.Intent#ACTION_CALL} intent extra denoting the
410 * package name of the app specifying an alternative gateway for the call.
411 * The value is a string.
412 *
413 * (The following comment corresponds to the all GATEWAY_* extras)
414 * An app which sends the {@link android.content.Intent#ACTION_CALL} intent can specify an
415 * alternative address to dial which is different from the one specified and displayed to
416 * the user. This alternative address is referred to as the gateway address.
417 */
418 public static final String GATEWAY_PROVIDER_PACKAGE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700419 "android.telecom.extra.GATEWAY_PROVIDER_PACKAGE";
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700420
421 /**
422 * An optional {@link android.content.Intent#ACTION_CALL} intent extra corresponding to the
423 * original address to dial for the call. This is used when an alternative gateway address is
424 * provided to recall the original address.
425 * The value is a {@link android.net.Uri}.
426 *
427 * (See {@link #GATEWAY_PROVIDER_PACKAGE} for details)
428 */
429 public static final String GATEWAY_ORIGINAL_ADDRESS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700430 "android.telecom.extra.GATEWAY_ORIGINAL_ADDRESS";
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700431
432 /**
Evan Charlton10197192014-07-19 15:00:29 -0700433 * The number which the party on the other side of the line will see (and use to return the
434 * call).
435 * <p>
Santos Cordon96efb482014-07-19 14:57:05 -0700436 * {@link ConnectionService}s which interact with {@link RemoteConnection}s should only populate
437 * this if the {@link android.telephony.TelephonyManager#getLine1Number()} value, as that is the
438 * user's expected caller ID.
Evan Charlton10197192014-07-19 15:00:29 -0700439 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700440 public static final String EXTRA_CALL_BACK_NUMBER = "android.telecom.extra.CALL_BACK_NUMBER";
Evan Charlton10197192014-07-19 15:00:29 -0700441
442 /**
Hall Liu8f613fb2017-02-14 18:11:11 -0800443 * The number of milliseconds that Telecom should wait after disconnecting a call via the
444 * ACTION_NEW_OUTGOING_CALL broadcast, in order to wait for the app which cancelled the call
445 * to make a new one.
446 * @hide
447 */
448 public static final String EXTRA_NEW_OUTGOING_CALL_CANCEL_TIMEOUT =
449 "android.telecom.extra.NEW_OUTGOING_CALL_CANCEL_TIMEOUT";
450
451 /**
Tyler Gunn9f6f0472017-04-17 18:25:22 -0700452 * Boolean extra specified to indicate that the intention of adding a call is to handover an
Tyler Gunn8bf76572017-04-06 15:30:08 -0700453 * existing call from the user's device to a different {@link PhoneAccount}.
454 * <p>
Tyler Gunn9f6f0472017-04-17 18:25:22 -0700455 * Used when calling {@link #addNewIncomingCall(PhoneAccountHandle, Bundle)}
456 * to indicate to Telecom that the purpose of adding a new incoming call is to handover an
457 * existing call from the user's device to a different {@link PhoneAccount}. This occurs on
458 * the receiving side of a handover.
459 * <p>
460 * Used when Telecom calls
461 * {@link ConnectionService#onCreateOutgoingConnection(PhoneAccountHandle, ConnectionRequest)}
462 * to indicate that the purpose of Telecom requesting a new outgoing connection it to request
463 * a handover to this {@link ConnectionService} from an ongoing call on the user's device. This
464 * occurs on the initiating side of a handover.
465 * <p>
Tyler Gunn727c6bd2017-04-11 09:51:40 -0700466 * The phone number of the call used by Telecom to determine which call should be handed over.
Tyler Gunn8bf76572017-04-06 15:30:08 -0700467 * @hide
Tyler Gunn6e3ecc42018-11-12 11:30:56 -0800468 * @deprecated Use the public handover APIs. See
469 * {@link Call#handoverTo(PhoneAccountHandle, int, Bundle)} for more information.
Tyler Gunn8bf76572017-04-06 15:30:08 -0700470 */
Tyler Gunn6e3ecc42018-11-12 11:30:56 -0800471 @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 119305590)
Tyler Gunn8bf76572017-04-06 15:30:08 -0700472 public static final String EXTRA_IS_HANDOVER = "android.telecom.extra.IS_HANDOVER";
473
474 /**
Tyler Gunn79bc1ec2018-01-22 15:17:54 -0800475 * When {@code true} indicates that a request to create a new connection is for the purpose of
476 * a handover. Note: This is used with the
477 * {@link android.telecom.Call#handoverTo(PhoneAccountHandle, int, Bundle)} API as part of the
478 * internal communication mechanism with the {@link android.telecom.ConnectionService}. It is
479 * not the same as the legacy {@link #EXTRA_IS_HANDOVER} extra.
480 * @hide
481 */
482 public static final String EXTRA_IS_HANDOVER_CONNECTION =
483 "android.telecom.extra.IS_HANDOVER_CONNECTION";
484
485 /**
Tyler Gunn3af38692017-05-26 13:30:09 -0700486 * Parcelable extra used with {@link #EXTRA_IS_HANDOVER} to indicate the source
487 * {@link PhoneAccountHandle} when initiating a handover which {@link ConnectionService}
488 * the handover is from.
489 * @hide
490 */
491 public static final String EXTRA_HANDOVER_FROM_PHONE_ACCOUNT =
492 "android.telecom.extra.HANDOVER_FROM_PHONE_ACCOUNT";
493
494 /**
Tyler Gunn9f6f0472017-04-17 18:25:22 -0700495 * Extra key specified in the {@link ConnectionRequest#getExtras()} when Telecom calls
496 * {@link ConnectionService#onCreateOutgoingConnection(PhoneAccountHandle, ConnectionRequest)}
497 * to inform the {@link ConnectionService} what the initial {@link CallAudioState} of the
498 * {@link Connection} will be.
499 * @hide
500 */
501 public static final String EXTRA_CALL_AUDIO_STATE = "android.telecom.extra.CALL_AUDIO_STATE";
502
503 /**
Hall Liu95d55872017-01-25 17:12:49 -0800504 * A boolean extra, which when set on the {@link Intent#ACTION_CALL} intent or on the bundle
505 * passed into {@link #placeCall(Uri, Bundle)}, indicates that the call should be initiated with
506 * an RTT session open. See {@link android.telecom.Call.RttCall} for more information on RTT.
507 */
508 public static final String EXTRA_START_CALL_WITH_RTT =
509 "android.telecom.extra.START_CALL_WITH_RTT";
510
511 /**
Grace Jia91cec6e2019-12-16 14:23:05 -0800512 * Start an activity indicating that the completion of an outgoing call or an incoming call
513 * which was not blocked by the {@link CallScreeningService}, and which was NOT terminated
514 * while the call was in {@link Call#STATE_AUDIO_PROCESSING}.
515 *
516 * The {@link Uri} extra {@link #EXTRA_HANDLE} will contain the uri handle(phone number) for the
517 * call which completed.
518 *
519 * The integer extra {@link #EXTRA_DISCONNECT_CAUSE} will indicate the reason for the call
520 * disconnection. See {@link #EXTRA_DISCONNECT_CAUSE} for more information.
521 *
522 * The integer extra {@link #EXTRA_CALL_DURATION} will indicate the duration of the call. See
523 * {@link #EXTRA_CALL_DURATION} for more information.
524 */
525 public static final String ACTION_POST_CALL = "android.telecom.action.POST_CALL";
526
527 /**
528 * A {@link Uri} extra, which when set on the {@link #ACTION_POST_CALL} intent, indicates the
529 * uri handle(phone number) of the completed call.
530 */
531 public static final String EXTRA_HANDLE = "android.telecom.extra.HANDLE";
532
533 /**
534 * A integer value provided for completed calls to indicate the reason for the call
535 * disconnection.
536 * <p>
537 * Allowed values:
538 * <ul>
539 * <li>{@link DisconnectCause#UNKNOWN}</li>
540 * <li>{@link DisconnectCause#LOCAL}</li>
541 * <li>{@link DisconnectCause#REMOTE}</li>
542 * <li>{@link DisconnectCause#REJECTED}</li>
543 * <li>{@link DisconnectCause#MISSED}</li>
544 * </ul>
545 * </p>
546 */
547 public static final String EXTRA_DISCONNECT_CAUSE = "android.telecom.extra.DISCONNECT_CAUSE";
548
549 /**
550 * A integer value provided for completed calls to indicate the duration of the call.
551 * <p>
552 * Allowed values:
553 * <ul>
554 * <li>{@link #DURATION_VERY_SHORT}</li>
555 * <li>{@link #DURATION_SHORT}</li>
556 * <li>{@link #DURATION_MEDIUM}</li>
557 * <li>{@link #DURATION_LONG}</li>
558 * </ul>
559 * </p>
560 */
561 public static final String EXTRA_CALL_DURATION = "android.telecom.extra.CALL_DURATION";
562
563 /**
564 * A integer value for {@link #EXTRA_CALL_DURATION}, indicates the duration of the completed
565 * call was < 3 seconds.
566 */
567 public static final int DURATION_VERY_SHORT = 0;
568
569 /**
570 * A integer value for {@link #EXTRA_CALL_DURATION}, indicates the duration of the completed
571 * call was >= 3 seconds and < 60 seconds.
572 */
573 public static final int DURATION_SHORT = 1;
574
575 /**
576 * A integer value for {@link #EXTRA_CALL_DURATION}, indicates the duration of the completed
577 * call was >= 60 seconds and < 120 seconds.
578 */
579 public static final int DURATION_MEDIUM = 2;
580
581 /**
582 * A integer value for {@link #EXTRA_CALL_DURATION}, indicates the duration of the completed
583 * call was >= 120 seconds.
584 */
585 public static final int DURATION_LONG = 3;
586
587 /**
588 * The threshold between {@link #DURATION_VERY_SHORT} calls and {@link #DURATION_SHORT} calls in
589 * milliseconds.
590 * @hide
591 */
592 public static final long VERY_SHORT_CALL_TIME_MS = 3000;
593
594 /**
595 * The threshold between {@link #DURATION_SHORT} calls and {@link #DURATION_MEDIUM} calls in
596 * milliseconds.
597 * @hide
598 */
599 public static final long SHORT_CALL_TIME_MS = 60000;
600
601 /**
602 * The threshold between {@link #DURATION_MEDIUM} calls and {@link #DURATION_LONG} calls in
603 * milliseconds.
604 * @hide
605 */
606 public static final long MEDIUM_CALL_TIME_MS = 120000;
607
608 /**
Santos Cordonf2600eb2015-06-22 15:02:20 -0700609 * A boolean meta-data value indicating whether an {@link InCallService} implements an
610 * in-call user interface. Dialer implementations (see {@link #getDefaultDialerPackage()}) which
611 * would also like to replace the in-call interface should set this meta-data to {@code true} in
612 * the manifest registration of their {@link InCallService}.
613 */
614 public static final String METADATA_IN_CALL_SERVICE_UI = "android.telecom.IN_CALL_SERVICE_UI";
615
616 /**
Santos Cordon88881552015-12-10 17:29:54 -0800617 * A boolean meta-data value indicating whether an {@link InCallService} implements an
618 * in-call user interface to be used while the device is in car-mode (see
Hector Dearman923382c2018-12-13 16:42:33 +0000619 * {@link android.content.res.Configuration#UI_MODE_TYPE_CAR}).
Santos Cordon88881552015-12-10 17:29:54 -0800620 */
621 public static final String METADATA_IN_CALL_SERVICE_CAR_MODE_UI =
622 "android.telecom.IN_CALL_SERVICE_CAR_MODE_UI";
623
624 /**
Sailesh Nepal9c2618b2016-01-23 16:28:22 -0800625 * A boolean meta-data value indicating whether an {@link InCallService} implements ringing.
626 * Dialer implementations (see {@link #getDefaultDialerPackage()}) which would also like to
627 * override the system provided ringing should set this meta-data to {@code true} in the
628 * manifest registration of their {@link InCallService}.
Tyler Gunn556d2402019-04-10 08:59:43 -0700629 * <p>
630 * When {@code true}, it is the {@link InCallService}'s responsibility to play a ringtone for
631 * all incoming calls.
Sailesh Nepal9c2618b2016-01-23 16:28:22 -0800632 */
633 public static final String METADATA_IN_CALL_SERVICE_RINGING =
634 "android.telecom.IN_CALL_SERVICE_RINGING";
635
636 /**
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700637 * A boolean meta-data value indicating whether an {@link InCallService} wants to be informed of
638 * calls which have the {@link Call.Details#PROPERTY_IS_EXTERNAL_CALL} property. An external
639 * call is one which a {@link ConnectionService} knows about, but is not connected to directly.
640 * Dialer implementations (see {@link #getDefaultDialerPackage()}) which would like to be
641 * informed of external calls should set this meta-data to {@code true} in the manifest
642 * registration of their {@link InCallService}. By default, the {@link InCallService} will NOT
643 * be informed of external calls.
644 */
645 public static final String METADATA_INCLUDE_EXTERNAL_CALLS =
646 "android.telecom.INCLUDE_EXTERNAL_CALLS";
647
648 /**
Tyler Gunn24e18332017-02-10 09:42:49 -0800649 * A boolean meta-data value indicating whether an {@link InCallService} wants to be informed of
650 * calls which have the {@link Call.Details#PROPERTY_SELF_MANAGED} property. A self-managed
651 * call is one which originates from a self-managed {@link ConnectionService} which has chosen
652 * to implement its own call user interface. An {@link InCallService} implementation which
653 * would like to be informed of external calls should set this meta-data to {@code true} in the
654 * manifest registration of their {@link InCallService}. By default, the {@link InCallService}
655 * will NOT be informed about self-managed calls.
656 * <p>
657 * An {@link InCallService} which receives self-managed calls is free to view and control the
658 * state of calls in the self-managed {@link ConnectionService}. An example use-case is
Tyler Gunn37653562017-03-13 18:15:15 -0700659 * exposing these calls to an automotive device via its companion app.
660 * <p>
661 * This meta-data can only be set for an {@link InCallService} which also sets
662 * {@link #METADATA_IN_CALL_SERVICE_UI}. Only the default phone/dialer app, or a car-mode
663 * {@link InCallService} can see self-managed calls.
Tyler Gunn24e18332017-02-10 09:42:49 -0800664 * <p>
665 * See also {@link Connection#PROPERTY_SELF_MANAGED}.
666 */
667 public static final String METADATA_INCLUDE_SELF_MANAGED_CALLS =
668 "android.telecom.INCLUDE_SELF_MANAGED_CALLS";
669
670 /**
Evan Charlton10197192014-07-19 15:00:29 -0700671 * The dual tone multi-frequency signaling character sent to indicate the dialing system should
672 * pause for a predefined period.
673 */
674 public static final char DTMF_CHARACTER_PAUSE = ',';
675
676 /**
677 * The dual-tone multi-frequency signaling character sent to indicate the dialing system should
678 * wait for user confirmation before proceeding.
679 */
680 public static final char DTMF_CHARACTER_WAIT = ';';
681
682 /**
Tyler Gunn6e3ecc42018-11-12 11:30:56 -0800683 * @hide
684 */
685 @IntDef(prefix = { "TTY_MODE_" },
686 value = {TTY_MODE_OFF, TTY_MODE_FULL, TTY_MODE_HCO, TTY_MODE_VCO})
687 @Retention(RetentionPolicy.SOURCE)
688 public @interface TtyMode {}
689
690 /**
Evan Charlton10197192014-07-19 15:00:29 -0700691 * TTY (teletypewriter) mode is off.
692 *
693 * @hide
694 */
Tyler Gunn6e3ecc42018-11-12 11:30:56 -0800695 @SystemApi
Evan Charlton10197192014-07-19 15:00:29 -0700696 public static final int TTY_MODE_OFF = 0;
697
698 /**
699 * TTY (teletypewriter) mode is on. The speaker is off and the microphone is muted. The user
700 * will communicate with the remote party by sending and receiving text messages.
701 *
702 * @hide
703 */
Tyler Gunn6e3ecc42018-11-12 11:30:56 -0800704 @SystemApi
Evan Charlton10197192014-07-19 15:00:29 -0700705 public static final int TTY_MODE_FULL = 1;
706
707 /**
708 * TTY (teletypewriter) mode is in hearing carryover mode (HCO). The microphone is muted but the
709 * speaker is on. The user will communicate with the remote party by sending text messages and
710 * hearing an audible reply.
711 *
712 * @hide
713 */
Tyler Gunn6e3ecc42018-11-12 11:30:56 -0800714 @SystemApi
Evan Charlton10197192014-07-19 15:00:29 -0700715 public static final int TTY_MODE_HCO = 2;
716
717 /**
718 * TTY (teletypewriter) mode is in voice carryover mode (VCO). The speaker is off but the
719 * microphone is still on. User will communicate with the remote party by speaking and receiving
720 * text message replies.
721 *
722 * @hide
723 */
Tyler Gunn6e3ecc42018-11-12 11:30:56 -0800724 @SystemApi
Evan Charlton10197192014-07-19 15:00:29 -0700725 public static final int TTY_MODE_VCO = 3;
726
727 /**
Hall Liu2ef04112020-09-14 18:34:10 -0700728 * Broadcast intent action indicating that the current TTY mode has changed.
Evan Charlton10197192014-07-19 15:00:29 -0700729 *
Hall Liu2ef04112020-09-14 18:34:10 -0700730 * This intent will contain {@link #EXTRA_CURRENT_TTY_MODE} as an intent extra, giving the new
731 * TTY mode.
Evan Charlton10197192014-07-19 15:00:29 -0700732 * @hide
733 */
Hall Liu2ef04112020-09-14 18:34:10 -0700734 @SystemApi
Evan Charlton10197192014-07-19 15:00:29 -0700735 public static final String ACTION_CURRENT_TTY_MODE_CHANGED =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700736 "android.telecom.action.CURRENT_TTY_MODE_CHANGED";
Evan Charlton10197192014-07-19 15:00:29 -0700737
738 /**
Hall Liu2ef04112020-09-14 18:34:10 -0700739 * Integer extra key that indicates the current TTY mode.
740 *
741 * Used with {@link #ACTION_CURRENT_TTY_MODE_CHANGED}.
742 *
743 * Valid modes are:
744 * <ul>
745 * <li>{@link #TTY_MODE_OFF}</li>
746 * <li>{@link #TTY_MODE_FULL}</li>
747 * <li>{@link #TTY_MODE_HCO}</li>
748 * <li>{@link #TTY_MODE_VCO}</li>
749 * </ul>
750 *
751 * This TTY mode is distinct from the one sent via {@link #ACTION_TTY_PREFERRED_MODE_CHANGED},
752 * since the current TTY mode will always be {@link #TTY_MODE_OFF}unless a TTY terminal is
753 * plugged into the device.
754 * @hide
755 */
Hall Liu2ef04112020-09-14 18:34:10 -0700756 @SystemApi
757 public static final String EXTRA_CURRENT_TTY_MODE =
758 "android.telecom.extra.CURRENT_TTY_MODE";
759
760 /**
761 * Broadcast intent action indicating that the TTY preferred operating mode has changed.
762 *
763 * This intent will contain {@link #EXTRA_TTY_PREFERRED_MODE} as an intent extra, giving the new
764 * preferred TTY mode.
765 * @hide
766 */
Hall Liu2ef04112020-09-14 18:34:10 -0700767 @SystemApi
768 public static final String ACTION_TTY_PREFERRED_MODE_CHANGED =
769 "android.telecom.action.TTY_PREFERRED_MODE_CHANGED";
770
771 /**
772 * Integer extra key that indicates the preferred TTY mode.
773 *
774 * Used with {@link #ACTION_TTY_PREFERRED_MODE_CHANGED}.
775 *
Evan Charlton10197192014-07-19 15:00:29 -0700776 * Valid modes are:
Hall Liuba820bd2020-01-22 17:17:13 -0800777 * <ul>
778 * <li>{@link #TTY_MODE_OFF}</li>
779 * <li>{@link #TTY_MODE_FULL}</li>
780 * <li>{@link #TTY_MODE_HCO}</li>
781 * <li>{@link #TTY_MODE_VCO}</li>
782 * </ul>
Evan Charlton10197192014-07-19 15:00:29 -0700783 * @hide
784 */
Hall Liu2ef04112020-09-14 18:34:10 -0700785 @SystemApi
Evan Charlton10197192014-07-19 15:00:29 -0700786 public static final String EXTRA_TTY_PREFERRED_MODE =
Hall Liuba820bd2020-01-22 17:17:13 -0800787 "android.telecom.extra.TTY_PREFERRED_MODE";
Evan Charlton10197192014-07-19 15:00:29 -0700788
Nancy Chen9d568c02014-09-08 14:17:59 -0700789 /**
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700790 * Broadcast intent action for letting custom component know to show the missed call
Sailesh Nepalbe15ad92016-01-21 19:26:20 -0800791 * notification. If no custom component exists then this is sent to the default dialer which
792 * should post a missed-call notification.
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700793 */
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700794 public static final String ACTION_SHOW_MISSED_CALLS_NOTIFICATION =
795 "android.telecom.action.SHOW_MISSED_CALLS_NOTIFICATION";
796
797 /**
Sailesh Nepalbe15ad92016-01-21 19:26:20 -0800798 * The number of calls associated with the notification. If the number is zero then the missed
799 * call notification should be dismissed.
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700800 */
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700801 public static final String EXTRA_NOTIFICATION_COUNT =
802 "android.telecom.extra.NOTIFICATION_COUNT";
803
804 /**
805 * The number associated with the missed calls. This number is only relevant
806 * when EXTRA_NOTIFICATION_COUNT is 1.
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700807 */
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700808 public static final String EXTRA_NOTIFICATION_PHONE_NUMBER =
809 "android.telecom.extra.NOTIFICATION_PHONE_NUMBER";
810
811 /**
Bryce Lee8d41d1d2015-08-10 07:40:42 -0700812 * The intent to clear missed calls.
813 * @hide
814 */
815 @SystemApi
816 public static final String EXTRA_CLEAR_MISSED_CALLS_INTENT =
817 "android.telecom.extra.CLEAR_MISSED_CALLS_INTENT";
818
819 /**
820 * The intent to call back a missed call.
821 * @hide
822 */
823 @SystemApi
824 public static final String EXTRA_CALL_BACK_INTENT =
825 "android.telecom.extra.CALL_BACK_INTENT";
826
827 /**
Charles He858f1322017-11-27 17:11:04 -0800828 * The dialer activity responsible for placing emergency calls from, for example, a locked
829 * keyguard.
830 * @hide
831 */
832 public static final ComponentName EMERGENCY_DIALER_COMPONENT =
833 ComponentName.createRelative("com.android.phone", ".EmergencyDialer");
834
835 /**
Eric Erfanian62706c52017-12-06 16:27:53 -0800836 * The boolean indicated by this extra controls whether or not a call is eligible to undergo
837 * assisted dialing. This extra is stored under {@link #EXTRA_OUTGOING_CALL_EXTRAS}.
Tyler Gunn00d737b2019-10-31 13:04:37 -0700838 * <p>
839 * The call initiator can use this extra to indicate that a call used assisted dialing to help
840 * place the call. This is most commonly used by a Dialer app which provides the ability to
841 * automatically add dialing prefixes when placing international calls.
842 * <p>
843 * Setting this extra on the outgoing call extras will cause the
Tyler Gunn754493b2020-01-27 10:30:51 -0800844 * {@link Connection#PROPERTY_ASSISTED_DIALING} property and
845 * {@link Call.Details#PROPERTY_ASSISTED_DIALING} property to be set on the
Tyler Gunn00d737b2019-10-31 13:04:37 -0700846 * {@link Connection}/{@link Call} in question. When the call is logged to the call log, the
847 * {@link android.provider.CallLog.Calls#FEATURES_ASSISTED_DIALING_USED} call feature is set to
848 * indicate that assisted dialing was used for the call.
Eric Erfanian62706c52017-12-06 16:27:53 -0800849 */
850 public static final String EXTRA_USE_ASSISTED_DIALING =
851 "android.telecom.extra.USE_ASSISTED_DIALING";
852
853 /**
Shaotang Li8cec25c2018-07-19 17:29:39 +0800854 * Optional extra for {@link #placeCall(Uri, Bundle)} containing an integer that specifies
855 * the source where user initiated this call. This data is used in metrics.
Hall Liuba820bd2020-01-22 17:17:13 -0800856 * Valid sources are:
857 * {@link TelecomManager#CALL_SOURCE_UNSPECIFIED},
858 * {@link TelecomManager#CALL_SOURCE_EMERGENCY_DIALPAD},
859 * {@link TelecomManager#CALL_SOURCE_EMERGENCY_SHORTCUT}.
Shaotang Li8cec25c2018-07-19 17:29:39 +0800860 *
Hall Liu2ef04112020-09-14 18:34:10 -0700861 * Intended for use with the platform emergency dialer only.
Shaotang Li8cec25c2018-07-19 17:29:39 +0800862 * @hide
863 */
Hall Liu2ef04112020-09-14 18:34:10 -0700864 @SystemApi
Shaotang Li8cec25c2018-07-19 17:29:39 +0800865 public static final String EXTRA_CALL_SOURCE = "android.telecom.extra.CALL_SOURCE";
866
867 /**
Hall Liuba820bd2020-01-22 17:17:13 -0800868 * Indicating the call is initiated via emergency dialer's shortcut button.
869 *
870 * @hide
871 */
Hall Liu2ef04112020-09-14 18:34:10 -0700872 @SystemApi
Hall Liuba820bd2020-01-22 17:17:13 -0800873 public static final int CALL_SOURCE_EMERGENCY_SHORTCUT = 2;
874
875 /**
876 * Indicating the call is initiated via emergency dialer's dialpad.
877 *
878 * @hide
879 */
Hall Liu2ef04112020-09-14 18:34:10 -0700880 @SystemApi
Hall Liuba820bd2020-01-22 17:17:13 -0800881 public static final int CALL_SOURCE_EMERGENCY_DIALPAD = 1;
882
883 /**
884 * Indicating the call source is not specified.
885 *
886 * @hide
887 */
Hall Liu2ef04112020-09-14 18:34:10 -0700888 @SystemApi
Hall Liuba820bd2020-01-22 17:17:13 -0800889 public static final int CALL_SOURCE_UNSPECIFIED = 0;
890
891 /**
Nancy Chen9d568c02014-09-08 14:17:59 -0700892 * The following 4 constants define how properties such as phone numbers and names are
893 * displayed to the user.
894 */
895
Santos Cordoned769ae2015-05-13 18:47:38 -0700896 /**
897 * Indicates that the address or number of a call is allowed to be displayed for caller ID.
Charles He858f1322017-11-27 17:11:04 -0800898 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700899 public static final int PRESENTATION_ALLOWED = 1;
900
Santos Cordoned769ae2015-05-13 18:47:38 -0700901 /**
902 * Indicates that the address or number of a call is blocked by the other party.
903 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700904 public static final int PRESENTATION_RESTRICTED = 2;
905
Santos Cordoned769ae2015-05-13 18:47:38 -0700906 /**
907 * Indicates that the address or number of a call is not specified or known by the carrier.
908 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700909 public static final int PRESENTATION_UNKNOWN = 3;
910
Santos Cordoned769ae2015-05-13 18:47:38 -0700911 /**
912 * Indicates that the address or number of a call belongs to a pay phone.
913 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700914 public static final int PRESENTATION_PAYPHONE = 4;
915
Hall Liu4a9fde12020-01-16 17:38:46 -0800916
917 /*
918 * Values for the adb property "persist.radio.videocall.audio.output"
919 */
920 /** @hide */
921 public static final int AUDIO_OUTPUT_ENABLE_SPEAKER = 0;
922 /** @hide */
923 public static final int AUDIO_OUTPUT_DISABLE_SPEAKER = 1;
924 /** @hide */
925 public static final int AUDIO_OUTPUT_DEFAULT = AUDIO_OUTPUT_ENABLE_SPEAKER;
926
Tyler Gunn00d737b2019-10-31 13:04:37 -0700927 /** @hide */
928 @Retention(RetentionPolicy.SOURCE)
929 @IntDef(
930 prefix = { "PRESENTATION_" },
931 value = {PRESENTATION_ALLOWED, PRESENTATION_RESTRICTED, PRESENTATION_UNKNOWN,
932 PRESENTATION_PAYPHONE})
933 public @interface Presentation {}
934
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700935 private static final String TAG = "TelecomManager";
Yorke Leeb4ce1432014-06-09 13:53:23 -0700936
937 private final Context mContext;
Yorke Leeb4ce1432014-06-09 13:53:23 -0700938
Hall Liue1bc2ec2015-10-09 15:58:37 -0700939 private final ITelecomService mTelecomServiceOverride;
940
Santos Cordon6c7a3882014-06-25 15:30:08 -0700941 /**
942 * @hide
943 */
Chen Xu4c0b06d2018-10-22 16:54:39 +0000944 @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P)
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700945 public static TelecomManager from(Context context) {
946 return (TelecomManager) context.getSystemService(Context.TELECOM_SERVICE);
Yorke Leeb4ce1432014-06-09 13:53:23 -0700947 }
Santos Cordon6c7a3882014-06-25 15:30:08 -0700948
949 /**
950 * @hide
951 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700952 public TelecomManager(Context context) {
Hall Liue1bc2ec2015-10-09 15:58:37 -0700953 this(context, null);
954 }
955
956 /**
957 * @hide
958 */
959 public TelecomManager(Context context, ITelecomService telecomServiceImpl) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700960 Context appContext = context.getApplicationContext();
Philip P. Moltmann12ac3f42020-03-05 15:01:29 -0800961 if (appContext != null && Objects.equals(context.getAttributionTag(),
962 appContext.getAttributionTag())) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700963 mContext = appContext;
964 } else {
965 mContext = context;
966 }
Hall Liue1bc2ec2015-10-09 15:58:37 -0700967 mTelecomServiceOverride = telecomServiceImpl;
Ihab Awad807fe0a2014-07-09 12:30:52 -0700968 }
969
970 /**
Santos Cordon91371dc02015-05-08 13:52:09 -0700971 * Return the {@link PhoneAccount} which will be used to place outgoing calls to addresses with
972 * the specified {@code uriScheme}. This {@link PhoneAccount} will always be a member of the
973 * list which is returned from invoking {@link #getCallCapablePhoneAccounts()}. The specific
974 * account returned depends on the following priorities:
975 * <ul>
976 * <li> If the user-selected default {@link PhoneAccount} supports the specified scheme, it will
977 * be returned.
978 * </li>
979 * <li> If there exists only one {@link PhoneAccount} that supports the specified scheme, it
980 * will be returned.
981 * </li>
982 * </ul>
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700983 * <p>
Santos Cordon91371dc02015-05-08 13:52:09 -0700984 * If no {@link PhoneAccount} fits the criteria above, this method will return {@code null}.
985 *
Yorke Leec61d13662015-09-21 17:25:25 -0700986 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
987 *
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700988 * @param uriScheme The URI scheme.
Santos Cordon91371dc02015-05-08 13:52:09 -0700989 * @return The {@link PhoneAccountHandle} corresponding to the account to be used.
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700990 */
Yorke Leec61d13662015-09-21 17:25:25 -0700991 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700992 public PhoneAccountHandle getDefaultOutgoingPhoneAccount(String uriScheme) {
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700993 try {
994 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700995 return getTelecomService().getDefaultOutgoingPhoneAccount(uriScheme,
Philip P. Moltmann12ac3f42020-03-05 15:01:29 -0800996 mContext.getOpPackageName(), mContext.getAttributionTag());
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700997 }
998 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700999 Log.e(TAG, "Error calling ITelecomService#getDefaultOutgoingPhoneAccount", e);
Ihab Awad94cf4bf2014-07-17 11:21:19 -07001000 }
1001 return null;
1002 }
1003
1004 /**
Andrew Leed4abbfb2014-09-03 14:58:27 -07001005 * Return the {@link PhoneAccount} which is the user-chosen default for making outgoing phone
1006 * calls. This {@code PhoneAccount} will always be a member of the list which is returned from
Nancy Chen210ef032014-09-15 17:58:42 -07001007 * calling {@link #getCallCapablePhoneAccounts()}
Santos Cordon91371dc02015-05-08 13:52:09 -07001008 * <p>
Andrew Leed4abbfb2014-09-03 14:58:27 -07001009 * Apps must be prepared for this method to return {@code null}, indicating that there currently
1010 * exists no user-chosen default {@code PhoneAccount}.
Tyler Gunn36c50ed2018-11-15 07:29:49 -08001011 * <p>
1012 * The default dialer has access to use this method.
Andrew Leed4abbfb2014-09-03 14:58:27 -07001013 *
Slava Shklyaeve65e4012019-03-04 16:02:34 +00001014 * @return The user outgoing phone account selected by the user, or {@code null} if there is no
1015 * user selected outgoing {@link PhoneAccountHandle}.
Andrew Leed4abbfb2014-09-03 14:58:27 -07001016 */
Tyler Gunn36c50ed2018-11-15 07:29:49 -08001017 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Slava Shklyaeve65e4012019-03-04 16:02:34 +00001018 public @Nullable PhoneAccountHandle getUserSelectedOutgoingPhoneAccount() {
Andrew Leed4abbfb2014-09-03 14:58:27 -07001019 try {
1020 if (isServiceConnected()) {
Tyler Gunn36c50ed2018-11-15 07:29:49 -08001021 return getTelecomService().getUserSelectedOutgoingPhoneAccount(
1022 mContext.getOpPackageName());
Andrew Leed4abbfb2014-09-03 14:58:27 -07001023 }
1024 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001025 Log.e(TAG, "Error calling ITelecomService#getUserSelectedOutgoingPhoneAccount", e);
Andrew Leed4abbfb2014-09-03 14:58:27 -07001026 }
1027 return null;
1028 }
1029
1030 /**
Tyler Gunn36c50ed2018-11-15 07:29:49 -08001031 * Sets the user-chosen default {@link PhoneAccountHandle} for making outgoing phone calls.
1032 *
1033 * @param accountHandle The {@link PhoneAccountHandle} which will be used by default for making
Slava Shklyaeve65e4012019-03-04 16:02:34 +00001034 * outgoing voice calls, or {@code null} if no default is specified (the
1035 * user will be asked each time a call is placed in this case).
Andrew Lee59cac3a2014-08-28 16:50:10 -07001036 * @hide
1037 */
Tyler Gunn36c50ed2018-11-15 07:29:49 -08001038 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
1039 @SystemApi
Slava Shklyaeve65e4012019-03-04 16:02:34 +00001040 public void setUserSelectedOutgoingPhoneAccount(@Nullable PhoneAccountHandle accountHandle) {
Andrew Lee59cac3a2014-08-28 16:50:10 -07001041 try {
1042 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001043 getTelecomService().setUserSelectedOutgoingPhoneAccount(accountHandle);
Andrew Lee59cac3a2014-08-28 16:50:10 -07001044 }
1045 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001046 Log.e(TAG, "Error calling ITelecomService#setUserSelectedOutgoingPhoneAccount");
Andrew Lee59cac3a2014-08-28 16:50:10 -07001047 }
1048 }
1049
1050 /**
Andrew Lee59cac3a2014-08-28 16:50:10 -07001051 * Returns the current SIM call manager. Apps must be prepared for this method to return
Brad Ebingere7833312019-05-07 10:55:55 -07001052 * {@code null}, indicating that there currently exists no SIM call manager {@link PhoneAccount}
1053 * for the default voice subscription.
Santos Cordon91371dc02015-05-08 13:52:09 -07001054 *
Brad Ebingere7833312019-05-07 10:55:55 -07001055 * @return The phone account handle of the current sim call manager for the default voice
1056 * subscription.
1057 * @see SubscriptionManager#getDefaultVoiceSubscriptionId()
Andrew Lee59cac3a2014-08-28 16:50:10 -07001058 */
1059 public PhoneAccountHandle getSimCallManager() {
1060 try {
1061 if (isServiceConnected()) {
Brad Ebingere7833312019-05-07 10:55:55 -07001062 return getTelecomService().getSimCallManager(
1063 SubscriptionManager.getDefaultSubscriptionId());
Andrew Lee59cac3a2014-08-28 16:50:10 -07001064 }
1065 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001066 Log.e(TAG, "Error calling ITelecomService#getSimCallManager");
Andrew Lee59cac3a2014-08-28 16:50:10 -07001067 }
1068 return null;
1069 }
1070
1071 /**
Brad Ebingere7833312019-05-07 10:55:55 -07001072 * Returns current SIM call manager for the Telephony Subscription ID specified. Apps must be
1073 * prepared for this method to return {@code null}, indicating that there currently exists no
1074 * SIM call manager {@link PhoneAccount} for the subscription specified.
1075 *
1076 * @param subscriptionId The Telephony Subscription ID that the SIM call manager should be
1077 * queried for.
1078 * @return The phone account handle of the current sim call manager.
1079 * @see SubscriptionManager#getActiveSubscriptionInfoList()
Brad Ebingere7833312019-05-07 10:55:55 -07001080 */
Tyler Gunn00d737b2019-10-31 13:04:37 -07001081 public @Nullable PhoneAccountHandle getSimCallManagerForSubscription(int subscriptionId) {
Brad Ebingere7833312019-05-07 10:55:55 -07001082 try {
1083 if (isServiceConnected()) {
1084 return getTelecomService().getSimCallManager(subscriptionId);
1085 }
1086 } catch (RemoteException e) {
1087 Log.e(TAG, "Error calling ITelecomService#getSimCallManager");
1088 }
1089 return null;
1090 }
1091
1092 /**
1093 * Returns the current SIM call manager for the user-chosen default Telephony Subscription ID
1094 * (see {@link SubscriptionManager#getDefaultSubscriptionId()}) and the specified user. Apps
1095 * must be prepared for this method to return {@code null}, indicating that there currently
1096 * exists no SIM call manager {@link PhoneAccount} for the default voice subscription.
Sailesh Nepalcf855622015-07-28 19:22:14 -07001097 *
1098 * @return The phone account handle of the current sim call manager.
1099 *
1100 * @hide
Tyler Gunn6e3ecc42018-11-12 11:30:56 -08001101 * @deprecated Use {@link #getSimCallManager()}.
Sailesh Nepalcf855622015-07-28 19:22:14 -07001102 */
Tyler Gunn6e3ecc42018-11-12 11:30:56 -08001103 @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 119305590)
Sailesh Nepalcf855622015-07-28 19:22:14 -07001104 public PhoneAccountHandle getSimCallManager(int userId) {
1105 try {
1106 if (isServiceConnected()) {
1107 return getTelecomService().getSimCallManagerForUser(userId);
1108 }
1109 } catch (RemoteException e) {
1110 Log.e(TAG, "Error calling ITelecomService#getSimCallManagerForUser");
1111 }
1112 return null;
1113 }
1114
1115 /**
Evan Charltoneb0a8d562014-09-04 12:03:34 -07001116 * Returns the current connection manager. Apps must be prepared for this method to return
Brad Ebingere7833312019-05-07 10:55:55 -07001117 * {@code null}, indicating that there currently exists no Connection Manager
1118 * {@link PhoneAccount} for the default voice subscription.
Evan Charltoneb0a8d562014-09-04 12:03:34 -07001119 *
1120 * @return The phone account handle of the current connection manager.
Evan Charlton0e094d92014-11-08 15:49:16 -08001121 * @hide
Evan Charltoneb0a8d562014-09-04 12:03:34 -07001122 */
Evan Charlton0e094d92014-11-08 15:49:16 -08001123 @SystemApi
Evan Charltoneb0a8d562014-09-04 12:03:34 -07001124 public PhoneAccountHandle getConnectionManager() {
1125 return getSimCallManager();
1126 }
1127
1128 /**
Nancy Chen210ef032014-09-15 17:58:42 -07001129 * Returns a list of the {@link PhoneAccountHandle}s which can be used to make and receive phone
1130 * calls which support the specified URI scheme.
Tyler Gunnf5b29dc2014-09-03 09:09:12 -07001131 * <P>
1132 * For example, invoking with {@code "tel"} will find all {@link PhoneAccountHandle}s which
1133 * support telephone calls (e.g. URIs such as {@code tel:555-555-1212}). Invoking with
1134 * {@code "sip"} will find all {@link PhoneAccountHandle}s which support SIP calls (e.g. URIs
1135 * such as {@code sip:example@sipexample.com}).
1136 *
1137 * @param uriScheme The URI scheme.
1138 * @return A list of {@code PhoneAccountHandle} objects supporting the URI scheme.
Evan Charlton0e094d92014-11-08 15:49:16 -08001139 * @hide
Tyler Gunnf5b29dc2014-09-03 09:09:12 -07001140 */
Evan Charlton0e094d92014-11-08 15:49:16 -08001141 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001142 @RequiresPermission(anyOf = {
Tyler Gunn00d737b2019-10-31 13:04:37 -07001143 READ_PRIVILEGED_PHONE_STATE,
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001144 android.Manifest.permission.READ_PHONE_STATE
1145 })
Tyler Gunnf5b29dc2014-09-03 09:09:12 -07001146 public List<PhoneAccountHandle> getPhoneAccountsSupportingScheme(String uriScheme) {
1147 try {
1148 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001149 return getTelecomService().getPhoneAccountsSupportingScheme(uriScheme,
1150 mContext.getOpPackageName());
Tyler Gunnf5b29dc2014-09-03 09:09:12 -07001151 }
1152 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001153 Log.e(TAG, "Error calling ITelecomService#getPhoneAccountsSupportingScheme", e);
Tyler Gunnf5b29dc2014-09-03 09:09:12 -07001154 }
1155 return new ArrayList<>();
1156 }
1157
Nancy Chen513c8922014-09-17 14:47:20 -07001158
1159 /**
Santos Cordon91371dc02015-05-08 13:52:09 -07001160 * Returns a list of {@link PhoneAccountHandle}s which can be used to make and receive phone
1161 * calls. The returned list includes only those accounts which have been explicitly enabled
1162 * by the user.
Nancy Chen513c8922014-09-17 14:47:20 -07001163 *
Yorke Leec61d13662015-09-21 17:25:25 -07001164 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
1165 *
Nancy Chen513c8922014-09-17 14:47:20 -07001166 * @see #EXTRA_PHONE_ACCOUNT_HANDLE
1167 * @return A list of {@code PhoneAccountHandle} objects.
Nancy Chen513c8922014-09-17 14:47:20 -07001168 */
Yorke Leec61d13662015-09-21 17:25:25 -07001169 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Nancy Chen513c8922014-09-17 14:47:20 -07001170 public List<PhoneAccountHandle> getCallCapablePhoneAccounts() {
Santos Cordon91371dc02015-05-08 13:52:09 -07001171 return getCallCapablePhoneAccounts(false);
1172 }
1173
1174 /**
Tyler Gunn89317072017-04-07 14:57:37 -07001175 * Returns a list of {@link PhoneAccountHandle}s for self-managed {@link ConnectionService}s.
1176 * <p>
1177 * Self-Managed {@link ConnectionService}s have a {@link PhoneAccount} with
1178 * {@link PhoneAccount#CAPABILITY_SELF_MANAGED}.
1179 * <p>
1180 * Requires permission {@link android.Manifest.permission#READ_PHONE_STATE}, or that the caller
1181 * is the default dialer app.
1182 * <p>
1183 * A {@link SecurityException} will be thrown if a called is not the default dialer, or lacks
1184 * the {@link android.Manifest.permission#READ_PHONE_STATE} permission.
1185 *
1186 * @return A list of {@code PhoneAccountHandle} objects.
1187 */
1188 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
1189 public List<PhoneAccountHandle> getSelfManagedPhoneAccounts() {
1190 try {
1191 if (isServiceConnected()) {
Philip P. Moltmann00cf9fb2020-01-06 16:41:38 -08001192 return getTelecomService().getSelfManagedPhoneAccounts(mContext.getOpPackageName(),
Philip P. Moltmann12ac3f42020-03-05 15:01:29 -08001193 mContext.getAttributionTag());
Tyler Gunn89317072017-04-07 14:57:37 -07001194 }
1195 } catch (RemoteException e) {
1196 Log.e(TAG, "Error calling ITelecomService#getSelfManagedPhoneAccounts()", e);
1197 }
1198 return new ArrayList<>();
1199 }
1200
1201 /**
Santos Cordon91371dc02015-05-08 13:52:09 -07001202 * Returns a list of {@link PhoneAccountHandle}s including those which have not been enabled
1203 * by the user.
1204 *
Tyler Gunn6e3ecc42018-11-12 11:30:56 -08001205 * @param includeDisabledAccounts When {@code true}, disabled phone accounts will be included,
Hall Liub2306242019-11-15 17:13:05 -08001206 * when {@code false}, only enabled phone accounts will be
1207 * included.
Santos Cordon91371dc02015-05-08 13:52:09 -07001208 * @return A list of {@code PhoneAccountHandle} objects.
1209 * @hide
1210 */
Hall Liub2306242019-11-15 17:13:05 -08001211 @SystemApi
Hall Liub2306242019-11-15 17:13:05 -08001212 @RequiresPermission(READ_PRIVILEGED_PHONE_STATE)
1213 public @NonNull List<PhoneAccountHandle> getCallCapablePhoneAccounts(
1214 boolean includeDisabledAccounts) {
Nancy Chen513c8922014-09-17 14:47:20 -07001215 try {
1216 if (isServiceConnected()) {
Philip P. Moltmann00cf9fb2020-01-06 16:41:38 -08001217 return getTelecomService().getCallCapablePhoneAccounts(includeDisabledAccounts,
Philip P. Moltmann12ac3f42020-03-05 15:01:29 -08001218 mContext.getOpPackageName(), mContext.getAttributionTag());
Nancy Chen513c8922014-09-17 14:47:20 -07001219 }
1220 } catch (RemoteException e) {
Santos Cordon91371dc02015-05-08 13:52:09 -07001221 Log.e(TAG, "Error calling ITelecomService#getCallCapablePhoneAccounts(" +
1222 includeDisabledAccounts + ")", e);
Nancy Chen513c8922014-09-17 14:47:20 -07001223 }
1224 return new ArrayList<>();
1225 }
1226
Tyler Gunnf5b29dc2014-09-03 09:09:12 -07001227 /**
Nancy Chen513c8922014-09-17 14:47:20 -07001228 * Returns a list of all {@link PhoneAccount}s registered for the calling package.
1229 *
Grace Jia0128b3c2020-06-23 12:53:17 -07001230 * @deprecated Use {@link #getSelfManagedPhoneAccounts()} instead to get only self-managed
1231 * {@link PhoneAccountHandle} for the calling package.
Nancy Chen513c8922014-09-17 14:47:20 -07001232 * @return A list of {@code PhoneAccountHandle} objects.
Evan Charlton0e094d92014-11-08 15:49:16 -08001233 * @hide
Nancy Chen513c8922014-09-17 14:47:20 -07001234 */
Evan Charlton0e094d92014-11-08 15:49:16 -08001235 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001236 @SuppressLint("Doclava125")
Grace Jia0128b3c2020-06-23 12:53:17 -07001237 @Deprecated
Nancy Chen513c8922014-09-17 14:47:20 -07001238 public List<PhoneAccountHandle> getPhoneAccountsForPackage() {
1239 try {
1240 if (isServiceConnected()) {
1241 return getTelecomService().getPhoneAccountsForPackage(mContext.getPackageName());
1242 }
1243 } catch (RemoteException e) {
1244 Log.e(TAG, "Error calling ITelecomService#getPhoneAccountsForPackage", e);
1245 }
1246 return null;
1247 }
1248
1249 /**
Evan Charlton8c8a0622014-07-20 12:31:00 -07001250 * Return the {@link PhoneAccount} for a specified {@link PhoneAccountHandle}. Object includes
1251 * resources which can be used in a user interface.
Ihab Awad807fe0a2014-07-09 12:30:52 -07001252 *
Evan Charlton6eb262c2014-07-19 18:18:19 -07001253 * @param account The {@link PhoneAccountHandle}.
Evan Charlton8c8a0622014-07-20 12:31:00 -07001254 * @return The {@link PhoneAccount} object.
Ihab Awad807fe0a2014-07-09 12:30:52 -07001255 */
Evan Charlton8c8a0622014-07-20 12:31:00 -07001256 public PhoneAccount getPhoneAccount(PhoneAccountHandle account) {
Ihab Awad807fe0a2014-07-09 12:30:52 -07001257 try {
1258 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001259 return getTelecomService().getPhoneAccount(account);
Ihab Awad807fe0a2014-07-09 12:30:52 -07001260 }
1261 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001262 Log.e(TAG, "Error calling ITelecomService#getPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -07001263 }
1264 return null;
1265 }
1266
1267 /**
Nancy Chen210ef032014-09-15 17:58:42 -07001268 * Returns a count of all {@link PhoneAccount}s.
Tyler Gunna1ed7d12014-09-08 09:52:22 -07001269 *
Nancy Chen210ef032014-09-15 17:58:42 -07001270 * @return The count of {@link PhoneAccount}s.
Tyler Gunna1ed7d12014-09-08 09:52:22 -07001271 * @hide
1272 */
1273 @SystemApi
1274 public int getAllPhoneAccountsCount() {
1275 try {
1276 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001277 return getTelecomService().getAllPhoneAccountsCount();
Tyler Gunna1ed7d12014-09-08 09:52:22 -07001278 }
1279 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001280 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccountsCount", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -07001281 }
1282 return 0;
1283 }
1284
1285 /**
1286 * Returns a list of all {@link PhoneAccount}s.
1287 *
1288 * @return All {@link PhoneAccount}s.
1289 * @hide
1290 */
1291 @SystemApi
1292 public List<PhoneAccount> getAllPhoneAccounts() {
1293 try {
1294 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001295 return getTelecomService().getAllPhoneAccounts();
Tyler Gunna1ed7d12014-09-08 09:52:22 -07001296 }
1297 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001298 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccounts", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -07001299 }
1300 return Collections.EMPTY_LIST;
1301 }
1302
1303 /**
1304 * Returns a list of all {@link PhoneAccountHandle}s.
1305 *
1306 * @return All {@link PhoneAccountHandle}s.
1307 * @hide
1308 */
1309 @SystemApi
1310 public List<PhoneAccountHandle> getAllPhoneAccountHandles() {
1311 try {
1312 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001313 return getTelecomService().getAllPhoneAccountHandles();
Tyler Gunna1ed7d12014-09-08 09:52:22 -07001314 }
1315 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001316 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccountHandles", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -07001317 }
1318 return Collections.EMPTY_LIST;
1319 }
1320
1321 /**
Brad Ebingerec0d3342016-01-29 15:40:43 -08001322 * Register a {@link PhoneAccount} for use by the system that will be stored in Device Encrypted
1323 * storage. When registering {@link PhoneAccount}s, existing registrations will be overwritten
1324 * if the {@link PhoneAccountHandle} matches that of a {@link PhoneAccount} which is already
Santos Cordond9e614f2014-10-28 13:10:36 -07001325 * registered. Once registered, the {@link PhoneAccount} is listed to the user as an option
1326 * when placing calls. The user may still need to enable the {@link PhoneAccount} within
1327 * the phone app settings before the account is usable.
1328 * <p>
1329 * A {@link SecurityException} will be thrown if an app tries to register a
1330 * {@link PhoneAccountHandle} where the package name specified within
1331 * {@link PhoneAccountHandle#getComponentName()} does not match the package name of the app.
Ihab Awad807fe0a2014-07-09 12:30:52 -07001332 *
Evan Charlton8c8a0622014-07-20 12:31:00 -07001333 * @param account The complete {@link PhoneAccount}.
Ihab Awad807fe0a2014-07-09 12:30:52 -07001334 */
Evan Charlton8c8a0622014-07-20 12:31:00 -07001335 public void registerPhoneAccount(PhoneAccount account) {
Ihab Awad807fe0a2014-07-09 12:30:52 -07001336 try {
1337 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001338 getTelecomService().registerPhoneAccount(account);
Ihab Awad807fe0a2014-07-09 12:30:52 -07001339 }
1340 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001341 Log.e(TAG, "Error calling ITelecomService#registerPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -07001342 }
1343 }
1344
1345 /**
Evan Charlton8c8a0622014-07-20 12:31:00 -07001346 * Remove a {@link PhoneAccount} registration from the system.
Ihab Awad807fe0a2014-07-09 12:30:52 -07001347 *
Evan Charlton8c8a0622014-07-20 12:31:00 -07001348 * @param accountHandle A {@link PhoneAccountHandle} for the {@link PhoneAccount} to unregister.
Ihab Awad807fe0a2014-07-09 12:30:52 -07001349 */
Evan Charlton8c8a0622014-07-20 12:31:00 -07001350 public void unregisterPhoneAccount(PhoneAccountHandle accountHandle) {
Ihab Awad807fe0a2014-07-09 12:30:52 -07001351 try {
1352 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001353 getTelecomService().unregisterPhoneAccount(accountHandle);
Ihab Awad807fe0a2014-07-09 12:30:52 -07001354 }
1355 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001356 Log.e(TAG, "Error calling ITelecomService#unregisterPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -07001357 }
1358 }
1359
1360 /**
Nancy Chen7ab1dc42014-09-09 18:18:26 -07001361 * Remove all Accounts that belong to the calling package from the system.
Evan Charlton0e094d92014-11-08 15:49:16 -08001362 * @hide
Ihab Awad807fe0a2014-07-09 12:30:52 -07001363 */
Evan Charlton0e094d92014-11-08 15:49:16 -08001364 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001365 @SuppressLint("Doclava125")
Yorke Lee06044272015-04-14 15:16:59 -07001366 public void clearPhoneAccounts() {
1367 clearAccounts();
1368 }
1369 /**
1370 * Remove all Accounts that belong to the calling package from the system.
1371 * @deprecated Use {@link #clearPhoneAccounts()} instead.
1372 * @hide
1373 */
1374 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001375 @SuppressLint("Doclava125")
Nancy Chen7ab1dc42014-09-09 18:18:26 -07001376 public void clearAccounts() {
Ihab Awad807fe0a2014-07-09 12:30:52 -07001377 try {
1378 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001379 getTelecomService().clearAccounts(mContext.getPackageName());
Ihab Awad807fe0a2014-07-09 12:30:52 -07001380 }
1381 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001382 Log.e(TAG, "Error calling ITelecomService#clearAccounts", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -07001383 }
1384 }
1385
1386 /**
Anthony Lee67279262014-10-27 11:28:40 -07001387 * Remove all Accounts that belong to the specified package from the system.
1388 * @hide
1389 */
1390 public void clearAccountsForPackage(String packageName) {
1391 try {
1392 if (isServiceConnected() && !TextUtils.isEmpty(packageName)) {
1393 getTelecomService().clearAccounts(packageName);
1394 }
1395 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -08001396 Log.e(TAG, "Error calling ITelecomService#clearAccountsForPackage", e);
Anthony Lee67279262014-10-27 11:28:40 -07001397 }
1398 }
1399
Yorke Lee1011f482015-04-23 15:58:27 -07001400
Anthony Lee67279262014-10-27 11:28:40 -07001401 /**
Yorke Lee1011f482015-04-23 15:58:27 -07001402 * @deprecated - Use {@link TelecomManager#getDefaultDialerPackage} to directly access
1403 * the default dialer's package name instead.
Ihab Awad807fe0a2014-07-09 12:30:52 -07001404 * @hide
1405 */
Santos Cordon6c7a3882014-06-25 15:30:08 -07001406 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001407 @SuppressLint("Doclava125")
Santos Cordon6c7a3882014-06-25 15:30:08 -07001408 public ComponentName getDefaultPhoneApp() {
1409 try {
Santos Cordon9eb45932014-06-27 12:28:43 -07001410 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001411 return getTelecomService().getDefaultPhoneApp();
Santos Cordon9eb45932014-06-27 12:28:43 -07001412 }
Santos Cordon6c7a3882014-06-25 15:30:08 -07001413 } catch (RemoteException e) {
1414 Log.e(TAG, "RemoteException attempting to get the default phone app.", e);
1415 }
1416 return null;
1417 }
1418
Santos Cordon9eb45932014-06-27 12:28:43 -07001419 /**
Yorke Lee1011f482015-04-23 15:58:27 -07001420 * Used to determine the currently selected default dialer package.
1421 *
1422 * @return package name for the default dialer package or null if no package has been
1423 * selected as the default dialer.
1424 */
1425 public String getDefaultDialerPackage() {
1426 try {
1427 if (isServiceConnected()) {
1428 return getTelecomService().getDefaultDialerPackage();
1429 }
1430 } catch (RemoteException e) {
1431 Log.e(TAG, "RemoteException attempting to get the default dialer package name.", e);
1432 }
1433 return null;
1434 }
1435
1436 /**
Tyler Gunn00d737b2019-10-31 13:04:37 -07001437 * Used to determine the currently selected default dialer package for a specific user.
1438 *
Tyler Gunn754493b2020-01-27 10:30:51 -08001439 * @param userHandle the user id to query the default dialer package for.
Tyler Gunn00d737b2019-10-31 13:04:37 -07001440 * @return package name for the default dialer package or null if no package has been
1441 * selected as the default dialer.
1442 * @hide
1443 */
1444 @SystemApi
Tyler Gunn00d737b2019-10-31 13:04:37 -07001445 @RequiresPermission(READ_PRIVILEGED_PHONE_STATE)
Tyler Gunn754493b2020-01-27 10:30:51 -08001446 public @Nullable String getDefaultDialerPackage(@NonNull UserHandle userHandle) {
Tyler Gunn00d737b2019-10-31 13:04:37 -07001447 try {
1448 if (isServiceConnected()) {
Tyler Gunn754493b2020-01-27 10:30:51 -08001449 return getTelecomService().getDefaultDialerPackageForUser(
1450 userHandle.getIdentifier());
Tyler Gunn00d737b2019-10-31 13:04:37 -07001451 }
1452 } catch (RemoteException e) {
1453 Log.e(TAG, "RemoteException attempting to get the default dialer package name.", e);
1454 }
1455 return null;
1456 }
1457
1458 /**
Yorke Lee107c4ce2015-06-15 12:08:24 -07001459 * Used to set the default dialer package.
1460 *
Slava Shklyaeve65e4012019-03-04 16:02:34 +00001461 * @param packageName to set the default dialer to, or {@code null} if the system provided
1462 * dialer should be used instead.
Yorke Lee107c4ce2015-06-15 12:08:24 -07001463 *
1464 * @result {@code true} if the default dialer was successfully changed, {@code false} if
1465 * the specified package does not correspond to an installed dialer, or is already
1466 * the default dialer.
1467 *
1468 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
1469 * Requires permission: {@link android.Manifest.permission#WRITE_SECURE_SETTINGS}
1470 *
1471 * @hide
Tyler Gunn7e45b722018-12-04 12:56:45 -08001472 * @deprecated Use
Hai Zhangf5e8ccd2019-03-06 20:12:24 -08001473 * {@link android.app.role.RoleManager#addRoleHolderAsUser(String, String, int, UserHandle,
1474 * Executor, java.util.function.Consumer)} instead.
Suprabh Shukla169bed72019-05-13 13:54:58 -07001475 * @removed
Yorke Lee107c4ce2015-06-15 12:08:24 -07001476 */
Tyler Gunn6e3ecc42018-11-12 11:30:56 -08001477 @SystemApi
Tyler Gunn7e45b722018-12-04 12:56:45 -08001478 @Deprecated
Tyler Gunn6e3ecc42018-11-12 11:30:56 -08001479 @RequiresPermission(allOf = {
1480 android.Manifest.permission.MODIFY_PHONE_STATE,
1481 android.Manifest.permission.WRITE_SECURE_SETTINGS})
Slava Shklyaeve65e4012019-03-04 16:02:34 +00001482 public boolean setDefaultDialer(@Nullable String packageName) {
Yorke Lee107c4ce2015-06-15 12:08:24 -07001483 try {
1484 if (isServiceConnected()) {
1485 return getTelecomService().setDefaultDialer(packageName);
1486 }
1487 } catch (RemoteException e) {
1488 Log.e(TAG, "RemoteException attempting to set the default dialer.", e);
1489 }
1490 return false;
1491 }
1492
1493 /**
Tyler Gunn6e3ecc42018-11-12 11:30:56 -08001494 * Determines the package name of the system-provided default phone app.
Yorke Lee1011f482015-04-23 15:58:27 -07001495 *
Slava Shklyaeve65e4012019-03-04 16:02:34 +00001496 * @return package name for the system dialer package or {@code null} if no system dialer is
1497 * preloaded.
Yorke Lee1011f482015-04-23 15:58:27 -07001498 */
Slava Shklyaeve65e4012019-03-04 16:02:34 +00001499 public @Nullable String getSystemDialerPackage() {
Yorke Lee1011f482015-04-23 15:58:27 -07001500 try {
1501 if (isServiceConnected()) {
1502 return getTelecomService().getSystemDialerPackage();
1503 }
1504 } catch (RemoteException e) {
1505 Log.e(TAG, "RemoteException attempting to get the system dialer package name.", e);
1506 }
1507 return null;
1508 }
1509
1510 /**
Nancy Chen443e5012014-10-15 15:48:21 -07001511 * Return whether a given phone number is the configured voicemail number for a
1512 * particular phone account.
1513 *
Yorke Leec61d13662015-09-21 17:25:25 -07001514 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
1515 *
Nancy Chen443e5012014-10-15 15:48:21 -07001516 * @param accountHandle The handle for the account to check the voicemail number against
1517 * @param number The number to look up.
Nancy Chen443e5012014-10-15 15:48:21 -07001518 */
Yorke Leec61d13662015-09-21 17:25:25 -07001519 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Nancy Chen443e5012014-10-15 15:48:21 -07001520 public boolean isVoiceMailNumber(PhoneAccountHandle accountHandle, String number) {
1521 try {
1522 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001523 return getTelecomService().isVoiceMailNumber(accountHandle, number,
Philip P. Moltmann12ac3f42020-03-05 15:01:29 -08001524 mContext.getOpPackageName(), mContext.getAttributionTag());
Nancy Chen443e5012014-10-15 15:48:21 -07001525 }
1526 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -08001527 Log.e(TAG, "RemoteException calling ITelecomService#isVoiceMailNumber.", e);
Nancy Chen443e5012014-10-15 15:48:21 -07001528 }
1529 return false;
1530 }
1531
1532 /**
Yorke Lee49e2d462015-04-15 16:14:22 -07001533 * Return the voicemail number for a given phone account.
Nancy Chen8c066f7c2014-12-03 15:18:08 -08001534 *
Yorke Leec61d13662015-09-21 17:25:25 -07001535 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
1536 *
Yorke Lee49e2d462015-04-15 16:14:22 -07001537 * @param accountHandle The handle for the phone account.
1538 * @return The voicemail number for the phone account, and {@code null} if one has not been
1539 * configured.
Nancy Chen8c066f7c2014-12-03 15:18:08 -08001540 */
Yorke Leec61d13662015-09-21 17:25:25 -07001541 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Yorke Lee49e2d462015-04-15 16:14:22 -07001542 public String getVoiceMailNumber(PhoneAccountHandle accountHandle) {
Nancy Chen8c066f7c2014-12-03 15:18:08 -08001543 try {
1544 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001545 return getTelecomService().getVoiceMailNumber(accountHandle,
Philip P. Moltmann12ac3f42020-03-05 15:01:29 -08001546 mContext.getOpPackageName(), mContext.getAttributionTag());
Nancy Chen8c066f7c2014-12-03 15:18:08 -08001547 }
1548 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -08001549 Log.e(TAG, "RemoteException calling ITelecomService#hasVoiceMailNumber.", e);
Nancy Chen8c066f7c2014-12-03 15:18:08 -08001550 }
Yorke Lee49e2d462015-04-15 16:14:22 -07001551 return null;
Nancy Chen8c066f7c2014-12-03 15:18:08 -08001552 }
1553
1554 /**
Nancy Chen5cf27842015-01-24 23:30:27 -08001555 * Return the line 1 phone number for given phone account.
1556 *
Michael Groover08490f12020-03-24 14:08:14 -07001557 * <p>Requires Permission:
1558 * {@link android.Manifest.permission#READ_SMS READ_SMS},
1559 * {@link android.Manifest.permission#READ_PHONE_NUMBERS READ_PHONE_NUMBERS},
1560 * or that the caller is the default SMS app for any API level.
1561 * {@link android.Manifest.permission#READ_PHONE_STATE READ_PHONE_STATE}
1562 * for apps targeting SDK API level 29 and below.
Yorke Leec61d13662015-09-21 17:25:25 -07001563 *
Nancy Chen5cf27842015-01-24 23:30:27 -08001564 * @param accountHandle The handle for the account retrieve a number for.
1565 * @return A string representation of the line 1 phone number.
Nancy Chen5cf27842015-01-24 23:30:27 -08001566 */
Michael Groover08490f12020-03-24 14:08:14 -07001567 @SuppressAutoDoc // Blocked by b/72967236 - no support for carrier privileges or default SMS app
1568 @RequiresPermission(anyOf = {
1569 android.Manifest.permission.READ_PHONE_STATE,
1570 android.Manifest.permission.READ_SMS,
1571 android.Manifest.permission.READ_PHONE_NUMBERS
1572 }, conditional = true)
Nancy Chen5cf27842015-01-24 23:30:27 -08001573 public String getLine1Number(PhoneAccountHandle accountHandle) {
1574 try {
1575 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001576 return getTelecomService().getLine1Number(accountHandle,
Philip P. Moltmann12ac3f42020-03-05 15:01:29 -08001577 mContext.getOpPackageName(), mContext.getAttributionTag());
Nancy Chen5cf27842015-01-24 23:30:27 -08001578 }
1579 } catch (RemoteException e) {
1580 Log.e(TAG, "RemoteException calling ITelecomService#getLine1Number.", e);
1581 }
1582 return null;
1583 }
1584
1585 /**
Santos Cordon9eb45932014-06-27 12:28:43 -07001586 * Returns whether there is an ongoing phone call (can be in dialing, ringing, active or holding
Tyler Gunn24e18332017-02-10 09:42:49 -08001587 * states) originating from either a manager or self-managed {@link ConnectionService}.
Nancy Chen0eb1e402014-08-21 22:52:29 -07001588 * <p>
1589 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
Tyler Gunn24e18332017-02-10 09:42:49 -08001590 *
1591 * @return {@code true} if there is an ongoing call in either a managed or self-managed
1592 * {@link ConnectionService}, {@code false} otherwise.
Santos Cordon9eb45932014-06-27 12:28:43 -07001593 */
Yorke Leec61d13662015-09-21 17:25:25 -07001594 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Nancy Chen0eb1e402014-08-21 22:52:29 -07001595 public boolean isInCall() {
Santos Cordon9eb45932014-06-27 12:28:43 -07001596 try {
1597 if (isServiceConnected()) {
Philip P. Moltmann00cf9fb2020-01-06 16:41:38 -08001598 return getTelecomService().isInCall(mContext.getOpPackageName(),
Philip P. Moltmann12ac3f42020-03-05 15:01:29 -08001599 mContext.getAttributionTag());
Santos Cordon9eb45932014-06-27 12:28:43 -07001600 }
1601 } catch (RemoteException e) {
Yorke Lee2ae312e2014-09-12 17:58:48 -07001602 Log.e(TAG, "RemoteException calling isInCall().", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001603 }
1604 return false;
1605 }
1606
1607 /**
Tyler Gunn24e18332017-02-10 09:42:49 -08001608 * Returns whether there is an ongoing call originating from a managed
1609 * {@link ConnectionService}. An ongoing call can be in dialing, ringing, active or holding
1610 * states.
1611 * <p>
1612 * If you also need to know if there are ongoing self-managed calls, use {@link #isInCall()}
1613 * instead.
1614 * <p>
1615 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
1616 *
1617 * @return {@code true} if there is an ongoing call in a managed {@link ConnectionService},
1618 * {@code false} otherwise.
1619 */
1620 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
1621 public boolean isInManagedCall() {
1622 try {
1623 if (isServiceConnected()) {
Philip P. Moltmann00cf9fb2020-01-06 16:41:38 -08001624 return getTelecomService().isInManagedCall(mContext.getOpPackageName(),
Philip P. Moltmann12ac3f42020-03-05 15:01:29 -08001625 mContext.getAttributionTag());
Tyler Gunn24e18332017-02-10 09:42:49 -08001626 }
1627 } catch (RemoteException e) {
1628 Log.e(TAG, "RemoteException calling isInManagedCall().", e);
1629 }
1630 return false;
1631 }
1632
1633 /**
Yorke Lee2ae312e2014-09-12 17:58:48 -07001634 * Returns one of the following constants that represents the current state of Telecom:
1635 *
1636 * {@link TelephonyManager#CALL_STATE_RINGING}
1637 * {@link TelephonyManager#CALL_STATE_OFFHOOK}
1638 * {@link TelephonyManager#CALL_STATE_IDLE}
Yorke Lee7c72c2d2014-10-28 14:12:02 -07001639 *
1640 * Note that this API does not require the
1641 * {@link android.Manifest.permission#READ_PHONE_STATE} permission. This is intentional, to
1642 * preserve the behavior of {@link TelephonyManager#getCallState()}, which also did not require
1643 * the permission.
Tyler Gunn24e18332017-02-10 09:42:49 -08001644 *
1645 * Takes into consideration both managed and self-managed calls.
1646 *
Yorke Lee2ae312e2014-09-12 17:58:48 -07001647 * @hide
1648 */
1649 @SystemApi
Chen Xuc9d4ee12019-09-26 16:11:59 -07001650 public @CallState int getCallState() {
Yorke Lee2ae312e2014-09-12 17:58:48 -07001651 try {
1652 if (isServiceConnected()) {
1653 return getTelecomService().getCallState();
1654 }
1655 } catch (RemoteException e) {
1656 Log.d(TAG, "RemoteException calling getCallState().", e);
1657 }
1658 return TelephonyManager.CALL_STATE_IDLE;
1659 }
1660
1661 /**
Santos Cordon9eb45932014-06-27 12:28:43 -07001662 * Returns whether there currently exists is a ringing incoming-call.
1663 *
Tyler Gunn24e18332017-02-10 09:42:49 -08001664 * @return {@code true} if there is a managed or self-managed ringing call.
Santos Cordon9eb45932014-06-27 12:28:43 -07001665 * @hide
1666 */
1667 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001668 @RequiresPermission(anyOf = {
Tyler Gunn00d737b2019-10-31 13:04:37 -07001669 READ_PRIVILEGED_PHONE_STATE,
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001670 android.Manifest.permission.READ_PHONE_STATE
1671 })
Santos Cordon9eb45932014-06-27 12:28:43 -07001672 public boolean isRinging() {
1673 try {
1674 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001675 return getTelecomService().isRinging(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -07001676 }
1677 } catch (RemoteException e) {
1678 Log.e(TAG, "RemoteException attempting to get ringing state of phone app.", e);
1679 }
1680 return false;
1681 }
1682
1683 /**
Tyler Gunne1aa26c2018-05-02 13:23:48 -07001684 * Ends the foreground call on the device.
1685 * <p>
1686 * If there is a ringing call, calling this method rejects the ringing call. Otherwise the
1687 * foreground call is ended.
1688 * <p>
1689 * Requires permission {@link android.Manifest.permission#ANSWER_PHONE_CALLS}.
Tyler Gunnf18ee4c2019-05-14 11:08:06 -07001690 * <p>
1691 * Note: this method CANNOT be used to end ongoing emergency calls and will return {@code false}
1692 * if an attempt is made to end an emergency call.
Tyler Gunne1aa26c2018-05-02 13:23:48 -07001693 *
1694 * @return {@code true} if there is a call which will be rejected or terminated, {@code false}
1695 * otherwise.
Tyler Gunn9bd8db42019-01-31 10:54:03 -08001696 * @deprecated Companion apps for wearable devices should use the {@link InCallService} API
1697 * instead. Apps performing call screening should use the {@link CallScreeningService} API
1698 * instead.
Santos Cordon9eb45932014-06-27 12:28:43 -07001699 */
Tyler Gunne1aa26c2018-05-02 13:23:48 -07001700 @RequiresPermission(Manifest.permission.ANSWER_PHONE_CALLS)
Tyler Gunn9bd8db42019-01-31 10:54:03 -08001701 @Deprecated
Santos Cordon9eb45932014-06-27 12:28:43 -07001702 public boolean endCall() {
1703 try {
1704 if (isServiceConnected()) {
Tyler Gunnc8658812018-02-07 16:08:27 -08001705 return getTelecomService().endCall(mContext.getPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -07001706 }
1707 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001708 Log.e(TAG, "Error calling ITelecomService#endCall", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001709 }
1710 return false;
1711 }
1712
1713 /**
1714 * If there is a ringing incoming call, this method accepts the call on behalf of the user.
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001715 *
Tyler Gunn6676bb52015-10-23 14:39:49 -07001716 * If the incoming call is a video call, the call will be answered with the same video state as
1717 * the incoming call requests. This means, for example, that an incoming call requesting
1718 * {@link VideoProfile#STATE_BIDIRECTIONAL} will be answered, accepting that state.
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001719 *
1720 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} or
1721 * {@link android.Manifest.permission#ANSWER_PHONE_CALLS}
Tyler Gunn9bd8db42019-01-31 10:54:03 -08001722 *
1723 * @deprecated Companion apps for wearable devices should use the {@link InCallService} API
1724 * instead.
Santos Cordon9eb45932014-06-27 12:28:43 -07001725 */
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001726 //TODO: L-release - need to convert all invocation of ITelecmmService#answerRingingCall to use
1727 // this method (clockwork & gearhead).
1728 @RequiresPermission(anyOf =
1729 {Manifest.permission.ANSWER_PHONE_CALLS, Manifest.permission.MODIFY_PHONE_STATE})
Tyler Gunn9bd8db42019-01-31 10:54:03 -08001730 @Deprecated
Santos Cordon9eb45932014-06-27 12:28:43 -07001731 public void acceptRingingCall() {
1732 try {
1733 if (isServiceConnected()) {
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001734 getTelecomService().acceptRingingCall(mContext.getPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -07001735 }
1736 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001737 Log.e(TAG, "Error calling ITelecomService#acceptRingingCall", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001738 }
1739 }
1740
1741 /**
Tyler Gunn6676bb52015-10-23 14:39:49 -07001742 * If there is a ringing incoming call, this method accepts the call on behalf of the user,
1743 * with the specified video state.
1744 *
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001745 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} or
1746 * {@link android.Manifest.permission#ANSWER_PHONE_CALLS}
1747 *
Tyler Gunn6676bb52015-10-23 14:39:49 -07001748 * @param videoState The desired video state to answer the call with.
Tyler Gunn9bd8db42019-01-31 10:54:03 -08001749 * @deprecated Companion apps for wearable devices should use the {@link InCallService} API
1750 * instead.
Tyler Gunn6676bb52015-10-23 14:39:49 -07001751 */
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001752 @RequiresPermission(anyOf =
1753 {Manifest.permission.ANSWER_PHONE_CALLS, Manifest.permission.MODIFY_PHONE_STATE})
Tyler Gunn9bd8db42019-01-31 10:54:03 -08001754 @Deprecated
Tyler Gunn6676bb52015-10-23 14:39:49 -07001755 public void acceptRingingCall(int videoState) {
1756 try {
1757 if (isServiceConnected()) {
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001758 getTelecomService().acceptRingingCallWithVideoState(
1759 mContext.getPackageName(), videoState);
Tyler Gunn6676bb52015-10-23 14:39:49 -07001760 }
1761 } catch (RemoteException e) {
1762 Log.e(TAG, "Error calling ITelecomService#acceptRingingCallWithVideoState", e);
1763 }
1764 }
1765
1766 /**
Santos Cordon9eb45932014-06-27 12:28:43 -07001767 * Silences the ringer if a ringing call exists.
Tyler Gunn556d2402019-04-10 08:59:43 -07001768 * <p>
1769 * This method can only be relied upon to stop the ringtone for a call if the ringtone has
1770 * already started playing. It is intended to handle use-cases such as silencing a ringing call
1771 * when the user presses the volume button during ringing.
1772 * <p>
1773 * If this method is called prior to when the ringtone begins playing, the ringtone will not be
1774 * silenced. As such it is not intended as a means to avoid playing of a ringtone.
1775 * <p>
1776 * A dialer app which wants to have more control over ringtone playing should declare
1777 * {@link TelecomManager#METADATA_IN_CALL_SERVICE_RINGING} in the manifest entry for their
1778 * {@link InCallService} implementation to indicate that the app wants to be responsible for
1779 * playing the ringtone for all incoming calls.
1780 * <p>
1781 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} or that the
1782 * app fills the dialer role (see {@link #getDefaultDialerPackage()}).
Santos Cordon9eb45932014-06-27 12:28:43 -07001783 */
Yorke Leec61d13662015-09-21 17:25:25 -07001784 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Santos Cordon9eb45932014-06-27 12:28:43 -07001785 public void silenceRinger() {
1786 try {
1787 if (isServiceConnected()) {
Yorke Leef1a349b2015-04-29 16:16:50 -07001788 getTelecomService().silenceRinger(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -07001789 }
1790 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001791 Log.e(TAG, "Error calling ITelecomService#silenceRinger", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001792 }
1793 }
1794
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001795 /**
1796 * Returns whether TTY is supported on this device.
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001797 */
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001798 @RequiresPermission(anyOf = {
Tyler Gunn00d737b2019-10-31 13:04:37 -07001799 READ_PRIVILEGED_PHONE_STATE,
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06001800 android.Manifest.permission.READ_PHONE_STATE
1801 })
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001802 public boolean isTtySupported() {
1803 try {
1804 if (isServiceConnected()) {
Philip P. Moltmann00cf9fb2020-01-06 16:41:38 -08001805 return getTelecomService().isTtySupported(mContext.getOpPackageName(),
Philip P. Moltmann12ac3f42020-03-05 15:01:29 -08001806 mContext.getAttributionTag());
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001807 }
1808 } catch (RemoteException e) {
1809 Log.e(TAG, "RemoteException attempting to get TTY supported state.", e);
1810 }
1811 return false;
1812 }
1813
1814 /**
1815 * 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 -07001816 * settings and have a wired headset plugged in.
1817 * Valid modes are:
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001818 * - {@link TelecomManager#TTY_MODE_OFF}
1819 * - {@link TelecomManager#TTY_MODE_FULL}
1820 * - {@link TelecomManager#TTY_MODE_HCO}
1821 * - {@link TelecomManager#TTY_MODE_VCO}
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001822 * @hide
1823 */
Tyler Gunn6e3ecc42018-11-12 11:30:56 -08001824 @SystemApi
Tyler Gunn00d737b2019-10-31 13:04:37 -07001825 @RequiresPermission(READ_PRIVILEGED_PHONE_STATE)
Tyler Gunn6e3ecc42018-11-12 11:30:56 -08001826 public @TtyMode int getCurrentTtyMode() {
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001827 try {
1828 if (isServiceConnected()) {
Philip P. Moltmann00cf9fb2020-01-06 16:41:38 -08001829 return getTelecomService().getCurrentTtyMode(mContext.getOpPackageName(),
Philip P. Moltmann12ac3f42020-03-05 15:01:29 -08001830 mContext.getAttributionTag());
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001831 }
1832 } catch (RemoteException e) {
1833 Log.e(TAG, "RemoteException attempting to get the current TTY mode.", e);
1834 }
Evan Charlton10197192014-07-19 15:00:29 -07001835 return TTY_MODE_OFF;
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001836 }
1837
Santos Cordon96efb482014-07-19 14:57:05 -07001838 /**
1839 * Registers a new incoming call. A {@link ConnectionService} should invoke this method when it
Tyler Gunnf5035432017-01-09 09:43:12 -08001840 * has an incoming call. For managed {@link ConnectionService}s, the specified
1841 * {@link PhoneAccountHandle} must have been registered with {@link #registerPhoneAccount} and
1842 * the user must have enabled the corresponding {@link PhoneAccount}. This can be checked using
1843 * {@link #getPhoneAccount}. Self-managed {@link ConnectionService}s must have
1844 * {@link android.Manifest.permission#MANAGE_OWN_CALLS} to add a new incoming call.
1845 * <p>
Tyler Gunn37653562017-03-13 18:15:15 -07001846 * The incoming call you are adding is assumed to have a video state of
1847 * {@link VideoProfile#STATE_AUDIO_ONLY}, unless the extra value
1848 * {@link #EXTRA_INCOMING_VIDEO_STATE} is specified.
1849 * <p>
Tyler Gunnf5035432017-01-09 09:43:12 -08001850 * Once invoked, this method will cause the system to bind to the {@link ConnectionService}
1851 * associated with the {@link PhoneAccountHandle} and request additional information about the
1852 * call (See {@link ConnectionService#onCreateIncomingConnection}) before starting the incoming
Brad Ebingerec0d3342016-01-29 15:40:43 -08001853 * call UI.
1854 * <p>
Tyler Gunnf5035432017-01-09 09:43:12 -08001855 * For a managed {@link ConnectionService}, a {@link SecurityException} will be thrown if either
1856 * the {@link PhoneAccountHandle} does not correspond to a registered {@link PhoneAccount} or
1857 * the associated {@link PhoneAccount} is not currently enabled by the user.
1858 * <p>
1859 * For a self-managed {@link ConnectionService}, a {@link SecurityException} will be thrown if
1860 * the {@link PhoneAccount} has {@link PhoneAccount#CAPABILITY_SELF_MANAGED} and the calling app
1861 * does not have {@link android.Manifest.permission#MANAGE_OWN_CALLS}.
1862 *
Santos Cordon96efb482014-07-19 14:57:05 -07001863 * @param phoneAccount A {@link PhoneAccountHandle} registered with
1864 * {@link #registerPhoneAccount}.
1865 * @param extras A bundle that will be passed through to
1866 * {@link ConnectionService#onCreateIncomingConnection}.
1867 */
1868 public void addNewIncomingCall(PhoneAccountHandle phoneAccount, Bundle extras) {
1869 try {
1870 if (isServiceConnected()) {
Sanket Padawef6a9e5b2018-01-05 14:26:16 -08001871 if (extras != null && extras.getBoolean(EXTRA_IS_HANDOVER) &&
1872 mContext.getApplicationContext().getApplicationInfo().targetSdkVersion >
1873 Build.VERSION_CODES.O_MR1) {
1874 Log.e("TAG", "addNewIncomingCall failed. Use public api " +
1875 "acceptHandover for API > O-MR1");
Tyler Gunn9ae6db82019-02-13 13:51:18 -08001876 return;
Sanket Padawef6a9e5b2018-01-05 14:26:16 -08001877 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001878 getTelecomService().addNewIncomingCall(
Santos Cordon96efb482014-07-19 14:57:05 -07001879 phoneAccount, extras == null ? new Bundle() : extras);
1880 }
1881 } catch (RemoteException e) {
1882 Log.e(TAG, "RemoteException adding a new incoming call: " + phoneAccount, e);
1883 }
1884 }
1885
Nancy Chen0eb1e402014-08-21 22:52:29 -07001886 /**
Ravi Paluri80aa2142019-12-02 11:57:37 +05301887 * Registers a new incoming conference. A {@link ConnectionService} should invoke this method
Grace Jia8587ee52020-07-10 15:42:32 -07001888 * when it has an incoming conference. An incoming {@link Conference} is an adhoc conference
1889 * call initiated on another device which the user is being invited to join in. For managed
1890 * {@link ConnectionService}s, the specified {@link PhoneAccountHandle} must have been
1891 * registered with {@link #registerPhoneAccount} and the user must have enabled the
1892 * corresponding {@link PhoneAccount}. This can be checked using
1893 * {@link #getPhoneAccount(PhoneAccountHandle)}. Self-managed {@link ConnectionService}s must
1894 * have {@link android.Manifest.permission#MANAGE_OWN_CALLS} to add a new incoming call.
Ravi Paluri80aa2142019-12-02 11:57:37 +05301895 * <p>
1896 * The incoming conference you are adding is assumed to have a video state of
1897 * {@link VideoProfile#STATE_AUDIO_ONLY}, unless the extra value
1898 * {@link #EXTRA_INCOMING_VIDEO_STATE} is specified.
1899 * <p>
1900 * Once invoked, this method will cause the system to bind to the {@link ConnectionService}
1901 * associated with the {@link PhoneAccountHandle} and request additional information about the
Grace Jia8587ee52020-07-10 15:42:32 -07001902 * call (See
1903 * {@link ConnectionService#onCreateIncomingConference(PhoneAccountHandle, ConnectionRequest)})
1904 * before starting the incoming call UI.
Ravi Paluri80aa2142019-12-02 11:57:37 +05301905 * <p>
1906 * For a managed {@link ConnectionService}, a {@link SecurityException} will be thrown if either
1907 * the {@link PhoneAccountHandle} does not correspond to a registered {@link PhoneAccount} or
1908 * the associated {@link PhoneAccount} is not currently enabled by the user.
1909 *
1910 * @param phoneAccount A {@link PhoneAccountHandle} registered with
1911 * {@link #registerPhoneAccount}.
1912 * @param extras A bundle that will be passed through to
1913 * {@link ConnectionService#onCreateIncomingConference}.
1914 */
Ravi Paluri80aa2142019-12-02 11:57:37 +05301915 public void addNewIncomingConference(@NonNull PhoneAccountHandle phoneAccount,
1916 @NonNull Bundle extras) {
1917 try {
1918 if (isServiceConnected()) {
1919 getTelecomService().addNewIncomingConference(
1920 phoneAccount, extras == null ? new Bundle() : extras);
1921 }
1922 } catch (RemoteException e) {
1923 Log.e(TAG, "RemoteException adding a new incoming conference: " + phoneAccount, e);
1924 }
1925 }
1926
1927 /**
Yorke Leec3cf9822014-10-02 09:38:39 -07001928 * Registers a new unknown call with Telecom. This can only be called by the system Telephony
1929 * service. This is invoked when Telephony detects a new unknown connection that was neither
1930 * a new incoming call, nor an user-initiated outgoing call.
1931 *
1932 * @param phoneAccount A {@link PhoneAccountHandle} registered with
1933 * {@link #registerPhoneAccount}.
1934 * @param extras A bundle that will be passed through to
1935 * {@link ConnectionService#onCreateIncomingConnection}.
1936 * @hide
1937 */
1938 @SystemApi
1939 public void addNewUnknownCall(PhoneAccountHandle phoneAccount, Bundle extras) {
1940 try {
1941 if (isServiceConnected()) {
1942 getTelecomService().addNewUnknownCall(
1943 phoneAccount, extras == null ? new Bundle() : extras);
1944 }
1945 } catch (RemoteException e) {
1946 Log.e(TAG, "RemoteException adding a new unknown call: " + phoneAccount, e);
1947 }
1948 }
1949
1950 /**
Nancy Chen0eb1e402014-08-21 22:52:29 -07001951 * Processes the specified dial string as an MMI code.
1952 * MMI codes are any sequence of characters entered into the dialpad that contain a "*" or "#".
1953 * Some of these sequences launch special behavior through handled by Telephony.
Nancy Chen95e8a672014-10-16 18:38:21 -07001954 * This method uses the default subscription.
Nancy Chen0eb1e402014-08-21 22:52:29 -07001955 * <p>
1956 * Requires that the method-caller be set as the system dialer app.
1957 * </p>
1958 *
Yorke Leec61d13662015-09-21 17:25:25 -07001959 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
1960 *
Nancy Chen0eb1e402014-08-21 22:52:29 -07001961 * @param dialString The digits to dial.
1962 * @return True if the digits were processed as an MMI code, false otherwise.
1963 */
Yorke Leec61d13662015-09-21 17:25:25 -07001964 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Nancy Chen0eb1e402014-08-21 22:52:29 -07001965 public boolean handleMmi(String dialString) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001966 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001967 if (service != null) {
1968 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001969 return service.handlePinMmi(dialString, mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001970 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001971 Log.e(TAG, "Error calling ITelecomService#handlePinMmi", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001972 }
1973 }
1974 return false;
1975 }
1976
1977 /**
Nancy Chen95e8a672014-10-16 18:38:21 -07001978 * Processes the specified dial string as an MMI code.
1979 * MMI codes are any sequence of characters entered into the dialpad that contain a "*" or "#".
1980 * Some of these sequences launch special behavior through handled by Telephony.
1981 * <p>
1982 * Requires that the method-caller be set as the system dialer app.
1983 * </p>
1984 *
Yorke Leec61d13662015-09-21 17:25:25 -07001985 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
1986 *
Nancy Chen95e8a672014-10-16 18:38:21 -07001987 * @param accountHandle The handle for the account the MMI code should apply to.
1988 * @param dialString The digits to dial.
1989 * @return True if the digits were processed as an MMI code, false otherwise.
Nancy Chen95e8a672014-10-16 18:38:21 -07001990 */
Yorke Leec61d13662015-09-21 17:25:25 -07001991 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Yorke Lee06044272015-04-14 15:16:59 -07001992 public boolean handleMmi(String dialString, PhoneAccountHandle accountHandle) {
Nancy Chen95e8a672014-10-16 18:38:21 -07001993 ITelecomService service = getTelecomService();
1994 if (service != null) {
1995 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001996 return service.handlePinMmiForPhoneAccount(accountHandle, dialString,
1997 mContext.getOpPackageName());
Nancy Chen95e8a672014-10-16 18:38:21 -07001998 } catch (RemoteException e) {
1999 Log.e(TAG, "Error calling ITelecomService#handlePinMmi", e);
2000 }
2001 }
2002 return false;
2003 }
2004
2005 /**
Yorke Leec61d13662015-09-21 17:25:25 -07002006 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
2007 *
Nancy Chenb2299c12014-10-29 18:22:11 -07002008 * @param accountHandle The handle for the account to derive an adn query URI for or
2009 * {@code null} to return a URI which will use the default account.
2010 * @return The URI (with the content:// scheme) specific to the specified {@link PhoneAccount}
2011 * for the the content retrieve.
2012 */
Yorke Leec61d13662015-09-21 17:25:25 -07002013 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Nancy Chenb2299c12014-10-29 18:22:11 -07002014 public Uri getAdnUriForPhoneAccount(PhoneAccountHandle accountHandle) {
2015 ITelecomService service = getTelecomService();
2016 if (service != null && accountHandle != null) {
2017 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07002018 return service.getAdnUriForPhoneAccount(accountHandle, mContext.getOpPackageName());
Nancy Chenb2299c12014-10-29 18:22:11 -07002019 } catch (RemoteException e) {
2020 Log.e(TAG, "Error calling ITelecomService#getAdnUriForPhoneAccount", e);
2021 }
2022 }
2023 return Uri.parse("content://icc/adn");
2024 }
2025
2026 /**
Nancy Chen0eb1e402014-08-21 22:52:29 -07002027 * Removes the missed-call notification if one is present.
2028 * <p>
2029 * Requires that the method-caller be set as the system dialer app.
2030 * </p>
Yorke Leec61d13662015-09-21 17:25:25 -07002031 *
2032 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
Nancy Chen0eb1e402014-08-21 22:52:29 -07002033 */
Yorke Leec61d13662015-09-21 17:25:25 -07002034 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Nancy Chen0eb1e402014-08-21 22:52:29 -07002035 public void cancelMissedCallsNotification() {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002036 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07002037 if (service != null) {
2038 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07002039 service.cancelMissedCallsNotification(mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07002040 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002041 Log.e(TAG, "Error calling ITelecomService#cancelMissedCallsNotification", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07002042 }
2043 }
2044 }
2045
2046 /**
2047 * Brings the in-call screen to the foreground if there is an ongoing call. If there is
2048 * currently no ongoing call, then this method does nothing.
2049 * <p>
2050 * Requires that the method-caller be set as the system dialer app or have the
2051 * {@link android.Manifest.permission#READ_PHONE_STATE} permission.
2052 * </p>
2053 *
2054 * @param showDialpad Brings up the in-call dialpad as part of showing the in-call screen.
2055 */
Yorke Leec61d13662015-09-21 17:25:25 -07002056 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Nancy Chen0eb1e402014-08-21 22:52:29 -07002057 public void showInCallScreen(boolean showDialpad) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002058 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07002059 if (service != null) {
2060 try {
Philip P. Moltmann00cf9fb2020-01-06 16:41:38 -08002061 service.showInCallScreen(showDialpad, mContext.getOpPackageName(),
Philip P. Moltmann12ac3f42020-03-05 15:01:29 -08002062 mContext.getAttributionTag());
Nancy Chen0eb1e402014-08-21 22:52:29 -07002063 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002064 Log.e(TAG, "Error calling ITelecomService#showCallScreen", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07002065 }
2066 }
2067 }
2068
Yorke Lee3e56ba12015-04-23 12:32:36 -07002069 /**
2070 * Places a new outgoing call to the provided address using the system telecom service with
2071 * the specified extras.
2072 *
2073 * This method is equivalent to placing an outgoing call using {@link Intent#ACTION_CALL},
2074 * except that the outgoing call will always be sent via the system telecom service. If
2075 * method-caller is either the user selected default dialer app or preloaded system dialer
2076 * app, then emergency calls will also be allowed.
2077 *
Tyler Gunnf5035432017-01-09 09:43:12 -08002078 * Placing a call via a managed {@link ConnectionService} requires permission:
2079 * {@link android.Manifest.permission#CALL_PHONE}
Yorke Lee3e56ba12015-04-23 12:32:36 -07002080 *
2081 * Usage example:
2082 * <pre>
2083 * Uri uri = Uri.fromParts("tel", "12345", null);
2084 * Bundle extras = new Bundle();
2085 * extras.putBoolean(TelecomManager.EXTRA_START_CALL_WITH_SPEAKERPHONE, true);
2086 * telecomManager.placeCall(uri, extras);
2087 * </pre>
2088 *
Santos Cordon7a060d52015-06-19 14:52:04 -07002089 * The following keys are supported in the supplied extras.
2090 * <ul>
2091 * <li>{@link #EXTRA_OUTGOING_CALL_EXTRAS}</li>
2092 * <li>{@link #EXTRA_PHONE_ACCOUNT_HANDLE}</li>
2093 * <li>{@link #EXTRA_START_CALL_WITH_SPEAKERPHONE}</li>
2094 * <li>{@link #EXTRA_START_CALL_WITH_VIDEO_STATE}</li>
2095 * </ul>
Tyler Gunnf5035432017-01-09 09:43:12 -08002096 * <p>
2097 * An app which implements the self-managed {@link ConnectionService} API uses
2098 * {@link #placeCall(Uri, Bundle)} to inform Telecom of a new outgoing call. A self-managed
2099 * {@link ConnectionService} must include {@link #EXTRA_PHONE_ACCOUNT_HANDLE} to specify its
2100 * associated {@link android.telecom.PhoneAccountHandle}.
2101 *
2102 * Self-managed {@link ConnectionService}s require permission
2103 * {@link android.Manifest.permission#MANAGE_OWN_CALLS}.
Santos Cordon7a060d52015-06-19 14:52:04 -07002104 *
Brad Ebinger3636d742019-05-21 15:28:19 -07002105 * <p class="note"><strong>Note:</strong> If this method is used to place an emergency call, it
2106 * is not guaranteed that the call will be placed on the {@link PhoneAccount} provided in
2107 * the {@link #EXTRA_PHONE_ACCOUNT_HANDLE} extra (if specified) and may be placed on another
2108 * {@link PhoneAccount} with the {@link PhoneAccount#CAPABILITY_PLACE_EMERGENCY_CALLS}
2109 * capability, depending on external factors, such as network conditions and Modem/SIM status.
2110 * </p>
2111 *
Yorke Lee3e56ba12015-04-23 12:32:36 -07002112 * @param address The address to make the call to.
2113 * @param extras Bundle of extras to use with the call.
2114 */
Tyler Gunnf5035432017-01-09 09:43:12 -08002115 @RequiresPermission(anyOf = {android.Manifest.permission.CALL_PHONE,
2116 android.Manifest.permission.MANAGE_OWN_CALLS})
Yorke Lee3e56ba12015-04-23 12:32:36 -07002117 public void placeCall(Uri address, Bundle extras) {
2118 ITelecomService service = getTelecomService();
2119 if (service != null) {
Yorke Leea5d5c1d2015-05-05 16:25:55 -07002120 if (address == null) {
2121 Log.w(TAG, "Cannot place call to empty address.");
2122 }
Yorke Lee3e56ba12015-04-23 12:32:36 -07002123 try {
Yorke Leea5d5c1d2015-05-05 16:25:55 -07002124 service.placeCall(address, extras == null ? new Bundle() : extras,
Philip P. Moltmann12ac3f42020-03-05 15:01:29 -08002125 mContext.getOpPackageName(), mContext.getAttributionTag());
Yorke Lee3e56ba12015-04-23 12:32:36 -07002126 } catch (RemoteException e) {
2127 Log.e(TAG, "Error calling ITelecomService#placeCall", e);
2128 }
2129 }
2130 }
2131
Ravi Paluri80aa2142019-12-02 11:57:37 +05302132
2133 /**
Grace Jia8587ee52020-07-10 15:42:32 -07002134 * Place a new adhoc conference call with the provided participants using the system telecom
2135 * service. This method doesn't support placing of emergency calls.
Ravi Paluri80aa2142019-12-02 11:57:37 +05302136 *
2137 * An adhoc conference call is established by providing a list of addresses to
2138 * {@code TelecomManager#startConference(List<Uri>, int videoState)} where the
2139 * {@link ConnectionService} is responsible for connecting all indicated participants
2140 * to a conference simultaneously.
2141 * This is in contrast to conferences formed by merging calls together (e.g. using
2142 * {@link android.telecom.Call#mergeConference()}).
2143 *
2144 * The following keys are supported in the supplied extras.
2145 * <ul>
2146 * <li>{@link #EXTRA_PHONE_ACCOUNT_HANDLE}</li>
2147 * <li>{@link #EXTRA_START_CALL_WITH_SPEAKERPHONE}</li>
2148 * <li>{@link #EXTRA_START_CALL_WITH_VIDEO_STATE}</li>
2149 * </ul>
2150 *
2151 * @param participants List of participants to start conference with
2152 * @param extras Bundle of extras to use with the call
2153 */
2154 @RequiresPermission(android.Manifest.permission.CALL_PHONE)
2155 public void startConference(@NonNull List<Uri> participants,
2156 @NonNull Bundle extras) {
2157 ITelecomService service = getTelecomService();
2158 if (service != null) {
2159 try {
2160 service.startConference(participants, extras,
2161 mContext.getOpPackageName());
2162 } catch (RemoteException e) {
2163 Log.e(TAG, "Error calling ITelecomService#placeCall", e);
2164 }
2165 }
2166 }
2167
Santos Cordon91371dc02015-05-08 13:52:09 -07002168 /**
2169 * Enables and disables specified phone account.
2170 *
2171 * @param handle Handle to the phone account.
2172 * @param isEnabled Enable state of the phone account.
2173 * @hide
2174 */
2175 @SystemApi
Jeff Sharkeybfc4fcd2017-06-05 17:38:17 -06002176 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Santos Cordon91371dc02015-05-08 13:52:09 -07002177 public void enablePhoneAccount(PhoneAccountHandle handle, boolean isEnabled) {
2178 ITelecomService service = getTelecomService();
2179 if (service != null) {
2180 try {
2181 service.enablePhoneAccount(handle, isEnabled);
2182 } catch (RemoteException e) {
2183 Log.e(TAG, "Error enablePhoneAbbount", e);
2184 }
2185 }
2186 }
2187
Hall Liu0464b9b2016-01-12 15:32:58 -08002188 /**
2189 * Dumps telecom analytics for uploading.
2190 *
2191 * @return
2192 * @hide
2193 */
2194 @SystemApi
2195 @RequiresPermission(Manifest.permission.DUMP)
Hall Liu057def52016-05-05 17:17:07 -07002196 public TelecomAnalytics dumpAnalytics() {
Hall Liu0464b9b2016-01-12 15:32:58 -08002197 ITelecomService service = getTelecomService();
Hall Liu057def52016-05-05 17:17:07 -07002198 TelecomAnalytics result = null;
Hall Liu0464b9b2016-01-12 15:32:58 -08002199 if (service != null) {
2200 try {
2201 result = service.dumpCallAnalytics();
2202 } catch (RemoteException e) {
2203 Log.e(TAG, "Error dumping call analytics", e);
2204 }
2205 }
2206 return result;
2207 }
2208
Abhijith Shastry1908cb842016-02-02 11:10:19 -08002209 /**
Abhijith Shastrya26fe992016-02-29 11:40:24 -08002210 * Creates the {@link Intent} which can be used with {@link Context#startActivity(Intent)} to
2211 * launch the activity to manage blocked numbers.
Abhijith Shastryec30d2f2016-03-04 16:46:08 -08002212 * <p> The activity will display the UI to manage blocked numbers only if
Abhijith Shastrya26fe992016-02-29 11:40:24 -08002213 * {@link android.provider.BlockedNumberContract#canCurrentUserBlockNumbers(Context)} returns
2214 * {@code true} for the current user.
2215 */
2216 public Intent createManageBlockedNumbersIntent() {
2217 ITelecomService service = getTelecomService();
2218 Intent result = null;
2219 if (service != null) {
2220 try {
2221 result = service.createManageBlockedNumbersIntent();
2222 } catch (RemoteException e) {
2223 Log.e(TAG, "Error calling ITelecomService#createManageBlockedNumbersIntent", e);
2224 }
2225 }
2226 return result;
2227 }
2228
Fan Zhang5431ef52019-10-14 13:43:46 -07002229
2230 /**
2231 * Creates the {@link Intent} which can be used with {@link Context#startActivity(Intent)} to
2232 * launch the activity for emergency dialer.
2233 *
2234 * @param number Optional number to call in emergency dialer
2235 * @hide
2236 */
2237 @SystemApi
2238 @NonNull
2239 public Intent createLaunchEmergencyDialerIntent(@Nullable String number) {
2240 ITelecomService service = getTelecomService();
Fan Zhang5431ef52019-10-14 13:43:46 -07002241 if (service != null) {
2242 try {
Tyler Gunn753aa102020-04-23 10:16:26 -07002243 return service.createLaunchEmergencyDialerIntent(number);
Fan Zhang5431ef52019-10-14 13:43:46 -07002244 } catch (RemoteException e) {
2245 Log.e(TAG, "Error createLaunchEmergencyDialerIntent", e);
2246 }
Tyler Gunn753aa102020-04-23 10:16:26 -07002247 } else {
2248 Log.w(TAG, "createLaunchEmergencyDialerIntent - Telecom service not available.");
Fan Zhang5431ef52019-10-14 13:43:46 -07002249 }
Tyler Gunn753aa102020-04-23 10:16:26 -07002250
2251 // Telecom service knows the package name of the expected emergency dialer package; if it
2252 // is not available, then fallback to not targeting a specific package.
2253 Intent intent = new Intent(Intent.ACTION_DIAL_EMERGENCY);
2254 if (!TextUtils.isEmpty(number) && TextUtils.isDigitsOnly(number)) {
2255 intent.setData(Uri.fromParts(PhoneAccount.SCHEME_TEL, number, null));
2256 }
2257 return intent;
Fan Zhang5431ef52019-10-14 13:43:46 -07002258 }
2259
Tyler Gunnf5035432017-01-09 09:43:12 -08002260 /**
2261 * Determines whether Telecom would permit an incoming call to be added via the
2262 * {@link #addNewIncomingCall(PhoneAccountHandle, Bundle)} API for the specified
2263 * {@link PhoneAccountHandle}.
2264 * <p>
2265 * A {@link ConnectionService} may not add a call for the specified {@link PhoneAccountHandle}
2266 * in the following situations:
2267 * <ul>
2268 * <li>{@link PhoneAccount} does not have property
2269 * {@link PhoneAccount#CAPABILITY_SELF_MANAGED} set (i.e. it is a managed
2270 * {@link ConnectionService}), and the active or held call limit has
2271 * been reached.</li>
2272 * <li>There is an ongoing emergency call.</li>
2273 * </ul>
2274 *
2275 * @param phoneAccountHandle The {@link PhoneAccountHandle} the call will be added for.
2276 * @return {@code true} if telecom will permit an incoming call to be added, {@code false}
2277 * otherwise.
2278 */
2279 public boolean isIncomingCallPermitted(PhoneAccountHandle phoneAccountHandle) {
Tyler Gunn44e01912017-01-31 10:49:05 -08002280 if (phoneAccountHandle == null) {
2281 return false;
2282 }
2283
Tyler Gunnf5035432017-01-09 09:43:12 -08002284 ITelecomService service = getTelecomService();
2285 if (service != null) {
2286 try {
2287 return service.isIncomingCallPermitted(phoneAccountHandle);
2288 } catch (RemoteException e) {
2289 Log.e(TAG, "Error isIncomingCallPermitted", e);
2290 }
2291 }
2292 return false;
2293 }
2294
2295 /**
2296 * Determines whether Telecom would permit an outgoing call to be placed via the
2297 * {@link #placeCall(Uri, Bundle)} API for the specified {@link PhoneAccountHandle}.
2298 * <p>
2299 * A {@link ConnectionService} may not place a call for the specified {@link PhoneAccountHandle}
2300 * in the following situations:
2301 * <ul>
2302 * <li>{@link PhoneAccount} does not have property
2303 * {@link PhoneAccount#CAPABILITY_SELF_MANAGED} set (i.e. it is a managed
2304 * {@link ConnectionService}), and the active, held or ringing call limit has
2305 * been reached.</li>
2306 * <li>{@link PhoneAccount} has property {@link PhoneAccount#CAPABILITY_SELF_MANAGED} set
2307 * (i.e. it is a self-managed {@link ConnectionService} and there is an ongoing call in
2308 * another {@link ConnectionService}.</li>
2309 * <li>There is an ongoing emergency call.</li>
2310 * </ul>
2311 *
2312 * @param phoneAccountHandle The {@link PhoneAccountHandle} the call will be added for.
2313 * @return {@code true} if telecom will permit an outgoing call to be placed, {@code false}
2314 * otherwise.
2315 */
2316 public boolean isOutgoingCallPermitted(PhoneAccountHandle phoneAccountHandle) {
2317 ITelecomService service = getTelecomService();
2318 if (service != null) {
2319 try {
2320 return service.isOutgoingCallPermitted(phoneAccountHandle);
2321 } catch (RemoteException e) {
2322 Log.e(TAG, "Error isOutgoingCallPermitted", e);
2323 }
2324 }
2325 return false;
2326 }
2327
Sanket Padawea8eddd42017-11-03 11:07:35 -07002328 /**
Tyler Gunn9d127732018-03-02 15:45:51 -08002329 * Called by an app to indicate that it wishes to accept the handover of an ongoing call to a
2330 * {@link PhoneAccountHandle} it defines.
2331 * <p>
2332 * A call handover is the process where an ongoing call is transferred from one app (i.e.
2333 * {@link ConnectionService} to another app. The user could, for example, choose to continue a
2334 * mobile network call in a video calling app. The mobile network call via the Telephony stack
2335 * is referred to as the source of the handover, and the video calling app is referred to as the
2336 * destination.
2337 * <p>
2338 * When considering a handover scenario the <em>initiating</em> device is where a user initiated
2339 * the handover process (e.g. by calling {@link android.telecom.Call#handoverTo(
2340 * PhoneAccountHandle, int, Bundle)}, and the other device is considered the <em>receiving</em>
2341 * device.
2342 * <p>
2343 * For a full discussion of the handover process and the APIs involved, see
2344 * {@link android.telecom.Call#handoverTo(PhoneAccountHandle, int, Bundle)}.
2345 * <p>
2346 * This method is called from the <em>receiving</em> side of a handover to indicate a desire to
2347 * accept the handover of an ongoing call to another {@link ConnectionService} identified by
Sanket Padawea8eddd42017-11-03 11:07:35 -07002348 * {@link PhoneAccountHandle} destAcct. For managed {@link ConnectionService}s, the specified
2349 * {@link PhoneAccountHandle} must have been registered with {@link #registerPhoneAccount} and
2350 * the user must have enabled the corresponding {@link PhoneAccount}. This can be checked using
2351 * {@link #getPhoneAccount}. Self-managed {@link ConnectionService}s must have
2352 * {@link android.Manifest.permission#MANAGE_OWN_CALLS} to handover a call to it.
2353 * <p>
2354 * Once invoked, this method will cause the system to bind to the {@link ConnectionService}
2355 * associated with the {@link PhoneAccountHandle} destAcct and call
2356 * (See {@link ConnectionService#onCreateIncomingHandoverConnection}).
2357 * <p>
2358 * For a managed {@link ConnectionService}, a {@link SecurityException} will be thrown if either
2359 * the {@link PhoneAccountHandle} destAcct does not correspond to a registered
2360 * {@link PhoneAccount} or the associated {@link PhoneAccount} is not currently enabled by the
2361 * user.
2362 * <p>
2363 * For a self-managed {@link ConnectionService}, a {@link SecurityException} will be thrown if
2364 * the calling app does not have {@link android.Manifest.permission#MANAGE_OWN_CALLS}.
2365 *
2366 * @param srcAddr The {@link android.net.Uri} of the ongoing call to handover to the caller’s
2367 * {@link ConnectionService}.
2368 * @param videoState Video state after the handover.
2369 * @param destAcct The {@link PhoneAccountHandle} registered to the calling package.
2370 */
Tyler Gunn9d127732018-03-02 15:45:51 -08002371 public void acceptHandover(Uri srcAddr, @VideoProfile.VideoState int videoState,
2372 PhoneAccountHandle destAcct) {
Sanket Padawea8eddd42017-11-03 11:07:35 -07002373 try {
2374 if (isServiceConnected()) {
2375 getTelecomService().acceptHandover(srcAddr, videoState, destAcct);
2376 }
2377 } catch (RemoteException e) {
2378 Log.e(TAG, "RemoteException acceptHandover: " + e);
2379 }
2380 }
Tyler Gunnf5035432017-01-09 09:43:12 -08002381
Tyler Gunn5bd90852018-09-21 09:37:07 -07002382 /**
2383 * Determines if there is an ongoing emergency call. This can be either an outgoing emergency
2384 * call, as identified by the dialed number, or because a call was identified by the network
2385 * as an emergency call.
2386 * @return {@code true} if there is an ongoing emergency call, {@code false} otherwise.
2387 * @hide
2388 */
2389 @SystemApi
2390 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
2391 public boolean isInEmergencyCall() {
2392 try {
2393 if (isServiceConnected()) {
2394 return getTelecomService().isInEmergencyCall();
2395 }
2396 } catch (RemoteException e) {
2397 Log.e(TAG, "RemoteException isInEmergencyCall: " + e);
2398 return false;
2399 }
2400 return false;
2401 }
2402
Tyler Gunnc37445c2018-09-28 16:16:20 -07002403 /**
2404 * Handles {@link Intent#ACTION_CALL} intents trampolined from UserCallActivity.
2405 * @param intent The {@link Intent#ACTION_CALL} intent to handle.
Brad Ebingera9a33e12019-09-27 16:55:35 -07002406 * @param callingPackageProxy The original package that called this before it was trampolined.
Tyler Gunnc37445c2018-09-28 16:16:20 -07002407 * @hide
2408 */
Brad Ebingera9a33e12019-09-27 16:55:35 -07002409 public void handleCallIntent(Intent intent, String callingPackageProxy) {
Tyler Gunnc37445c2018-09-28 16:16:20 -07002410 try {
2411 if (isServiceConnected()) {
Brad Ebingera9a33e12019-09-27 16:55:35 -07002412 getTelecomService().handleCallIntent(intent, callingPackageProxy);
Tyler Gunnc37445c2018-09-28 16:16:20 -07002413 }
2414 } catch (RemoteException e) {
2415 Log.e(TAG, "RemoteException handleCallIntent: " + e);
2416 }
Tyler Gunnc37445c2018-09-28 16:16:20 -07002417 }
2418
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002419 private ITelecomService getTelecomService() {
Hall Liue1bc2ec2015-10-09 15:58:37 -07002420 if (mTelecomServiceOverride != null) {
2421 return mTelecomServiceOverride;
2422 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002423 return ITelecomService.Stub.asInterface(ServiceManager.getService(Context.TELECOM_SERVICE));
Santos Cordon6c7a3882014-06-25 15:30:08 -07002424 }
Santos Cordon9eb45932014-06-27 12:28:43 -07002425
2426 private boolean isServiceConnected() {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002427 boolean isConnected = getTelecomService() != null;
Santos Cordon9eb45932014-06-27 12:28:43 -07002428 if (!isConnected) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002429 Log.w(TAG, "Telecom Service not found.");
Santos Cordon9eb45932014-06-27 12:28:43 -07002430 }
2431 return isConnected;
2432 }
Evan Charlton235c1592014-09-05 15:41:23 +00002433}