blob: 1431eb8be125285ee0dd55e8a70252c3cdc608ca [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 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -070070 * The {@link android.content.Intent} action used to configure a
Tyler Gunnef9f6f92014-09-12 22:16:17 -070071 * {@link android.telecom.ConnectionService}.
Evan Charlton0e094d92014-11-08 15:49:16 -080072 * @hide
Evan Charlton10197192014-07-19 15:00:29 -070073 */
Evan Charlton0e094d92014-11-08 15:49:16 -080074 @SystemApi
Evan Charlton10197192014-07-19 15:00:29 -070075 public static final String ACTION_CONNECTION_SERVICE_CONFIGURE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -070076 "android.telecom.action.CONNECTION_SERVICE_CONFIGURE";
Evan Charlton10197192014-07-19 15:00:29 -070077
78 /**
Andrew Lee873cfbf2015-02-26 15:22:00 -080079 * The {@link android.content.Intent} action used to show the call accessibility settings page.
80 */
81 public static final String ACTION_SHOW_CALL_ACCESSIBILITY_SETTINGS =
82 "android.telecom.action.SHOW_CALL_ACCESSIBILITY_SETTINGS";
83
84 /**
Yorke Lee3818a892014-07-21 15:57:17 -070085 * The {@link android.content.Intent} action used to show the call settings page.
86 */
87 public static final String ACTION_SHOW_CALL_SETTINGS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -070088 "android.telecom.action.SHOW_CALL_SETTINGS";
Yorke Lee3818a892014-07-21 15:57:17 -070089
90 /**
Andrew Lee866080f2015-02-19 12:05:33 -080091 * The {@link android.content.Intent} action used to show the respond via SMS settings page.
92 */
93 public static final String ACTION_SHOW_RESPOND_VIA_SMS_SETTINGS =
94 "android.telecom.action.SHOW_RESPOND_VIA_SMS_SETTINGS";
95
96 /**
Evan Charlton6d8604f2014-09-04 12:38:17 -070097 * The {@link android.content.Intent} action used to show the settings page used to configure
98 * {@link PhoneAccount} preferences.
99 */
100 public static final String ACTION_CHANGE_PHONE_ACCOUNTS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700101 "android.telecom.action.CHANGE_PHONE_ACCOUNTS";
Evan Charlton6d8604f2014-09-04 12:38:17 -0700102
103 /**
Santos Cordonc66f3ba2015-02-27 15:22:07 -0800104 * The {@link android.content.Intent} action used indicate that a new phone account was
105 * just registered.
106 * @hide
107 */
108 @SystemApi
109 public static final String ACTION_PHONE_ACCOUNT_REGISTERED =
110 "android.telecom.action.PHONE_ACCOUNT_REGISTERED";
111
112 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700113 * Activity action: Shows a dialog asking the user whether or not they want to replace the
114 * current default Dialer with the one specified in
115 * {@link #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME}.
116 *
117 * Usage example:
118 * <pre>
119 * Intent intent = new Intent(TelecomManager.ACTION_CHANGE_DEFAULT_DIALER);
120 * intent.putExtra(TelecomManager.EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME,
121 * getActivity().getPackageName());
122 * startActivity(intent);
123 * </pre>
124 */
125 public static final String ACTION_CHANGE_DEFAULT_DIALER =
126 "android.telecom.action.CHANGE_DEFAULT_DIALER";
127
128 /**
129 * Extra value used to provide the package name for {@link #ACTION_CHANGE_DEFAULT_DIALER}.
130 */
131 public static final String EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME =
132 "android.telecom.extra.CHANGE_DEFAULT_DIALER_PACKAGE_NAME";
133
134 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700135 * Optional extra for {@link android.content.Intent#ACTION_CALL} containing a boolean that
136 * determines whether the speakerphone should be automatically turned on for an outgoing call.
Evan Charlton10197192014-07-19 15:00:29 -0700137 */
138 public static final String EXTRA_START_CALL_WITH_SPEAKERPHONE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700139 "android.telecom.extra.START_CALL_WITH_SPEAKERPHONE";
Evan Charlton10197192014-07-19 15:00:29 -0700140
141 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700142 * Optional extra for {@link android.content.Intent#ACTION_CALL} containing an integer that
143 * determines the desired video state for an outgoing call.
Santos Cordon96efb482014-07-19 14:57:05 -0700144 * Valid options:
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700145 * {@link VideoProfile.VideoState#AUDIO_ONLY},
146 * {@link VideoProfile.VideoState#BIDIRECTIONAL},
147 * {@link VideoProfile.VideoState#RX_ENABLED},
148 * {@link VideoProfile.VideoState#TX_ENABLED}.
Evan Charlton10197192014-07-19 15:00:29 -0700149 */
150 public static final String EXTRA_START_CALL_WITH_VIDEO_STATE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700151 "android.telecom.extra.START_CALL_WITH_VIDEO_STATE";
Evan Charlton10197192014-07-19 15:00:29 -0700152
153 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700154 * The extra used with an {@link android.content.Intent#ACTION_CALL} and
155 * {@link android.content.Intent#ACTION_DIAL} {@code Intent} to specify a
156 * {@link PhoneAccountHandle} to use when making the call.
Evan Charlton10197192014-07-19 15:00:29 -0700157 * <p class="note">
Santos Cordon96efb482014-07-19 14:57:05 -0700158 * Retrieve with {@link android.content.Intent#getParcelableExtra(String)}.
Evan Charlton10197192014-07-19 15:00:29 -0700159 */
Evan Charlton6eb262c2014-07-19 18:18:19 -0700160 public static final String EXTRA_PHONE_ACCOUNT_HANDLE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700161 "android.telecom.extra.PHONE_ACCOUNT_HANDLE";
Evan Charlton10197192014-07-19 15:00:29 -0700162
163 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700164 * Optional extra for {@link #ACTION_INCOMING_CALL} containing a {@link Bundle} which contains
165 * metadata about the call. This {@link Bundle} will be returned to the
166 * {@link ConnectionService}.
Evan Charlton10197192014-07-19 15:00:29 -0700167 */
168 public static final String EXTRA_INCOMING_CALL_EXTRAS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700169 "android.telecom.extra.INCOMING_CALL_EXTRAS";
Evan Charlton10197192014-07-19 15:00:29 -0700170
171 /**
Nancy Chen10798dc2014-08-08 14:00:25 -0700172 * Optional extra for {@link android.content.Intent#ACTION_CALL} and
173 * {@link android.content.Intent#ACTION_DIAL} {@code Intent} containing a {@link Bundle}
174 * which contains metadata about the call. This {@link Bundle} will be saved into
175 * {@code Call.Details}.
Nancy Chen10798dc2014-08-08 14:00:25 -0700176 */
177 public static final String EXTRA_OUTGOING_CALL_EXTRAS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700178 "android.telecom.extra.OUTGOING_CALL_EXTRAS";
Nancy Chen10798dc2014-08-08 14:00:25 -0700179
180 /**
Yorke Leec3cf9822014-10-02 09:38:39 -0700181 * @hide
182 */
183 public static final String EXTRA_UNKNOWN_CALL_HANDLE =
184 "android.telecom.extra.UNKNOWN_CALL_HANDLE";
185
186 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700187 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
188 * containing the disconnect code.
Evan Charlton10197192014-07-19 15:00:29 -0700189 */
190 public static final String EXTRA_CALL_DISCONNECT_CAUSE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700191 "android.telecom.extra.CALL_DISCONNECT_CAUSE";
Evan Charlton10197192014-07-19 15:00:29 -0700192
193 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700194 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
195 * containing the disconnect message.
Evan Charlton10197192014-07-19 15:00:29 -0700196 */
197 public static final String EXTRA_CALL_DISCONNECT_MESSAGE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700198 "android.telecom.extra.CALL_DISCONNECT_MESSAGE";
Evan Charlton10197192014-07-19 15:00:29 -0700199
200 /**
Evan Charlton6eb262c2014-07-19 18:18:19 -0700201 * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED}
202 * containing the component name of the associated connection service.
Evan Charlton0e094d92014-11-08 15:49:16 -0800203 * @hide
Evan Charlton10197192014-07-19 15:00:29 -0700204 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800205 @SystemApi
Evan Charlton10197192014-07-19 15:00:29 -0700206 public static final String EXTRA_CONNECTION_SERVICE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700207 "android.telecom.extra.CONNECTION_SERVICE";
Evan Charlton10197192014-07-19 15:00:29 -0700208
209 /**
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700210 * An optional {@link android.content.Intent#ACTION_CALL} intent extra denoting the
211 * package name of the app specifying an alternative gateway for the call.
212 * The value is a string.
213 *
214 * (The following comment corresponds to the all GATEWAY_* extras)
215 * An app which sends the {@link android.content.Intent#ACTION_CALL} intent can specify an
216 * alternative address to dial which is different from the one specified and displayed to
217 * the user. This alternative address is referred to as the gateway address.
218 */
219 public static final String GATEWAY_PROVIDER_PACKAGE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700220 "android.telecom.extra.GATEWAY_PROVIDER_PACKAGE";
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700221
222 /**
223 * An optional {@link android.content.Intent#ACTION_CALL} intent extra corresponding to the
224 * original address to dial for the call. This is used when an alternative gateway address is
225 * provided to recall the original address.
226 * The value is a {@link android.net.Uri}.
227 *
228 * (See {@link #GATEWAY_PROVIDER_PACKAGE} for details)
229 */
230 public static final String GATEWAY_ORIGINAL_ADDRESS =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700231 "android.telecom.extra.GATEWAY_ORIGINAL_ADDRESS";
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700232
233 /**
Evan Charlton10197192014-07-19 15:00:29 -0700234 * The number which the party on the other side of the line will see (and use to return the
235 * call).
236 * <p>
Santos Cordon96efb482014-07-19 14:57:05 -0700237 * {@link ConnectionService}s which interact with {@link RemoteConnection}s should only populate
238 * this if the {@link android.telephony.TelephonyManager#getLine1Number()} value, as that is the
239 * user's expected caller ID.
Evan Charlton10197192014-07-19 15:00:29 -0700240 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700241 public static final String EXTRA_CALL_BACK_NUMBER = "android.telecom.extra.CALL_BACK_NUMBER";
Evan Charlton10197192014-07-19 15:00:29 -0700242
243 /**
244 * The dual tone multi-frequency signaling character sent to indicate the dialing system should
245 * pause for a predefined period.
246 */
247 public static final char DTMF_CHARACTER_PAUSE = ',';
248
249 /**
250 * The dual-tone multi-frequency signaling character sent to indicate the dialing system should
251 * wait for user confirmation before proceeding.
252 */
253 public static final char DTMF_CHARACTER_WAIT = ';';
254
255 /**
256 * TTY (teletypewriter) mode is off.
257 *
258 * @hide
259 */
260 public static final int TTY_MODE_OFF = 0;
261
262 /**
263 * TTY (teletypewriter) mode is on. The speaker is off and the microphone is muted. The user
264 * will communicate with the remote party by sending and receiving text messages.
265 *
266 * @hide
267 */
268 public static final int TTY_MODE_FULL = 1;
269
270 /**
271 * TTY (teletypewriter) mode is in hearing carryover mode (HCO). The microphone is muted but the
272 * speaker is on. The user will communicate with the remote party by sending text messages and
273 * hearing an audible reply.
274 *
275 * @hide
276 */
277 public static final int TTY_MODE_HCO = 2;
278
279 /**
280 * TTY (teletypewriter) mode is in voice carryover mode (VCO). The speaker is off but the
281 * microphone is still on. User will communicate with the remote party by speaking and receiving
282 * text message replies.
283 *
284 * @hide
285 */
286 public static final int TTY_MODE_VCO = 3;
287
288 /**
289 * Broadcast intent action indicating that the current TTY mode has changed. An intent extra
290 * provides this state as an int.
Evan Charlton10197192014-07-19 15:00:29 -0700291 *
Santos Cordon96efb482014-07-19 14:57:05 -0700292 * @see #EXTRA_CURRENT_TTY_MODE
Evan Charlton10197192014-07-19 15:00:29 -0700293 * @hide
294 */
295 public static final String ACTION_CURRENT_TTY_MODE_CHANGED =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700296 "android.telecom.action.CURRENT_TTY_MODE_CHANGED";
Evan Charlton10197192014-07-19 15:00:29 -0700297
298 /**
299 * The lookup key for an int that indicates the current TTY mode.
300 * Valid modes are:
301 * - {@link #TTY_MODE_OFF}
302 * - {@link #TTY_MODE_FULL}
303 * - {@link #TTY_MODE_HCO}
304 * - {@link #TTY_MODE_VCO}
305 *
306 * @hide
307 */
308 public static final String EXTRA_CURRENT_TTY_MODE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700309 "android.telecom.intent.extra.CURRENT_TTY_MODE";
Evan Charlton10197192014-07-19 15:00:29 -0700310
311 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700312 * Broadcast intent action indicating that the TTY preferred operating mode has changed. An
313 * intent extra provides the new mode as an int.
Evan Charlton10197192014-07-19 15:00:29 -0700314 *
Santos Cordon96efb482014-07-19 14:57:05 -0700315 * @see #EXTRA_TTY_PREFERRED_MODE
Evan Charlton10197192014-07-19 15:00:29 -0700316 * @hide
317 */
318 public static final String ACTION_TTY_PREFERRED_MODE_CHANGED =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700319 "android.telecom.action.TTY_PREFERRED_MODE_CHANGED";
Evan Charlton10197192014-07-19 15:00:29 -0700320
321 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700322 * The lookup key for an int that indicates preferred TTY mode. Valid modes are: -
323 * {@link #TTY_MODE_OFF} - {@link #TTY_MODE_FULL} - {@link #TTY_MODE_HCO} -
324 * {@link #TTY_MODE_VCO}
Evan Charlton10197192014-07-19 15:00:29 -0700325 *
326 * @hide
327 */
328 public static final String EXTRA_TTY_PREFERRED_MODE =
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700329 "android.telecom.intent.extra.TTY_PREFERRED";
Evan Charlton10197192014-07-19 15:00:29 -0700330
Nancy Chen9d568c02014-09-08 14:17:59 -0700331 /**
332 * The following 4 constants define how properties such as phone numbers and names are
333 * displayed to the user.
334 */
335
336 /** Property is displayed normally. */
337 public static final int PRESENTATION_ALLOWED = 1;
338
339 /** Property was blocked. */
340 public static final int PRESENTATION_RESTRICTED = 2;
341
342 /** Presentation was not specified or is unknown. */
343 public static final int PRESENTATION_UNKNOWN = 3;
344
345 /** Property should be displayed as a pay phone. */
346 public static final int PRESENTATION_PAYPHONE = 4;
347
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700348 private static final String TAG = "TelecomManager";
Yorke Leeb4ce1432014-06-09 13:53:23 -0700349
350 private final Context mContext;
Yorke Leeb4ce1432014-06-09 13:53:23 -0700351
Santos Cordon6c7a3882014-06-25 15:30:08 -0700352 /**
353 * @hide
354 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700355 public static TelecomManager from(Context context) {
356 return (TelecomManager) context.getSystemService(Context.TELECOM_SERVICE);
Yorke Leeb4ce1432014-06-09 13:53:23 -0700357 }
Santos Cordon6c7a3882014-06-25 15:30:08 -0700358
359 /**
360 * @hide
361 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700362 public TelecomManager(Context context) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700363 Context appContext = context.getApplicationContext();
364 if (appContext != null) {
365 mContext = appContext;
366 } else {
367 mContext = context;
368 }
369 }
370
371 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700372 * Return the {@link PhoneAccount} which is the user-chosen default for making outgoing phone
Nancy Chen513c8922014-09-17 14:47:20 -0700373 * calls with a specified URI scheme.
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700374 * <p>
Santos Cordon96efb482014-07-19 14:57:05 -0700375 * Apps must be prepared for this method to return {@code null}, indicating that there currently
Nancy Chen513c8922014-09-17 14:47:20 -0700376 * exists no user-chosen default {@code PhoneAccount}.
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700377 * <p>
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700378 * @param uriScheme The URI scheme.
Nancy Chen513c8922014-09-17 14:47:20 -0700379 * @return The {@link PhoneAccountHandle} corresponding to the user-chosen default for outgoing
380 * phone calls for a specified URI scheme.
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700381 */
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700382 public PhoneAccountHandle getDefaultOutgoingPhoneAccount(String uriScheme) {
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700383 try {
384 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700385 return getTelecomService().getDefaultOutgoingPhoneAccount(uriScheme,
386 mContext.getOpPackageName());
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700387 }
388 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700389 Log.e(TAG, "Error calling ITelecomService#getDefaultOutgoingPhoneAccount", e);
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700390 }
391 return null;
392 }
393
394 /**
Andrew Leed4abbfb2014-09-03 14:58:27 -0700395 * Return the {@link PhoneAccount} which is the user-chosen default for making outgoing phone
396 * calls. This {@code PhoneAccount} will always be a member of the list which is returned from
Nancy Chen210ef032014-09-15 17:58:42 -0700397 * calling {@link #getCallCapablePhoneAccounts()}
Andrew Leed4abbfb2014-09-03 14:58:27 -0700398 *
399 * Apps must be prepared for this method to return {@code null}, indicating that there currently
400 * exists no user-chosen default {@code PhoneAccount}.
401 *
402 * @return The user outgoing phone account selected by the user.
Jay Shrauner225ccad2015-04-15 15:51:15 -0700403 * @hide
Andrew Leed4abbfb2014-09-03 14:58:27 -0700404 */
405 public PhoneAccountHandle getUserSelectedOutgoingPhoneAccount() {
406 try {
407 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700408 return getTelecomService().getUserSelectedOutgoingPhoneAccount();
Andrew Leed4abbfb2014-09-03 14:58:27 -0700409 }
410 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700411 Log.e(TAG, "Error calling ITelecomService#getUserSelectedOutgoingPhoneAccount", e);
Andrew Leed4abbfb2014-09-03 14:58:27 -0700412 }
413 return null;
414 }
415
416 /**
Andrew Lee59cac3a2014-08-28 16:50:10 -0700417 * Sets the default account for making outgoing phone calls.
418 * @hide
419 */
Andrew Leed4abbfb2014-09-03 14:58:27 -0700420 public void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle accountHandle) {
Andrew Lee59cac3a2014-08-28 16:50:10 -0700421 try {
422 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700423 getTelecomService().setUserSelectedOutgoingPhoneAccount(accountHandle);
Andrew Lee59cac3a2014-08-28 16:50:10 -0700424 }
425 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700426 Log.e(TAG, "Error calling ITelecomService#setUserSelectedOutgoingPhoneAccount");
Andrew Lee59cac3a2014-08-28 16:50:10 -0700427 }
428 }
429
430 /**
Andrew Lee59cac3a2014-08-28 16:50:10 -0700431 * Returns the current SIM call manager. Apps must be prepared for this method to return
432 * {@code null}, indicating that there currently exists no user-chosen default
433 * {@code PhoneAccount}.
434 * @return The phone account handle of the current sim call manager.
Andrew Lee59cac3a2014-08-28 16:50:10 -0700435 */
436 public PhoneAccountHandle getSimCallManager() {
437 try {
438 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700439 return getTelecomService().getSimCallManager();
Andrew Lee59cac3a2014-08-28 16:50:10 -0700440 }
441 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700442 Log.e(TAG, "Error calling ITelecomService#getSimCallManager");
Andrew Lee59cac3a2014-08-28 16:50:10 -0700443 }
444 return null;
445 }
446
447 /**
448 * Sets the SIM call manager to the specified phone account.
449 * @param accountHandle The phone account handle of the account to set as the sim call manager.
450 * @hide
451 */
452 public void setSimCallManager(PhoneAccountHandle accountHandle) {
453 try {
454 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700455 getTelecomService().setSimCallManager(accountHandle);
Andrew Lee59cac3a2014-08-28 16:50:10 -0700456 }
457 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700458 Log.e(TAG, "Error calling ITelecomService#setSimCallManager");
Andrew Lee59cac3a2014-08-28 16:50:10 -0700459 }
460 }
461
462 /**
463 * Returns the list of registered SIM call managers.
464 * @return List of registered SIM call managers.
465 * @hide
466 */
467 public List<PhoneAccountHandle> getSimCallManagers() {
468 try {
469 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700470 return getTelecomService().getSimCallManagers(mContext.getOpPackageName());
Andrew Lee59cac3a2014-08-28 16:50:10 -0700471 }
472 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700473 Log.e(TAG, "Error calling ITelecomService#getSimCallManagers");
Andrew Lee59cac3a2014-08-28 16:50:10 -0700474 }
475 return new ArrayList<>();
476 }
477
478 /**
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700479 * Returns the current connection manager. Apps must be prepared for this method to return
480 * {@code null}, indicating that there currently exists no user-chosen default
481 * {@code PhoneAccount}.
482 *
483 * @return The phone account handle of the current connection manager.
Evan Charlton0e094d92014-11-08 15:49:16 -0800484 * @hide
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700485 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800486 @SystemApi
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700487 public PhoneAccountHandle getConnectionManager() {
488 return getSimCallManager();
489 }
490
491 /**
Sailesh Nepal7a4e3872014-11-21 11:01:40 -0800492 * Returns the list of registered SIM call managers.
493 * @return List of registered SIM call managers.
494 * @hide
495 */
496 @SystemApi
497 public List<PhoneAccountHandle> getRegisteredConnectionManagers() {
498 return getSimCallManagers();
499 }
500
501 /**
Nancy Chen210ef032014-09-15 17:58:42 -0700502 * Returns a list of the {@link PhoneAccountHandle}s which can be used to make and receive phone
503 * calls which support the specified URI scheme.
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700504 * <P>
505 * For example, invoking with {@code "tel"} will find all {@link PhoneAccountHandle}s which
506 * support telephone calls (e.g. URIs such as {@code tel:555-555-1212}). Invoking with
507 * {@code "sip"} will find all {@link PhoneAccountHandle}s which support SIP calls (e.g. URIs
508 * such as {@code sip:example@sipexample.com}).
509 *
510 * @param uriScheme The URI scheme.
511 * @return A list of {@code PhoneAccountHandle} objects supporting the URI scheme.
Evan Charlton0e094d92014-11-08 15:49:16 -0800512 * @hide
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700513 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800514 @SystemApi
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700515 public List<PhoneAccountHandle> getPhoneAccountsSupportingScheme(String uriScheme) {
516 try {
517 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700518 return getTelecomService().getPhoneAccountsSupportingScheme(uriScheme,
519 mContext.getOpPackageName());
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700520 }
521 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700522 Log.e(TAG, "Error calling ITelecomService#getPhoneAccountsSupportingScheme", e);
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700523 }
524 return new ArrayList<>();
525 }
526
Nancy Chen513c8922014-09-17 14:47:20 -0700527
528 /**
529 * Return a list of {@link PhoneAccountHandle}s which can be used to make and receive phone
530 * calls.
531 *
532 * @see #EXTRA_PHONE_ACCOUNT_HANDLE
533 * @return A list of {@code PhoneAccountHandle} objects.
534 *
Nancy Chen513c8922014-09-17 14:47:20 -0700535 */
536 public List<PhoneAccountHandle> getCallCapablePhoneAccounts() {
537 try {
538 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700539 return getTelecomService().getCallCapablePhoneAccounts(mContext.getOpPackageName());
Nancy Chen513c8922014-09-17 14:47:20 -0700540 }
541 } catch (RemoteException e) {
542 Log.e(TAG, "Error calling ITelecomService#getCallCapablePhoneAccounts", e);
543 }
544 return new ArrayList<>();
545 }
546
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700547 /**
Nancy Chen513c8922014-09-17 14:47:20 -0700548 * Returns a list of all {@link PhoneAccount}s registered for the calling package.
549 *
550 * @return A list of {@code PhoneAccountHandle} objects.
Evan Charlton0e094d92014-11-08 15:49:16 -0800551 * @hide
Nancy Chen513c8922014-09-17 14:47:20 -0700552 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800553 @SystemApi
Nancy Chen513c8922014-09-17 14:47:20 -0700554 public List<PhoneAccountHandle> getPhoneAccountsForPackage() {
555 try {
556 if (isServiceConnected()) {
557 return getTelecomService().getPhoneAccountsForPackage(mContext.getPackageName());
558 }
559 } catch (RemoteException e) {
560 Log.e(TAG, "Error calling ITelecomService#getPhoneAccountsForPackage", e);
561 }
562 return null;
563 }
564
565 /**
Evan Charlton8c8a0622014-07-20 12:31:00 -0700566 * Return the {@link PhoneAccount} for a specified {@link PhoneAccountHandle}. Object includes
567 * resources which can be used in a user interface.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700568 *
Evan Charlton6eb262c2014-07-19 18:18:19 -0700569 * @param account The {@link PhoneAccountHandle}.
Evan Charlton8c8a0622014-07-20 12:31:00 -0700570 * @return The {@link PhoneAccount} object.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700571 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700572 public PhoneAccount getPhoneAccount(PhoneAccountHandle account) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700573 try {
574 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700575 return getTelecomService().getPhoneAccount(account);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700576 }
577 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700578 Log.e(TAG, "Error calling ITelecomService#getPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700579 }
580 return null;
581 }
582
583 /**
Nancy Chen210ef032014-09-15 17:58:42 -0700584 * Returns a count of all {@link PhoneAccount}s.
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700585 *
Nancy Chen210ef032014-09-15 17:58:42 -0700586 * @return The count of {@link PhoneAccount}s.
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700587 * @hide
588 */
589 @SystemApi
590 public int getAllPhoneAccountsCount() {
591 try {
592 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700593 return getTelecomService().getAllPhoneAccountsCount();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700594 }
595 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700596 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccountsCount", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700597 }
598 return 0;
599 }
600
601 /**
602 * Returns a list of all {@link PhoneAccount}s.
603 *
604 * @return All {@link PhoneAccount}s.
605 * @hide
606 */
607 @SystemApi
608 public List<PhoneAccount> getAllPhoneAccounts() {
609 try {
610 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700611 return getTelecomService().getAllPhoneAccounts();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700612 }
613 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700614 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccounts", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700615 }
616 return Collections.EMPTY_LIST;
617 }
618
619 /**
620 * Returns a list of all {@link PhoneAccountHandle}s.
621 *
622 * @return All {@link PhoneAccountHandle}s.
623 * @hide
624 */
625 @SystemApi
626 public List<PhoneAccountHandle> getAllPhoneAccountHandles() {
627 try {
628 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700629 return getTelecomService().getAllPhoneAccountHandles();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700630 }
631 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700632 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccountHandles", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700633 }
634 return Collections.EMPTY_LIST;
635 }
636
637 /**
Santos Cordond9e614f2014-10-28 13:10:36 -0700638 * Register a {@link PhoneAccount} for use by the system. When registering
639 * {@link PhoneAccount}s, existing registrations will be overwritten if the
640 * {@link PhoneAccountHandle} matches that of a {@link PhoneAccount} which is already
641 * registered. Once registered, the {@link PhoneAccount} is listed to the user as an option
642 * when placing calls. The user may still need to enable the {@link PhoneAccount} within
643 * the phone app settings before the account is usable.
644 * <p>
645 * A {@link SecurityException} will be thrown if an app tries to register a
646 * {@link PhoneAccountHandle} where the package name specified within
647 * {@link PhoneAccountHandle#getComponentName()} does not match the package name of the app.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700648 *
Evan Charlton8c8a0622014-07-20 12:31:00 -0700649 * @param account The complete {@link PhoneAccount}.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700650 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700651 public void registerPhoneAccount(PhoneAccount account) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700652 try {
653 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700654 getTelecomService().registerPhoneAccount(account);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700655 }
656 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700657 Log.e(TAG, "Error calling ITelecomService#registerPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700658 }
659 }
660
661 /**
Evan Charlton8c8a0622014-07-20 12:31:00 -0700662 * Remove a {@link PhoneAccount} registration from the system.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700663 *
Evan Charlton8c8a0622014-07-20 12:31:00 -0700664 * @param accountHandle A {@link PhoneAccountHandle} for the {@link PhoneAccount} to unregister.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700665 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700666 public void unregisterPhoneAccount(PhoneAccountHandle accountHandle) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700667 try {
668 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700669 getTelecomService().unregisterPhoneAccount(accountHandle);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700670 }
671 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700672 Log.e(TAG, "Error calling ITelecomService#unregisterPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700673 }
674 }
675
676 /**
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700677 * Remove all Accounts that belong to the calling package from the system.
Evan Charlton0e094d92014-11-08 15:49:16 -0800678 * @hide
Ihab Awad807fe0a2014-07-09 12:30:52 -0700679 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800680 @SystemApi
Yorke Lee06044272015-04-14 15:16:59 -0700681 public void clearPhoneAccounts() {
682 clearAccounts();
683 }
684 /**
685 * Remove all Accounts that belong to the calling package from the system.
686 * @deprecated Use {@link #clearPhoneAccounts()} instead.
687 * @hide
688 */
689 @SystemApi
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700690 public void clearAccounts() {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700691 try {
692 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700693 getTelecomService().clearAccounts(mContext.getPackageName());
Ihab Awad807fe0a2014-07-09 12:30:52 -0700694 }
695 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700696 Log.e(TAG, "Error calling ITelecomService#clearAccounts", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700697 }
698 }
699
700 /**
Anthony Lee67279262014-10-27 11:28:40 -0700701 * Remove all Accounts that belong to the specified package from the system.
702 * @hide
703 */
704 public void clearAccountsForPackage(String packageName) {
705 try {
706 if (isServiceConnected() && !TextUtils.isEmpty(packageName)) {
707 getTelecomService().clearAccounts(packageName);
708 }
709 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -0800710 Log.e(TAG, "Error calling ITelecomService#clearAccountsForPackage", e);
Anthony Lee67279262014-10-27 11:28:40 -0700711 }
712 }
713
Yorke Lee1011f482015-04-23 15:58:27 -0700714
Anthony Lee67279262014-10-27 11:28:40 -0700715 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700716 * @deprecated - Use {@link TelecomManager#getDefaultDialerPackage} to directly access
717 * the default dialer's package name instead.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700718 * @hide
719 */
Santos Cordon6c7a3882014-06-25 15:30:08 -0700720 @SystemApi
721 public ComponentName getDefaultPhoneApp() {
722 try {
Santos Cordon9eb45932014-06-27 12:28:43 -0700723 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700724 return getTelecomService().getDefaultPhoneApp();
Santos Cordon9eb45932014-06-27 12:28:43 -0700725 }
Santos Cordon6c7a3882014-06-25 15:30:08 -0700726 } catch (RemoteException e) {
727 Log.e(TAG, "RemoteException attempting to get the default phone app.", e);
728 }
729 return null;
730 }
731
Santos Cordon9eb45932014-06-27 12:28:43 -0700732 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700733 * Used to determine the currently selected default dialer package.
734 *
735 * @return package name for the default dialer package or null if no package has been
736 * selected as the default dialer.
737 */
738 public String getDefaultDialerPackage() {
739 try {
740 if (isServiceConnected()) {
741 return getTelecomService().getDefaultDialerPackage();
742 }
743 } catch (RemoteException e) {
744 Log.e(TAG, "RemoteException attempting to get the default dialer package name.", e);
745 }
746 return null;
747 }
748
749 /**
750 * Used to determine the dialer package that is preloaded on the system partition.
751 *
752 * @return package name for the system dialer package or null if no system dialer is preloaded.
753 * @hide
754 */
755 public String getSystemDialerPackage() {
756 try {
757 if (isServiceConnected()) {
758 return getTelecomService().getSystemDialerPackage();
759 }
760 } catch (RemoteException e) {
761 Log.e(TAG, "RemoteException attempting to get the system dialer package name.", e);
762 }
763 return null;
764 }
765
766 /**
Nancy Chen443e5012014-10-15 15:48:21 -0700767 * Return whether a given phone number is the configured voicemail number for a
768 * particular phone account.
769 *
770 * @param accountHandle The handle for the account to check the voicemail number against
771 * @param number The number to look up.
Nancy Chen443e5012014-10-15 15:48:21 -0700772 */
Nancy Chen443e5012014-10-15 15:48:21 -0700773 public boolean isVoiceMailNumber(PhoneAccountHandle accountHandle, String number) {
774 try {
775 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700776 return getTelecomService().isVoiceMailNumber(accountHandle, number,
777 mContext.getOpPackageName());
Nancy Chen443e5012014-10-15 15:48:21 -0700778 }
779 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -0800780 Log.e(TAG, "RemoteException calling ITelecomService#isVoiceMailNumber.", e);
Nancy Chen443e5012014-10-15 15:48:21 -0700781 }
782 return false;
783 }
784
785 /**
Yorke Lee49e2d462015-04-15 16:14:22 -0700786 * Return the voicemail number for a given phone account.
Nancy Chen8c066f72014-12-03 15:18:08 -0800787 *
Yorke Lee49e2d462015-04-15 16:14:22 -0700788 * @param accountHandle The handle for the phone account.
789 * @return The voicemail number for the phone account, and {@code null} if one has not been
790 * configured.
Nancy Chen8c066f72014-12-03 15:18:08 -0800791 */
Yorke Lee49e2d462015-04-15 16:14:22 -0700792 public String getVoiceMailNumber(PhoneAccountHandle accountHandle) {
Nancy Chen8c066f72014-12-03 15:18:08 -0800793 try {
794 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700795 return getTelecomService().getVoiceMailNumber(accountHandle,
796 mContext.getOpPackageName());
Nancy Chen8c066f72014-12-03 15:18:08 -0800797 }
798 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -0800799 Log.e(TAG, "RemoteException calling ITelecomService#hasVoiceMailNumber.", e);
Nancy Chen8c066f72014-12-03 15:18:08 -0800800 }
Yorke Lee49e2d462015-04-15 16:14:22 -0700801 return null;
Nancy Chen8c066f72014-12-03 15:18:08 -0800802 }
803
804 /**
Nancy Chen5cf27842015-01-24 23:30:27 -0800805 * Return the line 1 phone number for given phone account.
806 *
807 * @param accountHandle The handle for the account retrieve a number for.
808 * @return A string representation of the line 1 phone number.
Nancy Chen5cf27842015-01-24 23:30:27 -0800809 */
Nancy Chen5cf27842015-01-24 23:30:27 -0800810 public String getLine1Number(PhoneAccountHandle accountHandle) {
811 try {
812 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700813 return getTelecomService().getLine1Number(accountHandle,
814 mContext.getOpPackageName());
Nancy Chen5cf27842015-01-24 23:30:27 -0800815 }
816 } catch (RemoteException e) {
817 Log.e(TAG, "RemoteException calling ITelecomService#getLine1Number.", e);
818 }
819 return null;
820 }
821
822 /**
Santos Cordon9eb45932014-06-27 12:28:43 -0700823 * Returns whether there is an ongoing phone call (can be in dialing, ringing, active or holding
824 * states).
Nancy Chen0eb1e402014-08-21 22:52:29 -0700825 * <p>
826 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
827 * </p>
Santos Cordon9eb45932014-06-27 12:28:43 -0700828 */
Nancy Chen0eb1e402014-08-21 22:52:29 -0700829 public boolean isInCall() {
Santos Cordon9eb45932014-06-27 12:28:43 -0700830 try {
831 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700832 return getTelecomService().isInCall(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -0700833 }
834 } catch (RemoteException e) {
Yorke Lee2ae312e2014-09-12 17:58:48 -0700835 Log.e(TAG, "RemoteException calling isInCall().", e);
Santos Cordon9eb45932014-06-27 12:28:43 -0700836 }
837 return false;
838 }
839
840 /**
Yorke Lee2ae312e2014-09-12 17:58:48 -0700841 * Returns one of the following constants that represents the current state of Telecom:
842 *
843 * {@link TelephonyManager#CALL_STATE_RINGING}
844 * {@link TelephonyManager#CALL_STATE_OFFHOOK}
845 * {@link TelephonyManager#CALL_STATE_IDLE}
Yorke Lee7c72c2d2014-10-28 14:12:02 -0700846 *
847 * Note that this API does not require the
848 * {@link android.Manifest.permission#READ_PHONE_STATE} permission. This is intentional, to
849 * preserve the behavior of {@link TelephonyManager#getCallState()}, which also did not require
850 * the permission.
Yorke Lee2ae312e2014-09-12 17:58:48 -0700851 * @hide
852 */
853 @SystemApi
854 public int getCallState() {
855 try {
856 if (isServiceConnected()) {
857 return getTelecomService().getCallState();
858 }
859 } catch (RemoteException e) {
860 Log.d(TAG, "RemoteException calling getCallState().", e);
861 }
862 return TelephonyManager.CALL_STATE_IDLE;
863 }
864
865 /**
Santos Cordon9eb45932014-06-27 12:28:43 -0700866 * Returns whether there currently exists is a ringing incoming-call.
867 *
868 * @hide
869 */
870 @SystemApi
871 public boolean isRinging() {
872 try {
873 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700874 return getTelecomService().isRinging(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -0700875 }
876 } catch (RemoteException e) {
877 Log.e(TAG, "RemoteException attempting to get ringing state of phone app.", e);
878 }
879 return false;
880 }
881
882 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700883 * Ends an ongoing call.
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700884 * TODO: L-release - need to convert all invocations of ITelecomService#endCall to use this
Santos Cordon96efb482014-07-19 14:57:05 -0700885 * method (clockwork & gearhead).
Santos Cordon9eb45932014-06-27 12:28:43 -0700886 * @hide
887 */
888 @SystemApi
889 public boolean endCall() {
890 try {
891 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700892 return getTelecomService().endCall();
Santos Cordon9eb45932014-06-27 12:28:43 -0700893 }
894 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700895 Log.e(TAG, "Error calling ITelecomService#endCall", e);
Santos Cordon9eb45932014-06-27 12:28:43 -0700896 }
897 return false;
898 }
899
900 /**
901 * If there is a ringing incoming call, this method accepts the call on behalf of the user.
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700902 * TODO: L-release - need to convert all invocation of ITelecmmService#answerRingingCall to use
Santos Cordon96efb482014-07-19 14:57:05 -0700903 * this method (clockwork & gearhead).
Santos Cordon9eb45932014-06-27 12:28:43 -0700904 *
905 * @hide
906 */
907 @SystemApi
908 public void acceptRingingCall() {
909 try {
910 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700911 getTelecomService().acceptRingingCall();
Santos Cordon9eb45932014-06-27 12:28:43 -0700912 }
913 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700914 Log.e(TAG, "Error calling ITelecomService#acceptRingingCall", e);
Santos Cordon9eb45932014-06-27 12:28:43 -0700915 }
916 }
917
918 /**
919 * Silences the ringer if a ringing call exists.
Santos Cordon9eb45932014-06-27 12:28:43 -0700920 */
Santos Cordon9eb45932014-06-27 12:28:43 -0700921 public void silenceRinger() {
922 try {
923 if (isServiceConnected()) {
Yorke Leef1a349b2015-04-29 16:16:50 -0700924 getTelecomService().silenceRinger(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -0700925 }
926 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700927 Log.e(TAG, "Error calling ITelecomService#silenceRinger", e);
Santos Cordon9eb45932014-06-27 12:28:43 -0700928 }
929 }
930
Sailesh Nepal001bbbb2014-07-15 14:40:39 -0700931 /**
932 * Returns whether TTY is supported on this device.
933 *
934 * @hide
935 */
936 @SystemApi
937 public boolean isTtySupported() {
938 try {
939 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700940 return getTelecomService().isTtySupported(mContext.getOpPackageName());
Sailesh Nepal001bbbb2014-07-15 14:40:39 -0700941 }
942 } catch (RemoteException e) {
943 Log.e(TAG, "RemoteException attempting to get TTY supported state.", e);
944 }
945 return false;
946 }
947
948 /**
949 * 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 -0700950 * settings and have a wired headset plugged in.
951 * Valid modes are:
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700952 * - {@link TelecomManager#TTY_MODE_OFF}
953 * - {@link TelecomManager#TTY_MODE_FULL}
954 * - {@link TelecomManager#TTY_MODE_HCO}
955 * - {@link TelecomManager#TTY_MODE_VCO}
Sailesh Nepal001bbbb2014-07-15 14:40:39 -0700956 * @hide
957 */
958 public int getCurrentTtyMode() {
959 try {
960 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700961 return getTelecomService().getCurrentTtyMode(mContext.getOpPackageName());
Sailesh Nepal001bbbb2014-07-15 14:40:39 -0700962 }
963 } catch (RemoteException e) {
964 Log.e(TAG, "RemoteException attempting to get the current TTY mode.", e);
965 }
Evan Charlton10197192014-07-19 15:00:29 -0700966 return TTY_MODE_OFF;
Sailesh Nepal001bbbb2014-07-15 14:40:39 -0700967 }
968
Santos Cordon96efb482014-07-19 14:57:05 -0700969 /**
970 * Registers a new incoming call. A {@link ConnectionService} should invoke this method when it
971 * has an incoming call. The specified {@link PhoneAccountHandle} must have been registered
Nancy Chen210ef032014-09-15 17:58:42 -0700972 * with {@link #registerPhoneAccount}. Once invoked, this method will cause the system to bind
973 * to the {@link ConnectionService} associated with the {@link PhoneAccountHandle} and request
Santos Cordon96efb482014-07-19 14:57:05 -0700974 * additional information about the call (See
975 * {@link ConnectionService#onCreateIncomingConnection}) before starting the incoming call UI.
976 *
977 * @param phoneAccount A {@link PhoneAccountHandle} registered with
978 * {@link #registerPhoneAccount}.
979 * @param extras A bundle that will be passed through to
980 * {@link ConnectionService#onCreateIncomingConnection}.
981 */
982 public void addNewIncomingCall(PhoneAccountHandle phoneAccount, Bundle extras) {
983 try {
984 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700985 getTelecomService().addNewIncomingCall(
Santos Cordon96efb482014-07-19 14:57:05 -0700986 phoneAccount, extras == null ? new Bundle() : extras);
987 }
988 } catch (RemoteException e) {
989 Log.e(TAG, "RemoteException adding a new incoming call: " + phoneAccount, e);
990 }
991 }
992
Nancy Chen0eb1e402014-08-21 22:52:29 -0700993 /**
Yorke Leec3cf9822014-10-02 09:38:39 -0700994 * Registers a new unknown call with Telecom. This can only be called by the system Telephony
995 * service. This is invoked when Telephony detects a new unknown connection that was neither
996 * a new incoming call, nor an user-initiated outgoing call.
997 *
998 * @param phoneAccount A {@link PhoneAccountHandle} registered with
999 * {@link #registerPhoneAccount}.
1000 * @param extras A bundle that will be passed through to
1001 * {@link ConnectionService#onCreateIncomingConnection}.
1002 * @hide
1003 */
1004 @SystemApi
1005 public void addNewUnknownCall(PhoneAccountHandle phoneAccount, Bundle extras) {
1006 try {
1007 if (isServiceConnected()) {
1008 getTelecomService().addNewUnknownCall(
1009 phoneAccount, extras == null ? new Bundle() : extras);
1010 }
1011 } catch (RemoteException e) {
1012 Log.e(TAG, "RemoteException adding a new unknown call: " + phoneAccount, e);
1013 }
1014 }
1015
1016 /**
Nancy Chen0eb1e402014-08-21 22:52:29 -07001017 * Processes the specified dial string as an MMI code.
1018 * MMI codes are any sequence of characters entered into the dialpad that contain a "*" or "#".
1019 * Some of these sequences launch special behavior through handled by Telephony.
Nancy Chen95e8a672014-10-16 18:38:21 -07001020 * This method uses the default subscription.
Nancy Chen0eb1e402014-08-21 22:52:29 -07001021 * <p>
1022 * Requires that the method-caller be set as the system dialer app.
1023 * </p>
1024 *
1025 * @param dialString The digits to dial.
1026 * @return True if the digits were processed as an MMI code, false otherwise.
1027 */
1028 public boolean handleMmi(String dialString) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001029 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001030 if (service != null) {
1031 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001032 return service.handlePinMmi(dialString, mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001033 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001034 Log.e(TAG, "Error calling ITelecomService#handlePinMmi", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001035 }
1036 }
1037 return false;
1038 }
1039
1040 /**
Nancy Chen95e8a672014-10-16 18:38:21 -07001041 * Processes the specified dial string as an MMI code.
1042 * MMI codes are any sequence of characters entered into the dialpad that contain a "*" or "#".
1043 * Some of these sequences launch special behavior through handled by Telephony.
1044 * <p>
1045 * Requires that the method-caller be set as the system dialer app.
1046 * </p>
1047 *
1048 * @param accountHandle The handle for the account the MMI code should apply to.
1049 * @param dialString The digits to dial.
1050 * @return True if the digits were processed as an MMI code, false otherwise.
Nancy Chen95e8a672014-10-16 18:38:21 -07001051 */
Yorke Lee06044272015-04-14 15:16:59 -07001052 public boolean handleMmi(String dialString, PhoneAccountHandle accountHandle) {
Nancy Chen95e8a672014-10-16 18:38:21 -07001053 ITelecomService service = getTelecomService();
1054 if (service != null) {
1055 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001056 return service.handlePinMmiForPhoneAccount(accountHandle, dialString,
1057 mContext.getOpPackageName());
Nancy Chen95e8a672014-10-16 18:38:21 -07001058 } catch (RemoteException e) {
1059 Log.e(TAG, "Error calling ITelecomService#handlePinMmi", e);
1060 }
1061 }
1062 return false;
1063 }
1064
1065 /**
Nancy Chenb2299c12014-10-29 18:22:11 -07001066 * @param accountHandle The handle for the account to derive an adn query URI for or
1067 * {@code null} to return a URI which will use the default account.
1068 * @return The URI (with the content:// scheme) specific to the specified {@link PhoneAccount}
1069 * for the the content retrieve.
1070 */
1071 public Uri getAdnUriForPhoneAccount(PhoneAccountHandle accountHandle) {
1072 ITelecomService service = getTelecomService();
1073 if (service != null && accountHandle != null) {
1074 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001075 return service.getAdnUriForPhoneAccount(accountHandle, mContext.getOpPackageName());
Nancy Chenb2299c12014-10-29 18:22:11 -07001076 } catch (RemoteException e) {
1077 Log.e(TAG, "Error calling ITelecomService#getAdnUriForPhoneAccount", e);
1078 }
1079 }
1080 return Uri.parse("content://icc/adn");
1081 }
1082
1083 /**
Nancy Chen0eb1e402014-08-21 22:52:29 -07001084 * Removes the missed-call notification if one is present.
1085 * <p>
1086 * Requires that the method-caller be set as the system dialer app.
1087 * </p>
1088 */
1089 public void cancelMissedCallsNotification() {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001090 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001091 if (service != null) {
1092 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001093 service.cancelMissedCallsNotification(mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001094 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001095 Log.e(TAG, "Error calling ITelecomService#cancelMissedCallsNotification", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001096 }
1097 }
1098 }
1099
1100 /**
1101 * Brings the in-call screen to the foreground if there is an ongoing call. If there is
1102 * currently no ongoing call, then this method does nothing.
1103 * <p>
1104 * Requires that the method-caller be set as the system dialer app or have the
1105 * {@link android.Manifest.permission#READ_PHONE_STATE} permission.
1106 * </p>
1107 *
1108 * @param showDialpad Brings up the in-call dialpad as part of showing the in-call screen.
1109 */
1110 public void showInCallScreen(boolean showDialpad) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001111 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001112 if (service != null) {
1113 try {
Svet Ganov16a16892015-04-16 10:32:04 -07001114 service.showInCallScreen(showDialpad, mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001115 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001116 Log.e(TAG, "Error calling ITelecomService#showCallScreen", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001117 }
1118 }
1119 }
1120
Yorke Lee3e56ba12015-04-23 12:32:36 -07001121 /**
1122 * Places a new outgoing call to the provided address using the system telecom service with
1123 * the specified extras.
1124 *
1125 * This method is equivalent to placing an outgoing call using {@link Intent#ACTION_CALL},
1126 * except that the outgoing call will always be sent via the system telecom service. If
1127 * method-caller is either the user selected default dialer app or preloaded system dialer
1128 * app, then emergency calls will also be allowed.
1129 *
1130 * Requires permission: {@link android.Manifest.permission#CALL_PHONE}
1131 *
1132 * Usage example:
1133 * <pre>
1134 * Uri uri = Uri.fromParts("tel", "12345", null);
1135 * Bundle extras = new Bundle();
1136 * extras.putBoolean(TelecomManager.EXTRA_START_CALL_WITH_SPEAKERPHONE, true);
1137 * telecomManager.placeCall(uri, extras);
1138 * </pre>
1139 *
1140 * @param address The address to make the call to.
1141 * @param extras Bundle of extras to use with the call.
1142 */
1143 public void placeCall(Uri address, Bundle extras) {
1144 ITelecomService service = getTelecomService();
1145 if (service != null) {
1146 try {
1147 service.placeCall(address, extras, mContext.getOpPackageName());
1148 } catch (RemoteException e) {
1149 Log.e(TAG, "Error calling ITelecomService#placeCall", e);
1150 }
1151 }
1152 }
1153
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001154 private ITelecomService getTelecomService() {
1155 return ITelecomService.Stub.asInterface(ServiceManager.getService(Context.TELECOM_SERVICE));
Santos Cordon6c7a3882014-06-25 15:30:08 -07001156 }
Santos Cordon9eb45932014-06-27 12:28:43 -07001157
1158 private boolean isServiceConnected() {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001159 boolean isConnected = getTelecomService() != null;
Santos Cordon9eb45932014-06-27 12:28:43 -07001160 if (!isConnected) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001161 Log.w(TAG, "Telecom Service not found.");
Santos Cordon9eb45932014-06-27 12:28:43 -07001162 }
1163 return isConnected;
1164 }
Evan Charlton235c1592014-09-05 15:41:23 +00001165}