blob: 55de7ab7eb1e17234ebe3011e0bd97af85ede96e [file] [log] [blame]
Yorke Leeb4ce1432014-06-09 13:53:23 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
Santos Cordon9eb45932014-06-27 12:28:43 -07004 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5 * in compliance with the License. You may obtain a copy of the License at
Yorke Leeb4ce1432014-06-09 13:53:23 -07006 *
Santos Cordon9eb45932014-06-27 12:28:43 -07007 * http://www.apache.org/licenses/LICENSE-2.0
Yorke Leeb4ce1432014-06-09 13:53:23 -07008 *
Santos Cordon9eb45932014-06-27 12:28:43 -07009 * Unless required by applicable law or agreed to in writing, software distributed under the License
10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11 * or implied. See the License for the specific language governing permissions and limitations under
12 * the License.
Yorke Leeb4ce1432014-06-09 13:53:23 -070013 */
14
Tyler Gunnef9f6f92014-09-12 22:16:17 -070015package android.telecom;
Yorke Leeb4ce1432014-06-09 13:53:23 -070016
Hall Liu0464b9b2016-01-12 15:32:58 -080017import android.Manifest;
Yorke Leec61d1362015-09-21 17:25:25 -070018import android.annotation.RequiresPermission;
Jeff Sharkey910e0812017-04-21 16:29:27 -060019import android.annotation.SuppressAutoDoc;
Santos Cordon6c7a3882014-06-25 15:30:08 -070020import android.annotation.SystemApi;
Jeff Sharkeyd86b8fe2017-06-02 17:36:26 -060021import android.annotation.SystemService;
Santos Cordon6c7a3882014-06-25 15:30:08 -070022import android.content.ComponentName;
Yorke Leeb4ce1432014-06-09 13:53:23 -070023import android.content.Context;
Yorke Lee3e56ba12015-04-23 12:32:36 -070024import android.content.Intent;
Nancy Chenb2299c12014-10-29 18:22:11 -070025import android.net.Uri;
Santos Cordon96efb482014-07-19 14:57:05 -070026import android.os.Bundle;
Santos Cordon6c7a3882014-06-25 15:30:08 -070027import android.os.RemoteException;
28import android.os.ServiceManager;
Yorke Lee2ae312e2014-09-12 17:58:48 -070029import android.telephony.TelephonyManager;
Anthony Lee67279262014-10-27 11:28:40 -070030import android.text.TextUtils;
Santos Cordon6c7a3882014-06-25 15:30:08 -070031import android.util.Log;
Yorke Leeb4ce1432014-06-09 13:53:23 -070032
Tyler Gunnef9f6f92014-09-12 22:16:17 -070033import com.android.internal.telecom.ITelecomService;
Yorke Leeb4ce1432014-06-09 13:53:23 -070034
Jay Shrauner7746a942014-08-26 12:15:15 -070035import java.util.ArrayList;
Tyler Gunna1ed7d12014-09-08 09:52:22 -070036import java.util.Collections;
Ihab Awad807fe0a2014-07-09 12:30:52 -070037import java.util.List;
38
Yorke Leeb4ce1432014-06-09 13:53:23 -070039/**
Santos Cordond9e614f2014-10-28 13:10:36 -070040 * Provides access to information about active calls and registration/call-management functionality.
Evan Charlton0e094d92014-11-08 15:49:16 -080041 * Apps can use methods in this class to determine the current call state.
Santos Cordond9e614f2014-10-28 13:10:36 -070042 * <p>
43 * Apps do not instantiate this class directly; instead, they retrieve a reference to an instance
44 * through {@link Context#getSystemService Context.getSystemService(Context.TELECOM_SERVICE)}.
45 * <p>
46 * Note that access to some telecom information is permission-protected. Your app cannot access the
47 * protected information or gain access to protected functionality unless it has the appropriate
48 * permissions declared in its manifest file. Where permissions apply, they are noted in the method
49 * descriptions.
Yorke Leeb4ce1432014-06-09 13:53:23 -070050 */
Jeff Sharkey910e0812017-04-21 16:29:27 -060051@SuppressAutoDoc
Jeff Sharkeyd86b8fe2017-06-02 17:36:26 -060052@SystemService(Context.TELECOM_SERVICE)
Tyler Gunnef9f6f92014-09-12 22:16:17 -070053public class TelecomManager {
Ihab Awad807fe0a2014-07-09 12:30:52 -070054
Evan Charlton10197192014-07-19 15:00:29 -070055 /**
Santos Cordon96efb482014-07-19 14:57:05 -070056 * Activity action: Starts the UI for handing an incoming call. This intent starts the in-call
Tyler Gunnef9f6f92014-09-12 22:16:17 -070057 * UI by notifying the Telecom system that an incoming call exists for a specific call service
58 * (see {@link android.telecom.ConnectionService}). Telecom reads the Intent extras to find
59 * and bind to the appropriate {@link android.telecom.ConnectionService} which Telecom will
Santos Cordon96efb482014-07-19 14:57:05 -070060 * ultimately use to control and get information about the call.
61 * <p>
62 * Input: get*Extra field {@link #EXTRA_PHONE_ACCOUNT_HANDLE} contains the component name of the
Tyler Gunnef9f6f92014-09-12 22:16:17 -070063 * {@link android.telecom.ConnectionService} that Telecom should bind to. Telecom will then
Evan Charlton10197192014-07-19 15:00:29 -070064 * ask the connection service for more information about the call prior to showing any UI.
Brad Ebinger23b1c6d2017-01-12 13:10:40 -080065 *
66 * @deprecated Use {@link #addNewIncomingCall} instead.
Evan Charlton10197192014-07-19 15:00:29 -070067 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -070068 public static final String ACTION_INCOMING_CALL = "android.telecom.action.INCOMING_CALL";
Evan Charlton10197192014-07-19 15:00:29 -070069
70 /**
Yorke Leec3cf9822014-10-02 09:38:39 -070071 * Similar to {@link #ACTION_INCOMING_CALL}, but is used only by Telephony to add a new
72 * sim-initiated MO call for carrier testing.
Brad Ebinger23b1c6d2017-01-12 13:10:40 -080073 * @deprecated Use {@link #addNewUnknownCall} instead.
Yorke Leec3cf9822014-10-02 09:38:39 -070074 * @hide
75 */
76 public static final String ACTION_NEW_UNKNOWN_CALL = "android.telecom.action.NEW_UNKNOWN_CALL";
77
78 /**
Santos Cordon895d4b82015-06-25 16:41:48 -070079 * An {@link android.content.Intent} action sent by the telecom framework to start a
80 * configuration dialog for a registered {@link PhoneAccount}. There is no default dialog
81 * and each app that registers a {@link PhoneAccount} should provide one if desired.
82 * <p>
83 * A user can access the list of enabled {@link android.telecom.PhoneAccount}s through the Phone
84 * app's settings menu. For each entry, the settings app will add a click action. When
85 * triggered, the click-action will start this intent along with the extra
86 * {@link #EXTRA_PHONE_ACCOUNT_HANDLE} to indicate the {@link PhoneAccount} to configure. If the
87 * {@link PhoneAccount} package does not register an {@link android.app.Activity} for this
88 * intent, then it will not be sent.
Evan Charlton10197192014-07-19 15:00:29 -070089 */
Santos Cordon895d4b82015-06-25 16:41:48 -070090 public static final String ACTION_CONFIGURE_PHONE_ACCOUNT =
91 "android.telecom.action.CONFIGURE_PHONE_ACCOUNT";
Evan Charlton10197192014-07-19 15:00:29 -070092
93 /**
Andrew Lee873cfbf2015-02-26 15:22:00 -080094 * The {@link android.content.Intent} action used to show the call accessibility settings page.
95 */
96 public static final String ACTION_SHOW_CALL_ACCESSIBILITY_SETTINGS =
97 "android.telecom.action.SHOW_CALL_ACCESSIBILITY_SETTINGS";
98
99 /**
Yorke Lee3818a892014-07-21 15:57:17 -0700100 * The {@link android.content.Intent} action used to show the call settings page.
101 */
102 public static final String ACTION_SHOW_CALL_SETTINGS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700103 "android.telecom.action.SHOW_CALL_SETTINGS";
Yorke Lee3818a892014-07-21 15:57:17 -0700104
105 /**
Andrew Lee866080f2015-02-19 12:05:33 -0800106 * The {@link android.content.Intent} action used to show the respond via SMS settings page.
107 */
108 public static final String ACTION_SHOW_RESPOND_VIA_SMS_SETTINGS =
109 "android.telecom.action.SHOW_RESPOND_VIA_SMS_SETTINGS";
110
111 /**
Evan Charlton6d8604f2014-09-04 12:38:17 -0700112 * The {@link android.content.Intent} action used to show the settings page used to configure
113 * {@link PhoneAccount} preferences.
114 */
115 public static final String ACTION_CHANGE_PHONE_ACCOUNTS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700116 "android.telecom.action.CHANGE_PHONE_ACCOUNTS";
Evan Charlton6d8604f2014-09-04 12:38:17 -0700117
118 /**
Tyler Gunn346892f2017-04-14 13:43:30 -0700119 * {@link android.content.Intent} action used indicate that a new phone account was just
120 * registered.
121 * <p>
122 * The Intent {@link Intent#getExtras() extras} will contain {@link #EXTRA_PHONE_ACCOUNT_HANDLE}
123 * to indicate which {@link PhoneAccount} was registered.
124 * <p>
125 * Will only be sent to the default dialer app (see {@link #getDefaultDialerPackage()}).
Santos Cordonc66f3ba2015-02-27 15:22:07 -0800126 */
Santos Cordonc66f3ba2015-02-27 15:22:07 -0800127 public static final String ACTION_PHONE_ACCOUNT_REGISTERED =
128 "android.telecom.action.PHONE_ACCOUNT_REGISTERED";
129
130 /**
Tyler Gunn346892f2017-04-14 13:43:30 -0700131 * {@link android.content.Intent} action used indicate that a phone account was just
132 * unregistered.
133 * <p>
134 * The Intent {@link Intent#getExtras() extras} will contain {@link #EXTRA_PHONE_ACCOUNT_HANDLE}
135 * to indicate which {@link PhoneAccount} was unregistered.
136 * <p>
137 * Will only be sent to the default dialer app (see {@link #getDefaultDialerPackage()}).
Bryce Lee30b0aa02015-09-23 21:53:53 -0700138 */
Bryce Lee30b0aa02015-09-23 21:53:53 -0700139 public static final String ACTION_PHONE_ACCOUNT_UNREGISTERED =
140 "android.telecom.action.PHONE_ACCOUNT_UNREGISTERED";
141
142 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700143 * Activity action: Shows a dialog asking the user whether or not they want to replace the
144 * current default Dialer with the one specified in
145 * {@link #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME}.
146 *
147 * Usage example:
148 * <pre>
149 * Intent intent = new Intent(TelecomManager.ACTION_CHANGE_DEFAULT_DIALER);
150 * intent.putExtra(TelecomManager.EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME,
151 * getActivity().getPackageName());
152 * startActivity(intent);
153 * </pre>
154 */
155 public static final String ACTION_CHANGE_DEFAULT_DIALER =
156 "android.telecom.action.CHANGE_DEFAULT_DIALER";
157
158 /**
Yorke Lee107c4ce2015-06-15 12:08:24 -0700159 * Broadcast intent action indicating that the current default dialer has changed.
160 * The string extra {@link #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME} will contain the
161 * name of the package that the default dialer was changed to.
162 *
163 * @see #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME
164 */
165 public static final String ACTION_DEFAULT_DIALER_CHANGED =
166 "android.telecom.action.DEFAULT_DIALER_CHANGED";
167
168 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700169 * Extra value used to provide the package name for {@link #ACTION_CHANGE_DEFAULT_DIALER}.
170 */
171 public static final String EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME =
172 "android.telecom.extra.CHANGE_DEFAULT_DIALER_PACKAGE_NAME";
173
174 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700175 * Optional extra for {@link android.content.Intent#ACTION_CALL} containing a boolean that
176 * determines whether the speakerphone should be automatically turned on for an outgoing call.
Evan Charlton10197192014-07-19 15:00:29 -0700177 */
178 public static final String EXTRA_START_CALL_WITH_SPEAKERPHONE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700179 "android.telecom.extra.START_CALL_WITH_SPEAKERPHONE";
Evan Charlton10197192014-07-19 15:00:29 -0700180
181 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700182 * Optional extra for {@link android.content.Intent#ACTION_CALL} containing an integer that
183 * determines the desired video state for an outgoing call.
Santos Cordon96efb482014-07-19 14:57:05 -0700184 * Valid options:
Yorke Lee32f24732015-05-12 16:18:03 -0700185 * {@link VideoProfile#STATE_AUDIO_ONLY},
186 * {@link VideoProfile#STATE_BIDIRECTIONAL},
187 * {@link VideoProfile#STATE_RX_ENABLED},
188 * {@link VideoProfile#STATE_TX_ENABLED}.
Evan Charlton10197192014-07-19 15:00:29 -0700189 */
190 public static final String EXTRA_START_CALL_WITH_VIDEO_STATE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700191 "android.telecom.extra.START_CALL_WITH_VIDEO_STATE";
Evan Charlton10197192014-07-19 15:00:29 -0700192
193 /**
Tyler Gunndd8756d2017-03-13 18:15:15 -0700194 * Optional extra for {@link #addNewIncomingCall(PhoneAccountHandle, Bundle)} containing an
195 * integer that determines the requested video state for an incoming call.
196 * Valid options:
197 * {@link VideoProfile#STATE_AUDIO_ONLY},
198 * {@link VideoProfile#STATE_BIDIRECTIONAL},
199 * {@link VideoProfile#STATE_RX_ENABLED},
200 * {@link VideoProfile#STATE_TX_ENABLED}.
201 */
202 public static final String EXTRA_INCOMING_VIDEO_STATE =
203 "android.telecom.extra.INCOMING_VIDEO_STATE";
204
205 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700206 * The extra used with an {@link android.content.Intent#ACTION_CALL} and
207 * {@link android.content.Intent#ACTION_DIAL} {@code Intent} to specify a
208 * {@link PhoneAccountHandle} to use when making the call.
Evan Charlton10197192014-07-19 15:00:29 -0700209 * <p class="note">
Santos Cordon96efb482014-07-19 14:57:05 -0700210 * Retrieve with {@link android.content.Intent#getParcelableExtra(String)}.
Evan Charlton10197192014-07-19 15:00:29 -0700211 */
Evan Charlton6eb262c2014-07-19 18:18:19 -0700212 public static final String EXTRA_PHONE_ACCOUNT_HANDLE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700213 "android.telecom.extra.PHONE_ACCOUNT_HANDLE";
Evan Charlton10197192014-07-19 15:00:29 -0700214
215 /**
Tyler Gunn335ff2e2015-07-30 14:18:33 -0700216 * Optional extra for {@link android.content.Intent#ACTION_CALL} containing a string call
217 * subject which will be associated with an outgoing call. Should only be specified if the
218 * {@link PhoneAccount} supports the capability {@link PhoneAccount#CAPABILITY_CALL_SUBJECT}.
219 */
220 public static final String EXTRA_CALL_SUBJECT = "android.telecom.extra.CALL_SUBJECT";
221
222 /**
Yorke Lee04ea7d32015-06-05 15:59:18 -0700223 * The extra used by a {@link ConnectionService} to provide the handle of the caller that
224 * has initiated a new incoming call.
225 */
Yorke Lee02fb5bc2015-06-09 12:27:36 -0700226 public static final String EXTRA_INCOMING_CALL_ADDRESS =
227 "android.telecom.extra.INCOMING_CALL_ADDRESS";
Yorke Lee04ea7d32015-06-05 15:59:18 -0700228
229 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700230 * Optional extra for {@link #ACTION_INCOMING_CALL} containing a {@link Bundle} which contains
231 * metadata about the call. This {@link Bundle} will be returned to the
232 * {@link ConnectionService}.
Evan Charlton10197192014-07-19 15:00:29 -0700233 */
234 public static final String EXTRA_INCOMING_CALL_EXTRAS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700235 "android.telecom.extra.INCOMING_CALL_EXTRAS";
Evan Charlton10197192014-07-19 15:00:29 -0700236
237 /**
Nancy Chen10798dc2014-08-08 14:00:25 -0700238 * Optional extra for {@link android.content.Intent#ACTION_CALL} and
239 * {@link android.content.Intent#ACTION_DIAL} {@code Intent} containing a {@link Bundle}
240 * which contains metadata about the call. This {@link Bundle} will be saved into
Santos Cordon7a060d52015-06-19 14:52:04 -0700241 * {@code Call.Details} and passed to the {@link ConnectionService} when placing the call.
Nancy Chen10798dc2014-08-08 14:00:25 -0700242 */
243 public static final String EXTRA_OUTGOING_CALL_EXTRAS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700244 "android.telecom.extra.OUTGOING_CALL_EXTRAS";
Nancy Chen10798dc2014-08-08 14:00:25 -0700245
246 /**
Yorke Leec3cf9822014-10-02 09:38:39 -0700247 * @hide
248 */
249 public static final String EXTRA_UNKNOWN_CALL_HANDLE =
250 "android.telecom.extra.UNKNOWN_CALL_HANDLE";
251
252 /**
Sailesh Nepalda6bb382016-04-14 19:51:46 -0700253 * Optional extra for incoming and outgoing calls containing a long which specifies the time the
254 * call was created. This value is in milliseconds since boot.
255 * @hide
256 */
257 public static final String EXTRA_CALL_CREATED_TIME_MILLIS =
258 "android.telecom.extra.CALL_CREATED_TIME_MILLIS";
259
260 /**
261 * Optional extra for incoming and outgoing calls containing a long which specifies the time
262 * telecom began routing the call. This value is in milliseconds since boot.
263 * @hide
264 */
265 public static final String EXTRA_CALL_TELECOM_ROUTING_START_TIME_MILLIS =
266 "android.telecom.extra.CALL_TELECOM_ROUTING_START_TIME_MILLIS";
267
268 /**
269 * Optional extra for incoming and outgoing calls containing a long which specifies the time
270 * telecom finished routing the call. This value is in milliseconds since boot.
271 * @hide
272 */
273 public static final String EXTRA_CALL_TELECOM_ROUTING_END_TIME_MILLIS =
274 "android.telecom.extra.CALL_TELECOM_ROUTING_END_TIME_MILLIS";
275
276 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700277 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
278 * containing the disconnect code.
Evan Charlton10197192014-07-19 15:00:29 -0700279 */
280 public static final String EXTRA_CALL_DISCONNECT_CAUSE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700281 "android.telecom.extra.CALL_DISCONNECT_CAUSE";
Evan Charlton10197192014-07-19 15:00:29 -0700282
283 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700284 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
285 * containing the disconnect message.
Evan Charlton10197192014-07-19 15:00:29 -0700286 */
287 public static final String EXTRA_CALL_DISCONNECT_MESSAGE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700288 "android.telecom.extra.CALL_DISCONNECT_MESSAGE";
Evan Charlton10197192014-07-19 15:00:29 -0700289
290 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700291 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
292 * containing the component name of the associated connection service.
Evan Charlton0e094d92014-11-08 15:49:16 -0800293 * @hide
Evan Charlton10197192014-07-19 15:00:29 -0700294 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800295 @SystemApi
Evan Charlton10197192014-07-19 15:00:29 -0700296 public static final String EXTRA_CONNECTION_SERVICE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700297 "android.telecom.extra.CONNECTION_SERVICE";
Evan Charlton10197192014-07-19 15:00:29 -0700298
299 /**
Hall Liu90f62902015-11-19 16:19:24 -0800300 * Optional extra for communicating the call technology used by a
301 * {@link com.android.internal.telephony.Connection} to Telecom
302 * @hide
303 */
304 public static final String EXTRA_CALL_TECHNOLOGY_TYPE =
305 "android.telecom.extra.CALL_TECHNOLOGY_TYPE";
306
307 /**
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700308 * An optional {@link android.content.Intent#ACTION_CALL} intent extra denoting the
309 * package name of the app specifying an alternative gateway for the call.
310 * The value is a string.
311 *
312 * (The following comment corresponds to the all GATEWAY_* extras)
313 * An app which sends the {@link android.content.Intent#ACTION_CALL} intent can specify an
314 * alternative address to dial which is different from the one specified and displayed to
315 * the user. This alternative address is referred to as the gateway address.
316 */
317 public static final String GATEWAY_PROVIDER_PACKAGE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700318 "android.telecom.extra.GATEWAY_PROVIDER_PACKAGE";
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700319
320 /**
321 * An optional {@link android.content.Intent#ACTION_CALL} intent extra corresponding to the
322 * original address to dial for the call. This is used when an alternative gateway address is
323 * provided to recall the original address.
324 * The value is a {@link android.net.Uri}.
325 *
326 * (See {@link #GATEWAY_PROVIDER_PACKAGE} for details)
327 */
328 public static final String GATEWAY_ORIGINAL_ADDRESS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700329 "android.telecom.extra.GATEWAY_ORIGINAL_ADDRESS";
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700330
331 /**
Evan Charlton10197192014-07-19 15:00:29 -0700332 * The number which the party on the other side of the line will see (and use to return the
333 * call).
334 * <p>
Santos Cordon96efb482014-07-19 14:57:05 -0700335 * {@link ConnectionService}s which interact with {@link RemoteConnection}s should only populate
336 * this if the {@link android.telephony.TelephonyManager#getLine1Number()} value, as that is the
337 * user's expected caller ID.
Evan Charlton10197192014-07-19 15:00:29 -0700338 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700339 public static final String EXTRA_CALL_BACK_NUMBER = "android.telecom.extra.CALL_BACK_NUMBER";
Evan Charlton10197192014-07-19 15:00:29 -0700340
341 /**
Hall Liu8f613fb2017-02-14 18:11:11 -0800342 * The number of milliseconds that Telecom should wait after disconnecting a call via the
343 * ACTION_NEW_OUTGOING_CALL broadcast, in order to wait for the app which cancelled the call
344 * to make a new one.
345 * @hide
346 */
347 public static final String EXTRA_NEW_OUTGOING_CALL_CANCEL_TIMEOUT =
348 "android.telecom.extra.NEW_OUTGOING_CALL_CANCEL_TIMEOUT";
349
350 /**
Hall Liu95d55872017-01-25 17:12:49 -0800351 * A boolean extra, which when set on the {@link Intent#ACTION_CALL} intent or on the bundle
352 * passed into {@link #placeCall(Uri, Bundle)}, indicates that the call should be initiated with
353 * an RTT session open. See {@link android.telecom.Call.RttCall} for more information on RTT.
354 */
355 public static final String EXTRA_START_CALL_WITH_RTT =
356 "android.telecom.extra.START_CALL_WITH_RTT";
357
358 /**
Santos Cordonf2600eb2015-06-22 15:02:20 -0700359 * A boolean meta-data value indicating whether an {@link InCallService} implements an
360 * in-call user interface. Dialer implementations (see {@link #getDefaultDialerPackage()}) which
361 * would also like to replace the in-call interface should set this meta-data to {@code true} in
362 * the manifest registration of their {@link InCallService}.
363 */
364 public static final String METADATA_IN_CALL_SERVICE_UI = "android.telecom.IN_CALL_SERVICE_UI";
365
366 /**
Santos Cordon88881552015-12-10 17:29:54 -0800367 * A boolean meta-data value indicating whether an {@link InCallService} implements an
368 * in-call user interface to be used while the device is in car-mode (see
369 * {@link android.content.res.Configuration.UI_MODE_TYPE_CAR}).
370 *
371 * @hide
372 */
373 public static final String METADATA_IN_CALL_SERVICE_CAR_MODE_UI =
374 "android.telecom.IN_CALL_SERVICE_CAR_MODE_UI";
375
376 /**
Sailesh Nepal9c2618b2016-01-23 16:28:22 -0800377 * A boolean meta-data value indicating whether an {@link InCallService} implements ringing.
378 * Dialer implementations (see {@link #getDefaultDialerPackage()}) which would also like to
379 * override the system provided ringing should set this meta-data to {@code true} in the
380 * manifest registration of their {@link InCallService}.
381 */
382 public static final String METADATA_IN_CALL_SERVICE_RINGING =
383 "android.telecom.IN_CALL_SERVICE_RINGING";
384
385 /**
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700386 * A boolean meta-data value indicating whether an {@link InCallService} wants to be informed of
387 * calls which have the {@link Call.Details#PROPERTY_IS_EXTERNAL_CALL} property. An external
388 * call is one which a {@link ConnectionService} knows about, but is not connected to directly.
389 * Dialer implementations (see {@link #getDefaultDialerPackage()}) which would like to be
390 * informed of external calls should set this meta-data to {@code true} in the manifest
391 * registration of their {@link InCallService}. By default, the {@link InCallService} will NOT
392 * be informed of external calls.
393 */
394 public static final String METADATA_INCLUDE_EXTERNAL_CALLS =
395 "android.telecom.INCLUDE_EXTERNAL_CALLS";
396
397 /**
Tyler Gunn24e18332017-02-10 09:42:49 -0800398 * A boolean meta-data value indicating whether an {@link InCallService} wants to be informed of
399 * calls which have the {@link Call.Details#PROPERTY_SELF_MANAGED} property. A self-managed
400 * call is one which originates from a self-managed {@link ConnectionService} which has chosen
401 * to implement its own call user interface. An {@link InCallService} implementation which
402 * would like to be informed of external calls should set this meta-data to {@code true} in the
403 * manifest registration of their {@link InCallService}. By default, the {@link InCallService}
404 * will NOT be informed about self-managed calls.
405 * <p>
406 * An {@link InCallService} which receives self-managed calls is free to view and control the
407 * state of calls in the self-managed {@link ConnectionService}. An example use-case is
Tyler Gunndd8756d2017-03-13 18:15:15 -0700408 * exposing these calls to an automotive device via its companion app.
409 * <p>
410 * This meta-data can only be set for an {@link InCallService} which also sets
411 * {@link #METADATA_IN_CALL_SERVICE_UI}. Only the default phone/dialer app, or a car-mode
412 * {@link InCallService} can see self-managed calls.
Tyler Gunn24e18332017-02-10 09:42:49 -0800413 * <p>
414 * See also {@link Connection#PROPERTY_SELF_MANAGED}.
415 */
416 public static final String METADATA_INCLUDE_SELF_MANAGED_CALLS =
417 "android.telecom.INCLUDE_SELF_MANAGED_CALLS";
418
419 /**
Evan Charlton10197192014-07-19 15:00:29 -0700420 * The dual tone multi-frequency signaling character sent to indicate the dialing system should
421 * pause for a predefined period.
422 */
423 public static final char DTMF_CHARACTER_PAUSE = ',';
424
425 /**
426 * The dual-tone multi-frequency signaling character sent to indicate the dialing system should
427 * wait for user confirmation before proceeding.
428 */
429 public static final char DTMF_CHARACTER_WAIT = ';';
430
431 /**
432 * TTY (teletypewriter) mode is off.
433 *
434 * @hide
435 */
436 public static final int TTY_MODE_OFF = 0;
437
438 /**
439 * TTY (teletypewriter) mode is on. The speaker is off and the microphone is muted. The user
440 * will communicate with the remote party by sending and receiving text messages.
441 *
442 * @hide
443 */
444 public static final int TTY_MODE_FULL = 1;
445
446 /**
447 * TTY (teletypewriter) mode is in hearing carryover mode (HCO). The microphone is muted but the
448 * speaker is on. The user will communicate with the remote party by sending text messages and
449 * hearing an audible reply.
450 *
451 * @hide
452 */
453 public static final int TTY_MODE_HCO = 2;
454
455 /**
456 * TTY (teletypewriter) mode is in voice carryover mode (VCO). The speaker is off but the
457 * microphone is still on. User will communicate with the remote party by speaking and receiving
458 * text message replies.
459 *
460 * @hide
461 */
462 public static final int TTY_MODE_VCO = 3;
463
464 /**
465 * Broadcast intent action indicating that the current TTY mode has changed. An intent extra
466 * provides this state as an int.
Evan Charlton10197192014-07-19 15:00:29 -0700467 *
Santos Cordon96efb482014-07-19 14:57:05 -0700468 * @see #EXTRA_CURRENT_TTY_MODE
Evan Charlton10197192014-07-19 15:00:29 -0700469 * @hide
470 */
471 public static final String ACTION_CURRENT_TTY_MODE_CHANGED =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700472 "android.telecom.action.CURRENT_TTY_MODE_CHANGED";
Evan Charlton10197192014-07-19 15:00:29 -0700473
474 /**
475 * The lookup key for an int that indicates the current TTY mode.
476 * Valid modes are:
477 * - {@link #TTY_MODE_OFF}
478 * - {@link #TTY_MODE_FULL}
479 * - {@link #TTY_MODE_HCO}
480 * - {@link #TTY_MODE_VCO}
481 *
482 * @hide
483 */
484 public static final String EXTRA_CURRENT_TTY_MODE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700485 "android.telecom.intent.extra.CURRENT_TTY_MODE";
Evan Charlton10197192014-07-19 15:00:29 -0700486
487 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700488 * Broadcast intent action indicating that the TTY preferred operating mode has changed. An
489 * intent extra provides the new mode as an int.
Evan Charlton10197192014-07-19 15:00:29 -0700490 *
Santos Cordon96efb482014-07-19 14:57:05 -0700491 * @see #EXTRA_TTY_PREFERRED_MODE
Evan Charlton10197192014-07-19 15:00:29 -0700492 * @hide
493 */
494 public static final String ACTION_TTY_PREFERRED_MODE_CHANGED =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700495 "android.telecom.action.TTY_PREFERRED_MODE_CHANGED";
Evan Charlton10197192014-07-19 15:00:29 -0700496
497 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700498 * The lookup key for an int that indicates preferred TTY mode. Valid modes are: -
499 * {@link #TTY_MODE_OFF} - {@link #TTY_MODE_FULL} - {@link #TTY_MODE_HCO} -
500 * {@link #TTY_MODE_VCO}
Evan Charlton10197192014-07-19 15:00:29 -0700501 *
502 * @hide
503 */
504 public static final String EXTRA_TTY_PREFERRED_MODE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700505 "android.telecom.intent.extra.TTY_PREFERRED";
Evan Charlton10197192014-07-19 15:00:29 -0700506
Nancy Chen9d568c02014-09-08 14:17:59 -0700507 /**
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700508 * Broadcast intent action for letting custom component know to show the missed call
Sailesh Nepalbe15ad92016-01-21 19:26:20 -0800509 * notification. If no custom component exists then this is sent to the default dialer which
510 * should post a missed-call notification.
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700511 */
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700512 public static final String ACTION_SHOW_MISSED_CALLS_NOTIFICATION =
513 "android.telecom.action.SHOW_MISSED_CALLS_NOTIFICATION";
514
515 /**
Sailesh Nepalbe15ad92016-01-21 19:26:20 -0800516 * The number of calls associated with the notification. If the number is zero then the missed
517 * call notification should be dismissed.
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700518 */
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700519 public static final String EXTRA_NOTIFICATION_COUNT =
520 "android.telecom.extra.NOTIFICATION_COUNT";
521
522 /**
523 * The number associated with the missed calls. This number is only relevant
524 * when EXTRA_NOTIFICATION_COUNT is 1.
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700525 */
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700526 public static final String EXTRA_NOTIFICATION_PHONE_NUMBER =
527 "android.telecom.extra.NOTIFICATION_PHONE_NUMBER";
528
529 /**
Bryce Lee8d41d1d2015-08-10 07:40:42 -0700530 * The intent to clear missed calls.
531 * @hide
532 */
533 @SystemApi
534 public static final String EXTRA_CLEAR_MISSED_CALLS_INTENT =
535 "android.telecom.extra.CLEAR_MISSED_CALLS_INTENT";
536
537 /**
538 * The intent to call back a missed call.
539 * @hide
540 */
541 @SystemApi
542 public static final String EXTRA_CALL_BACK_INTENT =
543 "android.telecom.extra.CALL_BACK_INTENT";
544
545 /**
Nancy Chen9d568c02014-09-08 14:17:59 -0700546 * The following 4 constants define how properties such as phone numbers and names are
547 * displayed to the user.
548 */
549
Santos Cordoned769ae2015-05-13 18:47:38 -0700550 /**
551 * Indicates that the address or number of a call is allowed to be displayed for caller ID.
552 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700553 public static final int PRESENTATION_ALLOWED = 1;
554
Santos Cordoned769ae2015-05-13 18:47:38 -0700555 /**
556 * Indicates that the address or number of a call is blocked by the other party.
557 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700558 public static final int PRESENTATION_RESTRICTED = 2;
559
Santos Cordoned769ae2015-05-13 18:47:38 -0700560 /**
561 * Indicates that the address or number of a call is not specified or known by the carrier.
562 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700563 public static final int PRESENTATION_UNKNOWN = 3;
564
Santos Cordoned769ae2015-05-13 18:47:38 -0700565 /**
566 * Indicates that the address or number of a call belongs to a pay phone.
567 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700568 public static final int PRESENTATION_PAYPHONE = 4;
569
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700570 private static final String TAG = "TelecomManager";
Yorke Leeb4ce1432014-06-09 13:53:23 -0700571
572 private final Context mContext;
Yorke Leeb4ce1432014-06-09 13:53:23 -0700573
Hall Liue1bc2ec2015-10-09 15:58:37 -0700574 private final ITelecomService mTelecomServiceOverride;
575
Santos Cordon6c7a3882014-06-25 15:30:08 -0700576 /**
577 * @hide
578 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700579 public static TelecomManager from(Context context) {
580 return (TelecomManager) context.getSystemService(Context.TELECOM_SERVICE);
Yorke Leeb4ce1432014-06-09 13:53:23 -0700581 }
Santos Cordon6c7a3882014-06-25 15:30:08 -0700582
583 /**
584 * @hide
585 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700586 public TelecomManager(Context context) {
Hall Liue1bc2ec2015-10-09 15:58:37 -0700587 this(context, null);
588 }
589
590 /**
591 * @hide
592 */
593 public TelecomManager(Context context, ITelecomService telecomServiceImpl) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700594 Context appContext = context.getApplicationContext();
595 if (appContext != null) {
596 mContext = appContext;
597 } else {
598 mContext = context;
599 }
Hall Liue1bc2ec2015-10-09 15:58:37 -0700600 mTelecomServiceOverride = telecomServiceImpl;
Hall Liue362e502016-01-07 17:35:54 -0800601 android.telecom.Log.initMd5Sum();
Ihab Awad807fe0a2014-07-09 12:30:52 -0700602 }
603
604 /**
Santos Cordon91371dc2015-05-08 13:52:09 -0700605 * Return the {@link PhoneAccount} which will be used to place outgoing calls to addresses with
606 * the specified {@code uriScheme}. This {@link PhoneAccount} will always be a member of the
607 * list which is returned from invoking {@link #getCallCapablePhoneAccounts()}. The specific
608 * account returned depends on the following priorities:
609 * <ul>
610 * <li> If the user-selected default {@link PhoneAccount} supports the specified scheme, it will
611 * be returned.
612 * </li>
613 * <li> If there exists only one {@link PhoneAccount} that supports the specified scheme, it
614 * will be returned.
615 * </li>
616 * </ul>
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700617 * <p>
Santos Cordon91371dc2015-05-08 13:52:09 -0700618 * If no {@link PhoneAccount} fits the criteria above, this method will return {@code null}.
619 *
Yorke Leec61d1362015-09-21 17:25:25 -0700620 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
621 *
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700622 * @param uriScheme The URI scheme.
Santos Cordon91371dc2015-05-08 13:52:09 -0700623 * @return The {@link PhoneAccountHandle} corresponding to the account to be used.
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700624 */
Yorke Leec61d1362015-09-21 17:25:25 -0700625 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700626 public PhoneAccountHandle getDefaultOutgoingPhoneAccount(String uriScheme) {
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700627 try {
628 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700629 return getTelecomService().getDefaultOutgoingPhoneAccount(uriScheme,
630 mContext.getOpPackageName());
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700631 }
632 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700633 Log.e(TAG, "Error calling ITelecomService#getDefaultOutgoingPhoneAccount", e);
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700634 }
635 return null;
636 }
637
638 /**
Andrew Leed4abbfb2014-09-03 14:58:27 -0700639 * Return the {@link PhoneAccount} which is the user-chosen default for making outgoing phone
640 * calls. This {@code PhoneAccount} will always be a member of the list which is returned from
Nancy Chen210ef032014-09-15 17:58:42 -0700641 * calling {@link #getCallCapablePhoneAccounts()}
Santos Cordon91371dc2015-05-08 13:52:09 -0700642 * <p>
Andrew Leed4abbfb2014-09-03 14:58:27 -0700643 * Apps must be prepared for this method to return {@code null}, indicating that there currently
644 * exists no user-chosen default {@code PhoneAccount}.
645 *
646 * @return The user outgoing phone account selected by the user.
Jay Shrauner225ccad2015-04-15 15:51:15 -0700647 * @hide
Andrew Leed4abbfb2014-09-03 14:58:27 -0700648 */
649 public PhoneAccountHandle getUserSelectedOutgoingPhoneAccount() {
650 try {
651 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700652 return getTelecomService().getUserSelectedOutgoingPhoneAccount();
Andrew Leed4abbfb2014-09-03 14:58:27 -0700653 }
654 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700655 Log.e(TAG, "Error calling ITelecomService#getUserSelectedOutgoingPhoneAccount", e);
Andrew Leed4abbfb2014-09-03 14:58:27 -0700656 }
657 return null;
658 }
659
660 /**
Santos Cordon91371dc2015-05-08 13:52:09 -0700661 * Sets the user-chosen default for making outgoing phone calls.
Andrew Lee59cac3a2014-08-28 16:50:10 -0700662 * @hide
663 */
Andrew Leed4abbfb2014-09-03 14:58:27 -0700664 public void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle accountHandle) {
Andrew Lee59cac3a2014-08-28 16:50:10 -0700665 try {
666 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700667 getTelecomService().setUserSelectedOutgoingPhoneAccount(accountHandle);
Andrew Lee59cac3a2014-08-28 16:50:10 -0700668 }
669 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700670 Log.e(TAG, "Error calling ITelecomService#setUserSelectedOutgoingPhoneAccount");
Andrew Lee59cac3a2014-08-28 16:50:10 -0700671 }
672 }
673
674 /**
Andrew Lee59cac3a2014-08-28 16:50:10 -0700675 * Returns the current SIM call manager. Apps must be prepared for this method to return
676 * {@code null}, indicating that there currently exists no user-chosen default
677 * {@code PhoneAccount}.
Santos Cordon91371dc2015-05-08 13:52:09 -0700678 *
Andrew Lee59cac3a2014-08-28 16:50:10 -0700679 * @return The phone account handle of the current sim call manager.
Andrew Lee59cac3a2014-08-28 16:50:10 -0700680 */
681 public PhoneAccountHandle getSimCallManager() {
682 try {
683 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700684 return getTelecomService().getSimCallManager();
Andrew Lee59cac3a2014-08-28 16:50:10 -0700685 }
686 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700687 Log.e(TAG, "Error calling ITelecomService#getSimCallManager");
Andrew Lee59cac3a2014-08-28 16:50:10 -0700688 }
689 return null;
690 }
691
692 /**
Sailesh Nepalcf855622015-07-28 19:22:14 -0700693 * Returns the current SIM call manager for the specified user. Apps must be prepared for this
694 * method to return {@code null}, indicating that there currently exists no user-chosen default
695 * {@code PhoneAccount}.
696 *
697 * @return The phone account handle of the current sim call manager.
698 *
699 * @hide
700 */
701 public PhoneAccountHandle getSimCallManager(int userId) {
702 try {
703 if (isServiceConnected()) {
704 return getTelecomService().getSimCallManagerForUser(userId);
705 }
706 } catch (RemoteException e) {
707 Log.e(TAG, "Error calling ITelecomService#getSimCallManagerForUser");
708 }
709 return null;
710 }
711
712 /**
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700713 * Returns the current connection manager. Apps must be prepared for this method to return
714 * {@code null}, indicating that there currently exists no user-chosen default
715 * {@code PhoneAccount}.
716 *
717 * @return The phone account handle of the current connection manager.
Evan Charlton0e094d92014-11-08 15:49:16 -0800718 * @hide
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700719 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800720 @SystemApi
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700721 public PhoneAccountHandle getConnectionManager() {
722 return getSimCallManager();
723 }
724
725 /**
Nancy Chen210ef032014-09-15 17:58:42 -0700726 * Returns a list of the {@link PhoneAccountHandle}s which can be used to make and receive phone
727 * calls which support the specified URI scheme.
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700728 * <P>
729 * For example, invoking with {@code "tel"} will find all {@link PhoneAccountHandle}s which
730 * support telephone calls (e.g. URIs such as {@code tel:555-555-1212}). Invoking with
731 * {@code "sip"} will find all {@link PhoneAccountHandle}s which support SIP calls (e.g. URIs
732 * such as {@code sip:example@sipexample.com}).
733 *
734 * @param uriScheme The URI scheme.
735 * @return A list of {@code PhoneAccountHandle} objects supporting the URI scheme.
Evan Charlton0e094d92014-11-08 15:49:16 -0800736 * @hide
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700737 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800738 @SystemApi
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700739 public List<PhoneAccountHandle> getPhoneAccountsSupportingScheme(String uriScheme) {
740 try {
741 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700742 return getTelecomService().getPhoneAccountsSupportingScheme(uriScheme,
743 mContext.getOpPackageName());
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700744 }
745 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700746 Log.e(TAG, "Error calling ITelecomService#getPhoneAccountsSupportingScheme", e);
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700747 }
748 return new ArrayList<>();
749 }
750
Nancy Chen513c8922014-09-17 14:47:20 -0700751
752 /**
Santos Cordon91371dc2015-05-08 13:52:09 -0700753 * Returns a list of {@link PhoneAccountHandle}s which can be used to make and receive phone
754 * calls. The returned list includes only those accounts which have been explicitly enabled
755 * by the user.
Nancy Chen513c8922014-09-17 14:47:20 -0700756 *
Yorke Leec61d1362015-09-21 17:25:25 -0700757 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
758 *
Nancy Chen513c8922014-09-17 14:47:20 -0700759 * @see #EXTRA_PHONE_ACCOUNT_HANDLE
760 * @return A list of {@code PhoneAccountHandle} objects.
Nancy Chen513c8922014-09-17 14:47:20 -0700761 */
Yorke Leec61d1362015-09-21 17:25:25 -0700762 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Nancy Chen513c8922014-09-17 14:47:20 -0700763 public List<PhoneAccountHandle> getCallCapablePhoneAccounts() {
Santos Cordon91371dc2015-05-08 13:52:09 -0700764 return getCallCapablePhoneAccounts(false);
765 }
766
767 /**
Tyler Gunn4774fb32017-04-07 14:57:37 -0700768 * Returns a list of {@link PhoneAccountHandle}s for self-managed {@link ConnectionService}s.
769 * <p>
770 * Self-Managed {@link ConnectionService}s have a {@link PhoneAccount} with
771 * {@link PhoneAccount#CAPABILITY_SELF_MANAGED}.
772 * <p>
773 * Requires permission {@link android.Manifest.permission#READ_PHONE_STATE}, or that the caller
774 * is the default dialer app.
775 * <p>
776 * A {@link SecurityException} will be thrown if a called is not the default dialer, or lacks
777 * the {@link android.Manifest.permission#READ_PHONE_STATE} permission.
778 *
779 * @return A list of {@code PhoneAccountHandle} objects.
780 */
781 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
782 public List<PhoneAccountHandle> getSelfManagedPhoneAccounts() {
783 try {
784 if (isServiceConnected()) {
785 return getTelecomService().getSelfManagedPhoneAccounts(mContext.getOpPackageName());
786 }
787 } catch (RemoteException e) {
788 Log.e(TAG, "Error calling ITelecomService#getSelfManagedPhoneAccounts()", e);
789 }
790 return new ArrayList<>();
791 }
792
793 /**
Santos Cordon91371dc2015-05-08 13:52:09 -0700794 * Returns a list of {@link PhoneAccountHandle}s including those which have not been enabled
795 * by the user.
796 *
797 * @return A list of {@code PhoneAccountHandle} objects.
798 * @hide
799 */
800 public List<PhoneAccountHandle> getCallCapablePhoneAccounts(boolean includeDisabledAccounts) {
Nancy Chen513c8922014-09-17 14:47:20 -0700801 try {
802 if (isServiceConnected()) {
Santos Cordon91371dc2015-05-08 13:52:09 -0700803 return getTelecomService().getCallCapablePhoneAccounts(
804 includeDisabledAccounts, mContext.getOpPackageName());
Nancy Chen513c8922014-09-17 14:47:20 -0700805 }
806 } catch (RemoteException e) {
Santos Cordon91371dc2015-05-08 13:52:09 -0700807 Log.e(TAG, "Error calling ITelecomService#getCallCapablePhoneAccounts(" +
808 includeDisabledAccounts + ")", e);
Nancy Chen513c8922014-09-17 14:47:20 -0700809 }
810 return new ArrayList<>();
811 }
812
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700813 /**
Nancy Chen513c8922014-09-17 14:47:20 -0700814 * Returns a list of all {@link PhoneAccount}s registered for the calling package.
815 *
816 * @return A list of {@code PhoneAccountHandle} objects.
Evan Charlton0e094d92014-11-08 15:49:16 -0800817 * @hide
Nancy Chen513c8922014-09-17 14:47:20 -0700818 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800819 @SystemApi
Nancy Chen513c8922014-09-17 14:47:20 -0700820 public List<PhoneAccountHandle> getPhoneAccountsForPackage() {
821 try {
822 if (isServiceConnected()) {
823 return getTelecomService().getPhoneAccountsForPackage(mContext.getPackageName());
824 }
825 } catch (RemoteException e) {
826 Log.e(TAG, "Error calling ITelecomService#getPhoneAccountsForPackage", e);
827 }
828 return null;
829 }
830
831 /**
Evan Charlton8c8a0622014-07-20 12:31:00 -0700832 * Return the {@link PhoneAccount} for a specified {@link PhoneAccountHandle}. Object includes
833 * resources which can be used in a user interface.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700834 *
Evan Charlton6eb262c2014-07-19 18:18:19 -0700835 * @param account The {@link PhoneAccountHandle}.
Evan Charlton8c8a0622014-07-20 12:31:00 -0700836 * @return The {@link PhoneAccount} object.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700837 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700838 public PhoneAccount getPhoneAccount(PhoneAccountHandle account) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700839 try {
840 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700841 return getTelecomService().getPhoneAccount(account);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700842 }
843 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700844 Log.e(TAG, "Error calling ITelecomService#getPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700845 }
846 return null;
847 }
848
849 /**
Nancy Chen210ef032014-09-15 17:58:42 -0700850 * Returns a count of all {@link PhoneAccount}s.
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700851 *
Nancy Chen210ef032014-09-15 17:58:42 -0700852 * @return The count of {@link PhoneAccount}s.
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700853 * @hide
854 */
855 @SystemApi
856 public int getAllPhoneAccountsCount() {
857 try {
858 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700859 return getTelecomService().getAllPhoneAccountsCount();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700860 }
861 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700862 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccountsCount", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700863 }
864 return 0;
865 }
866
867 /**
868 * Returns a list of all {@link PhoneAccount}s.
869 *
870 * @return All {@link PhoneAccount}s.
871 * @hide
872 */
873 @SystemApi
874 public List<PhoneAccount> getAllPhoneAccounts() {
875 try {
876 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700877 return getTelecomService().getAllPhoneAccounts();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700878 }
879 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700880 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccounts", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700881 }
882 return Collections.EMPTY_LIST;
883 }
884
885 /**
886 * Returns a list of all {@link PhoneAccountHandle}s.
887 *
888 * @return All {@link PhoneAccountHandle}s.
889 * @hide
890 */
891 @SystemApi
892 public List<PhoneAccountHandle> getAllPhoneAccountHandles() {
893 try {
894 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700895 return getTelecomService().getAllPhoneAccountHandles();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700896 }
897 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700898 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccountHandles", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700899 }
900 return Collections.EMPTY_LIST;
901 }
902
903 /**
Brad Ebingerec0d3342016-01-29 15:40:43 -0800904 * Register a {@link PhoneAccount} for use by the system that will be stored in Device Encrypted
905 * storage. When registering {@link PhoneAccount}s, existing registrations will be overwritten
906 * if the {@link PhoneAccountHandle} matches that of a {@link PhoneAccount} which is already
Santos Cordond9e614f2014-10-28 13:10:36 -0700907 * registered. Once registered, the {@link PhoneAccount} is listed to the user as an option
908 * when placing calls. The user may still need to enable the {@link PhoneAccount} within
909 * the phone app settings before the account is usable.
910 * <p>
911 * A {@link SecurityException} will be thrown if an app tries to register a
912 * {@link PhoneAccountHandle} where the package name specified within
913 * {@link PhoneAccountHandle#getComponentName()} does not match the package name of the app.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700914 *
Evan Charlton8c8a0622014-07-20 12:31:00 -0700915 * @param account The complete {@link PhoneAccount}.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700916 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700917 public void registerPhoneAccount(PhoneAccount account) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700918 try {
919 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700920 getTelecomService().registerPhoneAccount(account);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700921 }
922 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700923 Log.e(TAG, "Error calling ITelecomService#registerPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700924 }
925 }
926
927 /**
Evan Charlton8c8a0622014-07-20 12:31:00 -0700928 * Remove a {@link PhoneAccount} registration from the system.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700929 *
Evan Charlton8c8a0622014-07-20 12:31:00 -0700930 * @param accountHandle A {@link PhoneAccountHandle} for the {@link PhoneAccount} to unregister.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700931 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700932 public void unregisterPhoneAccount(PhoneAccountHandle accountHandle) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700933 try {
934 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700935 getTelecomService().unregisterPhoneAccount(accountHandle);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700936 }
937 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700938 Log.e(TAG, "Error calling ITelecomService#unregisterPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700939 }
940 }
941
942 /**
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700943 * Remove all Accounts that belong to the calling package from the system.
Evan Charlton0e094d92014-11-08 15:49:16 -0800944 * @hide
Ihab Awad807fe0a2014-07-09 12:30:52 -0700945 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800946 @SystemApi
Yorke Lee06044272015-04-14 15:16:59 -0700947 public void clearPhoneAccounts() {
948 clearAccounts();
949 }
950 /**
951 * Remove all Accounts that belong to the calling package from the system.
952 * @deprecated Use {@link #clearPhoneAccounts()} instead.
953 * @hide
954 */
955 @SystemApi
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700956 public void clearAccounts() {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700957 try {
958 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700959 getTelecomService().clearAccounts(mContext.getPackageName());
Ihab Awad807fe0a2014-07-09 12:30:52 -0700960 }
961 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700962 Log.e(TAG, "Error calling ITelecomService#clearAccounts", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700963 }
964 }
965
966 /**
Anthony Lee67279262014-10-27 11:28:40 -0700967 * Remove all Accounts that belong to the specified package from the system.
968 * @hide
969 */
970 public void clearAccountsForPackage(String packageName) {
971 try {
972 if (isServiceConnected() && !TextUtils.isEmpty(packageName)) {
973 getTelecomService().clearAccounts(packageName);
974 }
975 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -0800976 Log.e(TAG, "Error calling ITelecomService#clearAccountsForPackage", e);
Anthony Lee67279262014-10-27 11:28:40 -0700977 }
978 }
979
Yorke Lee1011f482015-04-23 15:58:27 -0700980
Anthony Lee67279262014-10-27 11:28:40 -0700981 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700982 * @deprecated - Use {@link TelecomManager#getDefaultDialerPackage} to directly access
983 * the default dialer's package name instead.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700984 * @hide
985 */
Santos Cordon6c7a3882014-06-25 15:30:08 -0700986 @SystemApi
987 public ComponentName getDefaultPhoneApp() {
988 try {
Santos Cordon9eb45932014-06-27 12:28:43 -0700989 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700990 return getTelecomService().getDefaultPhoneApp();
Santos Cordon9eb45932014-06-27 12:28:43 -0700991 }
Santos Cordon6c7a3882014-06-25 15:30:08 -0700992 } catch (RemoteException e) {
993 Log.e(TAG, "RemoteException attempting to get the default phone app.", e);
994 }
995 return null;
996 }
997
Santos Cordon9eb45932014-06-27 12:28:43 -0700998 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700999 * Used to determine the currently selected default dialer package.
1000 *
1001 * @return package name for the default dialer package or null if no package has been
1002 * selected as the default dialer.
1003 */
1004 public String getDefaultDialerPackage() {
1005 try {
1006 if (isServiceConnected()) {
1007 return getTelecomService().getDefaultDialerPackage();
1008 }
1009 } catch (RemoteException e) {
1010 Log.e(TAG, "RemoteException attempting to get the default dialer package name.", e);
1011 }
1012 return null;
1013 }
1014
1015 /**
Yorke Lee107c4ce2015-06-15 12:08:24 -07001016 * Used to set the default dialer package.
1017 *
1018 * @param packageName to set the default dialer to..
1019 *
1020 * @result {@code true} if the default dialer was successfully changed, {@code false} if
1021 * the specified package does not correspond to an installed dialer, or is already
1022 * the default dialer.
1023 *
1024 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
1025 * Requires permission: {@link android.Manifest.permission#WRITE_SECURE_SETTINGS}
1026 *
1027 * @hide
1028 */
1029 public boolean setDefaultDialer(String packageName) {
1030 try {
1031 if (isServiceConnected()) {
1032 return getTelecomService().setDefaultDialer(packageName);
1033 }
1034 } catch (RemoteException e) {
1035 Log.e(TAG, "RemoteException attempting to set the default dialer.", e);
1036 }
1037 return false;
1038 }
1039
1040 /**
Yorke Lee1011f482015-04-23 15:58:27 -07001041 * Used to determine the dialer package that is preloaded on the system partition.
1042 *
1043 * @return package name for the system dialer package or null if no system dialer is preloaded.
1044 * @hide
1045 */
1046 public String getSystemDialerPackage() {
1047 try {
1048 if (isServiceConnected()) {
1049 return getTelecomService().getSystemDialerPackage();
1050 }
1051 } catch (RemoteException e) {
1052 Log.e(TAG, "RemoteException attempting to get the system dialer package name.", e);
1053 }
1054 return null;
1055 }
1056
1057 /**
Nancy Chen443e5012014-10-15 15:48:21 -07001058 * Return whether a given phone number is the configured voicemail number for a
1059 * particular phone account.
1060 *
Yorke Leec61d1362015-09-21 17:25:25 -07001061 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
1062 *
Nancy Chen443e5012014-10-15 15:48:21 -07001063 * @param accountHandle The handle for the account to check the voicemail number against
1064 * @param number The number to look up.
Nancy Chen443e5012014-10-15 15:48:21 -07001065 */
Yorke Leec61d1362015-09-21 17:25:25 -07001066 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Nancy Chen443e5012014-10-15 15:48:21 -07001067 public boolean isVoiceMailNumber(PhoneAccountHandle accountHandle, String number) {
1068 try {
1069 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001070 return getTelecomService().isVoiceMailNumber(accountHandle, number,
1071 mContext.getOpPackageName());
Nancy Chen443e5012014-10-15 15:48:21 -07001072 }
1073 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -08001074 Log.e(TAG, "RemoteException calling ITelecomService#isVoiceMailNumber.", e);
Nancy Chen443e5012014-10-15 15:48:21 -07001075 }
1076 return false;
1077 }
1078
1079 /**
Yorke Lee49e2d462015-04-15 16:14:22 -07001080 * Return the voicemail number for a given phone account.
Nancy Chen8c066f72014-12-03 15:18:08 -08001081 *
Yorke Leec61d1362015-09-21 17:25:25 -07001082 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
1083 *
Yorke Lee49e2d462015-04-15 16:14:22 -07001084 * @param accountHandle The handle for the phone account.
1085 * @return The voicemail number for the phone account, and {@code null} if one has not been
1086 * configured.
Nancy Chen8c066f72014-12-03 15:18:08 -08001087 */
Yorke Leec61d1362015-09-21 17:25:25 -07001088 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Yorke Lee49e2d462015-04-15 16:14:22 -07001089 public String getVoiceMailNumber(PhoneAccountHandle accountHandle) {
Nancy Chen8c066f72014-12-03 15:18:08 -08001090 try {
1091 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001092 return getTelecomService().getVoiceMailNumber(accountHandle,
1093 mContext.getOpPackageName());
Nancy Chen8c066f72014-12-03 15:18:08 -08001094 }
1095 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -08001096 Log.e(TAG, "RemoteException calling ITelecomService#hasVoiceMailNumber.", e);
Nancy Chen8c066f72014-12-03 15:18:08 -08001097 }
Yorke Lee49e2d462015-04-15 16:14:22 -07001098 return null;
Nancy Chen8c066f72014-12-03 15:18:08 -08001099 }
1100
1101 /**
Nancy Chen5cf27842015-01-24 23:30:27 -08001102 * Return the line 1 phone number for given phone account.
1103 *
Yorke Leec61d1362015-09-21 17:25:25 -07001104 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
1105 *
Nancy Chen5cf27842015-01-24 23:30:27 -08001106 * @param accountHandle The handle for the account retrieve a number for.
1107 * @return A string representation of the line 1 phone number.
Nancy Chen5cf27842015-01-24 23:30:27 -08001108 */
Yorke Leec61d1362015-09-21 17:25:25 -07001109 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Nancy Chen5cf27842015-01-24 23:30:27 -08001110 public String getLine1Number(PhoneAccountHandle accountHandle) {
1111 try {
1112 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001113 return getTelecomService().getLine1Number(accountHandle,
1114 mContext.getOpPackageName());
Nancy Chen5cf27842015-01-24 23:30:27 -08001115 }
1116 } catch (RemoteException e) {
1117 Log.e(TAG, "RemoteException calling ITelecomService#getLine1Number.", e);
1118 }
1119 return null;
1120 }
1121
1122 /**
Santos Cordon9eb45932014-06-27 12:28:43 -07001123 * Returns whether there is an ongoing phone call (can be in dialing, ringing, active or holding
Tyler Gunn24e18332017-02-10 09:42:49 -08001124 * states) originating from either a manager or self-managed {@link ConnectionService}.
Nancy Chen0eb1e402014-08-21 22:52:29 -07001125 * <p>
1126 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
Tyler Gunn24e18332017-02-10 09:42:49 -08001127 *
1128 * @return {@code true} if there is an ongoing call in either a managed or self-managed
1129 * {@link ConnectionService}, {@code false} otherwise.
Santos Cordon9eb45932014-06-27 12:28:43 -07001130 */
Yorke Leec61d1362015-09-21 17:25:25 -07001131 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Nancy Chen0eb1e402014-08-21 22:52:29 -07001132 public boolean isInCall() {
Santos Cordon9eb45932014-06-27 12:28:43 -07001133 try {
1134 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001135 return getTelecomService().isInCall(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -07001136 }
1137 } catch (RemoteException e) {
Yorke Lee2ae312e2014-09-12 17:58:48 -07001138 Log.e(TAG, "RemoteException calling isInCall().", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001139 }
1140 return false;
1141 }
1142
1143 /**
Tyler Gunn24e18332017-02-10 09:42:49 -08001144 * Returns whether there is an ongoing call originating from a managed
1145 * {@link ConnectionService}. An ongoing call can be in dialing, ringing, active or holding
1146 * states.
1147 * <p>
1148 * If you also need to know if there are ongoing self-managed calls, use {@link #isInCall()}
1149 * instead.
1150 * <p>
1151 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
1152 *
1153 * @return {@code true} if there is an ongoing call in a managed {@link ConnectionService},
1154 * {@code false} otherwise.
1155 */
1156 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
1157 public boolean isInManagedCall() {
1158 try {
1159 if (isServiceConnected()) {
1160 return getTelecomService().isInManagedCall(mContext.getOpPackageName());
1161 }
1162 } catch (RemoteException e) {
1163 Log.e(TAG, "RemoteException calling isInManagedCall().", e);
1164 }
1165 return false;
1166 }
1167
1168 /**
Yorke Lee2ae312e2014-09-12 17:58:48 -07001169 * Returns one of the following constants that represents the current state of Telecom:
1170 *
1171 * {@link TelephonyManager#CALL_STATE_RINGING}
1172 * {@link TelephonyManager#CALL_STATE_OFFHOOK}
1173 * {@link TelephonyManager#CALL_STATE_IDLE}
Yorke Lee7c72c2d2014-10-28 14:12:02 -07001174 *
1175 * Note that this API does not require the
1176 * {@link android.Manifest.permission#READ_PHONE_STATE} permission. This is intentional, to
1177 * preserve the behavior of {@link TelephonyManager#getCallState()}, which also did not require
1178 * the permission.
Tyler Gunn24e18332017-02-10 09:42:49 -08001179 *
1180 * Takes into consideration both managed and self-managed calls.
1181 *
Yorke Lee2ae312e2014-09-12 17:58:48 -07001182 * @hide
1183 */
1184 @SystemApi
1185 public int getCallState() {
1186 try {
1187 if (isServiceConnected()) {
1188 return getTelecomService().getCallState();
1189 }
1190 } catch (RemoteException e) {
1191 Log.d(TAG, "RemoteException calling getCallState().", e);
1192 }
1193 return TelephonyManager.CALL_STATE_IDLE;
1194 }
1195
1196 /**
Santos Cordon9eb45932014-06-27 12:28:43 -07001197 * Returns whether there currently exists is a ringing incoming-call.
1198 *
Tyler Gunn24e18332017-02-10 09:42:49 -08001199 * @return {@code true} if there is a managed or self-managed ringing call.
Santos Cordon9eb45932014-06-27 12:28:43 -07001200 * @hide
1201 */
1202 @SystemApi
1203 public boolean isRinging() {
1204 try {
1205 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001206 return getTelecomService().isRinging(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -07001207 }
1208 } catch (RemoteException e) {
1209 Log.e(TAG, "RemoteException attempting to get ringing state of phone app.", e);
1210 }
1211 return false;
1212 }
1213
1214 /**
Santos Cordon96efb482014-07-19 14:57:05 -07001215 * Ends an ongoing call.
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001216 * TODO: L-release - need to convert all invocations of ITelecomService#endCall to use this
Santos Cordon96efb482014-07-19 14:57:05 -07001217 * method (clockwork & gearhead).
Santos Cordon9eb45932014-06-27 12:28:43 -07001218 * @hide
1219 */
1220 @SystemApi
Jeff Sharkeyd86b8fe2017-06-02 17:36:26 -06001221 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Santos Cordon9eb45932014-06-27 12:28:43 -07001222 public boolean endCall() {
1223 try {
1224 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001225 return getTelecomService().endCall();
Santos Cordon9eb45932014-06-27 12:28:43 -07001226 }
1227 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001228 Log.e(TAG, "Error calling ITelecomService#endCall", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001229 }
1230 return false;
1231 }
1232
1233 /**
1234 * If there is a ringing incoming call, this method accepts the call on behalf of the user.
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001235 *
Tyler Gunn6676bb52015-10-23 14:39:49 -07001236 * If the incoming call is a video call, the call will be answered with the same video state as
1237 * the incoming call requests. This means, for example, that an incoming call requesting
1238 * {@link VideoProfile#STATE_BIDIRECTIONAL} will be answered, accepting that state.
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001239 *
1240 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} or
1241 * {@link android.Manifest.permission#ANSWER_PHONE_CALLS}
Santos Cordon9eb45932014-06-27 12:28:43 -07001242 */
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001243 //TODO: L-release - need to convert all invocation of ITelecmmService#answerRingingCall to use
1244 // this method (clockwork & gearhead).
1245 @RequiresPermission(anyOf =
1246 {Manifest.permission.ANSWER_PHONE_CALLS, Manifest.permission.MODIFY_PHONE_STATE})
Santos Cordon9eb45932014-06-27 12:28:43 -07001247 public void acceptRingingCall() {
1248 try {
1249 if (isServiceConnected()) {
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001250 getTelecomService().acceptRingingCall(mContext.getPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -07001251 }
1252 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001253 Log.e(TAG, "Error calling ITelecomService#acceptRingingCall", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001254 }
1255 }
1256
1257 /**
Tyler Gunn6676bb52015-10-23 14:39:49 -07001258 * If there is a ringing incoming call, this method accepts the call on behalf of the user,
1259 * with the specified video state.
1260 *
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001261 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} or
1262 * {@link android.Manifest.permission#ANSWER_PHONE_CALLS}
1263 *
Tyler Gunn6676bb52015-10-23 14:39:49 -07001264 * @param videoState The desired video state to answer the call with.
Tyler Gunn6676bb52015-10-23 14:39:49 -07001265 */
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001266 @RequiresPermission(anyOf =
1267 {Manifest.permission.ANSWER_PHONE_CALLS, Manifest.permission.MODIFY_PHONE_STATE})
Tyler Gunn6676bb52015-10-23 14:39:49 -07001268 public void acceptRingingCall(int videoState) {
1269 try {
1270 if (isServiceConnected()) {
Eugene Suslacae3d3e2017-01-31 11:08:11 -08001271 getTelecomService().acceptRingingCallWithVideoState(
1272 mContext.getPackageName(), videoState);
Tyler Gunn6676bb52015-10-23 14:39:49 -07001273 }
1274 } catch (RemoteException e) {
1275 Log.e(TAG, "Error calling ITelecomService#acceptRingingCallWithVideoState", e);
1276 }
1277 }
1278
1279 /**
Santos Cordon9eb45932014-06-27 12:28:43 -07001280 * Silences the ringer if a ringing call exists.
Yorke Leec61d1362015-09-21 17:25:25 -07001281 *
1282 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
Santos Cordon9eb45932014-06-27 12:28:43 -07001283 */
Yorke Leec61d1362015-09-21 17:25:25 -07001284 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Santos Cordon9eb45932014-06-27 12:28:43 -07001285 public void silenceRinger() {
1286 try {
1287 if (isServiceConnected()) {
Yorke Leef1a349b2015-04-29 16:16:50 -07001288 getTelecomService().silenceRinger(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -07001289 }
1290 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001291 Log.e(TAG, "Error calling ITelecomService#silenceRinger", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001292 }
1293 }
1294
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001295 /**
1296 * Returns whether TTY is supported on this device.
1297 *
1298 * @hide
1299 */
1300 @SystemApi
1301 public boolean isTtySupported() {
1302 try {
1303 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001304 return getTelecomService().isTtySupported(mContext.getOpPackageName());
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001305 }
1306 } catch (RemoteException e) {
1307 Log.e(TAG, "RemoteException attempting to get TTY supported state.", e);
1308 }
1309 return false;
1310 }
1311
1312 /**
1313 * 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 -07001314 * settings and have a wired headset plugged in.
1315 * Valid modes are:
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001316 * - {@link TelecomManager#TTY_MODE_OFF}
1317 * - {@link TelecomManager#TTY_MODE_FULL}
1318 * - {@link TelecomManager#TTY_MODE_HCO}
1319 * - {@link TelecomManager#TTY_MODE_VCO}
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001320 * @hide
1321 */
1322 public int getCurrentTtyMode() {
1323 try {
1324 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001325 return getTelecomService().getCurrentTtyMode(mContext.getOpPackageName());
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001326 }
1327 } catch (RemoteException e) {
1328 Log.e(TAG, "RemoteException attempting to get the current TTY mode.", e);
1329 }
Evan Charlton10197192014-07-19 15:00:29 -07001330 return TTY_MODE_OFF;
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001331 }
1332
Santos Cordon96efb482014-07-19 14:57:05 -07001333 /**
1334 * Registers a new incoming call. A {@link ConnectionService} should invoke this method when it
Tyler Gunnf5035432017-01-09 09:43:12 -08001335 * has an incoming call. For managed {@link ConnectionService}s, the specified
1336 * {@link PhoneAccountHandle} must have been registered with {@link #registerPhoneAccount} and
1337 * the user must have enabled the corresponding {@link PhoneAccount}. This can be checked using
1338 * {@link #getPhoneAccount}. Self-managed {@link ConnectionService}s must have
1339 * {@link android.Manifest.permission#MANAGE_OWN_CALLS} to add a new incoming call.
1340 * <p>
Tyler Gunndd8756d2017-03-13 18:15:15 -07001341 * The incoming call you are adding is assumed to have a video state of
1342 * {@link VideoProfile#STATE_AUDIO_ONLY}, unless the extra value
1343 * {@link #EXTRA_INCOMING_VIDEO_STATE} is specified.
1344 * <p>
Tyler Gunnf5035432017-01-09 09:43:12 -08001345 * Once invoked, this method will cause the system to bind to the {@link ConnectionService}
1346 * associated with the {@link PhoneAccountHandle} and request additional information about the
1347 * call (See {@link ConnectionService#onCreateIncomingConnection}) before starting the incoming
Brad Ebingerec0d3342016-01-29 15:40:43 -08001348 * call UI.
1349 * <p>
Tyler Gunnf5035432017-01-09 09:43:12 -08001350 * For a managed {@link ConnectionService}, a {@link SecurityException} will be thrown if either
1351 * the {@link PhoneAccountHandle} does not correspond to a registered {@link PhoneAccount} or
1352 * the associated {@link PhoneAccount} is not currently enabled by the user.
1353 * <p>
1354 * For a self-managed {@link ConnectionService}, a {@link SecurityException} will be thrown if
1355 * the {@link PhoneAccount} has {@link PhoneAccount#CAPABILITY_SELF_MANAGED} and the calling app
1356 * does not have {@link android.Manifest.permission#MANAGE_OWN_CALLS}.
1357 *
Santos Cordon96efb482014-07-19 14:57:05 -07001358 * @param phoneAccount A {@link PhoneAccountHandle} registered with
1359 * {@link #registerPhoneAccount}.
1360 * @param extras A bundle that will be passed through to
1361 * {@link ConnectionService#onCreateIncomingConnection}.
1362 */
1363 public void addNewIncomingCall(PhoneAccountHandle phoneAccount, Bundle extras) {
1364 try {
1365 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001366 getTelecomService().addNewIncomingCall(
Santos Cordon96efb482014-07-19 14:57:05 -07001367 phoneAccount, extras == null ? new Bundle() : extras);
1368 }
1369 } catch (RemoteException e) {
1370 Log.e(TAG, "RemoteException adding a new incoming call: " + phoneAccount, e);
1371 }
1372 }
1373
Nancy Chen0eb1e402014-08-21 22:52:29 -07001374 /**
Yorke Leec3cf9822014-10-02 09:38:39 -07001375 * Registers a new unknown call with Telecom. This can only be called by the system Telephony
1376 * service. This is invoked when Telephony detects a new unknown connection that was neither
1377 * a new incoming call, nor an user-initiated outgoing call.
1378 *
1379 * @param phoneAccount A {@link PhoneAccountHandle} registered with
1380 * {@link #registerPhoneAccount}.
1381 * @param extras A bundle that will be passed through to
1382 * {@link ConnectionService#onCreateIncomingConnection}.
1383 * @hide
1384 */
1385 @SystemApi
1386 public void addNewUnknownCall(PhoneAccountHandle phoneAccount, Bundle extras) {
1387 try {
1388 if (isServiceConnected()) {
1389 getTelecomService().addNewUnknownCall(
1390 phoneAccount, extras == null ? new Bundle() : extras);
1391 }
1392 } catch (RemoteException e) {
1393 Log.e(TAG, "RemoteException adding a new unknown call: " + phoneAccount, e);
1394 }
1395 }
1396
1397 /**
Nancy Chen0eb1e402014-08-21 22:52:29 -07001398 * Processes the specified dial string as an MMI code.
1399 * MMI codes are any sequence of characters entered into the dialpad that contain a "*" or "#".
1400 * Some of these sequences launch special behavior through handled by Telephony.
Nancy Chen95e8a672014-10-16 18:38:21 -07001401 * This method uses the default subscription.
Nancy Chen0eb1e402014-08-21 22:52:29 -07001402 * <p>
1403 * Requires that the method-caller be set as the system dialer app.
1404 * </p>
1405 *
Yorke Leec61d1362015-09-21 17:25:25 -07001406 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
1407 *
Nancy Chen0eb1e402014-08-21 22:52:29 -07001408 * @param dialString The digits to dial.
1409 * @return True if the digits were processed as an MMI code, false otherwise.
1410 */
Yorke Leec61d1362015-09-21 17:25:25 -07001411 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Nancy Chen0eb1e402014-08-21 22:52:29 -07001412 public boolean handleMmi(String dialString) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001413 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001414 if (service != null) {
1415 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001416 return service.handlePinMmi(dialString, mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001417 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001418 Log.e(TAG, "Error calling ITelecomService#handlePinMmi", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001419 }
1420 }
1421 return false;
1422 }
1423
1424 /**
Nancy Chen95e8a672014-10-16 18:38:21 -07001425 * Processes the specified dial string as an MMI code.
1426 * MMI codes are any sequence of characters entered into the dialpad that contain a "*" or "#".
1427 * Some of these sequences launch special behavior through handled by Telephony.
1428 * <p>
1429 * Requires that the method-caller be set as the system dialer app.
1430 * </p>
1431 *
Yorke Leec61d1362015-09-21 17:25:25 -07001432 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
1433 *
Nancy Chen95e8a672014-10-16 18:38:21 -07001434 * @param accountHandle The handle for the account the MMI code should apply to.
1435 * @param dialString The digits to dial.
1436 * @return True if the digits were processed as an MMI code, false otherwise.
Nancy Chen95e8a672014-10-16 18:38:21 -07001437 */
Yorke Leec61d1362015-09-21 17:25:25 -07001438 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Yorke Lee06044272015-04-14 15:16:59 -07001439 public boolean handleMmi(String dialString, PhoneAccountHandle accountHandle) {
Nancy Chen95e8a672014-10-16 18:38:21 -07001440 ITelecomService service = getTelecomService();
1441 if (service != null) {
1442 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001443 return service.handlePinMmiForPhoneAccount(accountHandle, dialString,
1444 mContext.getOpPackageName());
Nancy Chen95e8a672014-10-16 18:38:21 -07001445 } catch (RemoteException e) {
1446 Log.e(TAG, "Error calling ITelecomService#handlePinMmi", e);
1447 }
1448 }
1449 return false;
1450 }
1451
1452 /**
Yorke Leec61d1362015-09-21 17:25:25 -07001453 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
1454 *
Nancy Chenb2299c12014-10-29 18:22:11 -07001455 * @param accountHandle The handle for the account to derive an adn query URI for or
1456 * {@code null} to return a URI which will use the default account.
1457 * @return The URI (with the content:// scheme) specific to the specified {@link PhoneAccount}
1458 * for the the content retrieve.
1459 */
Yorke Leec61d1362015-09-21 17:25:25 -07001460 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Nancy Chenb2299c12014-10-29 18:22:11 -07001461 public Uri getAdnUriForPhoneAccount(PhoneAccountHandle accountHandle) {
1462 ITelecomService service = getTelecomService();
1463 if (service != null && accountHandle != null) {
1464 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001465 return service.getAdnUriForPhoneAccount(accountHandle, mContext.getOpPackageName());
Nancy Chenb2299c12014-10-29 18:22:11 -07001466 } catch (RemoteException e) {
1467 Log.e(TAG, "Error calling ITelecomService#getAdnUriForPhoneAccount", e);
1468 }
1469 }
1470 return Uri.parse("content://icc/adn");
1471 }
1472
1473 /**
Nancy Chen0eb1e402014-08-21 22:52:29 -07001474 * Removes the missed-call notification if one is present.
1475 * <p>
1476 * Requires that the method-caller be set as the system dialer app.
1477 * </p>
Yorke Leec61d1362015-09-21 17:25:25 -07001478 *
1479 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
Nancy Chen0eb1e402014-08-21 22:52:29 -07001480 */
Yorke Leec61d1362015-09-21 17:25:25 -07001481 @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE)
Nancy Chen0eb1e402014-08-21 22:52:29 -07001482 public void cancelMissedCallsNotification() {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001483 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001484 if (service != null) {
1485 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001486 service.cancelMissedCallsNotification(mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001487 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001488 Log.e(TAG, "Error calling ITelecomService#cancelMissedCallsNotification", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001489 }
1490 }
1491 }
1492
1493 /**
1494 * Brings the in-call screen to the foreground if there is an ongoing call. If there is
1495 * currently no ongoing call, then this method does nothing.
1496 * <p>
1497 * Requires that the method-caller be set as the system dialer app or have the
1498 * {@link android.Manifest.permission#READ_PHONE_STATE} permission.
1499 * </p>
1500 *
1501 * @param showDialpad Brings up the in-call dialpad as part of showing the in-call screen.
1502 */
Yorke Leec61d1362015-09-21 17:25:25 -07001503 @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE)
Nancy Chen0eb1e402014-08-21 22:52:29 -07001504 public void showInCallScreen(boolean showDialpad) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001505 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001506 if (service != null) {
1507 try {
Svet Ganov16a16892015-04-16 10:32:04 -07001508 service.showInCallScreen(showDialpad, mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001509 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001510 Log.e(TAG, "Error calling ITelecomService#showCallScreen", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001511 }
1512 }
1513 }
1514
Yorke Lee3e56ba12015-04-23 12:32:36 -07001515 /**
1516 * Places a new outgoing call to the provided address using the system telecom service with
1517 * the specified extras.
1518 *
1519 * This method is equivalent to placing an outgoing call using {@link Intent#ACTION_CALL},
1520 * except that the outgoing call will always be sent via the system telecom service. If
1521 * method-caller is either the user selected default dialer app or preloaded system dialer
1522 * app, then emergency calls will also be allowed.
1523 *
Tyler Gunnf5035432017-01-09 09:43:12 -08001524 * Placing a call via a managed {@link ConnectionService} requires permission:
1525 * {@link android.Manifest.permission#CALL_PHONE}
Yorke Lee3e56ba12015-04-23 12:32:36 -07001526 *
1527 * Usage example:
1528 * <pre>
1529 * Uri uri = Uri.fromParts("tel", "12345", null);
1530 * Bundle extras = new Bundle();
1531 * extras.putBoolean(TelecomManager.EXTRA_START_CALL_WITH_SPEAKERPHONE, true);
1532 * telecomManager.placeCall(uri, extras);
1533 * </pre>
1534 *
Santos Cordon7a060d52015-06-19 14:52:04 -07001535 * The following keys are supported in the supplied extras.
1536 * <ul>
1537 * <li>{@link #EXTRA_OUTGOING_CALL_EXTRAS}</li>
1538 * <li>{@link #EXTRA_PHONE_ACCOUNT_HANDLE}</li>
1539 * <li>{@link #EXTRA_START_CALL_WITH_SPEAKERPHONE}</li>
1540 * <li>{@link #EXTRA_START_CALL_WITH_VIDEO_STATE}</li>
1541 * </ul>
Tyler Gunnf5035432017-01-09 09:43:12 -08001542 * <p>
1543 * An app which implements the self-managed {@link ConnectionService} API uses
1544 * {@link #placeCall(Uri, Bundle)} to inform Telecom of a new outgoing call. A self-managed
1545 * {@link ConnectionService} must include {@link #EXTRA_PHONE_ACCOUNT_HANDLE} to specify its
1546 * associated {@link android.telecom.PhoneAccountHandle}.
1547 *
1548 * Self-managed {@link ConnectionService}s require permission
1549 * {@link android.Manifest.permission#MANAGE_OWN_CALLS}.
Santos Cordon7a060d52015-06-19 14:52:04 -07001550 *
Yorke Lee3e56ba12015-04-23 12:32:36 -07001551 * @param address The address to make the call to.
1552 * @param extras Bundle of extras to use with the call.
1553 */
Tyler Gunnf5035432017-01-09 09:43:12 -08001554 @RequiresPermission(anyOf = {android.Manifest.permission.CALL_PHONE,
1555 android.Manifest.permission.MANAGE_OWN_CALLS})
Yorke Lee3e56ba12015-04-23 12:32:36 -07001556 public void placeCall(Uri address, Bundle extras) {
1557 ITelecomService service = getTelecomService();
1558 if (service != null) {
Yorke Leea5d5c1d2015-05-05 16:25:55 -07001559 if (address == null) {
1560 Log.w(TAG, "Cannot place call to empty address.");
1561 }
Yorke Lee3e56ba12015-04-23 12:32:36 -07001562 try {
Yorke Leea5d5c1d2015-05-05 16:25:55 -07001563 service.placeCall(address, extras == null ? new Bundle() : extras,
1564 mContext.getOpPackageName());
Yorke Lee3e56ba12015-04-23 12:32:36 -07001565 } catch (RemoteException e) {
1566 Log.e(TAG, "Error calling ITelecomService#placeCall", e);
1567 }
1568 }
1569 }
1570
Santos Cordon91371dc2015-05-08 13:52:09 -07001571 /**
1572 * Enables and disables specified phone account.
1573 *
1574 * @param handle Handle to the phone account.
1575 * @param isEnabled Enable state of the phone account.
1576 * @hide
1577 */
1578 @SystemApi
1579 public void enablePhoneAccount(PhoneAccountHandle handle, boolean isEnabled) {
1580 ITelecomService service = getTelecomService();
1581 if (service != null) {
1582 try {
1583 service.enablePhoneAccount(handle, isEnabled);
1584 } catch (RemoteException e) {
1585 Log.e(TAG, "Error enablePhoneAbbount", e);
1586 }
1587 }
1588 }
1589
Hall Liu0464b9b2016-01-12 15:32:58 -08001590 /**
1591 * Dumps telecom analytics for uploading.
1592 *
1593 * @return
1594 * @hide
1595 */
1596 @SystemApi
1597 @RequiresPermission(Manifest.permission.DUMP)
Hall Liu057def52016-05-05 17:17:07 -07001598 public TelecomAnalytics dumpAnalytics() {
Hall Liu0464b9b2016-01-12 15:32:58 -08001599 ITelecomService service = getTelecomService();
Hall Liu057def52016-05-05 17:17:07 -07001600 TelecomAnalytics result = null;
Hall Liu0464b9b2016-01-12 15:32:58 -08001601 if (service != null) {
1602 try {
1603 result = service.dumpCallAnalytics();
1604 } catch (RemoteException e) {
1605 Log.e(TAG, "Error dumping call analytics", e);
1606 }
1607 }
1608 return result;
1609 }
1610
Abhijith Shastry1908cb842016-02-02 11:10:19 -08001611 /**
Abhijith Shastrya26fe992016-02-29 11:40:24 -08001612 * Creates the {@link Intent} which can be used with {@link Context#startActivity(Intent)} to
1613 * launch the activity to manage blocked numbers.
Abhijith Shastryec30d2f2016-03-04 16:46:08 -08001614 * <p> The activity will display the UI to manage blocked numbers only if
Abhijith Shastrya26fe992016-02-29 11:40:24 -08001615 * {@link android.provider.BlockedNumberContract#canCurrentUserBlockNumbers(Context)} returns
1616 * {@code true} for the current user.
1617 */
1618 public Intent createManageBlockedNumbersIntent() {
1619 ITelecomService service = getTelecomService();
1620 Intent result = null;
1621 if (service != null) {
1622 try {
1623 result = service.createManageBlockedNumbersIntent();
1624 } catch (RemoteException e) {
1625 Log.e(TAG, "Error calling ITelecomService#createManageBlockedNumbersIntent", e);
1626 }
1627 }
1628 return result;
1629 }
1630
Tyler Gunnf5035432017-01-09 09:43:12 -08001631 /**
1632 * Determines whether Telecom would permit an incoming call to be added via the
1633 * {@link #addNewIncomingCall(PhoneAccountHandle, Bundle)} API for the specified
1634 * {@link PhoneAccountHandle}.
1635 * <p>
1636 * A {@link ConnectionService} may not add a call for the specified {@link PhoneAccountHandle}
1637 * in the following situations:
1638 * <ul>
1639 * <li>{@link PhoneAccount} does not have property
1640 * {@link PhoneAccount#CAPABILITY_SELF_MANAGED} set (i.e. it is a managed
1641 * {@link ConnectionService}), and the active or held call limit has
1642 * been reached.</li>
1643 * <li>There is an ongoing emergency call.</li>
1644 * </ul>
1645 *
1646 * @param phoneAccountHandle The {@link PhoneAccountHandle} the call will be added for.
1647 * @return {@code true} if telecom will permit an incoming call to be added, {@code false}
1648 * otherwise.
1649 */
1650 public boolean isIncomingCallPermitted(PhoneAccountHandle phoneAccountHandle) {
Tyler Gunn44e01912017-01-31 10:49:05 -08001651 if (phoneAccountHandle == null) {
1652 return false;
1653 }
1654
Tyler Gunnf5035432017-01-09 09:43:12 -08001655 ITelecomService service = getTelecomService();
1656 if (service != null) {
1657 try {
1658 return service.isIncomingCallPermitted(phoneAccountHandle);
1659 } catch (RemoteException e) {
1660 Log.e(TAG, "Error isIncomingCallPermitted", e);
1661 }
1662 }
1663 return false;
1664 }
1665
1666 /**
1667 * Determines whether Telecom would permit an outgoing call to be placed via the
1668 * {@link #placeCall(Uri, Bundle)} API for the specified {@link PhoneAccountHandle}.
1669 * <p>
1670 * A {@link ConnectionService} may not place a call for the specified {@link PhoneAccountHandle}
1671 * in the following situations:
1672 * <ul>
1673 * <li>{@link PhoneAccount} does not have property
1674 * {@link PhoneAccount#CAPABILITY_SELF_MANAGED} set (i.e. it is a managed
1675 * {@link ConnectionService}), and the active, held or ringing call limit has
1676 * been reached.</li>
1677 * <li>{@link PhoneAccount} has property {@link PhoneAccount#CAPABILITY_SELF_MANAGED} set
1678 * (i.e. it is a self-managed {@link ConnectionService} and there is an ongoing call in
1679 * another {@link ConnectionService}.</li>
1680 * <li>There is an ongoing emergency call.</li>
1681 * </ul>
1682 *
1683 * @param phoneAccountHandle The {@link PhoneAccountHandle} the call will be added for.
1684 * @return {@code true} if telecom will permit an outgoing call to be placed, {@code false}
1685 * otherwise.
1686 */
1687 public boolean isOutgoingCallPermitted(PhoneAccountHandle phoneAccountHandle) {
1688 ITelecomService service = getTelecomService();
1689 if (service != null) {
1690 try {
1691 return service.isOutgoingCallPermitted(phoneAccountHandle);
1692 } catch (RemoteException e) {
1693 Log.e(TAG, "Error isOutgoingCallPermitted", e);
1694 }
1695 }
1696 return false;
1697 }
1698
1699
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001700 private ITelecomService getTelecomService() {
Hall Liue1bc2ec2015-10-09 15:58:37 -07001701 if (mTelecomServiceOverride != null) {
1702 return mTelecomServiceOverride;
1703 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001704 return ITelecomService.Stub.asInterface(ServiceManager.getService(Context.TELECOM_SERVICE));
Santos Cordon6c7a3882014-06-25 15:30:08 -07001705 }
Santos Cordon9eb45932014-06-27 12:28:43 -07001706
1707 private boolean isServiceConnected() {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001708 boolean isConnected = getTelecomService() != null;
Santos Cordon9eb45932014-06-27 12:28:43 -07001709 if (!isConnected) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001710 Log.w(TAG, "Telecom Service not found.");
Santos Cordon9eb45932014-06-27 12:28:43 -07001711 }
1712 return isConnected;
1713 }
Evan Charlton235c1592014-09-05 15:41:23 +00001714}