blob: c8ed2b07a43906d6ad2fef9270f49783f81121c3 [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:
Yorke Lee32f24732015-05-12 16:18:03 -0700145 * {@link VideoProfile#STATE_AUDIO_ONLY},
146 * {@link VideoProfile#STATE_BIDIRECTIONAL},
147 * {@link VideoProfile#STATE_RX_ENABLED},
148 * {@link VideoProfile#STATE_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
Santos Cordoned769ae2015-05-13 18:47:38 -0700336 /**
337 * Indicates that the address or number of a call is allowed to be displayed for caller ID.
338 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700339 public static final int PRESENTATION_ALLOWED = 1;
340
Santos Cordoned769ae2015-05-13 18:47:38 -0700341 /**
342 * Indicates that the address or number of a call is blocked by the other party.
343 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700344 public static final int PRESENTATION_RESTRICTED = 2;
345
Santos Cordoned769ae2015-05-13 18:47:38 -0700346 /**
347 * Indicates that the address or number of a call is not specified or known by the carrier.
348 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700349 public static final int PRESENTATION_UNKNOWN = 3;
350
Santos Cordoned769ae2015-05-13 18:47:38 -0700351 /**
352 * Indicates that the address or number of a call belongs to a pay phone.
353 */
Nancy Chen9d568c02014-09-08 14:17:59 -0700354 public static final int PRESENTATION_PAYPHONE = 4;
355
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700356 private static final String TAG = "TelecomManager";
Yorke Leeb4ce1432014-06-09 13:53:23 -0700357
358 private final Context mContext;
Yorke Leeb4ce1432014-06-09 13:53:23 -0700359
Santos Cordon6c7a3882014-06-25 15:30:08 -0700360 /**
361 * @hide
362 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700363 public static TelecomManager from(Context context) {
364 return (TelecomManager) context.getSystemService(Context.TELECOM_SERVICE);
Yorke Leeb4ce1432014-06-09 13:53:23 -0700365 }
Santos Cordon6c7a3882014-06-25 15:30:08 -0700366
367 /**
368 * @hide
369 */
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700370 public TelecomManager(Context context) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700371 Context appContext = context.getApplicationContext();
372 if (appContext != null) {
373 mContext = appContext;
374 } else {
375 mContext = context;
376 }
377 }
378
379 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700380 * Return the {@link PhoneAccount} which is the user-chosen default for making outgoing phone
Nancy Chen513c8922014-09-17 14:47:20 -0700381 * calls with a specified URI scheme.
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700382 * <p>
Santos Cordon96efb482014-07-19 14:57:05 -0700383 * Apps must be prepared for this method to return {@code null}, indicating that there currently
Nancy Chen513c8922014-09-17 14:47:20 -0700384 * exists no user-chosen default {@code PhoneAccount}.
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700385 * <p>
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700386 * @param uriScheme The URI scheme.
Nancy Chen513c8922014-09-17 14:47:20 -0700387 * @return The {@link PhoneAccountHandle} corresponding to the user-chosen default for outgoing
388 * phone calls for a specified URI scheme.
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700389 */
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700390 public PhoneAccountHandle getDefaultOutgoingPhoneAccount(String uriScheme) {
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700391 try {
392 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700393 return getTelecomService().getDefaultOutgoingPhoneAccount(uriScheme,
394 mContext.getOpPackageName());
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700395 }
396 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700397 Log.e(TAG, "Error calling ITelecomService#getDefaultOutgoingPhoneAccount", e);
Ihab Awad94cf4bf2014-07-17 11:21:19 -0700398 }
399 return null;
400 }
401
402 /**
Andrew Leed4abbfb2014-09-03 14:58:27 -0700403 * Return the {@link PhoneAccount} which is the user-chosen default for making outgoing phone
404 * calls. This {@code PhoneAccount} will always be a member of the list which is returned from
Nancy Chen210ef032014-09-15 17:58:42 -0700405 * calling {@link #getCallCapablePhoneAccounts()}
Andrew Leed4abbfb2014-09-03 14:58:27 -0700406 *
407 * Apps must be prepared for this method to return {@code null}, indicating that there currently
408 * exists no user-chosen default {@code PhoneAccount}.
409 *
410 * @return The user outgoing phone account selected by the user.
Jay Shrauner225ccad2015-04-15 15:51:15 -0700411 * @hide
Andrew Leed4abbfb2014-09-03 14:58:27 -0700412 */
413 public PhoneAccountHandle getUserSelectedOutgoingPhoneAccount() {
414 try {
415 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700416 return getTelecomService().getUserSelectedOutgoingPhoneAccount();
Andrew Leed4abbfb2014-09-03 14:58:27 -0700417 }
418 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700419 Log.e(TAG, "Error calling ITelecomService#getUserSelectedOutgoingPhoneAccount", e);
Andrew Leed4abbfb2014-09-03 14:58:27 -0700420 }
421 return null;
422 }
423
424 /**
Andrew Lee59cac3a2014-08-28 16:50:10 -0700425 * Sets the default account for making outgoing phone calls.
426 * @hide
427 */
Andrew Leed4abbfb2014-09-03 14:58:27 -0700428 public void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle accountHandle) {
Andrew Lee59cac3a2014-08-28 16:50:10 -0700429 try {
430 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700431 getTelecomService().setUserSelectedOutgoingPhoneAccount(accountHandle);
Andrew Lee59cac3a2014-08-28 16:50:10 -0700432 }
433 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700434 Log.e(TAG, "Error calling ITelecomService#setUserSelectedOutgoingPhoneAccount");
Andrew Lee59cac3a2014-08-28 16:50:10 -0700435 }
436 }
437
438 /**
Andrew Lee59cac3a2014-08-28 16:50:10 -0700439 * Returns the current SIM call manager. Apps must be prepared for this method to return
440 * {@code null}, indicating that there currently exists no user-chosen default
441 * {@code PhoneAccount}.
442 * @return The phone account handle of the current sim call manager.
Andrew Lee59cac3a2014-08-28 16:50:10 -0700443 */
444 public PhoneAccountHandle getSimCallManager() {
445 try {
446 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700447 return getTelecomService().getSimCallManager();
Andrew Lee59cac3a2014-08-28 16:50:10 -0700448 }
449 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700450 Log.e(TAG, "Error calling ITelecomService#getSimCallManager");
Andrew Lee59cac3a2014-08-28 16:50:10 -0700451 }
452 return null;
453 }
454
455 /**
456 * Sets the SIM call manager to the specified phone account.
457 * @param accountHandle The phone account handle of the account to set as the sim call manager.
458 * @hide
459 */
460 public void setSimCallManager(PhoneAccountHandle accountHandle) {
461 try {
462 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700463 getTelecomService().setSimCallManager(accountHandle);
Andrew Lee59cac3a2014-08-28 16:50:10 -0700464 }
465 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700466 Log.e(TAG, "Error calling ITelecomService#setSimCallManager");
Andrew Lee59cac3a2014-08-28 16:50:10 -0700467 }
468 }
469
470 /**
471 * Returns the list of registered SIM call managers.
472 * @return List of registered SIM call managers.
473 * @hide
474 */
475 public List<PhoneAccountHandle> getSimCallManagers() {
476 try {
477 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700478 return getTelecomService().getSimCallManagers(mContext.getOpPackageName());
Andrew Lee59cac3a2014-08-28 16:50:10 -0700479 }
480 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700481 Log.e(TAG, "Error calling ITelecomService#getSimCallManagers");
Andrew Lee59cac3a2014-08-28 16:50:10 -0700482 }
483 return new ArrayList<>();
484 }
485
486 /**
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700487 * Returns the current connection manager. Apps must be prepared for this method to return
488 * {@code null}, indicating that there currently exists no user-chosen default
489 * {@code PhoneAccount}.
490 *
491 * @return The phone account handle of the current connection manager.
Evan Charlton0e094d92014-11-08 15:49:16 -0800492 * @hide
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700493 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800494 @SystemApi
Evan Charltoneb0a8d52014-09-04 12:03:34 -0700495 public PhoneAccountHandle getConnectionManager() {
496 return getSimCallManager();
497 }
498
499 /**
Sailesh Nepal7a4e3872014-11-21 11:01:40 -0800500 * Returns the list of registered SIM call managers.
501 * @return List of registered SIM call managers.
502 * @hide
503 */
504 @SystemApi
505 public List<PhoneAccountHandle> getRegisteredConnectionManagers() {
506 return getSimCallManagers();
507 }
508
509 /**
Nancy Chen210ef032014-09-15 17:58:42 -0700510 * Returns a list of the {@link PhoneAccountHandle}s which can be used to make and receive phone
511 * calls which support the specified URI scheme.
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700512 * <P>
513 * For example, invoking with {@code "tel"} will find all {@link PhoneAccountHandle}s which
514 * support telephone calls (e.g. URIs such as {@code tel:555-555-1212}). Invoking with
515 * {@code "sip"} will find all {@link PhoneAccountHandle}s which support SIP calls (e.g. URIs
516 * such as {@code sip:example@sipexample.com}).
517 *
518 * @param uriScheme The URI scheme.
519 * @return A list of {@code PhoneAccountHandle} objects supporting the URI scheme.
Evan Charlton0e094d92014-11-08 15:49:16 -0800520 * @hide
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700521 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800522 @SystemApi
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700523 public List<PhoneAccountHandle> getPhoneAccountsSupportingScheme(String uriScheme) {
524 try {
525 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700526 return getTelecomService().getPhoneAccountsSupportingScheme(uriScheme,
527 mContext.getOpPackageName());
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700528 }
529 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700530 Log.e(TAG, "Error calling ITelecomService#getPhoneAccountsSupportingScheme", e);
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700531 }
532 return new ArrayList<>();
533 }
534
Nancy Chen513c8922014-09-17 14:47:20 -0700535
536 /**
537 * Return a list of {@link PhoneAccountHandle}s which can be used to make and receive phone
538 * calls.
539 *
540 * @see #EXTRA_PHONE_ACCOUNT_HANDLE
541 * @return A list of {@code PhoneAccountHandle} objects.
542 *
Nancy Chen513c8922014-09-17 14:47:20 -0700543 */
544 public List<PhoneAccountHandle> getCallCapablePhoneAccounts() {
545 try {
546 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700547 return getTelecomService().getCallCapablePhoneAccounts(mContext.getOpPackageName());
Nancy Chen513c8922014-09-17 14:47:20 -0700548 }
549 } catch (RemoteException e) {
550 Log.e(TAG, "Error calling ITelecomService#getCallCapablePhoneAccounts", e);
551 }
552 return new ArrayList<>();
553 }
554
Tyler Gunnf5b29dc2014-09-03 09:09:12 -0700555 /**
Nancy Chen513c8922014-09-17 14:47:20 -0700556 * Returns a list of all {@link PhoneAccount}s registered for the calling package.
557 *
558 * @return A list of {@code PhoneAccountHandle} objects.
Evan Charlton0e094d92014-11-08 15:49:16 -0800559 * @hide
Nancy Chen513c8922014-09-17 14:47:20 -0700560 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800561 @SystemApi
Nancy Chen513c8922014-09-17 14:47:20 -0700562 public List<PhoneAccountHandle> getPhoneAccountsForPackage() {
563 try {
564 if (isServiceConnected()) {
565 return getTelecomService().getPhoneAccountsForPackage(mContext.getPackageName());
566 }
567 } catch (RemoteException e) {
568 Log.e(TAG, "Error calling ITelecomService#getPhoneAccountsForPackage", e);
569 }
570 return null;
571 }
572
573 /**
Evan Charlton8c8a0622014-07-20 12:31:00 -0700574 * Return the {@link PhoneAccount} for a specified {@link PhoneAccountHandle}. Object includes
575 * resources which can be used in a user interface.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700576 *
Evan Charlton6eb262c2014-07-19 18:18:19 -0700577 * @param account The {@link PhoneAccountHandle}.
Evan Charlton8c8a0622014-07-20 12:31:00 -0700578 * @return The {@link PhoneAccount} object.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700579 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700580 public PhoneAccount getPhoneAccount(PhoneAccountHandle account) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700581 try {
582 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700583 return getTelecomService().getPhoneAccount(account);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700584 }
585 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700586 Log.e(TAG, "Error calling ITelecomService#getPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700587 }
588 return null;
589 }
590
591 /**
Nancy Chen210ef032014-09-15 17:58:42 -0700592 * Returns a count of all {@link PhoneAccount}s.
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700593 *
Nancy Chen210ef032014-09-15 17:58:42 -0700594 * @return The count of {@link PhoneAccount}s.
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700595 * @hide
596 */
597 @SystemApi
598 public int getAllPhoneAccountsCount() {
599 try {
600 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700601 return getTelecomService().getAllPhoneAccountsCount();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700602 }
603 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700604 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccountsCount", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700605 }
606 return 0;
607 }
608
609 /**
610 * Returns a list of all {@link PhoneAccount}s.
611 *
612 * @return All {@link PhoneAccount}s.
613 * @hide
614 */
615 @SystemApi
616 public List<PhoneAccount> getAllPhoneAccounts() {
617 try {
618 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700619 return getTelecomService().getAllPhoneAccounts();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700620 }
621 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700622 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccounts", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700623 }
624 return Collections.EMPTY_LIST;
625 }
626
627 /**
628 * Returns a list of all {@link PhoneAccountHandle}s.
629 *
630 * @return All {@link PhoneAccountHandle}s.
631 * @hide
632 */
633 @SystemApi
634 public List<PhoneAccountHandle> getAllPhoneAccountHandles() {
635 try {
636 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700637 return getTelecomService().getAllPhoneAccountHandles();
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700638 }
639 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700640 Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccountHandles", e);
Tyler Gunna1ed7d12014-09-08 09:52:22 -0700641 }
642 return Collections.EMPTY_LIST;
643 }
644
645 /**
Santos Cordond9e614f2014-10-28 13:10:36 -0700646 * Register a {@link PhoneAccount} for use by the system. When registering
647 * {@link PhoneAccount}s, existing registrations will be overwritten if the
648 * {@link PhoneAccountHandle} matches that of a {@link PhoneAccount} which is already
649 * registered. Once registered, the {@link PhoneAccount} is listed to the user as an option
650 * when placing calls. The user may still need to enable the {@link PhoneAccount} within
651 * the phone app settings before the account is usable.
652 * <p>
653 * A {@link SecurityException} will be thrown if an app tries to register a
654 * {@link PhoneAccountHandle} where the package name specified within
655 * {@link PhoneAccountHandle#getComponentName()} does not match the package name of the app.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700656 *
Evan Charlton8c8a0622014-07-20 12:31:00 -0700657 * @param account The complete {@link PhoneAccount}.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700658 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700659 public void registerPhoneAccount(PhoneAccount account) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700660 try {
661 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700662 getTelecomService().registerPhoneAccount(account);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700663 }
664 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700665 Log.e(TAG, "Error calling ITelecomService#registerPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700666 }
667 }
668
669 /**
Evan Charlton8c8a0622014-07-20 12:31:00 -0700670 * Remove a {@link PhoneAccount} registration from the system.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700671 *
Evan Charlton8c8a0622014-07-20 12:31:00 -0700672 * @param accountHandle A {@link PhoneAccountHandle} for the {@link PhoneAccount} to unregister.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700673 */
Evan Charlton8c8a0622014-07-20 12:31:00 -0700674 public void unregisterPhoneAccount(PhoneAccountHandle accountHandle) {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700675 try {
676 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700677 getTelecomService().unregisterPhoneAccount(accountHandle);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700678 }
679 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700680 Log.e(TAG, "Error calling ITelecomService#unregisterPhoneAccount", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700681 }
682 }
683
684 /**
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700685 * Remove all Accounts that belong to the calling package from the system.
Evan Charlton0e094d92014-11-08 15:49:16 -0800686 * @hide
Ihab Awad807fe0a2014-07-09 12:30:52 -0700687 */
Evan Charlton0e094d92014-11-08 15:49:16 -0800688 @SystemApi
Yorke Lee06044272015-04-14 15:16:59 -0700689 public void clearPhoneAccounts() {
690 clearAccounts();
691 }
692 /**
693 * Remove all Accounts that belong to the calling package from the system.
694 * @deprecated Use {@link #clearPhoneAccounts()} instead.
695 * @hide
696 */
697 @SystemApi
Nancy Chen7ab1dc42014-09-09 18:18:26 -0700698 public void clearAccounts() {
Ihab Awad807fe0a2014-07-09 12:30:52 -0700699 try {
700 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700701 getTelecomService().clearAccounts(mContext.getPackageName());
Ihab Awad807fe0a2014-07-09 12:30:52 -0700702 }
703 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700704 Log.e(TAG, "Error calling ITelecomService#clearAccounts", e);
Ihab Awad807fe0a2014-07-09 12:30:52 -0700705 }
706 }
707
708 /**
Anthony Lee67279262014-10-27 11:28:40 -0700709 * Remove all Accounts that belong to the specified package from the system.
710 * @hide
711 */
712 public void clearAccountsForPackage(String packageName) {
713 try {
714 if (isServiceConnected() && !TextUtils.isEmpty(packageName)) {
715 getTelecomService().clearAccounts(packageName);
716 }
717 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -0800718 Log.e(TAG, "Error calling ITelecomService#clearAccountsForPackage", e);
Anthony Lee67279262014-10-27 11:28:40 -0700719 }
720 }
721
Yorke Lee1011f482015-04-23 15:58:27 -0700722
Anthony Lee67279262014-10-27 11:28:40 -0700723 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700724 * @deprecated - Use {@link TelecomManager#getDefaultDialerPackage} to directly access
725 * the default dialer's package name instead.
Ihab Awad807fe0a2014-07-09 12:30:52 -0700726 * @hide
727 */
Santos Cordon6c7a3882014-06-25 15:30:08 -0700728 @SystemApi
729 public ComponentName getDefaultPhoneApp() {
730 try {
Santos Cordon9eb45932014-06-27 12:28:43 -0700731 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700732 return getTelecomService().getDefaultPhoneApp();
Santos Cordon9eb45932014-06-27 12:28:43 -0700733 }
Santos Cordon6c7a3882014-06-25 15:30:08 -0700734 } catch (RemoteException e) {
735 Log.e(TAG, "RemoteException attempting to get the default phone app.", e);
736 }
737 return null;
738 }
739
Santos Cordon9eb45932014-06-27 12:28:43 -0700740 /**
Yorke Lee1011f482015-04-23 15:58:27 -0700741 * Used to determine the currently selected default dialer package.
742 *
743 * @return package name for the default dialer package or null if no package has been
744 * selected as the default dialer.
745 */
746 public String getDefaultDialerPackage() {
747 try {
748 if (isServiceConnected()) {
749 return getTelecomService().getDefaultDialerPackage();
750 }
751 } catch (RemoteException e) {
752 Log.e(TAG, "RemoteException attempting to get the default dialer package name.", e);
753 }
754 return null;
755 }
756
757 /**
758 * Used to determine the dialer package that is preloaded on the system partition.
759 *
760 * @return package name for the system dialer package or null if no system dialer is preloaded.
761 * @hide
762 */
763 public String getSystemDialerPackage() {
764 try {
765 if (isServiceConnected()) {
766 return getTelecomService().getSystemDialerPackage();
767 }
768 } catch (RemoteException e) {
769 Log.e(TAG, "RemoteException attempting to get the system dialer package name.", e);
770 }
771 return null;
772 }
773
774 /**
Nancy Chen443e5012014-10-15 15:48:21 -0700775 * Return whether a given phone number is the configured voicemail number for a
776 * particular phone account.
777 *
778 * @param accountHandle The handle for the account to check the voicemail number against
779 * @param number The number to look up.
Nancy Chen443e5012014-10-15 15:48:21 -0700780 */
Nancy Chen443e5012014-10-15 15:48:21 -0700781 public boolean isVoiceMailNumber(PhoneAccountHandle accountHandle, String number) {
782 try {
783 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700784 return getTelecomService().isVoiceMailNumber(accountHandle, number,
785 mContext.getOpPackageName());
Nancy Chen443e5012014-10-15 15:48:21 -0700786 }
787 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -0800788 Log.e(TAG, "RemoteException calling ITelecomService#isVoiceMailNumber.", e);
Nancy Chen443e5012014-10-15 15:48:21 -0700789 }
790 return false;
791 }
792
793 /**
Yorke Lee49e2d462015-04-15 16:14:22 -0700794 * Return the voicemail number for a given phone account.
Nancy Chen8c066f72014-12-03 15:18:08 -0800795 *
Yorke Lee49e2d462015-04-15 16:14:22 -0700796 * @param accountHandle The handle for the phone account.
797 * @return The voicemail number for the phone account, and {@code null} if one has not been
798 * configured.
Nancy Chen8c066f72014-12-03 15:18:08 -0800799 */
Yorke Lee49e2d462015-04-15 16:14:22 -0700800 public String getVoiceMailNumber(PhoneAccountHandle accountHandle) {
Nancy Chen8c066f72014-12-03 15:18:08 -0800801 try {
802 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700803 return getTelecomService().getVoiceMailNumber(accountHandle,
804 mContext.getOpPackageName());
Nancy Chen8c066f72014-12-03 15:18:08 -0800805 }
806 } catch (RemoteException e) {
Nancy Chen5cf27842015-01-24 23:30:27 -0800807 Log.e(TAG, "RemoteException calling ITelecomService#hasVoiceMailNumber.", e);
Nancy Chen8c066f72014-12-03 15:18:08 -0800808 }
Yorke Lee49e2d462015-04-15 16:14:22 -0700809 return null;
Nancy Chen8c066f72014-12-03 15:18:08 -0800810 }
811
812 /**
Nancy Chen5cf27842015-01-24 23:30:27 -0800813 * Return the line 1 phone number for given phone account.
814 *
815 * @param accountHandle The handle for the account retrieve a number for.
816 * @return A string representation of the line 1 phone number.
Nancy Chen5cf27842015-01-24 23:30:27 -0800817 */
Nancy Chen5cf27842015-01-24 23:30:27 -0800818 public String getLine1Number(PhoneAccountHandle accountHandle) {
819 try {
820 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700821 return getTelecomService().getLine1Number(accountHandle,
822 mContext.getOpPackageName());
Nancy Chen5cf27842015-01-24 23:30:27 -0800823 }
824 } catch (RemoteException e) {
825 Log.e(TAG, "RemoteException calling ITelecomService#getLine1Number.", e);
826 }
827 return null;
828 }
829
830 /**
Santos Cordon9eb45932014-06-27 12:28:43 -0700831 * Returns whether there is an ongoing phone call (can be in dialing, ringing, active or holding
832 * states).
Nancy Chen0eb1e402014-08-21 22:52:29 -0700833 * <p>
834 * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
835 * </p>
Santos Cordon9eb45932014-06-27 12:28:43 -0700836 */
Nancy Chen0eb1e402014-08-21 22:52:29 -0700837 public boolean isInCall() {
Santos Cordon9eb45932014-06-27 12:28:43 -0700838 try {
839 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700840 return getTelecomService().isInCall(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -0700841 }
842 } catch (RemoteException e) {
Yorke Lee2ae312e2014-09-12 17:58:48 -0700843 Log.e(TAG, "RemoteException calling isInCall().", e);
Santos Cordon9eb45932014-06-27 12:28:43 -0700844 }
845 return false;
846 }
847
848 /**
Yorke Lee2ae312e2014-09-12 17:58:48 -0700849 * Returns one of the following constants that represents the current state of Telecom:
850 *
851 * {@link TelephonyManager#CALL_STATE_RINGING}
852 * {@link TelephonyManager#CALL_STATE_OFFHOOK}
853 * {@link TelephonyManager#CALL_STATE_IDLE}
Yorke Lee7c72c2d2014-10-28 14:12:02 -0700854 *
855 * Note that this API does not require the
856 * {@link android.Manifest.permission#READ_PHONE_STATE} permission. This is intentional, to
857 * preserve the behavior of {@link TelephonyManager#getCallState()}, which also did not require
858 * the permission.
Yorke Lee2ae312e2014-09-12 17:58:48 -0700859 * @hide
860 */
861 @SystemApi
862 public int getCallState() {
863 try {
864 if (isServiceConnected()) {
865 return getTelecomService().getCallState();
866 }
867 } catch (RemoteException e) {
868 Log.d(TAG, "RemoteException calling getCallState().", e);
869 }
870 return TelephonyManager.CALL_STATE_IDLE;
871 }
872
873 /**
Santos Cordon9eb45932014-06-27 12:28:43 -0700874 * Returns whether there currently exists is a ringing incoming-call.
875 *
876 * @hide
877 */
878 @SystemApi
879 public boolean isRinging() {
880 try {
881 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700882 return getTelecomService().isRinging(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -0700883 }
884 } catch (RemoteException e) {
885 Log.e(TAG, "RemoteException attempting to get ringing state of phone app.", e);
886 }
887 return false;
888 }
889
890 /**
Santos Cordon96efb482014-07-19 14:57:05 -0700891 * Ends an ongoing call.
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700892 * TODO: L-release - need to convert all invocations of ITelecomService#endCall to use this
Santos Cordon96efb482014-07-19 14:57:05 -0700893 * method (clockwork & gearhead).
Santos Cordon9eb45932014-06-27 12:28:43 -0700894 * @hide
895 */
896 @SystemApi
897 public boolean endCall() {
898 try {
899 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700900 return getTelecomService().endCall();
Santos Cordon9eb45932014-06-27 12:28:43 -0700901 }
902 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700903 Log.e(TAG, "Error calling ITelecomService#endCall", e);
Santos Cordon9eb45932014-06-27 12:28:43 -0700904 }
905 return false;
906 }
907
908 /**
909 * If there is a ringing incoming call, this method accepts the call on behalf of the user.
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700910 * TODO: L-release - need to convert all invocation of ITelecmmService#answerRingingCall to use
Santos Cordon96efb482014-07-19 14:57:05 -0700911 * this method (clockwork & gearhead).
Santos Cordon9eb45932014-06-27 12:28:43 -0700912 *
913 * @hide
914 */
915 @SystemApi
916 public void acceptRingingCall() {
917 try {
918 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700919 getTelecomService().acceptRingingCall();
Santos Cordon9eb45932014-06-27 12:28:43 -0700920 }
921 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700922 Log.e(TAG, "Error calling ITelecomService#acceptRingingCall", e);
Santos Cordon9eb45932014-06-27 12:28:43 -0700923 }
924 }
925
926 /**
927 * Silences the ringer if a ringing call exists.
Santos Cordon9eb45932014-06-27 12:28:43 -0700928 */
Santos Cordon9eb45932014-06-27 12:28:43 -0700929 public void silenceRinger() {
930 try {
931 if (isServiceConnected()) {
Yorke Leef1a349b2015-04-29 16:16:50 -0700932 getTelecomService().silenceRinger(mContext.getOpPackageName());
Santos Cordon9eb45932014-06-27 12:28:43 -0700933 }
934 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700935 Log.e(TAG, "Error calling ITelecomService#silenceRinger", e);
Santos Cordon9eb45932014-06-27 12:28:43 -0700936 }
937 }
938
Sailesh Nepal001bbbb2014-07-15 14:40:39 -0700939 /**
940 * Returns whether TTY is supported on this device.
941 *
942 * @hide
943 */
944 @SystemApi
945 public boolean isTtySupported() {
946 try {
947 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700948 return getTelecomService().isTtySupported(mContext.getOpPackageName());
Sailesh Nepal001bbbb2014-07-15 14:40:39 -0700949 }
950 } catch (RemoteException e) {
951 Log.e(TAG, "RemoteException attempting to get TTY supported state.", e);
952 }
953 return false;
954 }
955
956 /**
957 * 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 -0700958 * settings and have a wired headset plugged in.
959 * Valid modes are:
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700960 * - {@link TelecomManager#TTY_MODE_OFF}
961 * - {@link TelecomManager#TTY_MODE_FULL}
962 * - {@link TelecomManager#TTY_MODE_HCO}
963 * - {@link TelecomManager#TTY_MODE_VCO}
Sailesh Nepal001bbbb2014-07-15 14:40:39 -0700964 * @hide
965 */
966 public int getCurrentTtyMode() {
967 try {
968 if (isServiceConnected()) {
Svet Ganov16a16892015-04-16 10:32:04 -0700969 return getTelecomService().getCurrentTtyMode(mContext.getOpPackageName());
Sailesh Nepal001bbbb2014-07-15 14:40:39 -0700970 }
971 } catch (RemoteException e) {
972 Log.e(TAG, "RemoteException attempting to get the current TTY mode.", e);
973 }
Evan Charlton10197192014-07-19 15:00:29 -0700974 return TTY_MODE_OFF;
Sailesh Nepal001bbbb2014-07-15 14:40:39 -0700975 }
976
Santos Cordon96efb482014-07-19 14:57:05 -0700977 /**
978 * Registers a new incoming call. A {@link ConnectionService} should invoke this method when it
979 * has an incoming call. The specified {@link PhoneAccountHandle} must have been registered
Nancy Chen210ef032014-09-15 17:58:42 -0700980 * with {@link #registerPhoneAccount}. Once invoked, this method will cause the system to bind
981 * to the {@link ConnectionService} associated with the {@link PhoneAccountHandle} and request
Santos Cordon96efb482014-07-19 14:57:05 -0700982 * additional information about the call (See
983 * {@link ConnectionService#onCreateIncomingConnection}) before starting the incoming call UI.
984 *
985 * @param phoneAccount A {@link PhoneAccountHandle} registered with
986 * {@link #registerPhoneAccount}.
987 * @param extras A bundle that will be passed through to
988 * {@link ConnectionService#onCreateIncomingConnection}.
989 */
990 public void addNewIncomingCall(PhoneAccountHandle phoneAccount, Bundle extras) {
991 try {
992 if (isServiceConnected()) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700993 getTelecomService().addNewIncomingCall(
Santos Cordon96efb482014-07-19 14:57:05 -0700994 phoneAccount, extras == null ? new Bundle() : extras);
995 }
996 } catch (RemoteException e) {
997 Log.e(TAG, "RemoteException adding a new incoming call: " + phoneAccount, e);
998 }
999 }
1000
Nancy Chen0eb1e402014-08-21 22:52:29 -07001001 /**
Yorke Leec3cf9822014-10-02 09:38:39 -07001002 * Registers a new unknown call with Telecom. This can only be called by the system Telephony
1003 * service. This is invoked when Telephony detects a new unknown connection that was neither
1004 * a new incoming call, nor an user-initiated outgoing call.
1005 *
1006 * @param phoneAccount A {@link PhoneAccountHandle} registered with
1007 * {@link #registerPhoneAccount}.
1008 * @param extras A bundle that will be passed through to
1009 * {@link ConnectionService#onCreateIncomingConnection}.
1010 * @hide
1011 */
1012 @SystemApi
1013 public void addNewUnknownCall(PhoneAccountHandle phoneAccount, Bundle extras) {
1014 try {
1015 if (isServiceConnected()) {
1016 getTelecomService().addNewUnknownCall(
1017 phoneAccount, extras == null ? new Bundle() : extras);
1018 }
1019 } catch (RemoteException e) {
1020 Log.e(TAG, "RemoteException adding a new unknown call: " + phoneAccount, e);
1021 }
1022 }
1023
1024 /**
Nancy Chen0eb1e402014-08-21 22:52:29 -07001025 * Processes the specified dial string as an MMI code.
1026 * MMI codes are any sequence of characters entered into the dialpad that contain a "*" or "#".
1027 * Some of these sequences launch special behavior through handled by Telephony.
Nancy Chen95e8a672014-10-16 18:38:21 -07001028 * This method uses the default subscription.
Nancy Chen0eb1e402014-08-21 22:52:29 -07001029 * <p>
1030 * Requires that the method-caller be set as the system dialer app.
1031 * </p>
1032 *
1033 * @param dialString The digits to dial.
1034 * @return True if the digits were processed as an MMI code, false otherwise.
1035 */
1036 public boolean handleMmi(String dialString) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001037 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001038 if (service != null) {
1039 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001040 return service.handlePinMmi(dialString, mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001041 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001042 Log.e(TAG, "Error calling ITelecomService#handlePinMmi", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001043 }
1044 }
1045 return false;
1046 }
1047
1048 /**
Nancy Chen95e8a672014-10-16 18:38:21 -07001049 * Processes the specified dial string as an MMI code.
1050 * MMI codes are any sequence of characters entered into the dialpad that contain a "*" or "#".
1051 * Some of these sequences launch special behavior through handled by Telephony.
1052 * <p>
1053 * Requires that the method-caller be set as the system dialer app.
1054 * </p>
1055 *
1056 * @param accountHandle The handle for the account the MMI code should apply to.
1057 * @param dialString The digits to dial.
1058 * @return True if the digits were processed as an MMI code, false otherwise.
Nancy Chen95e8a672014-10-16 18:38:21 -07001059 */
Yorke Lee06044272015-04-14 15:16:59 -07001060 public boolean handleMmi(String dialString, PhoneAccountHandle accountHandle) {
Nancy Chen95e8a672014-10-16 18:38:21 -07001061 ITelecomService service = getTelecomService();
1062 if (service != null) {
1063 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001064 return service.handlePinMmiForPhoneAccount(accountHandle, dialString,
1065 mContext.getOpPackageName());
Nancy Chen95e8a672014-10-16 18:38:21 -07001066 } catch (RemoteException e) {
1067 Log.e(TAG, "Error calling ITelecomService#handlePinMmi", e);
1068 }
1069 }
1070 return false;
1071 }
1072
1073 /**
Nancy Chenb2299c12014-10-29 18:22:11 -07001074 * @param accountHandle The handle for the account to derive an adn query URI for or
1075 * {@code null} to return a URI which will use the default account.
1076 * @return The URI (with the content:// scheme) specific to the specified {@link PhoneAccount}
1077 * for the the content retrieve.
1078 */
1079 public Uri getAdnUriForPhoneAccount(PhoneAccountHandle accountHandle) {
1080 ITelecomService service = getTelecomService();
1081 if (service != null && accountHandle != null) {
1082 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001083 return service.getAdnUriForPhoneAccount(accountHandle, mContext.getOpPackageName());
Nancy Chenb2299c12014-10-29 18:22:11 -07001084 } catch (RemoteException e) {
1085 Log.e(TAG, "Error calling ITelecomService#getAdnUriForPhoneAccount", e);
1086 }
1087 }
1088 return Uri.parse("content://icc/adn");
1089 }
1090
1091 /**
Nancy Chen0eb1e402014-08-21 22:52:29 -07001092 * Removes the missed-call notification if one is present.
1093 * <p>
1094 * Requires that the method-caller be set as the system dialer app.
1095 * </p>
1096 */
1097 public void cancelMissedCallsNotification() {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001098 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001099 if (service != null) {
1100 try {
Yorke Leef1a349b2015-04-29 16:16:50 -07001101 service.cancelMissedCallsNotification(mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001102 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001103 Log.e(TAG, "Error calling ITelecomService#cancelMissedCallsNotification", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001104 }
1105 }
1106 }
1107
1108 /**
1109 * Brings the in-call screen to the foreground if there is an ongoing call. If there is
1110 * currently no ongoing call, then this method does nothing.
1111 * <p>
1112 * Requires that the method-caller be set as the system dialer app or have the
1113 * {@link android.Manifest.permission#READ_PHONE_STATE} permission.
1114 * </p>
1115 *
1116 * @param showDialpad Brings up the in-call dialpad as part of showing the in-call screen.
1117 */
1118 public void showInCallScreen(boolean showDialpad) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001119 ITelecomService service = getTelecomService();
Nancy Chen0eb1e402014-08-21 22:52:29 -07001120 if (service != null) {
1121 try {
Svet Ganov16a16892015-04-16 10:32:04 -07001122 service.showInCallScreen(showDialpad, mContext.getOpPackageName());
Nancy Chen0eb1e402014-08-21 22:52:29 -07001123 } catch (RemoteException e) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001124 Log.e(TAG, "Error calling ITelecomService#showCallScreen", e);
Nancy Chen0eb1e402014-08-21 22:52:29 -07001125 }
1126 }
1127 }
1128
Yorke Lee3e56ba12015-04-23 12:32:36 -07001129 /**
1130 * Places a new outgoing call to the provided address using the system telecom service with
1131 * the specified extras.
1132 *
1133 * This method is equivalent to placing an outgoing call using {@link Intent#ACTION_CALL},
1134 * except that the outgoing call will always be sent via the system telecom service. If
1135 * method-caller is either the user selected default dialer app or preloaded system dialer
1136 * app, then emergency calls will also be allowed.
1137 *
1138 * Requires permission: {@link android.Manifest.permission#CALL_PHONE}
1139 *
1140 * Usage example:
1141 * <pre>
1142 * Uri uri = Uri.fromParts("tel", "12345", null);
1143 * Bundle extras = new Bundle();
1144 * extras.putBoolean(TelecomManager.EXTRA_START_CALL_WITH_SPEAKERPHONE, true);
1145 * telecomManager.placeCall(uri, extras);
1146 * </pre>
1147 *
1148 * @param address The address to make the call to.
1149 * @param extras Bundle of extras to use with the call.
1150 */
1151 public void placeCall(Uri address, Bundle extras) {
1152 ITelecomService service = getTelecomService();
1153 if (service != null) {
Yorke Leea5d5c1d2015-05-05 16:25:55 -07001154 if (address == null) {
1155 Log.w(TAG, "Cannot place call to empty address.");
1156 }
Yorke Lee3e56ba12015-04-23 12:32:36 -07001157 try {
Yorke Leea5d5c1d2015-05-05 16:25:55 -07001158 service.placeCall(address, extras == null ? new Bundle() : extras,
1159 mContext.getOpPackageName());
Yorke Lee3e56ba12015-04-23 12:32:36 -07001160 } catch (RemoteException e) {
1161 Log.e(TAG, "Error calling ITelecomService#placeCall", e);
1162 }
1163 }
1164 }
1165
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001166 private ITelecomService getTelecomService() {
1167 return ITelecomService.Stub.asInterface(ServiceManager.getService(Context.TELECOM_SERVICE));
Santos Cordon6c7a3882014-06-25 15:30:08 -07001168 }
Santos Cordon9eb45932014-06-27 12:28:43 -07001169
1170 private boolean isServiceConnected() {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001171 boolean isConnected = getTelecomService() != null;
Santos Cordon9eb45932014-06-27 12:28:43 -07001172 if (!isConnected) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001173 Log.w(TAG, "Telecom Service not found.");
Santos Cordon9eb45932014-06-27 12:28:43 -07001174 }
1175 return isConnected;
1176 }
Evan Charlton235c1592014-09-05 15:41:23 +00001177}