blob: 8779462e073ea7315d6cff681ee9c4f647ad959a [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
Santos Cordon6c7a3882014-06-25 15:30:08 -070017import android.annotation.SystemApi;
18import android.content.ComponentName;
Yorke Leeb4ce1432014-06-09 13:53:23 -070019import android.content.Context;
Yorke Lee3e56ba12015-04-23 12:32:36 -070020import android.content.Intent;
Nancy Chenb2299c12014-10-29 18:22:11 -070021import android.net.Uri;
Santos Cordon96efb482014-07-19 14:57:05 -070022import android.os.Bundle;
Santos Cordon6c7a3882014-06-25 15:30:08 -070023import android.os.RemoteException;
24import android.os.ServiceManager;
Yorke Lee2ae312e2014-09-12 17:58:48 -070025import android.telephony.TelephonyManager;
Anthony Lee67279262014-10-27 11:28:40 -070026import android.text.TextUtils;
Santos Cordon6c7a3882014-06-25 15:30:08 -070027import android.util.Log;
Yorke Leeb4ce1432014-06-09 13:53:23 -070028
Tyler Gunnef9f6f92014-09-12 22:16:17 -070029import com.android.internal.telecom.ITelecomService;
Yorke Leeb4ce1432014-06-09 13:53:23 -070030
Jay Shrauner7746a942014-08-26 12:15:15 -070031import java.util.ArrayList;
Tyler Gunna1ed7d12014-09-08 09:52:22 -070032import java.util.Collections;
Ihab Awad807fe0a2014-07-09 12:30:52 -070033import java.util.List;
34
Yorke Leeb4ce1432014-06-09 13:53:23 -070035/**
Santos Cordond9e614f2014-10-28 13:10:36 -070036 * Provides access to information about active calls and registration/call-management functionality.
Evan Charlton0e094d92014-11-08 15:49:16 -080037 * Apps can use methods in this class to determine the current call state.
Santos Cordond9e614f2014-10-28 13:10:36 -070038 * <p>
39 * Apps do not instantiate this class directly; instead, they retrieve a reference to an instance
40 * through {@link Context#getSystemService Context.getSystemService(Context.TELECOM_SERVICE)}.
41 * <p>
42 * Note that access to some telecom information is permission-protected. Your app cannot access the
43 * protected information or gain access to protected functionality unless it has the appropriate
44 * permissions declared in its manifest file. Where permissions apply, they are noted in the method
45 * descriptions.
Yorke Leeb4ce1432014-06-09 13:53:23 -070046 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -070047public class TelecomManager {
Ihab Awad807fe0a2014-07-09 12:30:52 -070048
Evan Charlton10197192014-07-19 15:00:29 -070049 /**
Santos Cordon96efb482014-07-19 14:57:05 -070050 * Activity action: Starts the UI for handing an incoming call. This intent starts the in-call
Tyler Gunnef9f6f92014-09-12 22:16:17 -070051 * UI by notifying the Telecom system that an incoming call exists for a specific call service
52 * (see {@link android.telecom.ConnectionService}). Telecom reads the Intent extras to find
53 * and bind to the appropriate {@link android.telecom.ConnectionService} which Telecom will
Santos Cordon96efb482014-07-19 14:57:05 -070054 * ultimately use to control and get information about the call.
55 * <p>
56 * Input: get*Extra field {@link #EXTRA_PHONE_ACCOUNT_HANDLE} contains the component name of the
Tyler Gunnef9f6f92014-09-12 22:16:17 -070057 * {@link android.telecom.ConnectionService} that Telecom should bind to. Telecom will then
Evan Charlton10197192014-07-19 15:00:29 -070058 * ask the connection service for more information about the call prior to showing any UI.
Evan Charlton10197192014-07-19 15:00:29 -070059 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -070060 public static final String ACTION_INCOMING_CALL = "android.telecom.action.INCOMING_CALL";
Evan Charlton10197192014-07-19 15:00:29 -070061
62 /**
Yorke Leec3cf9822014-10-02 09:38:39 -070063 * Similar to {@link #ACTION_INCOMING_CALL}, but is used only by Telephony to add a new
64 * sim-initiated MO call for carrier testing.
65 * @hide
66 */
67 public static final String ACTION_NEW_UNKNOWN_CALL = "android.telecom.action.NEW_UNKNOWN_CALL";
68
69 /**
Santos Cordon895d4b82015-06-25 16:41:48 -070070 * An {@link android.content.Intent} action sent by the telecom framework to start a
71 * configuration dialog for a registered {@link PhoneAccount}. There is no default dialog
72 * and each app that registers a {@link PhoneAccount} should provide one if desired.
73 * <p>
74 * A user can access the list of enabled {@link android.telecom.PhoneAccount}s through the Phone
75 * app's settings menu. For each entry, the settings app will add a click action. When
76 * triggered, the click-action will start this intent along with the extra
77 * {@link #EXTRA_PHONE_ACCOUNT_HANDLE} to indicate the {@link PhoneAccount} to configure. If the
78 * {@link PhoneAccount} package does not register an {@link android.app.Activity} for this
79 * intent, then it will not be sent.
Evan Charlton10197192014-07-19 15:00:29 -070080 */
Santos Cordon895d4b82015-06-25 16:41:48 -070081 public static final String ACTION_CONFIGURE_PHONE_ACCOUNT =
82 "android.telecom.action.CONFIGURE_PHONE_ACCOUNT";
Evan Charlton10197192014-07-19 15:00:29 -070083
84 /**
Andrew Lee873cfbf2015-02-26 15:22:00 -080085 * The {@link android.content.Intent} action used to show the call accessibility settings page.
86 */
87 public static final String ACTION_SHOW_CALL_ACCESSIBILITY_SETTINGS =
88 "android.telecom.action.SHOW_CALL_ACCESSIBILITY_SETTINGS";
89
90 /**
Yorke Lee3818a892014-07-21 15:57:17 -070091 * The {@link android.content.Intent} action used to show the call settings page.
92 */
93 public static final String ACTION_SHOW_CALL_SETTINGS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -070094 "android.telecom.action.SHOW_CALL_SETTINGS";
Yorke Lee3818a892014-07-21 15:57:17 -070095
96 /**
Andrew Lee866080f2015-02-19 12:05:33 -080097 * The {@link android.content.Intent} action used to show the respond via SMS settings page.
98 */
99 public static final String ACTION_SHOW_RESPOND_VIA_SMS_SETTINGS =
100 "android.telecom.action.SHOW_RESPOND_VIA_SMS_SETTINGS";
101
102 /**
Evan Charlton6d8604f2014-09-04 12:38:17 -0700103 * The {@link android.content.Intent} action used to show the settings page used to configure
104 * {@link PhoneAccount} preferences.
105 */
106 public static final String ACTION_CHANGE_PHONE_ACCOUNTS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700107 "android.telecom.action.CHANGE_PHONE_ACCOUNTS";
Evan Charlton6d8604f2014-09-04 12:38:17 -0700108
109 /**
Santos Cordonc66f3ba2015-02-27 15:22:07 -0800110 * The {@link android.content.Intent} action used indicate that a new phone account was
111 * just registered.
112 * @hide
113 */
114 @SystemApi
115 public static final String ACTION_PHONE_ACCOUNT_REGISTERED =
116 "android.telecom.action.PHONE_ACCOUNT_REGISTERED";
117
118 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700119 * Activity action: Shows a dialog asking the user whether or not they want to replace the
120 * current default Dialer with the one specified in
121 * {@link #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME}.
122 *
123 * Usage example:
124 * <pre>
125 * Intent intent = new Intent(TelecomManager.ACTION_CHANGE_DEFAULT_DIALER);
126 * intent.putExtra(TelecomManager.EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME,
127 * getActivity().getPackageName());
128 * startActivity(intent);
129 * </pre>
130 */
131 public static final String ACTION_CHANGE_DEFAULT_DIALER =
132 "android.telecom.action.CHANGE_DEFAULT_DIALER";
133
134 /**
Yorke Lee107c4ce2015-06-15 12:08:24 -0700135 * Broadcast intent action indicating that the current default dialer has changed.
136 * The string extra {@link #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME} will contain the
137 * name of the package that the default dialer was changed to.
138 *
139 * @see #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME
140 */
141 public static final String ACTION_DEFAULT_DIALER_CHANGED =
142 "android.telecom.action.DEFAULT_DIALER_CHANGED";
143
144 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700145 * Extra value used to provide the package name for {@link #ACTION_CHANGE_DEFAULT_DIALER}.
146 */
147 public static final String EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME =
148 "android.telecom.extra.CHANGE_DEFAULT_DIALER_PACKAGE_NAME";
149
150 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700151 * Optional extra for {@link android.content.Intent#ACTION_CALL} containing a boolean that
152 * determines whether the speakerphone should be automatically turned on for an outgoing call.
Evan Charlton10197192014-07-19 15:00:29 -0700153 */
154 public static final String EXTRA_START_CALL_WITH_SPEAKERPHONE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700155 "android.telecom.extra.START_CALL_WITH_SPEAKERPHONE";
Evan Charlton10197192014-07-19 15:00:29 -0700156
157 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700158 * Optional extra for {@link android.content.Intent#ACTION_CALL} containing an integer that
159 * determines the desired video state for an outgoing call.
Santos Cordon96efb482014-07-19 14:57:05 -0700160 * Valid options:
Yorke Lee32f24732015-05-12 16:18:03 -0700161 * {@link VideoProfile#STATE_AUDIO_ONLY},
162 * {@link VideoProfile#STATE_BIDIRECTIONAL},
163 * {@link VideoProfile#STATE_RX_ENABLED},
164 * {@link VideoProfile#STATE_TX_ENABLED}.
Evan Charlton10197192014-07-19 15:00:29 -0700165 */
166 public static final String EXTRA_START_CALL_WITH_VIDEO_STATE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700167 "android.telecom.extra.START_CALL_WITH_VIDEO_STATE";
Evan Charlton10197192014-07-19 15:00:29 -0700168
169 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700170 * The extra used with an {@link android.content.Intent#ACTION_CALL} and
171 * {@link android.content.Intent#ACTION_DIAL} {@code Intent} to specify a
172 * {@link PhoneAccountHandle} to use when making the call.
Evan Charlton10197192014-07-19 15:00:29 -0700173 * <p class="note">
Santos Cordon96efb482014-07-19 14:57:05 -0700174 * Retrieve with {@link android.content.Intent#getParcelableExtra(String)}.
Evan Charlton10197192014-07-19 15:00:29 -0700175 */
Evan Charlton6eb262c2014-07-19 18:18:19 -0700176 public static final String EXTRA_PHONE_ACCOUNT_HANDLE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700177 "android.telecom.extra.PHONE_ACCOUNT_HANDLE";
Evan Charlton10197192014-07-19 15:00:29 -0700178
179 /**
Tyler Gunn335ff2e2015-07-30 14:18:33 -0700180 * Optional extra for {@link android.content.Intent#ACTION_CALL} containing a string call
181 * subject which will be associated with an outgoing call. Should only be specified if the
182 * {@link PhoneAccount} supports the capability {@link PhoneAccount#CAPABILITY_CALL_SUBJECT}.
183 */
184 public static final String EXTRA_CALL_SUBJECT = "android.telecom.extra.CALL_SUBJECT";
185
186 /**
Yorke Lee04ea7d32015-06-05 15:59:18 -0700187 * The extra used by a {@link ConnectionService} to provide the handle of the caller that
188 * has initiated a new incoming call.
189 */
Yorke Lee02fb5bc2015-06-09 12:27:36 -0700190 public static final String EXTRA_INCOMING_CALL_ADDRESS =
191 "android.telecom.extra.INCOMING_CALL_ADDRESS";
Yorke Lee04ea7d32015-06-05 15:59:18 -0700192
193 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700194 * Optional extra for {@link #ACTION_INCOMING_CALL} containing a {@link Bundle} which contains
195 * metadata about the call. This {@link Bundle} will be returned to the
196 * {@link ConnectionService}.
Evan Charlton10197192014-07-19 15:00:29 -0700197 */
198 public static final String EXTRA_INCOMING_CALL_EXTRAS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700199 "android.telecom.extra.INCOMING_CALL_EXTRAS";
Evan Charlton10197192014-07-19 15:00:29 -0700200
201 /**
Nancy Chen10798dc2014-08-08 14:00:25 -0700202 * Optional extra for {@link android.content.Intent#ACTION_CALL} and
203 * {@link android.content.Intent#ACTION_DIAL} {@code Intent} containing a {@link Bundle}
204 * which contains metadata about the call. This {@link Bundle} will be saved into
Santos Cordon7a060d52015-06-19 14:52:04 -0700205 * {@code Call.Details} and passed to the {@link ConnectionService} when placing the call.
Nancy Chen10798dc2014-08-08 14:00:25 -0700206 */
207 public static final String EXTRA_OUTGOING_CALL_EXTRAS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700208 "android.telecom.extra.OUTGOING_CALL_EXTRAS";
Nancy Chen10798dc2014-08-08 14:00:25 -0700209
210 /**
Yorke Leec3cf9822014-10-02 09:38:39 -0700211 * @hide
212 */
213 public static final String EXTRA_UNKNOWN_CALL_HANDLE =
214 "android.telecom.extra.UNKNOWN_CALL_HANDLE";
215
216 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700217 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
218 * containing the disconnect code.
Evan Charlton10197192014-07-19 15:00:29 -0700219 */
220 public static final String EXTRA_CALL_DISCONNECT_CAUSE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700221 "android.telecom.extra.CALL_DISCONNECT_CAUSE";
Evan Charlton10197192014-07-19 15:00:29 -0700222
223 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700224 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
225 * containing the disconnect message.
Evan Charlton10197192014-07-19 15:00:29 -0700226 */
227 public static final String EXTRA_CALL_DISCONNECT_MESSAGE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700228 "android.telecom.extra.CALL_DISCONNECT_MESSAGE";
Evan Charlton10197192014-07-19 15:00:29 -0700229
230 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700231 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
232 * containing the component name of the associated connection service.
Evan Charlton0e094d92014-11-08 15:49:16 -0800233 * @hide
Evan Charlton10197192014-07-19 15:00:29 -0700234 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800235 @SystemApi
Evan Charlton10197192014-07-19 15:00:29 -0700236 public static final String EXTRA_CONNECTION_SERVICE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700237 "android.telecom.extra.CONNECTION_SERVICE";
Evan Charlton10197192014-07-19 15:00:29 -0700238
239 /**
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700240 * An optional {@link android.content.Intent#ACTION_CALL} intent extra denoting the
241 * package name of the app specifying an alternative gateway for the call.
242 * The value is a string.
243 *
244 * (The following comment corresponds to the all GATEWAY_* extras)
245 * An app which sends the {@link android.content.Intent#ACTION_CALL} intent can specify an
246 * alternative address to dial which is different from the one specified and displayed to
247 * the user. This alternative address is referred to as the gateway address.
248 */
249 public static final String GATEWAY_PROVIDER_PACKAGE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700250 "android.telecom.extra.GATEWAY_PROVIDER_PACKAGE";
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700251
252 /**
253 * An optional {@link android.content.Intent#ACTION_CALL} intent extra corresponding to the
254 * original address to dial for the call. This is used when an alternative gateway address is
255 * provided to recall the original address.
256 * The value is a {@link android.net.Uri}.
257 *
258 * (See {@link #GATEWAY_PROVIDER_PACKAGE} for details)
259 */
260 public static final String GATEWAY_ORIGINAL_ADDRESS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700261 "android.telecom.extra.GATEWAY_ORIGINAL_ADDRESS";
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700262
263 /**
Evan Charlton10197192014-07-19 15:00:29 -0700264 * The number which the party on the other side of the line will see (and use to return the
265 * call).
266 * <p>
Santos Cordon96efb482014-07-19 14:57:05 -0700267 * {@link ConnectionService}s which interact with {@link RemoteConnection}s should only populate
268 * this if the {@link android.telephony.TelephonyManager#getLine1Number()} value, as that is the
269 * user's expected caller ID.
Evan Charlton10197192014-07-19 15:00:29 -0700270 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700271 public static final String EXTRA_CALL_BACK_NUMBER = "android.telecom.extra.CALL_BACK_NUMBER";
Evan Charlton10197192014-07-19 15:00:29 -0700272
273 /**
Santos Cordonf2600eb2015-06-22 15:02:20 -0700274 * A boolean meta-data value indicating whether an {@link InCallService} implements an
275 * in-call user interface. Dialer implementations (see {@link #getDefaultDialerPackage()}) which
276 * would also like to replace the in-call interface should set this meta-data to {@code true} in
277 * the manifest registration of their {@link InCallService}.
278 */
279 public static final String METADATA_IN_CALL_SERVICE_UI = "android.telecom.IN_CALL_SERVICE_UI";
280
281 /**
Evan Charlton10197192014-07-19 15:00:29 -0700282 * The dual tone multi-frequency signaling character sent to indicate the dialing system should
283 * pause for a predefined period.
284 */
285 public static final char DTMF_CHARACTER_PAUSE = ',';
286
287 /**
288 * The dual-tone multi-frequency signaling character sent to indicate the dialing system should
289 * wait for user confirmation before proceeding.
290 */
291 public static final char DTMF_CHARACTER_WAIT = ';';
292
293 /**
294 * TTY (teletypewriter) mode is off.
295 *
296 * @hide
297 */
298 public static final int TTY_MODE_OFF = 0;
299
300 /**
301 * TTY (teletypewriter) mode is on. The speaker is off and the microphone is muted. The user
302 * will communicate with the remote party by sending and receiving text messages.
303 *
304 * @hide
305 */
306 public static final int TTY_MODE_FULL = 1;
307
308 /**
309 * TTY (teletypewriter) mode is in hearing carryover mode (HCO). The microphone is muted but the
310 * speaker is on. The user will communicate with the remote party by sending text messages and
311 * hearing an audible reply.
312 *
313 * @hide
314 */
315 public static final int TTY_MODE_HCO = 2;
316
317 /**
318 * TTY (teletypewriter) mode is in voice carryover mode (VCO). The speaker is off but the
319 * microphone is still on. User will communicate with the remote party by speaking and receiving
320 * text message replies.
321 *
322 * @hide
323 */
324 public static final int TTY_MODE_VCO = 3;
325
326 /**
327 * Broadcast intent action indicating that the current TTY mode has changed. An intent extra
328 * provides this state as an int.
Evan Charlton10197192014-07-19 15:00:29 -0700329 *
Santos Cordon96efb482014-07-19 14:57:05 -0700330 * @see #EXTRA_CURRENT_TTY_MODE
Evan Charlton10197192014-07-19 15:00:29 -0700331 * @hide
332 */
333 public static final String ACTION_CURRENT_TTY_MODE_CHANGED =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700334 "android.telecom.action.CURRENT_TTY_MODE_CHANGED";
Evan Charlton10197192014-07-19 15:00:29 -0700335
336 /**
337 * The lookup key for an int that indicates the current TTY mode.
338 * Valid modes are:
339 * - {@link #TTY_MODE_OFF}
340 * - {@link #TTY_MODE_FULL}
341 * - {@link #TTY_MODE_HCO}
342 * - {@link #TTY_MODE_VCO}
343 *
344 * @hide
345 */
346 public static final String EXTRA_CURRENT_TTY_MODE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700347 "android.telecom.intent.extra.CURRENT_TTY_MODE";
Evan Charlton10197192014-07-19 15:00:29 -0700348
349 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700350 * Broadcast intent action indicating that the TTY preferred operating mode has changed. An
351 * intent extra provides the new mode as an int.
Evan Charlton10197192014-07-19 15:00:29 -0700352 *
Santos Cordon96efb482014-07-19 14:57:05 -0700353 * @see #EXTRA_TTY_PREFERRED_MODE
Evan Charlton10197192014-07-19 15:00:29 -0700354 * @hide
355 */
356 public static final String ACTION_TTY_PREFERRED_MODE_CHANGED =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700357 "android.telecom.action.TTY_PREFERRED_MODE_CHANGED";
Evan Charlton10197192014-07-19 15:00:29 -0700358
359 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700360 * The lookup key for an int that indicates preferred TTY mode. Valid modes are: -
361 * {@link #TTY_MODE_OFF} - {@link #TTY_MODE_FULL} - {@link #TTY_MODE_HCO} -
362 * {@link #TTY_MODE_VCO}
Evan Charlton10197192014-07-19 15:00:29 -0700363 *
364 * @hide
365 */
366 public static final String EXTRA_TTY_PREFERRED_MODE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700367 "android.telecom.intent.extra.TTY_PREFERRED";
Evan Charlton10197192014-07-19 15:00:29 -0700368
Nancy Chen9d568c02014-09-08 14:17:59 -0700369 /**
Bryce Lee5e4dd3e2015-08-03 16:59:10 -0700370 * Broadcast intent action for letting custom component know to show the missed call
371 * notification.
372 * @hide
373 */
374 @SystemApi
375 public static final String ACTION_SHOW_MISSED_CALLS_NOTIFICATION =
376 "android.telecom.action.SHOW_MISSED_CALLS_NOTIFICATION";
377
378 /**
379 * The number of calls associated with the notification.
380 * @hide
381 */
382 @SystemApi
383 public static final String EXTRA_NOTIFICATION_COUNT =
384 "android.telecom.extra.NOTIFICATION_COUNT";
385
386 /**
387 * The number associated with the missed calls. This number is only relevant
388 * when EXTRA_NOTIFICATION_COUNT is 1.
389 * @hide
390 */
391 @SystemApi
392 public static final String EXTRA_NOTIFICATION_PHONE_NUMBER =
393 "android.telecom.extra.NOTIFICATION_PHONE_NUMBER";
394
395 /**
Bryce Lee8d41d1d2015-08-10 07:40:42 -0700396 * The intent to clear missed calls.
397 * @hide
398 */
399 @SystemApi
400 public static final String EXTRA_CLEAR_MISSED_CALLS_INTENT =
401 "android.telecom.extra.CLEAR_MISSED_CALLS_INTENT";
402
403 /**
404 * The intent to call back a missed call.
405 * @hide
406 */
407 @SystemApi
408 public static final String EXTRA_CALL_BACK_INTENT =
409 "android.telecom.extra.CALL_BACK_INTENT";
410
411 /**
Nancy Chen9d568c02014-09-08 14:17:59 -0700412 * The following 4 constants define how properties such as phone numbers and names are
413 * displayed to the user.
414 */
415
Santos Cordoned769ae2015-05-13 18:47:38 -0700416 /**
417 * Indicates that the address or number of a call is allowed to be displayed for caller ID.
418 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700419 public static final int PRESENTATION_ALLOWED = 1;
420
Santos Cordoned769ae2015-05-13 18:47:38 -0700421 /**
422 * Indicates that the address or number of a call is blocked by the other party.
423 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700424 public static final int PRESENTATION_RESTRICTED = 2;
425
Santos Cordoned769ae2015-05-13 18:47:38 -0700426 /**
427 * Indicates that the address or number of a call is not specified or known by the carrier.
428 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700429 public static final int PRESENTATION_UNKNOWN = 3;
430
Santos Cordoned769ae2015-05-13 18:47:38 -0700431 /**
432 * Indicates that the address or number of a call belongs to a pay phone.
433 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700434 public static final int PRESENTATION_PAYPHONE = 4;
435
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700436 private static final String TAG = "TelecomManager";
Yorke Leeb4ce1432014-06-09 13:53:23 -0700437
438 private final Context mContext;
Yorke Leeb4ce1432014-06-09 13:53:23 -0700439
Santos Cordon6c7a3882014-06-25 15:30:08 -0700440 /**
441 * @hide
442 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700443 public static TelecomManager from(Context context) {
444 return (TelecomManager) context.getSystemService(Context.TELECOM_SERVICE);
Yorke Leeb4ce1432014-06-09 13:53:23 -0700445 }
Santos Cordon6c7a3882014-06-25 15:30:08 -0700446
447 /**
448 * @hide
449 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700450 public TelecomManager(Context context) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700451 Context appContext = context.getApplicationContext();
452 if (appContext != null) {
453 mContext = appContext;
454 } else {
455 mContext = context;
456 }
457 }
458
459 /**
Santos Cordon91371dc2015-05-08 13:52:09 -0700460 * Return the {@link PhoneAccount} which will be used to place outgoing calls to addresses with
461 * the specified {@code uriScheme}. This {@link PhoneAccount} will always be a member of the
462 * list which is returned from invoking {@link #getCallCapablePhoneAccounts()}. The specific
463 * account returned depends on the following priorities:
464 * <ul>
465 * <li> If the user-selected default {@link PhoneAccount} supports the specified scheme, it will
466 * be returned.
467 * </li>
468 * <li> If there exists only one {@link PhoneAccount} that supports the specified scheme, it
469 * will be returned.
470 * </li>
471 * </ul>
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700472 * <p>
Santos Cordon91371dc2015-05-08 13:52:09 -0700473 * If no {@link PhoneAccount} fits the criteria above, this method will return {@code null}.
474 *
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700475 * @param uriScheme The URI scheme.
Santos Cordon91371dc2015-05-08 13:52:09 -0700476 * @return The {@link PhoneAccountHandle} corresponding to the account to be used.
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700477 */
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700478 public PhoneAccountHandle getDefaultOutgoingPhoneAccount(String uriScheme) {
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700479 try {
480 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700481 return getTelecomService().getDefaultOutgoingPhoneAccount(uriScheme,
482 mContext.getOpPackageName());
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700483 }
484 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700485 Log.e(TAG, "Error calling ITelecomService#getDefaultOutgoingPhoneAccount", e);
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700486 }
487 return null;
488 }
489
490 /**
Andrew Leed4abbfb2014-09-03 14:58:27 -0700491 * Return the {@link PhoneAccount} which is the user-chosen default for making outgoing phone
492 * calls. This {@code PhoneAccount} will always be a member of the list which is returned from
Nancy Chen210ef032014-09-15 17:58:42 -0700493 * calling {@link #getCallCapablePhoneAccounts()}
Santos Cordon91371dc2015-05-08 13:52:09 -0700494 * <p>
Andrew Leed4abbfb2014-09-03 14:58:27 -0700495 * Apps must be prepared for this method to return {@code null}, indicating that there currently
496 * exists no user-chosen default {@code PhoneAccount}.
497 *
498 * @return The user outgoing phone account selected by the user.
Jay Shrauner225ccad2015-04-15 15:51:15 -0700499 * @hide
Andrew Leed4abbfb2014-09-03 14:58:27 -0700500 */
501 public PhoneAccountHandle getUserSelectedOutgoingPhoneAccount() {
502 try {
503 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700504 return getTelecomService().getUserSelectedOutgoingPhoneAccount();
Andrew Leed4abbfb2014-09-03 14:58:27 -0700505 }
506 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700507 Log.e(TAG, "Error calling ITelecomService#getUserSelectedOutgoingPhoneAccount", e);
Andrew Leed4abbfb2014-09-03 14:58:27 -0700508 }
509 return null;
510 }
511
512 /**
Santos Cordon91371dc2015-05-08 13:52:09 -0700513 * Sets the user-chosen default for making outgoing phone calls.
Andrew Lee59cac3a2014-08-28 16:50:10 -0700514 * @hide
515 */
Andrew Leed4abbfb2014-09-03 14:58:27 -0700516 public void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle accountHandle) {
Andrew Lee59cac3a2014-08-28 16:50:10 -0700517 try {
518 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700519 getTelecomService().setUserSelectedOutgoingPhoneAccount(accountHandle);
Andrew Lee59cac3a2014-08-28 16:50:10 -0700520 }
521 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700522 Log.e(TAG, "Error calling ITelecomService#setUserSelectedOutgoingPhoneAccount");
Andrew Lee59cac3a2014-08-28 16:50:10 -0700523 }
524 }
525
526 /**
Andrew Lee59cac3a2014-08-28 16:50:10 -0700527 * Returns the current SIM call manager. Apps must be prepared for this method to return
528 * {@code null}, indicating that there currently exists no user-chosen default
529 * {@code PhoneAccount}.
Santos Cordon91371dc2015-05-08 13:52:09 -0700530 *
Andrew Lee59cac3a2014-08-28 16:50:10 -0700531 * @return The phone account handle of the current sim call manager.
Andrew Lee59cac3a2014-08-28 16:50:10 -0700532 */
533 public PhoneAccountHandle getSimCallManager() {
534 try {
535 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700536 return getTelecomService().getSimCallManager();
Andrew Lee59cac3a2014-08-28 16:50:10 -0700537 }
538 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700539 Log.e(TAG, "Error calling ITelecomService#getSimCallManager");
Andrew Lee59cac3a2014-08-28 16:50:10 -0700540 }
541 return null;
542 }
543
544 /**
Sailesh Nepalcf855622015-07-28 19:22:14 -0700545 * Returns the current SIM call manager for the specified user. Apps must be prepared for this
546 * method to return {@code null}, indicating that there currently exists no user-chosen default
547 * {@code PhoneAccount}.
548 *
549 * @return The phone account handle of the current sim call manager.
550 *
551 * @hide
552 */
553 public PhoneAccountHandle getSimCallManager(int userId) {
554 try {
555 if (isServiceConnected()) {
556 return getTelecomService().getSimCallManagerForUser(userId);
557 }
558 } catch (RemoteException e) {
559 Log.e(TAG, "Error calling ITelecomService#getSimCallManagerForUser");
560 }
561 return null;
562 }
563
564 /**
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700565 * Returns the current connection manager. Apps must be prepared for this method to return
566 * {@code null}, indicating that there currently exists no user-chosen default
567 * {@code PhoneAccount}.
568 *
569 * @return The phone account handle of the current connection manager.
Evan Charlton0e094d92014-11-08 15:49:16 -0800570 * @hide
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700571 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800572 @SystemApi
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700573 public PhoneAccountHandle getConnectionManager() {
574 return getSimCallManager();
575 }
576
577 /**
Nancy Chen210ef032014-09-15 17:58:42 -0700578 * Returns a list of the {@link PhoneAccountHandle}s which can be used to make and receive phone
579 * calls which support the specified URI scheme.
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700580 * <P>
581 * For example, invoking with {@code "tel"} will find all {@link PhoneAccountHandle}s which
582 * support telephone calls (e.g. URIs such as {@code tel:555-555-1212}). Invoking with
583 * {@code "sip"} will find all {@link PhoneAccountHandle}s which support SIP calls (e.g. URIs
584 * such as {@code sip:example@sipexample.com}).
585 *
586 * @param uriScheme The URI scheme.
587 * @return A list of {@code PhoneAccountHandle} objects supporting the URI scheme.
Evan Charlton0e094d92014-11-08 15:49:16 -0800588 * @hide
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700589 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800590 @SystemApi
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700591 public List<PhoneAccountHandle> getPhoneAccountsSupportingScheme(String uriScheme) {
592 try {
593 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700594 return getTelecomService().getPhoneAccountsSupportingScheme(uriScheme,
595 mContext.getOpPackageName());
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700596 }
597 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700598 Log.e(TAG, "Error calling ITelecomService#getPhoneAccountsSupportingScheme", e);
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700599 }
600 return new ArrayList<>();
601 }
602
Nancy Chen513c8922014-09-17 14:47:20 -0700603
604 /**
Santos Cordon91371dc2015-05-08 13:52:09 -0700605 * Returns a list of {@link PhoneAccountHandle}s which can be used to make and receive phone
606 * calls. The returned list includes only those accounts which have been explicitly enabled
607 * by the user.
Nancy Chen513c8922014-09-17 14:47:20 -0700608 *
609 * @see #EXTRA_PHONE_ACCOUNT_HANDLE
610 * @return A list of {@code PhoneAccountHandle} objects.
Nancy Chen513c8922014-09-17 14:47:20 -0700611 */
612 public List<PhoneAccountHandle> getCallCapablePhoneAccounts() {
Santos Cordon91371dc2015-05-08 13:52:09 -0700613 return getCallCapablePhoneAccounts(false);
614 }
615
616 /**
617 * Returns a list of {@link PhoneAccountHandle}s including those which have not been enabled
618 * by the user.
619 *
620 * @return A list of {@code PhoneAccountHandle} objects.
621 * @hide
622 */
623 public List<PhoneAccountHandle> getCallCapablePhoneAccounts(boolean includeDisabledAccounts) {
Nancy Chen513c8922014-09-17 14:47:20 -0700624 try {
625 if (isServiceConnected()) {
Santos Cordon91371dc2015-05-08 13:52:09 -0700626 return getTelecomService().getCallCapablePhoneAccounts(
627 includeDisabledAccounts, mContext.getOpPackageName());
Nancy Chen513c8922014-09-17 14:47:20 -0700628 }
629 } catch (RemoteException e) {
Santos Cordon91371dc2015-05-08 13:52:09 -0700630 Log.e(TAG, "Error calling ITelecomService#getCallCapablePhoneAccounts(" +
631 includeDisabledAccounts + ")", e);
Nancy Chen513c8922014-09-17 14:47:20 -0700632 }
633 return new ArrayList<>();
634 }
635
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700636 /**
Nancy Chen513c8922014-09-17 14:47:20 -0700637 * Returns a list of all {@link PhoneAccount}s registered for the calling package.
638 *
639 * @return A list of {@code PhoneAccountHandle} objects.
Evan Charlton0e094d92014-11-08 15:49:16 -0800640 * @hide
Nancy Chen513c8922014-09-17 14:47:20 -0700641 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800642 @SystemApi
Nancy Chen513c8922014-09-17 14:47:20 -0700643 public List<PhoneAccountHandle> getPhoneAccountsForPackage() {
644 try {
645 if (isServiceConnected()) {
646 return getTelecomService().getPhoneAccountsForPackage(mContext.getPackageName());
647 }
648 } catch (RemoteException e) {
649 Log.e(TAG, "Error calling ITelecomService#getPhoneAccountsForPackage", e);
650 }
651 return null;
652 }
653
654 /**
Evan Charlton8c8a0622014-07-20 12:31:00 -0700655 * Return the {@link PhoneAccount} for a specified {@link PhoneAccountHandle}. Object includes
656 * resources which can be used in a user interface.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700657 *
Evan Charlton6eb262c2014-07-19 18:18:19 -0700658 * @param account The {@link PhoneAccountHandle}.
Evan Charlton8c8a0622014-07-20 12:31:00 -0700659 * @return The {@link PhoneAccount} object.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700660 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700661 public PhoneAccount getPhoneAccount(PhoneAccountHandle account) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700662 try {
663 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700664 return getTelecomService().getPhoneAccount(account);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700665 }
666 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700667 Log.e(TAG, "Error calling ITelecomService#getPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700668 }
669 return null;
670 }
671
672 /**
Nancy Chen210ef032014-09-15 17:58:42 -0700673 * Returns a count of all {@link PhoneAccount}s.
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700674 *
Nancy Chen210ef032014-09-15 17:58:42 -0700675 * @return The count of {@link PhoneAccount}s.
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700676 * @hide
677 */
678 @SystemApi
679 public int getAllPhoneAccountsCount() {
680 try {
681 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700682 return getTelecomService().getAllPhoneAccountsCount();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700683 }
684 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700685 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccountsCount", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700686 }
687 return 0;
688 }
689
690 /**
691 * Returns a list of all {@link PhoneAccount}s.
692 *
693 * @return All {@link PhoneAccount}s.
694 * @hide
695 */
696 @SystemApi
697 public List<PhoneAccount> getAllPhoneAccounts() {
698 try {
699 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700700 return getTelecomService().getAllPhoneAccounts();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700701 }
702 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700703 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccounts", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700704 }
705 return Collections.EMPTY_LIST;
706 }
707
708 /**
709 * Returns a list of all {@link PhoneAccountHandle}s.
710 *
711 * @return All {@link PhoneAccountHandle}s.
712 * @hide
713 */
714 @SystemApi
715 public List<PhoneAccountHandle> getAllPhoneAccountHandles() {
716 try {
717 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700718 return getTelecomService().getAllPhoneAccountHandles();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700719 }
720 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700721 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccountHandles", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700722 }
723 return Collections.EMPTY_LIST;
724 }
725
726 /**
Santos Cordond9e614f2014-10-28 13:10:36 -0700727 * Register a {@link PhoneAccount} for use by the system. When registering
728 * {@link PhoneAccount}s, existing registrations will be overwritten if the
729 * {@link PhoneAccountHandle} matches that of a {@link PhoneAccount} which is already
730 * registered. Once registered, the {@link PhoneAccount} is listed to the user as an option
731 * when placing calls. The user may still need to enable the {@link PhoneAccount} within
732 * the phone app settings before the account is usable.
733 * <p>
734 * A {@link SecurityException} will be thrown if an app tries to register a
735 * {@link PhoneAccountHandle} where the package name specified within
736 * {@link PhoneAccountHandle#getComponentName()} does not match the package name of the app.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700737 *
Evan Charlton8c8a0622014-07-20 12:31:00 -0700738 * @param account The complete {@link PhoneAccount}.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700739 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700740 public void registerPhoneAccount(PhoneAccount account) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700741 try {
742 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700743 getTelecomService().registerPhoneAccount(account);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700744 }
745 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700746 Log.e(TAG, "Error calling ITelecomService#registerPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700747 }
748 }
749
750 /**
Evan Charlton8c8a0622014-07-20 12:31:00 -0700751 * Remove a {@link PhoneAccount} registration from the system.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700752 *
Evan Charlton8c8a0622014-07-20 12:31:00 -0700753 * @param accountHandle A {@link PhoneAccountHandle} for the {@link PhoneAccount} to unregister.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700754 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700755 public void unregisterPhoneAccount(PhoneAccountHandle accountHandle) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700756 try {
757 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700758 getTelecomService().unregisterPhoneAccount(accountHandle);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700759 }
760 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700761 Log.e(TAG, "Error calling ITelecomService#unregisterPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700762 }
763 }
764
765 /**
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700766 * Remove all Accounts that belong to the calling package from the system.
Evan Charlton0e094d92014-11-08 15:49:16 -0800767 * @hide
Ihab Awad807fe0a2014-07-09 12:30:52 -0700768 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800769 @SystemApi
Yorke Lee06044272015-04-14 15:16:59 -0700770 public void clearPhoneAccounts() {
771 clearAccounts();
772 }
773 /**
774 * Remove all Accounts that belong to the calling package from the system.
775 * @deprecated Use {@link #clearPhoneAccounts()} instead.
776 * @hide
777 */
778 @SystemApi
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700779 public void clearAccounts() {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700780 try {
781 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700782 getTelecomService().clearAccounts(mContext.getPackageName());
Ihab Awad807fe0a2014-07-09 12:30:52 -0700783 }
784 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700785 Log.e(TAG, "Error calling ITelecomService#clearAccounts", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700786 }
787 }
788
789 /**
Anthony Lee67279262014-10-27 11:28:40 -0700790 * Remove all Accounts that belong to the specified package from the system.
791 * @hide
792 */
793 public void clearAccountsForPackage(String packageName) {
794 try {
795 if (isServiceConnected() && !TextUtils.isEmpty(packageName)) {
796 getTelecomService().clearAccounts(packageName);
797 }
798 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -0800799 Log.e(TAG, "Error calling ITelecomService#clearAccountsForPackage", e);
Anthony Lee67279262014-10-27 11:28:40 -0700800 }
801 }
802
Yorke Lee1011f482015-04-23 15:58:27 -0700803
Anthony Lee67279262014-10-27 11:28:40 -0700804 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700805 * @deprecated - Use {@link TelecomManager#getDefaultDialerPackage} to directly access
806 * the default dialer's package name instead.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700807 * @hide
808 */
Santos Cordon6c7a3882014-06-25 15:30:08 -0700809 @SystemApi
810 public ComponentName getDefaultPhoneApp() {
811 try {
Santos Cordon9eb45932014-06-27 12:28:43 -0700812 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700813 return getTelecomService().getDefaultPhoneApp();
Santos Cordon9eb45932014-06-27 12:28:43 -0700814 }
Santos Cordon6c7a3882014-06-25 15:30:08 -0700815 } catch (RemoteException e) {
816 Log.e(TAG, "RemoteException attempting to get the default phone app.", e);
817 }
818 return null;
819 }
820
Santos Cordon9eb45932014-06-27 12:28:43 -0700821 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700822 * Used to determine the currently selected default dialer package.
823 *
824 * @return package name for the default dialer package or null if no package has been
825 * selected as the default dialer.
826 */
827 public String getDefaultDialerPackage() {
828 try {
829 if (isServiceConnected()) {
830 return getTelecomService().getDefaultDialerPackage();
831 }
832 } catch (RemoteException e) {
833 Log.e(TAG, "RemoteException attempting to get the default dialer package name.", e);
834 }
835 return null;
836 }
837
838 /**
Yorke Lee107c4ce2015-06-15 12:08:24 -0700839 * Used to set the default dialer package.
840 *
841 * @param packageName to set the default dialer to..
842 *
843 * @result {@code true} if the default dialer was successfully changed, {@code false} if
844 * the specified package does not correspond to an installed dialer, or is already
845 * the default dialer.
846 *
847 * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE}
848 * Requires permission: {@link android.Manifest.permission#WRITE_SECURE_SETTINGS}
849 *
850 * @hide
851 */
852 public boolean setDefaultDialer(String packageName) {
853 try {
854 if (isServiceConnected()) {
855 return getTelecomService().setDefaultDialer(packageName);
856 }
857 } catch (RemoteException e) {
858 Log.e(TAG, "RemoteException attempting to set the default dialer.", e);
859 }
860 return false;
861 }
862
863 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700864 * Used to determine the dialer package that is preloaded on the system partition.
865 *
866 * @return package name for the system dialer package or null if no system dialer is preloaded.
867 * @hide
868 */
869 public String getSystemDialerPackage() {
870 try {
871 if (isServiceConnected()) {
872 return getTelecomService().getSystemDialerPackage();
873 }
874 } catch (RemoteException e) {
875 Log.e(TAG, "RemoteException attempting to get the system dialer package name.", e);
876 }
877 return null;
878 }
879
880 /**
Nancy Chen443e5012014-10-15 15:48:21 -0700881 * Return whether a given phone number is the configured voicemail number for a
882 * particular phone account.
883 *
884 * @param accountHandle The handle for the account to check the voicemail number against
885 * @param number The number to look up.
Nancy Chen443e5012014-10-15 15:48:21 -0700886 */
Nancy Chen443e5012014-10-15 15:48:21 -0700887 public boolean isVoiceMailNumber(PhoneAccountHandle accountHandle, String number) {
888 try {
889 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700890 return getTelecomService().isVoiceMailNumber(accountHandle, number,
891 mContext.getOpPackageName());
Nancy Chen443e5012014-10-15 15:48:21 -0700892 }
893 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -0800894 Log.e(TAG, "RemoteException calling ITelecomService#isVoiceMailNumber.", e);
Nancy Chen443e5012014-10-15 15:48:21 -0700895 }
896 return false;
897 }
898
899 /**
Yorke Lee49e2d462015-04-15 16:14:22 -0700900 * Return the voicemail number for a given phone account.
Nancy Chen8c066f72014-12-03 15:18:08 -0800901 *
Yorke Lee49e2d462015-04-15 16:14:22 -0700902 * @param accountHandle The handle for the phone account.
903 * @return The voicemail number for the phone account, and {@code null} if one has not been
904 * configured.
Nancy Chen8c066f72014-12-03 15:18:08 -0800905 */
Yorke Lee49e2d462015-04-15 16:14:22 -0700906 public String getVoiceMailNumber(PhoneAccountHandle accountHandle) {
Nancy Chen8c066f72014-12-03 15:18:08 -0800907 try {
908 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700909 return getTelecomService().getVoiceMailNumber(accountHandle,
910 mContext.getOpPackageName());
Nancy Chen8c066f72014-12-03 15:18:08 -0800911 }
912 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -0800913 Log.e(TAG, "RemoteException calling ITelecomService#hasVoiceMailNumber.", e);
Nancy Chen8c066f72014-12-03 15:18:08 -0800914 }
Yorke Lee49e2d462015-04-15 16:14:22 -0700915 return null;
Nancy Chen8c066f72014-12-03 15:18:08 -0800916 }
917
918 /**
Nancy Chen5cf27842015-01-24 23:30:27 -0800919 * Return the line 1 phone number for given phone account.
920 *
921 * @param accountHandle The handle for the account retrieve a number for.
922 * @return A string representation of the line 1 phone number.
Nancy Chen5cf27842015-01-24 23:30:27 -0800923 */
Nancy Chen5cf27842015-01-24 23:30:27 -0800924 public String getLine1Number(PhoneAccountHandle accountHandle) {
925 try {
926 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700927 return getTelecomService().getLine1Number(accountHandle,
928 mContext.getOpPackageName());
Nancy Chen5cf27842015-01-24 23:30:27 -0800929 }
930 } catch (RemoteException e) {
931 Log.e(TAG, "RemoteException calling ITelecomService#getLine1Number.", e);
932 }
933 return null;
934 }
935
936 /**
Santos Cordon9eb45932014-06-27 12:28:43 -0700937 * Returns whether there is an ongoing phone call (can be in dialing, ringing, active or holding
938 * states).
Nancy Chen0eb1e402014-08-21 22:52:29 -0700939 * <p>
940 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
941 * </p>
Santos Cordon9eb45932014-06-27 12:28:43 -0700942 */
Nancy Chen0eb1e402014-08-21 22:52:29 -0700943 public boolean isInCall() {
Santos Cordon9eb45932014-06-27 12:28:43 -0700944 try {
945 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700946 return getTelecomService().isInCall(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -0700947 }
948 } catch (RemoteException e) {
Yorke Lee2ae312e2014-09-12 17:58:48 -0700949 Log.e(TAG, "RemoteException calling isInCall().", e);
Santos Cordon9eb45932014-06-27 12:28:43 -0700950 }
951 return false;
952 }
953
954 /**
Yorke Lee2ae312e2014-09-12 17:58:48 -0700955 * Returns one of the following constants that represents the current state of Telecom:
956 *
957 * {@link TelephonyManager#CALL_STATE_RINGING}
958 * {@link TelephonyManager#CALL_STATE_OFFHOOK}
959 * {@link TelephonyManager#CALL_STATE_IDLE}
Yorke Lee7c72c2d2014-10-28 14:12:02 -0700960 *
961 * Note that this API does not require the
962 * {@link android.Manifest.permission#READ_PHONE_STATE} permission. This is intentional, to
963 * preserve the behavior of {@link TelephonyManager#getCallState()}, which also did not require
964 * the permission.
Yorke Lee2ae312e2014-09-12 17:58:48 -0700965 * @hide
966 */
967 @SystemApi
968 public int getCallState() {
969 try {
970 if (isServiceConnected()) {
971 return getTelecomService().getCallState();
972 }
973 } catch (RemoteException e) {
974 Log.d(TAG, "RemoteException calling getCallState().", e);
975 }
976 return TelephonyManager.CALL_STATE_IDLE;
977 }
978
979 /**
Santos Cordon9eb45932014-06-27 12:28:43 -0700980 * Returns whether there currently exists is a ringing incoming-call.
981 *
982 * @hide
983 */
984 @SystemApi
985 public boolean isRinging() {
986 try {
987 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700988 return getTelecomService().isRinging(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -0700989 }
990 } catch (RemoteException e) {
991 Log.e(TAG, "RemoteException attempting to get ringing state of phone app.", e);
992 }
993 return false;
994 }
995
996 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700997 * Ends an ongoing call.
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700998 * TODO: L-release - need to convert all invocations of ITelecomService#endCall to use this
Santos Cordon96efb482014-07-19 14:57:05 -0700999 * method (clockwork & gearhead).
Santos Cordon9eb45932014-06-27 12:28:43 -07001000 * @hide
1001 */
1002 @SystemApi
1003 public boolean endCall() {
1004 try {
1005 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001006 return getTelecomService().endCall();
Santos Cordon9eb45932014-06-27 12:28:43 -07001007 }
1008 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001009 Log.e(TAG, "Error calling ITelecomService#endCall", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001010 }
1011 return false;
1012 }
1013
1014 /**
1015 * If there is a ringing incoming call, this method accepts the call on behalf of the user.
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001016 * TODO: L-release - need to convert all invocation of ITelecmmService#answerRingingCall to use
Santos Cordon96efb482014-07-19 14:57:05 -07001017 * this method (clockwork & gearhead).
Santos Cordon9eb45932014-06-27 12:28:43 -07001018 *
1019 * @hide
1020 */
1021 @SystemApi
1022 public void acceptRingingCall() {
1023 try {
1024 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001025 getTelecomService().acceptRingingCall();
Santos Cordon9eb45932014-06-27 12:28:43 -07001026 }
1027 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001028 Log.e(TAG, "Error calling ITelecomService#acceptRingingCall", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001029 }
1030 }
1031
1032 /**
1033 * Silences the ringer if a ringing call exists.
Santos Cordon9eb45932014-06-27 12:28:43 -07001034 */
Santos Cordon9eb45932014-06-27 12:28:43 -07001035 public void silenceRinger() {
1036 try {
1037 if (isServiceConnected()) {
Yorke Leef1a349b2015-04-29 16:16:50 -07001038 getTelecomService().silenceRinger(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -07001039 }
1040 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001041 Log.e(TAG, "Error calling ITelecomService#silenceRinger", e);
Santos Cordon9eb45932014-06-27 12:28:43 -07001042 }
1043 }
1044
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001045 /**
1046 * Returns whether TTY is supported on this device.
1047 *
1048 * @hide
1049 */
1050 @SystemApi
1051 public boolean isTtySupported() {
1052 try {
1053 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001054 return getTelecomService().isTtySupported(mContext.getOpPackageName());
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001055 }
1056 } catch (RemoteException e) {
1057 Log.e(TAG, "RemoteException attempting to get TTY supported state.", e);
1058 }
1059 return false;
1060 }
1061
1062 /**
1063 * 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 -07001064 * settings and have a wired headset plugged in.
1065 * Valid modes are:
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001066 * - {@link TelecomManager#TTY_MODE_OFF}
1067 * - {@link TelecomManager#TTY_MODE_FULL}
1068 * - {@link TelecomManager#TTY_MODE_HCO}
1069 * - {@link TelecomManager#TTY_MODE_VCO}
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001070 * @hide
1071 */
1072 public int getCurrentTtyMode() {
1073 try {
1074 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -07001075 return getTelecomService().getCurrentTtyMode(mContext.getOpPackageName());
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001076 }
1077 } catch (RemoteException e) {
1078 Log.e(TAG, "RemoteException attempting to get the current TTY mode.", e);
1079 }
Evan Charlton10197192014-07-19 15:00:29 -07001080 return TTY_MODE_OFF;
Sailesh Nepal001bbbb2014-07-15 14:40:39 -07001081 }
1082
Santos Cordon96efb482014-07-19 14:57:05 -07001083 /**
1084 * Registers a new incoming call. A {@link ConnectionService} should invoke this method when it
1085 * has an incoming call. The specified {@link PhoneAccountHandle} must have been registered
Nancy Chen210ef032014-09-15 17:58:42 -07001086 * with {@link #registerPhoneAccount}. Once invoked, this method will cause the system to bind
1087 * to the {@link ConnectionService} associated with the {@link PhoneAccountHandle} and request
Santos Cordon96efb482014-07-19 14:57:05 -07001088 * additional information about the call (See
1089 * {@link ConnectionService#onCreateIncomingConnection}) before starting the incoming call UI.
1090 *
1091 * @param phoneAccount A {@link PhoneAccountHandle} registered with
1092 * {@link #registerPhoneAccount}.
1093 * @param extras A bundle that will be passed through to
1094 * {@link ConnectionService#onCreateIncomingConnection}.
1095 */
1096 public void addNewIncomingCall(PhoneAccountHandle phoneAccount, Bundle extras) {
1097 try {
1098 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001099 getTelecomService().addNewIncomingCall(
Santos Cordon96efb482014-07-19 14:57:05 -07001100 phoneAccount, extras == null ? new Bundle() : extras);
1101 }
1102 } catch (RemoteException e) {
1103 Log.e(TAG, "RemoteException adding a new incoming call: " + phoneAccount, e);
1104 }
1105 }
1106
Nancy Chen0eb1e402014-08-21 22:52:29 -07001107 /**
Yorke Leec3cf9822014-10-02 09:38:39 -07001108 * Registers a new unknown call with Telecom. This can only be called by the system Telephony
1109 * service. This is invoked when Telephony detects a new unknown connection that was neither
1110 * a new incoming call, nor an user-initiated outgoing call.
1111 *
1112 * @param phoneAccount A {@link PhoneAccountHandle} registered with
1113 * {@link #registerPhoneAccount}.
1114 * @param extras A bundle that will be passed through to
1115 * {@link ConnectionService#onCreateIncomingConnection}.
1116 * @hide
1117 */
1118 @SystemApi
1119 public void addNewUnknownCall(PhoneAccountHandle phoneAccount, Bundle extras) {
1120 try {
1121 if (isServiceConnected()) {
1122 getTelecomService().addNewUnknownCall(
1123 phoneAccount, extras == null ? new Bundle() : extras);
1124 }
1125 } catch (RemoteException e) {
1126 Log.e(TAG, "RemoteException adding a new unknown call: " + phoneAccount, e);
1127 }
1128 }
1129
1130 /**
Nancy Chen0eb1e402014-08-21 22:52:29 -07001131 * Processes the specified dial string as an MMI code.
1132 * MMI codes are any sequence of characters entered into the dialpad that contain a "*" or "#".
1133 * Some of these sequences launch special behavior through handled by Telephony.
Nancy Chen95e8a672014-10-16 18:38:21 -07001134 * This method uses the default subscription.
Nancy Chen0eb1e402014-08-21 22:52:29 -07001135 * <p>
1136 * Requires that the method-caller be set as the system dialer app.
1137 * </p>
1138 *
1139 * @param dialString The digits to dial.
1140 * @return True if the digits were processed as an MMI code, false otherwise.
1141 */
1142 public boolean handleMmi(String dialString) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001143 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001144 if (service != null) {
1145 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001146 return service.handlePinMmi(dialString, mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001147 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001148 Log.e(TAG, "Error calling ITelecomService#handlePinMmi", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001149 }
1150 }
1151 return false;
1152 }
1153
1154 /**
Nancy Chen95e8a672014-10-16 18:38:21 -07001155 * Processes the specified dial string as an MMI code.
1156 * MMI codes are any sequence of characters entered into the dialpad that contain a "*" or "#".
1157 * Some of these sequences launch special behavior through handled by Telephony.
1158 * <p>
1159 * Requires that the method-caller be set as the system dialer app.
1160 * </p>
1161 *
1162 * @param accountHandle The handle for the account the MMI code should apply to.
1163 * @param dialString The digits to dial.
1164 * @return True if the digits were processed as an MMI code, false otherwise.
Nancy Chen95e8a672014-10-16 18:38:21 -07001165 */
Yorke Lee06044272015-04-14 15:16:59 -07001166 public boolean handleMmi(String dialString, PhoneAccountHandle accountHandle) {
Nancy Chen95e8a672014-10-16 18:38:21 -07001167 ITelecomService service = getTelecomService();
1168 if (service != null) {
1169 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001170 return service.handlePinMmiForPhoneAccount(accountHandle, dialString,
1171 mContext.getOpPackageName());
Nancy Chen95e8a672014-10-16 18:38:21 -07001172 } catch (RemoteException e) {
1173 Log.e(TAG, "Error calling ITelecomService#handlePinMmi", e);
1174 }
1175 }
1176 return false;
1177 }
1178
1179 /**
Nancy Chenb2299c12014-10-29 18:22:11 -07001180 * @param accountHandle The handle for the account to derive an adn query URI for or
1181 * {@code null} to return a URI which will use the default account.
1182 * @return The URI (with the content:// scheme) specific to the specified {@link PhoneAccount}
1183 * for the the content retrieve.
1184 */
1185 public Uri getAdnUriForPhoneAccount(PhoneAccountHandle accountHandle) {
1186 ITelecomService service = getTelecomService();
1187 if (service != null && accountHandle != null) {
1188 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001189 return service.getAdnUriForPhoneAccount(accountHandle, mContext.getOpPackageName());
Nancy Chenb2299c12014-10-29 18:22:11 -07001190 } catch (RemoteException e) {
1191 Log.e(TAG, "Error calling ITelecomService#getAdnUriForPhoneAccount", e);
1192 }
1193 }
1194 return Uri.parse("content://icc/adn");
1195 }
1196
1197 /**
Nancy Chen0eb1e402014-08-21 22:52:29 -07001198 * Removes the missed-call notification if one is present.
1199 * <p>
1200 * Requires that the method-caller be set as the system dialer app.
1201 * </p>
1202 */
1203 public void cancelMissedCallsNotification() {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001204 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001205 if (service != null) {
1206 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001207 service.cancelMissedCallsNotification(mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001208 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001209 Log.e(TAG, "Error calling ITelecomService#cancelMissedCallsNotification", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001210 }
1211 }
1212 }
1213
1214 /**
1215 * Brings the in-call screen to the foreground if there is an ongoing call. If there is
1216 * currently no ongoing call, then this method does nothing.
1217 * <p>
1218 * Requires that the method-caller be set as the system dialer app or have the
1219 * {@link android.Manifest.permission#READ_PHONE_STATE} permission.
1220 * </p>
1221 *
1222 * @param showDialpad Brings up the in-call dialpad as part of showing the in-call screen.
1223 */
1224 public void showInCallScreen(boolean showDialpad) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001225 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001226 if (service != null) {
1227 try {
Svet Ganov16a16892015-04-16 10:32:04 -07001228 service.showInCallScreen(showDialpad, mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001229 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001230 Log.e(TAG, "Error calling ITelecomService#showCallScreen", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001231 }
1232 }
1233 }
1234
Yorke Lee3e56ba12015-04-23 12:32:36 -07001235 /**
1236 * Places a new outgoing call to the provided address using the system telecom service with
1237 * the specified extras.
1238 *
1239 * This method is equivalent to placing an outgoing call using {@link Intent#ACTION_CALL},
1240 * except that the outgoing call will always be sent via the system telecom service. If
1241 * method-caller is either the user selected default dialer app or preloaded system dialer
1242 * app, then emergency calls will also be allowed.
1243 *
1244 * Requires permission: {@link android.Manifest.permission#CALL_PHONE}
1245 *
1246 * Usage example:
1247 * <pre>
1248 * Uri uri = Uri.fromParts("tel", "12345", null);
1249 * Bundle extras = new Bundle();
1250 * extras.putBoolean(TelecomManager.EXTRA_START_CALL_WITH_SPEAKERPHONE, true);
1251 * telecomManager.placeCall(uri, extras);
1252 * </pre>
1253 *
Santos Cordon7a060d52015-06-19 14:52:04 -07001254 * The following keys are supported in the supplied extras.
1255 * <ul>
1256 * <li>{@link #EXTRA_OUTGOING_CALL_EXTRAS}</li>
1257 * <li>{@link #EXTRA_PHONE_ACCOUNT_HANDLE}</li>
1258 * <li>{@link #EXTRA_START_CALL_WITH_SPEAKERPHONE}</li>
1259 * <li>{@link #EXTRA_START_CALL_WITH_VIDEO_STATE}</li>
1260 * </ul>
1261 *
Yorke Lee3e56ba12015-04-23 12:32:36 -07001262 * @param address The address to make the call to.
1263 * @param extras Bundle of extras to use with the call.
1264 */
1265 public void placeCall(Uri address, Bundle extras) {
1266 ITelecomService service = getTelecomService();
1267 if (service != null) {
Yorke Leea5d5c1d2015-05-05 16:25:55 -07001268 if (address == null) {
1269 Log.w(TAG, "Cannot place call to empty address.");
1270 }
Yorke Lee3e56ba12015-04-23 12:32:36 -07001271 try {
Yorke Leea5d5c1d2015-05-05 16:25:55 -07001272 service.placeCall(address, extras == null ? new Bundle() : extras,
1273 mContext.getOpPackageName());
Yorke Lee3e56ba12015-04-23 12:32:36 -07001274 } catch (RemoteException e) {
1275 Log.e(TAG, "Error calling ITelecomService#placeCall", e);
1276 }
1277 }
1278 }
1279
Santos Cordon91371dc2015-05-08 13:52:09 -07001280 /**
1281 * Enables and disables specified phone account.
1282 *
1283 * @param handle Handle to the phone account.
1284 * @param isEnabled Enable state of the phone account.
1285 * @hide
1286 */
1287 @SystemApi
1288 public void enablePhoneAccount(PhoneAccountHandle handle, boolean isEnabled) {
1289 ITelecomService service = getTelecomService();
1290 if (service != null) {
1291 try {
1292 service.enablePhoneAccount(handle, isEnabled);
1293 } catch (RemoteException e) {
1294 Log.e(TAG, "Error enablePhoneAbbount", e);
1295 }
1296 }
1297 }
1298
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001299 private ITelecomService getTelecomService() {
1300 return ITelecomService.Stub.asInterface(ServiceManager.getService(Context.TELECOM_SERVICE));
Santos Cordon6c7a3882014-06-25 15:30:08 -07001301 }
Santos Cordon9eb45932014-06-27 12:28:43 -07001302
1303 private boolean isServiceConnected() {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001304 boolean isConnected = getTelecomService() != null;
Santos Cordon9eb45932014-06-27 12:28:43 -07001305 if (!isConnected) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001306 Log.w(TAG, "Telecom Service not found.");
Santos Cordon9eb45932014-06-27 12:28:43 -07001307 }
1308 return isConnected;
1309 }
Evan Charlton235c1592014-09-05 15:41:23 +00001310}